Changeset 3174
- Timestamp:
- 06/20/06 00:24:19 (2 years ago)
- Files:
-
- django/trunk/AUTHORS (modified) (1 diff)
- django/trunk/django/core/management.py (modified) (3 diffs)
- django/trunk/django/core/servers/fastcgi.py (added)
- django/trunk/django/utils/daemonize.py (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/AUTHORS
r3162 r3174 66 66 Robert Rock Howard <http://djangomojo.com/> 67 67 Jason Huggins <http://www.jrandolph.com/blog/> 68 jcrasta@gmail.com 68 69 Michael Josephson <http://www.sdjournal.com/> 69 70 jpellerin@gmail.com django/trunk/django/core/management.py
r3134 r3174 1082 1082 dbshell.args = "" 1083 1083 1084 def runfcgi(args): 1085 """Run this project as a FastCGI application. requires flup.""" 1086 from django.core.servers.fastcgi import runfastcgi 1087 runfastcgi(args) 1088 runfcgi.args = '[various KEY=val options, use `runfcgi help` for help]' 1089 1084 1090 # Utilities for command-line script 1085 1091 … … 1092 1098 'install': install, 1093 1099 'reset': reset, 1100 'runfcgi': runfcgi, 1094 1101 'runserver': runserver, 1095 1102 'shell': run_shell, … … 1211 1218 addr, port = '', args[1] 1212 1219 action_mapping[action](addr, port) 1220 elif action == 'runfcgi': 1221 action_mapping[action](args[1:]) 1213 1222 else: 1214 1223 from django.db import models
