Try to manage CSS path

This commit is contained in:
Gregory Soutade
2014-11-30 19:05:17 +01:00
parent d4170ad3ed
commit 81c3aa8099
13 changed files with 38 additions and 15 deletions

View File

@@ -1,7 +1,9 @@
import os
# Default configuration
DB_ROOT = './output/'
DISPLAY_ROOT = './output/'
DB_ROOT = './output'
DISPLAY_ROOT = './output'
HOOKS_ROOT = 'plugins'
PRE_HOOK_DIRECTORY = HOOKS_ROOT + '.pre_analysis'
@@ -27,3 +29,8 @@ count_hit_only_visitors = True
multimedia_files = ['png', 'jpg', 'jpeg', 'gif', 'ico',
'css', 'js']
resources_path = ['resources']
css_path = [os.path.join( '/',
os.path.basename(resources_path[0]),
os.path.join('css', 'iwla.css'))]