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


Python Tipfy.get_config方法代码示例

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


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

示例1: test_app_get_config

# 需要导入模块: from tipfy import Tipfy [as 别名]
# 或者: from tipfy.Tipfy import get_config [as 别名]
    def test_app_get_config(self):
        app = Tipfy()

        self.assertEqual(app.get_config('resources.i18n', 'locale'), 'en_US')
        self.assertEqual(app.get_config('resources.i18n', 'locale', 'foo'), 'en_US')
        self.assertEqual(app.get_config('resources.i18n'), {
            'locale': 'en_US',
            'timezone': 'America/Chicago',
            'required': REQUIRED_VALUE,
        })
开发者ID:strogo,项目名称:tipfy,代码行数:12,代码来源:test_config.py

示例2: compile_templates

# 需要导入模块: from tipfy import Tipfy [as 别名]
# 或者: from tipfy.Tipfy import get_config [as 别名]
def compile_templates(argv=None):
    """Compiles templates for better performance. This is a command line
    script. From the buildout directory, run:

        bin/jinja2_compile

    It will compile templates from the directory configured for 'templates_dir'
    to the one configured for 'templates_compiled_target'.

    At this time it doesn't accept any arguments.
    """
    if argv is None:
        argv = sys.argv

    set_gae_sys_path()
    from config import config

    app = Tipfy(config=config)
    template_path = app.get_config('tipfyext.jinja2', 'templates_dir')
    compiled_path = app.get_config('tipfyext.jinja2',
        'templates_compiled_target')

    if compiled_path is None:
        raise ValueError('Missing configuration key to compile templates.')

    if isinstance(template_path, basestring):
        # A single path.
        source = os.path.join(app_path, template_path)
    else:
        # A list of paths.
        source = [os.path.join(app_path, p) for p in template_path]

    target = os.path.join(app_path, compiled_path)

    # Set templates dir and deactivate compiled dir to use normal loader to
    # find the templates to be compiled.
    app.config['tipfyext.jinja2']['templates_dir'] = source
    app.config['tipfyext.jinja2']['templates_compiled_target'] = None

    if target.endswith('.zip'):
        zip_cfg = 'deflated'
    else:
        zip_cfg = None

    old_list_templates = FileSystemLoader.list_templates
    FileSystemLoader.list_templates = list_templates

    env = Jinja2.factory(app, 'jinja2').environment
    env.compile_templates(target, extensions=None,
        filter_func=filter_templates, zip=zip_cfg, log_function=logger,
        ignore_errors=False, py_compile=False)

    FileSystemLoader.list_templates = old_list_templates
开发者ID:peper,项目名称:tipfy,代码行数:55,代码来源:scripts.py

示例3: test_get_config

# 需要导入模块: from tipfy import Tipfy [as 别名]
# 或者: from tipfy.Tipfy import get_config [as 别名]
 def test_get_config(self):
     app = Tipfy(config={'tipfy': {'foo': 'bar'}})
     self.assertEqual(app.get_config('tipfy', 'foo'), 'bar')
开发者ID:adilhz,项目名称:tipfy,代码行数:5,代码来源:app_test.py


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