diff options
| author | Collin Anderson <cmawebsite@gmail.com> | 2014-08-13 14:09:31 -0400 |
|---|---|---|
| committer | Collin Anderson <collin@onetencommunications.com> | 2014-08-13 14:20:15 -0400 |
| commit | e5376999fa9c75efe42ba963a00e2552f66cab9c (patch) | |
| tree | eec0c24931a8fc0b113a1f6f0a61265ab813c594 /docs/ref | |
| parent | 468236889fe0af8bf49ca2fe0ce3353bc71f0685 (diff) | |
Refs #23276 -- Added missing url() in some places.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/class-based-views/mixins-multiple-object.txt | 2 | ||||
| -rw-r--r-- | docs/ref/contrib/admin/index.txt | 4 | ||||
| -rw-r--r-- | docs/ref/contrib/formtools/form-preview.txt | 2 | ||||
| -rw-r--r-- | docs/ref/contrib/syndication.txt | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/docs/ref/class-based-views/mixins-multiple-object.txt b/docs/ref/class-based-views/mixins-multiple-object.txt index b3de1a7a94..c5acff6208 100644 --- a/docs/ref/class-based-views/mixins-multiple-object.txt +++ b/docs/ref/class-based-views/mixins-multiple-object.txt @@ -15,7 +15,7 @@ MultipleObjectMixin * Use the ``page`` parameter in the URLconf. For example, this is what your URLconf might look like:: - (r'^objects/page(?P<page>[0-9]+)/$', PaginatedView.as_view()) + url(r'^objects/page(?P<page>[0-9]+)/$', PaginatedView.as_view()), * Pass the page number via the ``page`` query-string parameter. For example, a URL would look like this:: diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt index 26c43b9743..4c0543cd1f 100644 --- a/docs/ref/contrib/admin/index.txt +++ b/docs/ref/contrib/admin/index.txt @@ -1456,7 +1456,7 @@ templates used by the :class:`ModelAdmin` views: Notice the wrapped view in the fifth line above:: - (r'^my_view/$', self.admin_site.admin_view(self.my_view)) + url(r'^my_view/$', self.admin_site.admin_view(self.my_view)) This wrapping will protect ``self.my_view`` from unauthorized access and will apply the ``django.views.decorators.cache.never_cache`` decorator to @@ -1466,7 +1466,7 @@ templates used by the :class:`ModelAdmin` views: performed, you can pass a ``cacheable=True`` argument to ``AdminSite.admin_view()``:: - (r'^my_view/$', self.admin_site.admin_view(self.my_view, cacheable=True)) + url(r'^my_view/$', self.admin_site.admin_view(self.my_view, cacheable=True)) .. method:: ModelAdmin.get_form(request, obj=None, **kwargs) diff --git a/docs/ref/contrib/formtools/form-preview.txt b/docs/ref/contrib/formtools/form-preview.txt index 6a30fe9d9f..2c8d44459f 100644 --- a/docs/ref/contrib/formtools/form-preview.txt +++ b/docs/ref/contrib/formtools/form-preview.txt @@ -77,7 +77,7 @@ How to use ``FormPreview`` ...and add the following line to the appropriate model in your URLconf:: - (r'^post/$', SomeModelFormPreview(SomeModelForm)), + url(r'^post/$', SomeModelFormPreview(SomeModelForm)), where ``SomeModelForm`` is a Form or ModelForm class for the model. diff --git a/docs/ref/contrib/syndication.txt b/docs/ref/contrib/syndication.txt index 3310edd343..7e31eb07e9 100644 --- a/docs/ref/contrib/syndication.txt +++ b/docs/ref/contrib/syndication.txt @@ -217,7 +217,7 @@ The police beat feeds could be accessible via URLs like this: These can be matched with a :doc:`URLconf </topics/http/urls>` line such as:: - (r'^beats/(?P<beat_id>[0-9]+)/rss/$', BeatFeed()), + url(r'^beats/(?P<beat_id>[0-9]+)/rss/$', BeatFeed()), Like a view, the arguments in the URL are passed to the ``get_object()`` method along with the request object. |
