当前位置: 首页>>代码示例>>Python>>正文


Python HashPanelWdg.get_url_from_hash方法代码示例

本文整理汇总了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()
开发者ID:talha81,项目名称:TACTIC-DEV,代码行数:30,代码来源:app_server.py


注:本文中的tactic.ui.panel.HashPanelWdg.get_url_from_hash方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。