Adds a warning message for C extensions

This commit is contained in:
Alfredo Deza
2011-03-07 08:58:37 -05:00
parent 8f2b63876e
commit 1aa38412a1
2 changed files with 7 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ you might want to check that engine's dependencies as well.
* Genshi >= 0.6
* Kajiki >= 0.3.1
* Mako >= 0.3
* Mako >= 0.3
From this point forward, we will assume you are going to be using Mako (it is the recommended Pecan template
engine), to avoid describing third party dependencies.
@@ -106,6 +106,11 @@ Go ahead and create a ``lib`` directory inside of your ``pecan_gae`` directory
application and add the requirements for Pecan there. Make sure you have
a ``__init__.py`` file too.
.. warning::
You should **not** run ``setup.py`` on any of the libraries. This prevents
activating C extensions which are forbidden in App Engine. Copy the
*actual* source for the libraries only.
The ``lib`` directory should contain the source for all the dependencies we need. For our example, it should
contain these libraries:

View File

@@ -120,7 +120,7 @@ html_theme = 'nature'
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_static_path = ['static']
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.