本文整理汇总了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,
})
示例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
示例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')