當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。