summaryrefslogtreecommitdiff
path: root/docs/tutorials/gae
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2010-02-03 03:40:04 +0000
committerChris McDonough <chrism@agendaless.com>2010-02-03 03:40:04 +0000
commit4b55fad7c2f61b62a48093e1d33cbfd0dbcdf87d (patch)
tree2ea7d88d7833169f5737b8a79abcd7b11197e427 /docs/tutorials/gae
parentece24e80658a80459b28b0584d6ae8f007d4d864 (diff)
downloadpyramid-4b55fad7c2f61b62a48093e1d33cbfd0dbcdf87d.tar.gz
pyramid-4b55fad7c2f61b62a48093e1d33cbfd0dbcdf87d.tar.bz2
pyramid-4b55fad7c2f61b62a48093e1d33cbfd0dbcdf87d.zip
- Update GAE tutorial to use Chameleon instead of Jinja2 (now that
it's possible).
Diffstat (limited to 'docs/tutorials/gae')
-rw-r--r--docs/tutorials/gae/index.rst15
1 files changed, 4 insertions, 11 deletions
diff --git a/docs/tutorials/gae/index.rst b/docs/tutorials/gae/index.rst
index f440dac27..c42284f14 100644
--- a/docs/tutorials/gae/index.rst
+++ b/docs/tutorials/gae/index.rst
@@ -12,13 +12,6 @@ This tutorial is written in terms of using the command line on a UNIX
system; it should be possible to perform similar actions on a Windows
system.
-.. note:: :term:`Chameleon` cannot easily be used on Google App
- Engine due to GAE environment limitations, so the tutorial is
- presented in terms of using :term:`Jinja2` as the templating
- language in the generated BFG application. It is possible to *use*
- Chameleon templates on GAE, it's just not possible to *compile*
- them under GAE.
-
#. Download Google's `App Engine SDK
<http://code.google.com/appengine/downloads.html>`_ and install it
on your system.
@@ -50,13 +43,13 @@ system.
``bfgapp/app/`` which is the directory you will upload to
appengine.
-#. Install :mod:`repoze.bfg.jinja2` into the virtualenv
+#. Install :mod:`repoze.bfg` into the virtualenv
.. code-block:: text
$ cd bfgapp/
$ bin/easy_install -i http://dist.repoze.org/bfg/current/simple/ \
- repoze.bfg.jinja2
+ repoze.bfg
This will install :mod:`repoze.bfg` in the environment.
@@ -65,14 +58,14 @@ system.
We'll use the standard way to create a :mod:`repoze.bfg`
application, but we'll have to move some files around when we are
done. The below commands assume your current working directory is
- the ``bfgapp`` virtualenv director you created in the third step
+ the ``bfgapp`` virtualenv directory you created in the third step
above:
.. code-block:: text
$ cd app
$ rm -rf bfgapp
- $ bin/paster create -t bfg_jinja2_starter bfgapp
+ $ bin/paster create -t bfg_starter bfgapp
$ mv bfgapp aside
$ mv aside/bfgapp .
$ rm -rf aside