Ejemplo n.º 1
0
 def serve_app_page(app, page):
     return static_file('{0}.html'.format(page),
                        root=os.path.join(app_dir_dict.get(app, root_dir),
                                          'html'))
Ejemplo n.º 2
0
 def serve_app_static(app, filename):
     return static_file(filename,
                        root=os.path.join(app_dir_dict.get(app, root_dir),
                                          'static'))
Ejemplo n.º 3
0
 def serve_app_index(app):
     return static_file('index.html',
                        root=os.path.join(app_dir_dict.get(app, root_dir),
                                          'html'))
Ejemplo n.º 4
0
 def serve_static(filename):
     return static_file(filename, root=os.path.join(root_dir, 'static'))
Ejemplo n.º 5
0
 def serve_page(page):
     return static_file('{0}.html'.format(page),
                        root=os.path.join(root_dir, 'html'))
Ejemplo n.º 6
0
 def serve_app_page(app, page):
     return static_file('{0}.html'.format(page), root=os.path.join(app_dir_dict.get(app, root_dir), 'html'))
Ejemplo n.º 7
0
 def serve_app_index(app):
     return static_file('index.html', root=os.path.join(app_dir_dict.get(app, root_dir), 'html'))
Ejemplo n.º 8
0
 def serve_app_static(app, filename):
     return static_file(filename, root=os.path.join(app_dir_dict.get(app, root_dir), 'static'))
Ejemplo n.º 9
0
 def serve_page(page):
     return static_file('{0}.html'.format(page), root=os.path.join(root_dir, 'html'))
Ejemplo n.º 10
0
 def serve_static(filename):
     return static_file(filename, root=os.path.join(root_dir, 'static'))