本文整理汇总了Python中tornado.util.ObjectDict.has_index方法的典型用法代码示例。如果您正苦于以下问题:Python ObjectDict.has_index方法的具体用法?Python ObjectDict.has_index怎么用?Python ObjectDict.has_index使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tornado.util.ObjectDict
的用法示例。
在下文中一共展示了ObjectDict.has_index方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: read_meta
# 需要导入模块: from tornado.util import ObjectDict [as 别名]
# 或者: from tornado.util.ObjectDict import has_index [as 别名]
def read_meta(path):
"""
:param path: path for the theme.
:return: Theme meta read in path.
"""
if not os.path.exists(path):
return
meta = os.path.join(path, 'theme.py')
if not os.path.exists(meta):
logging.warn("%s is not a catsup theme." % path)
return
theme = ObjectDict(
name='',
author='',
homepage='',
pages=[],
has_index=False,
path=path,
vars={},
)
execfile(meta, {}, theme)
templates_path = os.path.join(path, 'templates')
for page in theme.pages:
if page == 'page.html':
theme.has_index = True
# If your theme does not have index page,
# catsup will rename page/1.html to page.html.
if not os.path.exists(os.path.join(templates_path, page)):
logging.warning("%s announces a page %s"
" which not exists." % (theme.name, page))
theme.name = theme.name.lower()
return theme