Author: timo Date: 2011-01-03 07:29:17 -0600 (Mon, 03 Jan 2011) New Revision: 15135
Modified: django/trunk/docs/howto/custom-model-fields.txt django/trunk/docs/howto/deployment/modwsgi.txt django/trunk/docs/ref/models/querysets.txt django/trunk/docs/topics/db/managers.txt django/trunk/docs/topics/http/decorators.txt django/trunk/docs/topics/http/urls.txt django/trunk/docs/topics/http/views.txt Log: Fixed #15002 - Fix title casing to conform to style guidelines. thanks adamv. Modified: django/trunk/docs/howto/custom-model-fields.txt =================================================================== --- django/trunk/docs/howto/custom-model-fields.txt 2011-01-03 13:19:59 UTC (rev 15134) +++ django/trunk/docs/howto/custom-model-fields.txt 2011-01-03 13:29:17 UTC (rev 15135) @@ -281,7 +281,7 @@ your field to return a form field class whose `to_python()` returns the correct datatype. -Documenting your Custom Field +Documenting your custom field ----------------------------- .. class:: django.db.models.Field Modified: django/trunk/docs/howto/deployment/modwsgi.txt =================================================================== --- django/trunk/docs/howto/deployment/modwsgi.txt 2011-01-03 13:19:59 UTC (rev 15134) +++ django/trunk/docs/howto/deployment/modwsgi.txt 2011-01-03 13:29:17 UTC (rev 15135) @@ -21,7 +21,7 @@ .. _official mod_wsgi documentation: http://code.google.com/p/modwsgi/ .. _installation and configuration documentation: http://code.google.com/p/modwsgi/wiki/InstallationInstructions -Basic Configuration +Basic configuration =================== Once you've got mod_wsgi installed and activated, edit your ``httpd.conf`` file Modified: django/trunk/docs/ref/models/querysets.txt =================================================================== --- django/trunk/docs/ref/models/querysets.txt 2011-01-03 13:19:59 UTC (rev 15134) +++ django/trunk/docs/ref/models/querysets.txt 2011-01-03 13:29:17 UTC (rev 15135) @@ -1746,7 +1746,7 @@ .. _aggregation-functions: -Aggregation Functions +Aggregation functions --------------------- Django provides the following aggregation functions in the Modified: django/trunk/docs/topics/db/managers.txt =================================================================== --- django/trunk/docs/topics/db/managers.txt 2011-01-03 13:19:59 UTC (rev 15134) +++ django/trunk/docs/topics/db/managers.txt 2011-01-03 13:29:17 UTC (rev 15135) @@ -276,7 +276,7 @@ .. _manager-types: -Controlling Automatic Manager Types +Controlling automatic Manager types =================================== This document has already mentioned a couple of places where Django creates a @@ -326,7 +326,7 @@ so that existing code will :doc:`continue to work </misc/api-stability>` in future Django versions. -Writing Correct Managers For Use In Automatic Manager Instances +Writing correct Managers for use in automatic Manager instances --------------------------------------------------------------- As already suggested by the `django.contrib.gis` example, above, the Modified: django/trunk/docs/topics/http/decorators.txt =================================================================== --- django/trunk/docs/topics/http/decorators.txt 2011-01-03 13:19:59 UTC (rev 15134) +++ django/trunk/docs/topics/http/decorators.txt 2011-01-03 13:29:17 UTC (rev 15135) @@ -1,5 +1,5 @@ =============== -View Decorators +View decorators =============== .. currentmodule:: django.views.decorators.http @@ -7,7 +7,7 @@ Django provides several decorators that can be applied to views to support various HTTP features. -Allowed HTTP Methods +Allowed HTTP methods ==================== .. function:: require_http_methods(request_method_list) @@ -47,7 +47,7 @@ .. currentmodule:: django.views.decorators.http -GZip Compression +GZip compression ================ .. function:: gzip_page() @@ -58,7 +58,7 @@ .. currentmodule:: django.views.decorators.vary -Vary Headers +Vary headers ============ The ``Vary`` header defines which request headers a cache mechanism should take Modified: django/trunk/docs/topics/http/urls.txt =================================================================== --- django/trunk/docs/topics/http/urls.txt 2011-01-03 13:19:59 UTC (rev 15134) +++ django/trunk/docs/topics/http/urls.txt 2011-01-03 13:29:17 UTC (rev 15135) @@ -462,7 +462,7 @@ .. _topics-http-defining-url-namespaces: -Defining URL Namespaces +Defining URL namespaces ----------------------- When you need to deploy multiple instances of a single application, it can be Modified: django/trunk/docs/topics/http/views.txt =================================================================== --- django/trunk/docs/topics/http/views.txt 2011-01-03 13:19:59 UTC (rev 15134) +++ django/trunk/docs/topics/http/views.txt 2011-01-03 13:29:17 UTC (rev 15135) @@ -1,5 +1,5 @@ ============= -Writing Views +Writing views ============= A view function, or *view* for short, is simply a Python function that takes a @@ -52,7 +52,7 @@ ``America/Chicago``. This probably isn't where you live, so you might want to change it in your settings file. -Mapping URLs to Views +Mapping URLs to views ===================== So, to recap, this view function returns an HTML page that includes the current -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.
