X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/73ce961f14509aabfa26536f847afd28111029c6..ae60b2a3949e96357477cc04f90fd0873cee8a92:/apps/search/management/commands/reindex.py?ds=sidebyside diff --git a/apps/search/management/commands/reindex.py b/apps/search/management/commands/reindex.py deleted file mode 100755 index bce47080d..000000000 --- a/apps/search/management/commands/reindex.py +++ /dev/null @@ -1,25 +0,0 @@ -from django.core.management.base import BaseCommand - -class Command(BaseCommand): - help = 'Reindex everything.' - args = '' - - def handle(self, *args, **opts): - from catalogue.models import Book - import search - idx = search.ReusableIndex() - idx.open() - - if args: - books = [] - for a in args: - books += Book.objects.filter(slug=a).all() - else: - books = Book.objects.all() - - for b in books: - print b.title - idx.index_book(b, None) - print 'Reindexing tags.' - idx.index_tags() - idx.close()