Example #1
0
def _favicon_ico():
    print ico
    return static_file("favicon.ico", ico)
Example #2
0
 def _help_html(self):
     root = os.path.join(local_dir, "html")
     return static_file("help.html", root)
Example #3
0
 def _app(self, path):
     root = os.path.join(local_dir, "html")
     return static_file(path, root)
Example #4
0
 def index(self):
     return bottle.static_file("map_index.html",
                               root=os.path.join(local_dir, "html"))
Example #5
0
 def index(self):
     root = os.path.join(local_dir, "html")
     return static_file("index.html", root)
 def index(self):
     return bottle.static_file("map_index.html",
                 root=os.path.join(local_dir, "html"))
def _favicon_ico():
    print(ico)
    return static_file("favicon.ico", ico)
 def _app(self, path):
     root = os.path.join(local_dir, "html")
     return static_file(path, root)
 def _help_html(self):
     root = os.path.join(local_dir, "html")
     return static_file("help.html", root)
 def index(self):
     root = os.path.join(local_dir, "html")
     return static_file("index.html", root)