コード例 #1
0
ファイル: extdirect_repl.py プロジェクト: Xarthisius/yt-drone
def _favicon_ico():
    print ico
    return static_file("favicon.ico", ico)
コード例 #2
0
ファイル: extdirect_repl.py プロジェクト: Xarthisius/yt-drone
 def _help_html(self):
     root = os.path.join(local_dir, "html")
     return static_file("help.html", root)
コード例 #3
0
ファイル: extdirect_repl.py プロジェクト: Xarthisius/yt-drone
 def _app(self, path):
     root = os.path.join(local_dir, "html")
     return static_file(path, root)
コード例 #4
0
 def index(self):
     return bottle.static_file("map_index.html",
                               root=os.path.join(local_dir, "html"))
コード例 #5
0
ファイル: extdirect_repl.py プロジェクト: Xarthisius/yt-drone
 def index(self):
     root = os.path.join(local_dir, "html")
     return static_file("index.html", root)
コード例 #6
0
 def index(self):
     return bottle.static_file("map_index.html",
                 root=os.path.join(local_dir, "html"))
コード例 #7
0
def _favicon_ico():
    print(ico)
    return static_file("favicon.ico", ico)
コード例 #8
0
 def _app(self, path):
     root = os.path.join(local_dir, "html")
     return static_file(path, root)
コード例 #9
0
 def _help_html(self):
     root = os.path.join(local_dir, "html")
     return static_file("help.html", root)
コード例 #10
0
 def index(self):
     root = os.path.join(local_dir, "html")
     return static_file("index.html", root)