open-semantic-search/docs/solr-search-querytagger-pyt...
xiaoxue 308cb0b226 同步完整源码 - 2026-05-24 2026-05-24 23:07:33 +08:00
..
README.md 同步完整源码 - 2026-05-24 2026-05-24 23:07:33 +08:00

README.md

title authors
Web interface for tagging all results of a Solr search query
Markus Mandalka

Web interface for tagging all results of a Solr search query

Tags all results of a search query.

Usage

See the user documentation

Installation

  • download the module solr-search-querytagger-python-django
  • Copy the directory querytagger from the zip file into your Django apps directory
  • Enable the new app:

Add "querytagger" to your INSTALLED\APPS setting like this:

INSTALLED_APPS = (
 ...
 'querytagger',
)

Include the querytagger URLconf in your project urls.py like this: url(r'^querytagger/', include('querytagger.urls')),