diff options
| author | Chris McDonough <chrism@plope.com> | 2011-01-21 02:22:17 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-01-21 02:22:17 -0500 |
| commit | 2323d4898fcc2f524d230025ed6a9f17906023ab (patch) | |
| tree | ab8b5b8b2dd5cd781d80f8447001b5bff93fe85d /docs/narr | |
| parent | 9af6f9bd776a495b95773fbcee842edc56e736ae (diff) | |
| download | pyramid-2323d4898fcc2f524d230025ed6a9f17906023ab.tar.gz pyramid-2323d4898fcc2f524d230025ed6a9f17906023ab.tar.bz2 pyramid-2323d4898fcc2f524d230025ed6a9f17906023ab.zip | |
add caveat for PyPy and Jython users
Diffstat (limited to 'docs/narr')
| -rw-r--r-- | docs/narr/project.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/narr/project.rst b/docs/narr/project.rst index 3b9b0cb61..dafebd419 100644 --- a/docs/narr/project.rst +++ b/docs/narr/project.rst @@ -64,6 +64,16 @@ The included templates are these: URL mapping via :term:`traversal` and persistence via :term:`SQLAlchemy` +.. note:: At this time, each of these templates uses the :term:`Chameleon` + templating system, which is incompatible with both Jython and PyPy. To + use paster templates to build applications which will run on Jython and + PyPy, you can try the ``pyramid_jinja2_starter`` template which ships as + part of the :term:`pyramid_jinja2` package or the ``pyramid_sqla`` paster + template which ships with the :term:`pyramid_sqla` package (it uses Mako), + both available from :term:`PyPI`. You can also just use the above paster + templates to build a skeleton and replace the Chameleon template it + includes with a :term:`Mako` analogue. + .. index:: single: creating a project single: project |
