當前位置: 首頁>>代碼示例>>Python>>正文


Python template.module方法代碼示例

本文整理匯總了Python中mako.template.module方法的典型用法代碼示例。如果您正苦於以下問題:Python template.module方法的具體用法?Python template.module怎麽用?Python template.module使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在mako.template的用法示例。


在下文中一共展示了template.module方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: from mako import template [as 別名]
# 或者: from mako.template import module [as 別名]
def __init__(
        self,
        name,
        context,
        module,
        callables=None,
        inherits=None,
        populate_self=True,
        calling_uri=None,
    ):
        self.name = name
        self.context = context
        self.inherits = inherits
        if callables is not None:
            self.callables = dict([(c.__name__, c) for c in callables])

        mod = __import__(module)
        for token in module.split(".")[1:]:
            mod = getattr(mod, token)
        self.module = mod 
開發者ID:remg427,項目名稱:misp42splunk,代碼行數:22,代碼來源:runtime.py

示例2: __init__

# 需要導入模塊: from mako import template [as 別名]
# 或者: from mako.template import module [as 別名]
def __init__(self, name, context, template=None, templateuri=None,
                 callables=None, inherits=None,
                 populate_self=True, calling_uri=None):
        self.name = name
        self.context = context
        self.inherits = inherits
        if callables is not None:
            self.callables = dict([(c.__name__, c) for c in callables])

        if templateuri is not None:
            self.template = _lookup_template(context, templateuri,
                                             calling_uri)
            self._templateuri = self.template.module._template_uri
        elif template is not None:
            self.template = template
            self._templateuri = template.module._template_uri
        else:
            raise TypeError("'template' argument is required.")

        if populate_self:
            lclcallable, lclcontext = \
                _populate_self_namespace(context, self.template,
                                         self_ns=self) 
開發者ID:jpush,項目名稱:jbox,代碼行數:25,代碼來源:runtime.py

示例3: __getattr__

# 需要導入模塊: from mako import template [as 別名]
# 或者: from mako.template import module [as 別名]
def __getattr__(self, key):
        ns = self.__parent
        while ns:
            if hasattr(ns.module, key):
                return getattr(ns.module, key)
            else:
                ns = ns.inherits
        raise AttributeError(key) 
開發者ID:remg427,項目名稱:misp42splunk,代碼行數:10,代碼來源:runtime.py

示例4: attr

# 需要導入模塊: from mako import template [as 別名]
# 或者: from mako.template import module [as 別名]
def attr(self):
        """Access module level attributes by name.

        This accessor allows templates to supply "scalar"
        attributes which are particularly handy in inheritance
        relationships.

        .. seealso::

            :ref:`inheritance_attr`

            :ref:`namespace_attr_for_includes`

        """
        return _NSAttr(self) 
開發者ID:remg427,項目名稱:misp42splunk,代碼行數:17,代碼來源:runtime.py

示例5: module

# 需要導入模塊: from mako import template [as 別名]
# 或者: from mako.template import module [as 別名]
def module(self):
        """The Python module referenced by this :class:`.Namespace`.

        If the namespace references a :class:`.Template`, then
        this module is the equivalent of ``template.module``,
        i.e. the generated module for the template.

        """
        return self.template.module 
開發者ID:remg427,項目名稱:misp42splunk,代碼行數:11,代碼來源:runtime.py

示例6: filename

# 需要導入模塊: from mako import template [as 別名]
# 或者: from mako.template import module [as 別名]
def filename(self):
        """The path of the filesystem file used for this
        :class:`.Namespace`'s module or template.
        """
        return self.template.filename 
開發者ID:remg427,項目名稱:misp42splunk,代碼行數:7,代碼來源:runtime.py

示例7: _get_star

# 需要導入模塊: from mako import template [as 別名]
# 或者: from mako.template import module [as 別名]
def _get_star(self):
        if self.callables:
            for key in self.callables:
                yield (key, self.callables[key])
        for key in dir(self.module):
            if key[0] != "_":
                callable_ = getattr(self.module, key)
                if callable(callable_):
                    yield key, functools.partial(callable_, self.context) 
開發者ID:remg427,項目名稱:misp42splunk,代碼行數:11,代碼來源:runtime.py

示例8: _inherit_from

# 需要導入模塊: from mako import template [as 別名]
# 或者: from mako.template import module [as 別名]
def _inherit_from(context, uri, calling_uri):
    """called by the _inherit method in template modules to set
    up the inheritance chain at the start of a template's
    execution."""

    if uri is None:
        return None
    template = _lookup_template(context, uri, calling_uri)
    self_ns = context["self"]
    ih = self_ns
    while ih.inherits is not None:
        ih = ih.inherits
    lclcontext = context._locals({"next": ih})
    ih.inherits = TemplateNamespace(
        "self:%s" % template.uri,
        lclcontext,
        template=template,
        populate_self=False,
    )
    context._data["parent"] = lclcontext._data["local"] = ih.inherits
    callable_ = getattr(template.module, "_mako_inherit", None)
    if callable_ is not None:
        ret = callable_(template, lclcontext)
        if ret:
            return ret

    gen_ns = getattr(template.module, "_mako_generate_namespaces", None)
    if gen_ns is not None:
        gen_ns(context)
    return (template.callable_, lclcontext) 
開發者ID:remg427,項目名稱:misp42splunk,代碼行數:32,代碼來源:runtime.py


注:本文中的mako.template.module方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。