2

View all "community-wiki" questions on an askbot site?
 

On an askbot-powered site, can one get the list of "community-wiki" questions?

(It is easy to get a list of questions with a certain tag, but the "community-wiki" stamp does not work like other tags.)

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
slelievre's avatar
196
slelievre
asked 10 years ago, updated 8 years ago

Comments

see more comments

1 Answer

2

There's not a valued configuration can achieve your target, but you can edit your source code with this method:

the main question query code are in askbot.views.readers.py file and in the questions(request, **kwargs) function , it get the queryset from this line -- qs, meta_data=models.Thread.objects.run_advanced_search(**). so, we can tell some query parameters are set in the run_advanced_search function,  go into this function and you can find the primary_filter dict, add your self configuration to this query dict--may like this:

before

primary_filter = { 'posts__post_type': 'question', 'posts__deleted': False }

after

primary_filter = { 'posts__post_type': 'question', 'posts__deleted': False, 'posts__wiki':True, } be carefully, between the post and wiki , it is a double underline.

I have tested in my development code, and hope it can help you.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
luckystar1992's avatar
71
luckystar1992
answered 8 years ago
link

Comments

see more comments