summaryrefslogtreecommitdiff
path: root/django/core/servers/fastcgi.py
AgeCommit message (Collapse)Author
2015-01-17Removed FastCGI support per deprecation timeline; refs #20766.Tim Graham
2014-05-28Fixed several typos in DjangoAlex Gaynor
2013-11-02More attacking E302 violatorsAlex Gaynor
2013-11-02Fixed #21302 -- Fixed unused imports and import *.Tim Graham
2013-07-29Deprecated django.utils.importlibClaude Paroz
This was a shim for pre-Python 2.7 support.
2012-05-05Made more extensive usage of context managers with open.Claude Paroz
2012-04-30Replaced print statement by print function (forward compatibility syntax).Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
Thanks Clueless for the initial patch. Note that unittest has been purposely left out (external package only used by Python 2.6).
2012-01-02Fixed #6163 -- Made "manage.py help runfcgi" display proper default values ↵Julien Phalip
for the runfcgi options. Thanks to ash and Claude Paroz. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17330 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-10-22Fixed #16360 -- Added WSGI entrypoint to startproject layout, and enabled ↵Carl Meyer
internal servers (runserver and runfcgi) to use an externally-defined WSGI application. Thanks to Armin Ronacher, Jannis Leidel, Alex Gaynor, ptone, and Jacob Kaplan-Moss. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17022 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for ↵Jannis Leidel
the work on the patch and Alex for reviewing. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16539 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-10-27Fixed #14398 -- Changed runfcgi command to interpret the umask option ↵Ramiro Morales
argument as an octal value. Thanks petteyg for report and aptiko for help with the fix. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14360 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-10-09Fixed #11509 -- Modified usage of "Web" to match our style guide in various ↵Russell Keith-Magee
documentation, comments and code. Thanks to timo and Simon Meers for the work on the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14069 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-04-01Fixed #8895: expose the debug setting to fastcgi. Thanks, paulegan.Jacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10345 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-03-20Fixed #10556 -- Fixed a problem in the fastcgi server after r10088.Malcolm Tredinnick
Thanks, Boo. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10101 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-03-18Fixed #8193: all dynamic imports in Django are now done correctly. I know ↵Jacob Kaplan-Moss
this because Brett Cannon borrowed the time machine and brought Python 2.7's '`importlib` back for inclusion in Django. Thanks for the patch-from-the-future, Brett! git-svn-id: http://code.djangoproject.com/svn/django/trunk@10088 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-06-30Fixed #6994 -- For fastcgi, set a more sensible default umask.Malcolm Tredinnick
Also allow the umask value to be customised. Thanks, Antonis Christofides. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7800 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-03-18Fixed #6687: added outlog/errlog options to runfcgi. Thanks, tamas.Jacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7297 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-09-09Fixed #5369 -- Refactored the django-admin.py help system, allowing each ↵Adrian Holovaty
subcommand to register its own options. Thanks for the patch, Todd O'Bryan git-svn-id: http://code.djangoproject.com/svn/django/trunk@6075 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-04-01Added support for SCGI and AJP. This is a piece that was missed in [4897]. RefsMalcolm Tredinnick
#3047. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4902 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-12-07Changed Flup (FastCGI) backend to set debug=False, to turn off tracebacks in ↵Adrian Holovaty
case of error. Thanks, Jared Kuolt git-svn-id: http://code.djangoproject.com/svn/django/trunk@4170 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-11-07Fixed $2973: added minspare/maxspare/maxchildren options to runfcgi. ↵Jacob Kaplan-Moss
Thanks, James Crasta. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4033 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-10-31Fixes #2969 -- Added maxRequests option for FCGI servers. Thanks, Michael ↵Russell Keith-Magee
Radziej. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3954 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-09-21Fixed #2732 -- Allow first positional argument to runfastcgi() to be optional.Malcolm Tredinnick
Patch from James Crasta. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3777 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-09-14Fixed #2732 -- Fixed error in FastCGI docs and added keyword-arg support in ↵Adrian Holovaty
a FastCGI function. Thanks for the patch, James Crasta git-svn-id: http://code.djangoproject.com/svn/django/trunk@3759 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-20Added django/core/servers/fastcgi.py and manage.py 'runfcgi' option. Thanks, ↵Adrian Holovaty
jcrasta@gmail.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@3174 bcc190cf-cafb-0310-a4f2-bffc1f526a37