Author: gwilson
Date: 2009-03-31 11:07:07 -0500 (Tue, 31 Mar 2009)
New Revision: 10256
Modified:
django/trunk/django/contrib/admin/__init__.py
django/trunk/django/contrib/admin/sites.py
django/trunk/django/contrib/auth/tests/views.py
django/trunk/django/contrib/formtools/test_urls.py
django/trunk/django/core/urlresolvers.py
django/trunk/docs/howto/deployment/modpython.txt
django/trunk/docs/ref/models/instances.txt
django/trunk/docs/releases/1.1-alpha-1.txt
django/trunk/docs/topics/http/urls.txt
django/trunk/tests/regressiontests/test_client_regress/models.py
Log:
Fixed #10553 -- Corrected several uses of `URLconf` in documentation and
comments, according to the Django style guide. Based on patch from rduffield.
Modified: django/trunk/django/contrib/admin/__init__.py
===================================================================
--- django/trunk/django/contrib/admin/__init__.py 2009-03-31 16:02:44 UTC
(rev 10255)
+++ django/trunk/django/contrib/admin/__init__.py 2009-03-31 16:07:07 UTC
(rev 10256)
@@ -15,7 +15,7 @@
may want.
"""
# Bail out if autodiscover didn't finish loading from a previous call so
- # that we avoid running autodiscover again when the URLConf is loaded by
+ # that we avoid running autodiscover again when the URLconf is loaded by
# the exception handler to resolve the handler500 view. This prevents an
# admin.py module with errors from re-registering models and raising a
# spurious AlreadyRegistered exception (see #8245).
Modified: django/trunk/django/contrib/admin/sites.py
===================================================================
--- django/trunk/django/contrib/admin/sites.py 2009-03-31 16:02:44 UTC (rev
10255)
+++ django/trunk/django/contrib/admin/sites.py 2009-03-31 16:07:07 UTC (rev
10256)
@@ -24,7 +24,7 @@
class AdminSite(object):
"""
An AdminSite object encapsulates an instance of the Django admin
application, ready
- to be hooked in to your URLConf. Models are registered with the AdminSite
using the
+ to be hooked in to your URLconf. Models are registered with the AdminSite
using the
register() method, and the root() method can then be used as a Django view
function
that presents a full admin interface for the collection of registered
models.
"""
Modified: django/trunk/django/contrib/auth/tests/views.py
===================================================================
--- django/trunk/django/contrib/auth/tests/views.py 2009-03-31 16:02:44 UTC
(rev 10255)
+++ django/trunk/django/contrib/auth/tests/views.py 2009-03-31 16:07:07 UTC
(rev 10256)
@@ -47,8 +47,8 @@
def test_confirm_invalid(self):
url, path = self._test_confirm_start()
- # Lets munge the token in the path, but keep the same length,
- # in case the URL conf will reject a different length
+ # Let's munge the token in the path, but keep the same length,
+ # in case the URLconf will reject a different length.
path = path[:-5] + ("0"*4) + path[-1]
response = self.client.get(path)
Modified: django/trunk/django/contrib/formtools/test_urls.py
===================================================================
--- django/trunk/django/contrib/formtools/test_urls.py 2009-03-31 16:02:44 UTC
(rev 10255)
+++ django/trunk/django/contrib/formtools/test_urls.py 2009-03-31 16:07:07 UTC
(rev 10256)
@@ -1,9 +1,7 @@
"""
-
-This is a urlconf to be loaded by tests.py. Add any urls needed
-for tests only.
-
+This is a URLconf to be loaded by tests.py. Add any URLs needed for tests only.
"""
+
from django.conf.urls.defaults import *
from django.contrib.formtools.tests import *
Modified: django/trunk/django/core/urlresolvers.py
===================================================================
--- django/trunk/django/core/urlresolvers.py 2009-03-31 16:02:44 UTC (rev
10255)
+++ django/trunk/django/core/urlresolvers.py 2009-03-31 16:07:07 UTC (rev
10256)
@@ -24,7 +24,7 @@
from django.utils.itercompat import reversed # Python 2.3 fallback
from sets import Set as set
-_resolver_cache = {} # Maps urlconf modules to RegexURLResolver instances.
+_resolver_cache = {} # Maps URLconf modules to RegexURLResolver instances.
_callable_cache = {} # Maps view and url pattern names to their view functions.
# SCRIPT_NAME prefixes for each thread are stored here. If there's no entry for
@@ -141,7 +141,7 @@
class RegexURLResolver(object):
def __init__(self, regex, urlconf_name, default_kwargs=None):
# regex is a string representing a regular expression.
- # urlconf_name is a string representing the module containing urlconfs.
+ # urlconf_name is a string representing the module containing URLconfs.
self.regex = re.compile(regex, re.UNICODE)
self.urlconf_name = urlconf_name
if not isinstance(urlconf_name, basestring):
Modified: django/trunk/docs/howto/deployment/modpython.txt
===================================================================
--- django/trunk/docs/howto/deployment/modpython.txt 2009-03-31 16:02:44 UTC
(rev 10255)
+++ django/trunk/docs/howto/deployment/modpython.txt 2009-03-31 16:07:07 UTC
(rev 10256)
@@ -58,12 +58,12 @@
django.root ...`` line. The value set on that line (the last item) should
match the string given in the ``<Location ...>`` directive. The effect of this
is that Django will automatically strip the ``/mysite`` string from the front
-of any URLs before matching them against your ``URLConf`` patterns. If you
-later move your site to live under ``/mysite2``, you will not have to change
-anything except the ``django.root`` option in the config file.
+of any URLs before matching them against your URLconf patterns. If you later
+move your site to live under ``/mysite2``, you will not have to change anything
+except the ``django.root`` option in the config file.
When using ``django.root`` you should make sure that what's left, after the
-prefix has been removed, begins with a slash. Your URLConf patterns that are
+prefix has been removed, begins with a slash. Your URLconf patterns that are
expecting an initial slash will then work correctly. In the above example,
since we want to send things like ``/mysite/admin/`` to ``/admin/``, we need
to remove the string ``/mysite`` from the beginning, so that is the
Modified: django/trunk/docs/ref/models/instances.txt
===================================================================
--- django/trunk/docs/ref/models/instances.txt 2009-03-31 16:02:44 UTC (rev
10255)
+++ django/trunk/docs/ref/models/instances.txt 2009-03-31 16:07:07 UTC (rev
10256)
@@ -290,7 +290,7 @@
The problem with the way we wrote ``get_absolute_url()`` above is that it
slightly violates the DRY principle: the URL for this object is defined both
-in the URLConf file and in the model.
+in the URLconf file and in the model.
You can further decouple your models from the URLconf using the ``permalink``
decorator:
Modified: django/trunk/docs/releases/1.1-alpha-1.txt
===================================================================
--- django/trunk/docs/releases/1.1-alpha-1.txt 2009-03-31 16:02:44 UTC (rev
10255)
+++ django/trunk/docs/releases/1.1-alpha-1.txt 2009-03-31 16:07:07 UTC (rev
10256)
@@ -82,7 +82,7 @@
(sending admin requests to the ``admin.site.root`` view still works, but URLs
in the admin will not be "reversible" when configured this way).
-* The ``include()`` function in Django URLConf modules can now accept sequences
+* The ``include()`` function in Django URLconf modules can now accept sequences
of URL patterns (generated by ``patterns()``) in addition to module names.
* Instances of Django forms (see `the forms overview <topics-forms-index>`_ now
Modified: django/trunk/docs/topics/http/urls.txt
===================================================================
--- django/trunk/docs/topics/http/urls.txt 2009-03-31 16:02:44 UTC (rev
10255)
+++ django/trunk/docs/topics/http/urls.txt 2009-03-31 16:07:07 UTC (rev
10256)
@@ -623,13 +623,13 @@
.. admonition:: Make sure your views are all correct
As part of working out which URL names map to which patterns, the
- ``reverse()`` function has to import all of your URLConf files and examine
+ ``reverse()`` function has to import all of your URLconf files and examine
the name of each view. This involves importing each view function. If
there are *any* errors whilst importing any of your view functions, it
will cause ``reverse()`` to raise an error, even if that view function is
not the one you are trying to reverse.
- Make sure that any views you reference in your URLConf files exist and can
+ Make sure that any views you reference in your URLconf files exist and can
be imported correctly. Do not include lines that reference views you
haven't written yet, because those views will not be importable.
Modified: django/trunk/tests/regressiontests/test_client_regress/models.py
===================================================================
--- django/trunk/tests/regressiontests/test_client_regress/models.py
2009-03-31 16:02:44 UTC (rev 10255)
+++ django/trunk/tests/regressiontests/test_client_regress/models.py
2009-03-31 16:07:07 UTC (rev 10256)
@@ -444,7 +444,7 @@
urls = 'regressiontests.test_client_regress.urls'
def test_urlconf_was_changed(self):
- "TestCase can enforce a custom URLConf on a per-test basis"
+ "TestCase can enforce a custom URLconf on a per-test basis"
url = reverse('arg_view', args=['somename'])
self.assertEquals(url, '/arg_view/somename/')
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---