Commit 02b6f164 authored by Karen Tracey's avatar Karen Tracey
Browse files

[1.0.X] Fixed #11066 -- Corrected 11 duplicate "the"s found in docs and code...

[1.0.X] Fixed #11066 -- Corrected 11 duplicate "the"s found in docs and code comments. Thanks kaikuehne. 

Merge of applicable parts of r10801 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10802 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 1f5626d0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ elif os.name == 'posix':
else:
    raise ImportError('Unsupported OS "%s"' % os.name)

# Using the ctypes `find_library` utility to find the the path to the GEOS 
# Using the ctypes `find_library` utility to find the path to the GEOS 
# shared library.  This is better than manually specifiying each library name 
# and extension (e.g., libgeos_c.[so|so.1|dylib].).
if lib_names: 
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ from decimal import Decimal
class MeasureBase(object):
    def default_units(self, kwargs):
        """
        Return the unit value and the the default units specified
        Return the unit value and the default units specified
        from the given keyword arguments dictionary.
        """
        val = 0.0
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
</style>
<!--[if IE]>
<style type="text/css">
  /* This fixes the the mouse offset issues in IE. */
  /* This fixes the mouse offset issues in IE. */
  #{{ id }}_admin_map { position: static; vertical-align: top; }
  /* `font-size: 0` fixes the 1px border between tiles, but borks LayerSwitcher.
      Thus, this is disabled until a better fix is found.
+1 −1
Original line number Diff line number Diff line
@@ -151,7 +151,7 @@ class MemoryFileUploadHandler(FileUploadHandler):
        Use the content_length to signal whether or not this handler should be in use.
        """
        # Check the content-length header to see if we should
        # If the the post is too large, we cannot use the Memory handler.
        # If the post is too large, we cannot use the Memory handler.
        if content_length > settings.FILE_UPLOAD_MAX_MEMORY_SIZE:
            self.activated = False
        else:
+1 −1
Original line number Diff line number Diff line
@@ -1102,7 +1102,7 @@ def widthratio(parser, token):

        <img src='bar.gif' height='10' width='{% widthratio this_value max_value 100 %}' />

    Above, if ``this_value`` is 175 and ``max_value`` is 200, the the image in
    Above, if ``this_value`` is 175 and ``max_value`` is 200, the image in
    the above example will be 88 pixels wide (because 175/200 = .875;
    .875 * 100 = 87.5 which is rounded up to 88).
    """
Loading