Author: gwilson
Date: 2009-03-31 11:09:22 -0500 (Tue, 31 Mar 2009)
New Revision: 10257

Modified:
   django/branches/releases/1.0.X/django/contrib/admin/__init__.py
   django/branches/releases/1.0.X/django/contrib/admin/sites.py
   django/branches/releases/1.0.X/django/contrib/auth/tests/views.py
   django/branches/releases/1.0.X/django/contrib/formtools/test_urls.py
   django/branches/releases/1.0.X/django/core/urlresolvers.py
   django/branches/releases/1.0.X/docs/howto/deployment/modpython.txt
   django/branches/releases/1.0.X/docs/ref/models/instances.txt
   django/branches/releases/1.0.X/docs/topics/http/urls.txt
   
django/branches/releases/1.0.X/tests/regressiontests/test_client_regress/models.py
Log:
[1.0.X]: Fixed #10553 -- Corrected several uses of `URLconf` in documentation 
and comments, according to the Django style guide.  Based on patch from 
rduffield.

Backport of r10256 from trunk.


Modified: django/branches/releases/1.0.X/django/contrib/admin/__init__.py
===================================================================
--- django/branches/releases/1.0.X/django/contrib/admin/__init__.py     
2009-03-31 16:07:07 UTC (rev 10256)
+++ django/branches/releases/1.0.X/django/contrib/admin/__init__.py     
2009-03-31 16:09:22 UTC (rev 10257)
@@ -13,7 +13,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/branches/releases/1.0.X/django/contrib/admin/sites.py
===================================================================
--- django/branches/releases/1.0.X/django/contrib/admin/sites.py        
2009-03-31 16:07:07 UTC (rev 10256)
+++ django/branches/releases/1.0.X/django/contrib/admin/sites.py        
2009-03-31 16:09:22 UTC (rev 10257)
@@ -25,7 +25,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/branches/releases/1.0.X/django/contrib/auth/tests/views.py
===================================================================
--- django/branches/releases/1.0.X/django/contrib/auth/tests/views.py   
2009-03-31 16:07:07 UTC (rev 10256)
+++ django/branches/releases/1.0.X/django/contrib/auth/tests/views.py   
2009-03-31 16:09:22 UTC (rev 10257)
@@ -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/branches/releases/1.0.X/django/contrib/formtools/test_urls.py
===================================================================
--- django/branches/releases/1.0.X/django/contrib/formtools/test_urls.py        
2009-03-31 16:07:07 UTC (rev 10256)
+++ django/branches/releases/1.0.X/django/contrib/formtools/test_urls.py        
2009-03-31 16:09:22 UTC (rev 10257)
@@ -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/branches/releases/1.0.X/django/core/urlresolvers.py
===================================================================
--- django/branches/releases/1.0.X/django/core/urlresolvers.py  2009-03-31 
16:07:07 UTC (rev 10256)
+++ django/branches/releases/1.0.X/django/core/urlresolvers.py  2009-03-31 
16:09:22 UTC (rev 10257)
@@ -23,7 +23,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
@@ -140,7 +140,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
         self.callback = None

Modified: django/branches/releases/1.0.X/docs/howto/deployment/modpython.txt
===================================================================
--- django/branches/releases/1.0.X/docs/howto/deployment/modpython.txt  
2009-03-31 16:07:07 UTC (rev 10256)
+++ django/branches/releases/1.0.X/docs/howto/deployment/modpython.txt  
2009-03-31 16:09:22 UTC (rev 10257)
@@ -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/branches/releases/1.0.X/docs/ref/models/instances.txt
===================================================================
--- django/branches/releases/1.0.X/docs/ref/models/instances.txt        
2009-03-31 16:07:07 UTC (rev 10256)
+++ django/branches/releases/1.0.X/docs/ref/models/instances.txt        
2009-03-31 16:09:22 UTC (rev 10257)
@@ -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/branches/releases/1.0.X/docs/topics/http/urls.txt
===================================================================
--- django/branches/releases/1.0.X/docs/topics/http/urls.txt    2009-03-31 
16:07:07 UTC (rev 10256)
+++ django/branches/releases/1.0.X/docs/topics/http/urls.txt    2009-03-31 
16:09:22 UTC (rev 10257)
@@ -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/branches/releases/1.0.X/tests/regressiontests/test_client_regress/models.py
===================================================================
--- 
django/branches/releases/1.0.X/tests/regressiontests/test_client_regress/models.py
  2009-03-31 16:07:07 UTC (rev 10256)
+++ 
django/branches/releases/1.0.X/tests/regressiontests/test_client_regress/models.py
  2009-03-31 16:09:22 UTC (rev 10257)
@@ -342,7 +342,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
-~----------~----~----~----~------~----~------~--~---

Reply via email to