Changeset 1370:3011b4ea01c8
- Timestamp:
- 05/15/10 03:46:30 (2 years ago)
- Branch:
- default
- Files:
-
- 4 edited
-
INSTALL (modified) (1 diff)
-
scripts/_make-setup-virtualenv.py (modified) (1 diff)
-
scripts/setup-virtualenv (modified) (1 diff)
-
servers/zine.cgi (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
INSTALL
r1144 r1370 5 5 installed: 6 6 7 - Python 2. 4or higher7 - Python 2.5 or higher 8 8 - Werkzeug 0.5.1* 9 9 - Jinja2* -
scripts/_make-setup-virtualenv.py
r1279 r1370 28 28 ] 29 29 30 # for python 2. 4/2.5 we want simplejson installed too.30 # for python 2.5 we want simplejson installed too. 31 31 if sys.version_info < (2, 6): 32 32 REQUIREMENTS.append('simplejson') -
scripts/setup-virtualenv
r668 r1370 14 14 import subprocess 15 15 except ImportError, e: 16 if sys.version_info <= (2, 3):16 if sys.version_info <= (2, 4): 17 17 print 'ERROR: %s' % e 18 print 'ERROR: this script requires Python 2. 4or greater; or at least the subprocess module.'18 print 'ERROR: this script requires Python 2.5 or greater; or at least the subprocess module.' 19 19 print 'If you copy subprocess.py from a newer version of Python this script will probably work' 20 20 sys.exit(101) -
servers/zine.cgi
r1279 r1370 5 5 ~~~~~~~~~~~~~~~ 6 6 7 Run Zine as CGI. Requires python 2.5 or python 2.4with7 Run Zine as CGI. Requires python 2.5 with 8 8 the wsgiref module installed. For help con configuration 9 9 have a look at the README file.
Note: See TracChangeset
for help on using the changeset viewer.