コード例 #1
0
ファイル: static_theme.py プロジェクト: vdedyukhin/lookatthis
def _theme_static(path):
    return static.static_file('tumblr', path)
コード例 #2
0
ファイル: static_post.py プロジェクト: vdedyukhin/lookatthis
def _post_static(slug, path):
    return static.static_file('posts/%s' % slug, path)
コード例 #3
0
ファイル: static_theme.py プロジェクト: BenHeubl/lookatthis
def _theme_static(path):
    return static.static_file('tumblr', path)
コード例 #4
0
ファイル: handle.py プロジェクト: DxfAndCxx/cottle
 def cfile(self, filename, root, mimetype="auto", download=False, charset="UTF-8"):
     return static_file(filename, root, mimetype, download, charset)