本文整理汇总了Python中bookie.models.BmarkMgr.by_tag方法的典型用法代码示例。如果您正苦于以下问题:Python BmarkMgr.by_tag方法的具体用法?Python BmarkMgr.by_tag怎么用?Python BmarkMgr.by_tag使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类bookie.models.BmarkMgr
的用法示例。
在下文中一共展示了BmarkMgr.by_tag方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: bmark_list
# 需要导入模块: from bookie.models import BmarkMgr [as 别名]
# 或者: from bookie.models.BmarkMgr import by_tag [as 别名]
def bmark_list(request):
"""Display the list of bookmarks for this tag"""
rdict = request.matchdict
# check if we have a page count submitted
tag = rdict.get('tag')
page = int(rdict.get('page', 0))
# verify the tag exists before we go on
# 404 if the tag isn't found
exists = TagMgr.find(tags=[tag])
if not exists:
raise HTTPNotFound()
bmarks = BmarkMgr.by_tag(tag,
limit=RESULTS_MAX,
page=page)
return {'tag': tag,
'bmark_list': bmarks,
'max_count': RESULTS_MAX,
'count': len(bmarks),
'page': page,
'allow_edit': access.edit_enabled(request.registry.settings),
}