1
0
mirror of https://github.com/django/django.git synced 2024-11-18 15:34:16 +00:00
django/docs
Malcolm Tredinnick bfcecbffd3 Changed/fixed the way Django handles SCRIPT_NAME and PATH_INFO (or
equivalents). Basically, URL resolving will only use the PATH_INFO and the
SCRIPT_NAME will be prepended by reverse() automatically. Allows for more
portable development and installation. Also exposes SCRIPT_NAME in the
HttpRequest instance.

There are a number of cases where things don't work completely transparently,
so mod_python and fastcgi users should read the relevant docs.

Fixed #285, #1516, #3414.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@8015 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-21 07:57:10 +00:00
..
man Fixed #5522 -- Moved make-messages, compile-messages and daily-cleanup into django-admin.py. 2008-07-06 06:39:44 +00:00
add_ons.txt
admin_css.txt
admin.txt Fixed #7850 -- Added adding django.contrib.admin to INSTALLED_APPS to the steps to activating the Django admin site. Thanks dacort for the report. 2008-07-20 18:20:54 +00:00
apache_auth.txt Fixed #6612 -- Updated Apache auth recipe for Apache 2.2. Thanks, trbs. 2008-06-30 12:25:03 +00:00
api_stability.txt
authentication.txt Merged the newforms-admin branch into trunk. 2008-07-18 23:54:34 +00:00
cache.txt Fixed #6201 -- Improved the {% cache %} template tag to allow the timeout to be a template variable. Inspired by the patch by zz and edrik 2008-06-26 04:54:10 +00:00
conf.py [docs] OK, I give up. 2008-03-27 15:14:57 +00:00
contenttypes.txt Fixed #7785 -- Added a note in the contenttypes documentation that GenericRelations must share a common field type for primary keys. Thanks to Rudolph for the suggestion and initial draft. 2008-07-19 02:46:12 +00:00
contributing.txt Fixed #7534 -- Added a note about TEST_DATABASE_CHARSET in the contribution documentation. Thanks to Peter Melvyn for the suggestion and initial draft. 2008-07-13 11:47:09 +00:00
csrf.txt
custom_model_fields.txt Merged the newforms-admin branch into trunk. 2008-07-18 23:54:34 +00:00
databases.txt
databrowse.txt
db-api.txt Modified [7999] based on some feedback from Marty Alchin. 2008-07-19 22:50:06 +00:00
design_philosophies.txt
distributions.txt
django-admin.txt Fixed #5522 -- Moved make-messages, compile-messages and daily-cleanup into django-admin.py. 2008-07-06 06:39:44 +00:00
documentation.txt
email.txt
faq.txt Various documentation edits from the past few changesets 2008-06-12 03:36:48 +00:00
fastcgi.txt Changed/fixed the way Django handles SCRIPT_NAME and PATH_INFO (or 2008-07-21 07:57:10 +00:00
flatpages.txt Fixed #4081 -- Allow empty content in flatpages. 2008-06-30 13:05:47 +00:00
form_for_model.txt
form_preview.txt Fixed #7292 -- Removed reference to form_for_model in the form_preview docs. Thanks to programmerq for the report. 2008-06-17 11:22:03 +00:00
form_wizard.txt Added section to docs/form_wizard.txt about extra_context. Thanks, Honza 2008-03-17 17:26:02 +00:00
forms.txt
generic_views.txt Fixed #3639: updated generic create_update views to use newforms. This is a backwards-incompatible change. 2008-07-18 19:45:00 +00:00
i18n.txt Fixed #5522 -- Moved make-messages, compile-messages and daily-cleanup into django-admin.py. 2008-07-06 06:39:44 +00:00
index.txt Added the basics needed to build Django's docs using [http://sphinx.pocoo.org/ Sphinx]. If you've got Sphinx installed (the latest version) along with [http://docutils.sf.net docutils], you should be able to easily build the docs locally using {{{sphinx-build}}} or the included {{{Makefile}}}. This use a basic (and pretty crappy) index for the documentation and the built-in Sphinx styles (which are actually quite nice). 2008-03-27 15:03:52 +00:00
install.txt Edited some docs changes from the past few days 2008-03-25 04:42:21 +00:00
legacy_databases.txt
localflavor.txt Fixed #7763 -- Added a Romanian localflavor. Thanks, MihaiD. 2008-07-19 19:22:44 +00:00
Makefile Added the basics needed to build Django's docs using [http://sphinx.pocoo.org/ Sphinx]. If you've got Sphinx installed (the latest version) along with [http://docutils.sf.net docutils], you should be able to easily build the docs locally using {{{sphinx-build}}} or the included {{{Makefile}}}. This use a basic (and pretty crappy) index for the documentation and the built-in Sphinx styles (which are actually quite nice). 2008-03-27 15:03:52 +00:00
middleware.txt
model-api.txt Fixed #4412 -- Added support for optgroups, both in the model when defining choices, and in the form field and widgets when the optgroups are displayed. Thanks to Matt McClanahan <cardinal@dodds.net>, Tai Lee <real.human@mrmachine.net> and SmileyChris for their contributions at various stages in the life of this ticket. 2008-07-19 07:53:02 +00:00
modelforms.txt Merged the newforms-admin branch into trunk. 2008-07-18 23:54:34 +00:00
modpython.txt Changed/fixed the way Django handles SCRIPT_NAME and PATH_INFO (or 2008-07-21 07:57:10 +00:00
newforms.txt Fixed #7832 -- Corrected a formatting error in the newforms docs. Thanks to omat@gezgin.com for the report. 2008-07-19 11:27:55 +00:00
outputting_csv.txt
outputting_pdf.txt Fixed #7382 -- Added a reference to Pisa HTML2PDF in the PDF output docs. Thanks for the suggestion, perenzo. 2008-06-06 15:27:21 +00:00
overview.txt
pagination.txt Fixed #7307 -- Split InvalidPage exception into two subclasses, PageNotAnInteger and EmptyPage, for granular exception catching. Thanks for the idea, miracle2k 2008-07-08 02:20:48 +00:00
redirects.txt
release_notes_0.95.txt
release_notes_0.96.txt
request_response.txt Fixed #2070: refactored Django's file upload capabilities. 2008-07-01 15:10:51 +00:00
serialization.txt Fixed #7350, #7202 -- Fixed serialization for multi-model inheritance, which had multiple problems: 2008-06-09 14:03:35 +00:00
sessions.txt Fixed #5522 -- Moved make-messages, compile-messages and daily-cleanup into django-admin.py. 2008-07-06 06:39:44 +00:00
settings.txt Changed/fixed the way Django handles SCRIPT_NAME and PATH_INFO (or 2008-07-21 07:57:10 +00:00
shortcuts.txt Made a bunch of small doc rewordings from changes over the past couple of weeks 2008-02-16 05:15:09 +00:00
sitemaps.txt Fixed #7185 -- Added a "ping_google" management command to 2008-07-01 12:25:59 +00:00
sites.txt
static_files.txt
syndication_feeds.txt Edited some docs changes from the past few days 2008-03-25 04:42:21 +00:00
templates_python.txt Fixed #6898 -- Fixed some typos in docs/templates_python.txt. Thanks, djoume 2008-06-16 03:35:50 +00:00
templates.txt Changed a documentation example that wasn't wrong to stop complaints. 2008-07-01 02:17:24 +00:00
testing.txt Fixed #7737 -- Corrected a comment in the testing docs to be PEP257 compliant. Thanks to msas@telia.com for the report. 2008-07-13 08:45:17 +00:00
transactions.txt
tutorial01.txt Fixed #7605 -- Added a note about SQLite database creation to Tutorial 1. Thanks to pfctdayelise for the suggestion. 2008-07-13 12:16:11 +00:00
tutorial02.txt Fixed #7838 -- Corrected an invalid class name the 'classes' usage in the tutorial. Thanks kratorius for catching this. 2008-07-19 15:51:48 +00:00
tutorial03.txt
tutorial04.txt Fixed #6998 -- Corrected typo in Tutorial 4. Thanks, Peter Upfold. 2008-04-10 00:26:12 +00:00
unicode.txt
upload_handling.txt Fixed #7782 -- Corrected documentation to refer to chunks(), rather than the deprecated chunk(). 2008-07-19 01:07:17 +00:00
url_dispatch.txt Fixed #7191 -- Removed leading slashes in description of the patterns that a URLconf checks when GET data is present. Thanks, andrews. 2008-05-29 12:02:11 +00:00
webdesign.txt