コード例 #1
0
ファイル: routes.py プロジェクト: leClub/violence
def lib_static_proxy(path):
    """ send_static_file will guess the correct MIME type"""
    return app.send_static_file(os.path.join('lib', path))
コード例 #2
0
ファイル: routes.py プロジェクト: leClub/violence
def img_static_proxy(path):
    # send_static_file will guess the correct MIME type
    return app.send_static_file(os.path.join('img', path))
コード例 #3
0
ファイル: views.py プロジェクト: JemDS/info3180-Project2-UASW
def send_text_file(file_name):
    """Send your static text file."""
    file_dot_text = file_name + ".txt"
    return app.send_static_file(file_dot_text)
コード例 #4
0
ファイル: routes.py プロジェクト: leClub/violence
def css_static_proxy(path):
    """ send_static_file will guess the correct MIME type"""
    print os.path.join('css', path)
    return app.send_static_file(os.path.join('css', path))
コード例 #5
0
ファイル: runserver.py プロジェクト: izacus/newsbuddy
def root():
    return app.send_static_file("index.html")
コード例 #6
0
ファイル: routes.py プロジェクト: GeorgeMcIntire/violence
def img_static_proxy(path):
    # send_static_file will guess the correct MIME type
    return app.send_static_file(os.path.join('img', path))
コード例 #7
0
ファイル: routes.py プロジェクト: GeorgeMcIntire/violence
def lib_static_proxy(path):
    """ send_static_file will guess the correct MIME type"""
    return app.send_static_file(os.path.join('lib', path))
コード例 #8
0
ファイル: routes.py プロジェクト: GeorgeMcIntire/violence
def css_static_proxy(path):
    """ send_static_file will guess the correct MIME type"""
    print os.path.join('css', path)
    return app.send_static_file(os.path.join('css', path))
コード例 #9
0
ファイル: api.py プロジェクト: RichJ1129/flask-react-ginkgo
def index():
    return app.send_static_file('index.html')