本文整理汇总了Python中tactic.ui.panel.HashPanelWdg.get_url_from_hash方法的典型用法代码示例。如果您正苦于以下问题:Python HashPanelWdg.get_url_from_hash方法的具体用法?Python HashPanelWdg.get_url_from_hash怎么用?Python HashPanelWdg.get_url_from_hash使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tactic.ui.panel.HashPanelWdg
的用法示例。
在下文中一共展示了HashPanelWdg.get_url_from_hash方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_content
# 需要导入模块: from tactic.ui.panel import HashPanelWdg [as 别名]
# 或者: from tactic.ui.panel.HashPanelWdg import get_url_from_hash [as 别名]
def get_content(my, request_type):
web = WebContainer.get_web()
# NOTE: is this needed anymore?
if request_type in ["upload", "dynamic_file"]:
print "DEPRECATED: dynamic file in app_server.py"
widget = Widget()
page = my.get_page_widget()
widget.add(page)
return widget
# find hash of url
my.custom_url = None
if my.hash:
hash = "/".join(my.hash)
hash = "/%s" % hash
from tactic.ui.panel import HashPanelWdg
my.custom_url = HashPanelWdg.get_url_from_hash(hash)
if my.custom_url:
content_type = my.custom_url.get_value("content_type", no_exception=True)
# TODO: we may want to handle this differently for content types
# other that text/html
return my.get_application_wdg()