search input field,
[wolnelektury.git] / apps / search / management / commands / reindex.py
index 6d4b4fd..bce4708 100755 (executable)
@@ -9,9 +9,17 @@ class Command(BaseCommand):
         import search
         idx = search.ReusableIndex()
         idx.open()
-        for b in Book.objects.all():
+
+        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()
\ No newline at end of file
+        idx.close()