Template system integration for fresco
Project description
Example usage with Jinja2:
from fresco import FrescoApp
from fresco_template import Jinja2
from jinja2 import PackageLoader
app = FrescoApp()
jinja2 = Jinja2(loader=PackageLoader('mypackage', 'template/dir'))
jinja2.init_app(app)
@jinja2.contextprocessor
def default_context():
# Return a dictionary of variables always to be included in the
# template context.
#
# NB the fresco context object and urlfor function are already included
# in the template context by default.
return {}
@jinja2.render('page.html')
def myview():
return {'var': 'value'}
Same example with Chameleon:
from fresco import FrescoApp
from fresco_template import Chameleon
from chameleon import PageTemplateLoader
app = FrescoApp()
loader = PageTemplateLoader(['template/dir'], auto_reload=True)
chameleon = Chameleon(loader)
chameleon.init_app(app)
@chameleon.contextprocessor
def default_context():
# Return a dictionary of variables always to be included in the
# template context.
#
# NB the fresco context object and urlfor function are already included
# in the template context by default.
return {}
@chameleon.render('page.html')
def myview():
return {'var': 'value'}
1.0.0 (released 2020-09-27)
Dropped Python 2 compatibility
Fixed exception when calling as_string as a function decorator.
Fixed deprecation warnings
0.3.1 (released 2016-11-29)
Added support for the Piglet templating engine.
0.3.0 (released 2015-09-25)
Added support for Kajiki
The environment variable has had its name changed to loader and is no longer available directly on the TemplateEnvironment object but via the plugin property. For example:
from jinja2 import Environment, FileSystemLoader from fresco_template import Jinja2 # Old style - BROKEN in 0.3 release: j2 = Jinja2(environment=Environment(FileSystemLoader('templates'))) j2.environment.install_gettext_translations(my_translation_module) # New style: j2 = Jinja2(Environment(autoescape=True, FileSystemLoader('templates'))) j2.plugin.loader.install_gettext_translations(my_translation_module)Any custom plugins will need to be rewritten. Refer to any of the default plugins for examples.
0.2.1
The TemplateContent class now calls all context processors on instantiation. This ensures context processors are always called before response headers are sent.
0.2
Initial release
0.1
(unreleased version)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fresco-template-1.0.0.tar.gz.
File metadata
- Download URL: fresco-template-1.0.0.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9fb3cf6fb4fecdcc47acb0a93902717474f74d02fdaee18629e11712a8c585d7
|
|
| MD5 |
e3621a42d4e6f9b50afdbbd6daf88a78
|
|
| BLAKE2b-256 |
8b822d4936070360981c111158a071b116e99caffa33c3a26dce525fb25d8164
|
File details
Details for the file fresco_template-1.0.0-py3-none-any.whl.
File metadata
- Download URL: fresco_template-1.0.0-py3-none-any.whl
- Upload date:
- Size: 10.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea47b65261d37ff47f8fe3027f542894bf8f3ee84fa6f2308ccb64adbd1bfb5e
|
|
| MD5 |
2417656361c14e0fbea984c8efd7fecb
|
|
| BLAKE2b-256 |
b9a9d9026cb4b065165e30e7dfceade275b786cefe32b198a2ef2c7b64c4f0f9
|