Ticket #15002: header-casing.diff

File header-casing.diff, 4.4 KB (added by Adam Vandenberg, 14 years ago)
  • docs/howto/custom-model-fields.txt

    diff --git a/docs/howto/custom-model-fields.txt b/docs/howto/custom-model-fields.txt
    index d67396d..7dbbf93 100644
    a b custom form field, and/or implementing the :meth:`formfield` method on  
    281281your field to return a form field class whose `to_python()` returns the
    282282correct datatype.
    283283
    284 Documenting your Custom Field
     284Documenting your custom field
    285285-----------------------------
    286286
    287287.. class:: django.db.models.Field
  • docs/howto/deployment/modwsgi.txt

    diff --git a/docs/howto/deployment/modwsgi.txt b/docs/howto/deployment/modwsgi.txt
    index e37c7e6..0a24db9 100644
    a b the details about how to use mod_wsgi. You'll probably want to start with the  
    2121.. _official mod_wsgi documentation: http://code.google.com/p/modwsgi/
    2222.. _installation and configuration documentation: http://code.google.com/p/modwsgi/wiki/InstallationInstructions
    2323
    24 Basic Configuration
     24Basic configuration
    2525===================
    2626
    2727Once you've got mod_wsgi installed and activated, edit your ``httpd.conf`` file
  • docs/ref/models/querysets.txt

    diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
    index 4428d0a..973ddff 100644
    a b SQL equivalents::  
    17461746
    17471747.. _aggregation-functions:
    17481748
    1749 Aggregation Functions
     1749Aggregation functions
    17501750---------------------
    17511751
    17521752Django provides the following aggregation functions in the
  • docs/topics/db/managers.txt

    diff --git a/docs/topics/db/managers.txt b/docs/topics/db/managers.txt
    index 5ebe0b1..9c5ed62 100644
    a b it into the inheritance hierarchy *after* the defaults::  
    276276
    277277.. _manager-types:
    278278
    279 Controlling Automatic Manager Types
     279Controlling automatic Manager types
    280280===================================
    281281
    282282This document has already mentioned a couple of places where Django creates a
    it will use :class:`django.db.models.Manager`.  
    326326    so that existing code will :doc:`continue to work </misc/api-stability>` in
    327327    future Django versions.
    328328
    329 Writing Correct Managers For Use In Automatic Manager Instances
     329Writing correct Managers for use in automatic Manager instances
    330330---------------------------------------------------------------
    331331
    332332As already suggested by the `django.contrib.gis` example, above, the
  • docs/topics/http/decorators.txt

    diff --git a/docs/topics/http/decorators.txt b/docs/topics/http/decorators.txt
    index 7bb62ae..30883a4 100644
    a b  
    11===============
    2 View Decorators
     2View decorators
    33===============
    44
    55.. currentmodule:: django.views.decorators.http
    View Decorators  
    77Django provides several decorators that can be applied to views to support
    88various HTTP features.
    99
    10 Allowed HTTP Methods
     10Allowed HTTP methods
    1111====================
    1212
    1313.. function:: require_http_methods(request_method_list)
    headers; see  
    4747
    4848.. currentmodule:: django.views.decorators.http
    4949
    50 GZip Compression
     50GZip compression
    5151================
    5252
    5353.. function:: gzip_page()
    storage on the ``Accept-Encoding`` header.  
    5858
    5959.. currentmodule:: django.views.decorators.vary
    6060
    61 Vary Headers
     61Vary headers
    6262============
    6363
    6464The ``Vary`` header defines which request headers a cache mechanism should take
  • docs/topics/http/urls.txt

    diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt
    index cb37488..1ff1c66 100644
    a b included URLconf, as expected.  
    462462
    463463.. _topics-http-defining-url-namespaces:
    464464
    465 Defining URL Namespaces
     465Defining URL namespaces
    466466-----------------------
    467467
    468468When you need to deploy multiple instances of a single application, it can be
  • docs/topics/http/views.txt

    diff --git a/docs/topics/http/views.txt b/docs/topics/http/views.txt
    index 2818f42..562be53 100644
    a b  
    11=============
    2 Writing Views
     2Writing views
    33=============
    44
    55A view function, or *view* for short, is simply a Python function that takes a
    Let's step through this code one line at a time:  
    5252    ``America/Chicago``. This probably isn't where you live, so you might want
    5353    to change it in your settings file.
    5454
    55 Mapping URLs to Views
     55Mapping URLs to views
    5656=====================
    5757
    5858So, to recap, this view function returns an HTML page that includes the current
Back to Top