diff options
Diffstat (limited to 'docs/topics/http')
| -rw-r--r-- | docs/topics/http/decorators.txt | 8 | ||||
| -rw-r--r-- | docs/topics/http/urls.txt | 2 | ||||
| -rw-r--r-- | docs/topics/http/views.txt | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/docs/topics/http/decorators.txt b/docs/topics/http/decorators.txt index 7bb62ae8f5..30883a45e8 100644 --- a/docs/topics/http/decorators.txt +++ b/docs/topics/http/decorators.txt @@ -1,5 +1,5 @@ =============== -View Decorators +View decorators =============== .. currentmodule:: django.views.decorators.http @@ -7,7 +7,7 @@ View Decorators 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 @@ headers; see .. currentmodule:: django.views.decorators.http -GZip Compression +GZip compression ================ .. function:: gzip_page() @@ -58,7 +58,7 @@ storage on the ``Accept-Encoding`` header. .. currentmodule:: django.views.decorators.vary -Vary Headers +Vary headers ============ The ``Vary`` header defines which request headers a cache mechanism should take diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt index cb37488780..1ff1c66542 100644 --- a/docs/topics/http/urls.txt +++ b/docs/topics/http/urls.txt @@ -462,7 +462,7 @@ included URLconf, as expected. .. _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 diff --git a/docs/topics/http/views.txt b/docs/topics/http/views.txt index 2818f42fde..562be533ab 100644 --- a/docs/topics/http/views.txt +++ b/docs/topics/http/views.txt @@ -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 @@ Let's step through this code one line at a time: ``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 |
