diff options
| author | ianb <devnull@localhost> | 2005-04-22 03:11:58 +0000 |
|---|---|---|
| committer | ianb <devnull@localhost> | 2005-04-22 03:11:58 +0000 |
| commit | 7752a3102fc8aa68ee7e349495bc2e9345c77c00 (patch) | |
| tree | 7896dd31404fdfbba44d9c0338a7c1ae8e4ad5f8 /docs/BlogTutorial.txt | |
| parent | 4431828c677e6104b7abc62b31a933d2793ff6cf (diff) | |
| download | paste-7752a3102fc8aa68ee7e349495bc2e9345c77c00.tar.gz | |
Internal renaming of wsgikit->paste
Diffstat (limited to 'docs/BlogTutorial.txt')
| -rw-r--r-- | docs/BlogTutorial.txt | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/docs/BlogTutorial.txt b/docs/BlogTutorial.txt index 0336a3d..735652f 100644 --- a/docs/BlogTutorial.txt +++ b/docs/BlogTutorial.txt @@ -12,13 +12,12 @@ Introduction ============ This tutorial will go through the process of creating a blog using -WSGIKit_, SQLObject_, and `Zope Page Templates`_. This blog will rely -heavily on static publishing -- that is, when at all possible flat -HTML pages will be written to disk. For some parts (e.g., posting a -new item) this will of course be infeasible, but for most of the site -this should work fine. +`Python Paste <http://pythonpaste.org>`_, SQLObject_, and `Zope Page +Templates`_. This blog will rely heavily on static publishing -- that +is, when at all possible flat HTML pages will be written to disk. For +some parts (e.g., posting a new item) this will of course be +infeasible, but for most of the site this should work fine. -.. _WSGIKit: http://wsgikit.org .. _SQLObject: http://sqlobject.org .. _Zope Page Templates: http://www.zope.org/DevHome/Wikis/DevSite/Projects/ZPT/FrontPage @@ -47,7 +46,7 @@ Setting Up The App .. run: - from wsgikit.tests.doctest_webapp import * + from paste.tests.doctest_webapp import * BASE = '/var/www/wkblog' import sys clear_dir(BASE) @@ -57,7 +56,7 @@ Setting Up The App :: - $ export PYTHONPATH=/path/to/WSGIKit:$PYTHONPATH + $ export PYTHONPATH=/path/to/Paste:$PYTHONPATH $ BASE=/var/www/wkblog $ app-setup create --template=webkit_zpt $BASE $ cd $BASE |
