aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source
diff options
context:
space:
mode:
Diffstat (limited to 'docs/source')
-rw-r--r--docs/source/devel/codebase.rst4
-rw-r--r--docs/source/pluginwriter/api.rst3
-rw-r--r--docs/source/siteadmin/deploying.rst5
3 files changed, 9 insertions, 3 deletions
diff --git a/docs/source/devel/codebase.rst b/docs/source/devel/codebase.rst
index cd46242c..9718a097 100644
--- a/docs/source/devel/codebase.rst
+++ b/docs/source/devel/codebase.rst
@@ -142,8 +142,8 @@ Software Stack
* `werkzeug <http://werkzeug.pocoo.org/>`_: nice abstraction layer
from HTTP requests, responses and WSGI bits
- * `Beaker <http://beaker.groovie.org/>`_: for handling sessions and
- caching
+ * `itsdangerous <http://pythonhosted.org/itsdangerous/>`_:
+ for handling sessions
* `Jinja2 <http://jinja.pocoo.org/docs/>`_: the templating engine
diff --git a/docs/source/pluginwriter/api.rst b/docs/source/pluginwriter/api.rst
index 42dc3a3d..44ffd6e8 100644
--- a/docs/source/pluginwriter/api.rst
+++ b/docs/source/pluginwriter/api.rst
@@ -21,4 +21,5 @@ Plugin API
.. automodule:: mediagoblin.tools.pluginapi
:members: get_config, register_routes, register_template_path,
- register_template_hooks, get_hook_templates
+ register_template_hooks, get_hook_templates,
+ callable_runone, callable_runall
diff --git a/docs/source/siteadmin/deploying.rst b/docs/source/siteadmin/deploying.rst
index 9b2324ae..77e60037 100644
--- a/docs/source/siteadmin/deploying.rst
+++ b/docs/source/siteadmin/deploying.rst
@@ -185,6 +185,11 @@ flup::
./bin/easy_install flup
+(Sometimes this breaks because flup's site is flakey. If it does for
+you, try)::
+
+ ./bin/easy_install https://pypi.python.org/pypi/flup/1.0.3.dev-20110405
+
This concludes the initial configuration of the development
environment. In the future, when you update your
codebase, you should also run::