Skip to content

Commit

Permalink
Fixed #16584 -- Fixed a bunch of typos in code comments. Thanks, Bern…
Browse files Browse the repository at this point in the history
…hard Essl.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16598 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
jezdez committed Aug 12, 2011
1 parent 4a993fa commit bce890a
Show file tree
Hide file tree
Showing 28 changed files with 35 additions and 35 deletions.
6 changes: 3 additions & 3 deletions django/conf/global_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
TEMPLATE_DEBUG = False

# Whether the framework should propagate raw exceptions rather than catching
# them. This is useful under some testing siutations and should never be used
# them. This is useful under some testing situations and should never be used
# on a live site.
DEBUG_PROPAGATE_EXCEPTIONS = False

Expand Down Expand Up @@ -389,7 +389,7 @@
# Boolean that sets whether to add thousand separator when formatting numbers
USE_THOUSAND_SEPARATOR = False

# Number of digits that will be together, when spliting them by
# Number of digits that will be together, when splitting them by
# THOUSAND_SEPARATOR. 0 means no grouping, 3 means splitting by thousands...
NUMBER_GROUPING = 0

Expand Down Expand Up @@ -506,7 +506,7 @@
# MESSAGES #
############

# Class to use as messges backend
# Class to use as messages backend
MESSAGE_STORAGE = 'django.contrib.messages.storage.fallback.FallbackStorage'

# Default values of MESSAGE_LEVEL and MESSAGE_TAGS are defined within
Expand Down
2 changes: 1 addition & 1 deletion django/contrib/comments/views/comments.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def post_comment(request, next=None, using=None):
# preview templates, so we have to preserve that format.
"comments/%s_%s_preview.html" % (model._meta.app_label, model._meta.module_name),
"comments/%s_preview.html" % model._meta.app_label,
# Now the usual directory based template heirarchy.
# Now the usual directory based template hierarchy.
"comments/%s/%s/preview.html" % (model._meta.app_label, model._meta.module_name),
"comments/%s/preview.html" % model._meta.app_label,
"comments/preview.html",
Expand Down
2 changes: 1 addition & 1 deletion django/contrib/comments/views/moderation.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def approve(request, comment_id, next=None):
)

# The following functions actually perform the various flag/aprove/delete
# actions. They've been broken out into seperate functions to that they
# actions. They've been broken out into separate functions to that they
# may be called from admin actions.

def perform_flag(request, comment):
Expand Down
2 changes: 1 addition & 1 deletion django/contrib/formtools/wizard/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def get_initkwargs(cls, form_list, initial_dict=None,
# if not, add the form with a zero based counter as unicode
init_form_list[unicode(i)] = form

# walk through the ne created list of forms
# walk through the new created list of forms
for form in init_form_list.itervalues():
if issubclass(form, formsets.BaseFormSet):
# if the element is based on BaseFormSet (FormSet/ModelFormSet)
Expand Down
2 changes: 1 addition & 1 deletion django/contrib/gis/db/backends/postgis/operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ def spatial_lookup_sql(self, lvalue, lookup_type, value, field, qn):
op = op(self.geom_func_prefix, value[1])
elif lookup_type in self.distance_functions and lookup_type != 'dwithin':
if not field.geography and field.geodetic(self.connection):
# Geodetic distances are only availble from Points to
# Geodetic distances are only available from Points to
# PointFields on PostGIS 1.4 and below.
if not self.connection.ops.geography:
if field.geom_type != 'POINT':
Expand Down
2 changes: 1 addition & 1 deletion django/contrib/gis/db/backends/spatialite/operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class SpatiaLiteOperations(DatabaseOperations, BaseSpatialOperations):
'contains' : SpatiaLiteFunction('Contains'),
'intersects' : SpatiaLiteFunction('Intersects'),
'relate' : (SpatiaLiteRelate, basestring),
# Retruns true if B's bounding box completely contains A's bounding box.
# Returns true if B's bounding box completely contains A's bounding box.
'contained' : SpatiaLiteFunction('MbrWithin'),
# Returns true if A's bounding box completely contains B's bounding box.
'bbcontains' : SpatiaLiteFunction('MbrContains'),
Expand Down
4 changes: 2 additions & 2 deletions django/contrib/gis/gdal/envelope.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __init__(self, *args):
else:
raise TypeError('Incorrect type of argument: %s' % str(type(args[0])))
elif len(args) == 4:
# Individiual parameters passed in.
# Individual parameters passed in.
# Thanks to ww for the help
self._from_sequence(map(float, args))
else:
Expand Down Expand Up @@ -125,7 +125,7 @@ def expand_to_include(self, *args):
# An x and an y parameter were passed in
return self.expand_to_include((args[0], args[1], args[0], args[1]))
elif len(args) == 4:
# Individiual parameters passed in.
# Individual parameters passed in.
return self.expand_to_include(args)
else:
raise OGRException('Incorrect number (%d) of arguments.' % len(args[0]))
Expand Down
2 changes: 1 addition & 1 deletion django/contrib/gis/geos/prototypes/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ class ThreadLocalIO(threading.local):
thread_context = ThreadLocalIO()

# These module-level routines return the I/O object that is local to the
# the thread. If the I/O object does not exist yet it will be initialized.
# thread. If the I/O object does not exist yet it will be initialized.
def wkt_r():
if not thread_context.wkt_r:
thread_context.wkt_r = _WKTReader()
Expand Down
2 changes: 1 addition & 1 deletion django/contrib/gis/maps/google/zoom.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __init__(self, num_zoom=19, tilesize=256):
# Getting the degrees and radians per pixel, and the 1/2 the number of
# for every zoom level.
self._degpp.append(z / 360.) # degrees per pixel
self._radpp.append(z / (2 * pi)) # radians per pixl
self._radpp.append(z / (2 * pi)) # radians per pixel
self._npix.append(z / 2) # number of pixels to center of tile

# Multiplying `z` by 2 for the next iteration.
Expand Down
2 changes: 1 addition & 1 deletion django/contrib/gis/tests/geoapp/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ def test27_snap_to_grid(self):
'12.40500 43.94833,12.40889 43.95499,12.41580 43.95795)))')
sm = Country.objects.create(name='San Marino', mpoly=fromstr(wkt))

# Because floating-point arithmitic isn't exact, we set a tolerance
# Because floating-point arithmetic isn't exact, we set a tolerance
# to pass into GEOS `equals_exact`.
tol = 0.000000001

Expand Down
2 changes: 1 addition & 1 deletion django/contrib/gis/tests/relatedapp/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def test06_f_expressions(self):

# Now creating a second Parcel where the borders are the same, just
# in different coordinate systems. The center points are also the
# the same (but in different coordinate systems), and this time they
# same (but in different coordinate systems), and this time they
# actually correspond to the centroid of the border.
c1 = b1.centroid
c2 = c1.transform(2276, clone=True)
Expand Down
2 changes: 1 addition & 1 deletion django/contrib/localflavor/cz/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def clean(self, value):
# remainder is equal:
# 0 or 10: last digit is 1
# 1: last digit is 0
# in other case, last digin is 11 - remainder
# in other case, last digit is 11 - remainder

if (not remainder % 10 and check == 1) or \
(remainder == 1 and check == 0) or \
Expand Down
2 changes: 1 addition & 1 deletion django/core/management/commands/syncdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def model_installed(model):

if verbosity >= 1:
print "Installing indexes ..."
# Install SQL indicies for all newly created models
# Install SQL indices for all newly created models
for app_name, model_list in manifest.items():
for model in model_list:
if model in created_models:
Expand Down
2 changes: 1 addition & 1 deletion django/core/management/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def sql_create(app, style, connection):

if connection.settings_dict['ENGINE'] == 'django.db.backends.dummy':
# This must be the "dummy" database backend, which means the user
# hasn't set ENGINE for the databse.
# hasn't set ENGINE for the database.
raise CommandError("Django doesn't know which syntax to use for your SQL statements,\n" +
"because you haven't specified the ENGINE setting for the database.\n" +
"Edit your settings file and change DATBASES['default']['ENGINE'] to something like\n" +
Expand Down
2 changes: 1 addition & 1 deletion django/db/models/deletion.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def delete(self):
self.data[model] = sorted(instances, key=attrgetter("pk"))

# if possible, bring the models in an order suitable for databases that
# don't support transactions or cannot defer contraint checks until the
# don't support transactions or cannot defer constraint checks until the
# end of a transaction.
self.sort()

Expand Down
2 changes: 1 addition & 1 deletion django/forms/formsets.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def compare_ordering_key(k):
return (1, 0) # +infinity, larger than any number
return (0, k[1])
self._ordering.sort(key=compare_ordering_key)
# Return a list of form.cleaned_data dicts in the order spcified by
# Return a list of form.cleaned_data dicts in the order specified by
# the form data.
return [self.forms[i[0]] for i in self._ordering]
ordered_forms = property(_get_ordered_forms)
Expand Down
4 changes: 2 additions & 2 deletions django/forms/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def model_to_dict(instance, fields=None, exclude=None):
if exclude and f.name in exclude:
continue
if isinstance(f, ManyToManyField):
# If the object doesn't have a primry key yet, just use an empty
# If the object doesn't have a primary key yet, just use an empty
# list for its m2m fields. Calling f.value_from_object will raise
# an exception.
if instance.pk is None:
Expand Down Expand Up @@ -288,7 +288,7 @@ def _get_validation_exclusions(self):
# Exclude empty fields that are not required by the form, if the
# underlying model field is required. This keeps the model field
# from raising a required error. Note: don't exclude the field from
# validaton if the model field allows blanks. If it does, the blank
# validation if the model field allows blanks. If it does, the blank
# value may be included in a unique check, so cannot be excluded
# from validation.
else:
Expand Down
2 changes: 1 addition & 1 deletion django/http/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def _set_upload_handlers(self, upload_handlers):

def _get_upload_handlers(self):
if not self._upload_handlers:
# If thre are no upload handlers defined, initialize them from settings.
# If there are no upload handlers defined, initialize them from settings.
self._initialize_handlers()
return self._upload_handlers

Expand Down
2 changes: 1 addition & 1 deletion django/middleware/gzip.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def process_response(self, request, response):
if response.has_header('Content-Encoding'):
return response

# MSIE have issues with gzipped respones of various content types.
# MSIE have issues with gzipped response of various content types.
if "msie" in request.META.get('HTTP_USER_AGENT', '').lower():
ctype = response.get('Content-Type', '').lower()
if not ctype.startswith("text/") or "javascript" in ctype:
Expand Down
2 changes: 1 addition & 1 deletion django/test/_doctest.py
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ class DocTestParser:
^ (?P<msg> \w+ .*) # a line *starts* with alphanum.
""", re.VERBOSE | re.MULTILINE | re.DOTALL)

# A callable returning a true value iff its argument is a blank line
# A callable returning a true value if its argument is a blank line
# or contains a single comment.
_IS_BLANK_OR_COMMENT = re.compile(r'^[ ]*(#.*)?$').match

Expand Down
2 changes: 1 addition & 1 deletion extras/csrf_migration_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
#
# - It's impossible to programmatically determine which forms should and should
# not have the token added. The developer must decide when to do this,
# ensuring that the token is only added to internally targetted forms.
# ensuring that the token is only added to internally targeted forms.
#
# - It's impossible to programmatically work out when a template is used. The
# attempts to trace back to view functions are guesses, and could easily fail
Expand Down
2 changes: 1 addition & 1 deletion tests/modeltests/lookup/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def test_values(self):
def test_values_list(self):
# values_list() is similar to values(), except that the results are
# returned as a list of tuples, rather than a list of dictionaries.
# Within each tuple, the order of the elemnts is the same as the order
# Within each tuple, the order of the elements is the same as the order
# of fields in the values_list() call.
identity = lambda x:x
self.assertQuerysetEqual(Article.objects.values_list('headline'),
Expand Down
2 changes: 1 addition & 1 deletion tests/modeltests/unmanaged_models/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from django.db import models

# All of these models are creatd in the database by Django.
# All of these models are created in the database by Django.

class A01(models.Model):
f_a = models.CharField(max_length=10, db_index=True)
Expand Down
6 changes: 3 additions & 3 deletions tests/regressiontests/admin_widgets/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def test_relations_to_non_primary_key(self):
)

def test_fk_related_model_not_in_admin(self):
# FK to a model not registered with admin site. Raw ID widget shoud
# FK to a model not registered with admin site. Raw ID widget should
# have no magnifying glass link. See #16542
big_honeycomb = models.Honeycomb.objects.create(location='Old tree')
big_honeycomb.bee_set.create()
Expand All @@ -287,7 +287,7 @@ def test_fk_related_model_not_in_admin(self):
)

def test_fk_to_self_model_not_in_admin(self):
# FK to self, not registered with admin site. Raw ID widget shoud have
# FK to self, not registered with admin site. Raw ID widget should have
# no magnifying glass link. See #16542
subject1 = models.Individual.objects.create(name='Subject #1')
models.Individual.objects.create(name='Child', parent=subject1)
Expand Down Expand Up @@ -345,7 +345,7 @@ def test_render(self):

def test_m2m_related_model_not_in_admin(self):
# M2M relationship with model not registered with admin site. Raw ID
# widget shoud have no magnifying glass link. See #16542
# widget should have no magnifying glass link. See #16542
consultor1 = models.Advisor.objects.create(name='Rockstar Techie')

c1 = models.Company.objects.create(name='Doodle')
Expand Down
2 changes: 1 addition & 1 deletion tests/regressiontests/aggregation_regress/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ def test_more_more_more(self):
)

# Regression for #10766 - Shouldn't be able to reference an aggregate
# fields in an an aggregate() call.
# fields in an aggregate() call.
self.assertRaises(
FieldError,
lambda: Book.objects.annotate(mean_age=Avg('authors__age')).annotate(Avg('mean_age'))
Expand Down
4 changes: 2 additions & 2 deletions tests/regressiontests/cache/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def test_has_key(self):
self.assertEqual(self.cache.has_key("goodbye1"), False)

def test_in(self):
# The in operator can be used to inspet cache contents
# The in operator can be used to inspect cache contents
self.cache.set("hello2", "goodbye2")
self.assertEqual("hello2" in self.cache, True)
self.assertEqual("goodbye2" in self.cache, False)
Expand Down Expand Up @@ -338,7 +338,7 @@ def test_unicode(self):
self.assertEqual(self.cache.get(key), value)

def test_binary_string(self):
# Binary strings should be cachable
# Binary strings should be cacheable
from zlib import compress, decompress
value = 'value_to_be_compressed'
compressed_value = compress(value)
Expand Down
2 changes: 1 addition & 1 deletion tests/regressiontests/generic_views/dates.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ def test_day_view_allow_future(self):
self.assertEqual(list(res.context['book_list']), [b])
self.assertEqual(res.context['day'], future)

# allow_future but not allow_empty, next/prev amust be valid
# allow_future but not allow_empty, next/prev must be valid
self.assertEqual(res.context['next_day'], None)
self.assertEqual(res.context['previous_day'], datetime.date(2008, 10, 1))

Expand Down
2 changes: 1 addition & 1 deletion tests/regressiontests/multiple_database/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -1085,7 +1085,7 @@ def test_database_routing(self):
self.assertEqual(list(pro.authors.values_list('name', flat=True)), [u'Marty Alchin'])
self.assertEqual(pro.editor.name, u'Marty Alchin')

# get_or_create is a special case. The get needs to be targetted at
# get_or_create is a special case. The get needs to be targeted at
# the write database in order to avoid potential transaction
# consistency problems
book, created = Book.objects.get_or_create(title="Pro Django")
Expand Down

0 comments on commit bce890a

Please sign in to comment.