https://github.com/django-haystack/saved_searches
Saves user searches for integration with Haystack.
https://github.com/django-haystack/saved_searches
Last synced: 8 months ago
JSON representation
Saves user searches for integration with Haystack.
- Host: GitHub
- URL: https://github.com/django-haystack/saved_searches
- Owner: django-haystack
- License: bsd-3-clause
- Created: 2010-01-27T18:09:31.000Z (about 16 years ago)
- Default Branch: master
- Last Pushed: 2013-12-03T10:18:52.000Z (over 12 years ago)
- Last Synced: 2025-05-12T16:52:29.491Z (12 months ago)
- Language: Python
- Homepage:
- Size: 117 KB
- Stars: 77
- Watchers: 12
- Forks: 14
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
==============
saved_searches
==============
Allows you to personalize search by storing a user's search history.
For use with Haystack (http://haystacksearch.org/).
**WARNING!!!**
This project has been updated to be compatible with Haystack 2.0.0-alpha!
If you need ``queued_search`` for Haystack 1.2.X, please use the 1.0.4 tag
or ``pip install queued_search==1.0.4``!
Requirements
============
* Django 1.2+
* Haystack 2.0.X (http://github.com/toastdriven/django-haystack)
Setup
=====
#. Add ``saved_searches`` to ``INSTALLED_APPS``.
#. ``./manage.py syncdb``.
#. Alter either your URLconfs to use the ``saved_searches.views.SavedSearchView``
or change the inheritance of your subclassed views.