Esempio n. 1
0
def _favicon_ico():
    print ico
    return static_file("favicon.ico", ico)
Esempio n. 2
0
 def _help_html(self):
     root = os.path.join(local_dir, "html")
     return static_file("help.html", root)
Esempio n. 3
0
 def _app(self, path):
     root = os.path.join(local_dir, "html")
     return static_file(path, root)
Esempio n. 4
0
 def index(self):
     return bottle.static_file("map_index.html",
                               root=os.path.join(local_dir, "html"))
Esempio n. 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)