Skip to content
Snippets Groups Projects
Commit 3bca74f3 authored by Renaud Le Gac's avatar Renaud Le Gac
Browse files

Polish comments.

parent facc3c79
No related branches found
No related tags found
No related merge requests found
...@@ -65,7 +65,7 @@ def index(): ...@@ -65,7 +65,7 @@ def index():
csslibs = [os.path.join(base, 'static', 'extjs', 'resources', 'css', 'ext-all.css'), csslibs = [os.path.join(base, 'static', 'extjs', 'resources', 'css', 'ext-all.css'),
os.path.join(base, 'static', 'extjs', 'examples', 'shared', 'icons', 'silk.css')] os.path.join(base, 'static', 'extjs', 'examples', 'shared', 'icons', 'silk.css')]
# javascript librairies # ext javascript libraries
if debug: if debug:
jslibs = [os.path.join(base, 'static', 'extjs', 'adapter', 'ext', 'ext-base-debug.js'), jslibs = [os.path.join(base, 'static', 'extjs', 'adapter', 'ext', 'ext-base-debug.js'),
os.path.join(base, 'static', 'extjs', 'ext-all-debug.js')] os.path.join(base, 'static', 'extjs', 'ext-all-debug.js')]
...@@ -73,8 +73,7 @@ def index(): ...@@ -73,8 +73,7 @@ def index():
jslibs = [os.path.join(base, 'static', 'extjs', 'adapter', 'ext', 'ext-base.js'), jslibs = [os.path.join(base, 'static', 'extjs', 'adapter', 'ext', 'ext-base.js'),
os.path.join(base, 'static', 'extjs', 'ext-all.js')] os.path.join(base, 'static', 'extjs', 'ext-all.js')]
# application librairies # application javascript libraries
# load all javascript files found in the pathjs directory
applibs = [] applibs = []
server_path = os.path.join('applications', request.application, 'static', 'appjs') server_path = os.path.join('applications', request.application, 'static', 'appjs')
for file in os.listdir(server_path): for file in os.listdir(server_path):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment