Mercurial > public > sg101
annotate custom_search/tasks.py @ 715:820e57e621e8
Use |safe filter on Haystack templates to get better results w/quotes.
Content was getting escaped, so text with quotes around it was seemingly
missing from the search index. This change fixed that. I verified that the
search results will not leak raw HTML to the page so this should be safe to do.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 17 Sep 2013 20:26:49 -0500 |
parents | ee87ea74d46b |
children | f0b997651497 |
rev | line source |
---|---|
bgneal@525 | 1 """ |
bgneal@525 | 2 Tasks for our custom search application. |
bgneal@525 | 3 |
bgneal@525 | 4 """ |
bgneal@525 | 5 from celery.task import task |
bgneal@525 | 6 |
bgneal@525 | 7 from queued_search.management.commands.process_search_queue import Command |
bgneal@525 | 8 |
bgneal@525 | 9 |
bgneal@525 | 10 @task |
bgneal@525 | 11 def process_search_queue_task(): |
bgneal@525 | 12 """ |
bgneal@525 | 13 Celery task to run the queued_search application's process_search_queue |
bgneal@525 | 14 command. |
bgneal@525 | 15 |
bgneal@525 | 16 """ |
bgneal@525 | 17 command = Command() |
bgneal@525 | 18 command.execute() |