Move manage.py to root.
[wolnelektury.git] / wolnelektury / settings / static.py
index 8dcdf8f..4e104c4 100644 (file)
@@ -1,5 +1,5 @@
 from os import path
-from settings.paths import PROJECT_DIR
+from .paths import PROJECT_DIR
 
 # Absolute path to the directory that holds media.
 # Example: "/home/media/media.lawrence.com/"
@@ -33,6 +33,8 @@ PIPELINE_CSS = {
 
             'css/social/shelf_tags.css',
             'css/ui-lightness/jquery-ui-1.8.16.custom.css',
+
+            'css/annoy.css',
         ],
         'output_filename': 'css/compressed/all.css',
     },
@@ -45,6 +47,8 @@ PIPELINE_CSS = {
     'book': {
         'source_filenames': [
             'css/master.book.css',
+
+            'css/annoy.css',
         ],
         'output_filename': 'css/compressed/book.css',
     },
@@ -79,8 +83,10 @@ PIPELINE_JS = {
             'js/base.js',
             'pdcounter/pdcounter.js',
             'sponsors/js/sponsors.js',
-
+            'player/openplayer.js',
             'js/search.js',
+
+            'js/annoy.js',
             ),
         'output_filename': 'js/base.min.js',
     },
@@ -93,7 +99,15 @@ PIPELINE_JS = {
         'output_filename': 'js/player.min.js',
     },
     'book': {
-        'source_filenames': ('js/jquery.eventdelegation.js', 'js/jquery.scrollto.js', 'js/jquery.highlightfade.js', 'js/book.js',),
+        'source_filenames': [
+            'js/jquery.eventdelegation.js',
+            'js/jquery.scrollto.js',
+            'js/jquery.highlightfade.js',
+            'js/book.js',
+            'player/openplayer.js',
+
+            'js/annoy.js',
+        ],
         'output_filename': 'js/book.min.js',
     },
     'book_ie': {