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


Python Domain.set_namespace_on_globals方法代码示例

本文整理汇总了Python中evoque.domain.Domain.set_namespace_on_globals方法的典型用法代码示例。如果您正苦于以下问题:Python Domain.set_namespace_on_globals方法的具体用法?Python Domain.set_namespace_on_globals怎么用?Python Domain.set_namespace_on_globals使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在evoque.domain.Domain的用法示例。


在下文中一共展示了Domain.set_namespace_on_globals方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: abspath

# 需要导入模块: from evoque.domain import Domain [as 别名]
# 或者: from evoque.domain.Domain import set_namespace_on_globals [as 别名]
from my_site import formatting_utils

# default template collection root directory
DEFAULT_DIR = abspath(join(dirname(__file__), 'templates'))

# create template domain instance 
# here restating all defaults, for doc convenience
domain = Domain(DEFAULT_DIR,
    restricted=False, errors=3, log=logging.getLogger("evoque"),
    cache_size=0, auto_reload=60, slurpy_directives=True,
    quoting="xml", input_encoding="utf-8", filters=[] )

# adjust global namespace as needed by application
domain.set_on_globals("ObjectPaginator", ObjectPaginator)
domain.set_on_globals("site_name", "mysite.net")
domain.set_namespace_on_globals("formatting_utils", formatting_utils)

# set up any other collection, as needed by application 
# here restating all defaults -- when None, domain's value is used
domain.set_collection("custom", "/home/me/custom_collection/",
    cache_size=None, auto_reload=None, slurpy_directives=None, 
    quoting=None, input_encoding=None, filters=None)


# here we would do any other domain setup we might need
# e.g. set a template default for a given collection
# for details see: http://evoque.gizmojo.org/usage/
# or the source of the evoque.domain module.


def evoque_django_response(request, name, 
开发者ID:DamnWidget,项目名称:goliat,代码行数:33,代码来源:evoque_django.py


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