[gen] Allow to specify several folder within an app where to store static ui content (js, css, images). [gen] When browser settings are ignored or absent, default language is the first one listed in Config.languages.

This commit is contained in:
Gaetan Delannay 2014-03-28 12:25:42 +01:00
parent d5a9450d72
commit 81a201dcad
3 changed files with 14 additions and 4 deletions

View file

@ -171,4 +171,8 @@ class Config:
# When using a LDAP for authenticating users, place an instance of class
# LdapConfig above in the field below.
ldap = None
# For an app, the default folder where to look for static content for the
# user interface (CSS, Javascript and image files) is folder "ui" within
# this app.
uiFolders = ['ui']
# ------------------------------------------------------------------------------