]> git.openstreetmap.org Git - osqa.git/blobdiff - forum_modules/pgfulltext/handlers.py
Some fixes in the importer.
[osqa.git] / forum_modules / pgfulltext / handlers.py
old mode 100755 (executable)
new mode 100644 (file)
index 17fb176..835c2f5
@@ -1,11 +1,15 @@
-from forum.models import Question\r
-\r
-def question_search(keywords, orderby):\r
-    return Question.objects.filter(deleted=False).extra(\r
-                    select={\r
-                        'ranking': "ts_rank_cd(tsv, plainto_tsquery(%s), 32)",\r
-                    },\r
-                    where=["tsv @@ plainto_tsquery(%s)"],\r
-                    params=[keywords],\r
-                    select_params=[keywords]\r
-                ).order_by(orderby, '-ranking')
\ No newline at end of file
+from forum.models import Question
+from forum.modules.decorators import decorate
+from forum.views.readers import do_question_search
+
+@decorate(do_question_search, needs_origin=False)
+def question_search(keywords):
+    return Question.objects.all().extra(
+                    select={
+                        'ranking': 'node_ranking("forum_node"."id", %s)',
+                    },
+                    where=['node_ranking("forum_node"."id", %s) > 0'],
+                    params=[keywords],
+                    select_params=[keywords],
+                    order_by=['-ranking']
+                )
\ No newline at end of file