mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	[1.7.x] Fixed typos using https://github.com/vlajos/misspell_fixer
Backport of a71a2ea756 from master
			
			
This commit is contained in:
		| @@ -15,7 +15,7 @@ function findForm(node) { | ||||
| window.SelectFilter = { | ||||
|     init: function(field_id, field_name, is_stacked, admin_static_prefix) { | ||||
|         if (field_id.match(/__prefix__/)){ | ||||
|             // Don't intialize on empty forms. | ||||
|             // Don't initialize on empty forms. | ||||
|             return; | ||||
|         } | ||||
|         var from_box = document.getElementById(field_id); | ||||
|   | ||||
| @@ -386,7 +386,7 @@ class PasswordResetFormTest(TestCase): | ||||
|         self.assertFalse(form.is_valid()) | ||||
|         self.assertEqual(form['email'].errors, [_('Enter a valid email address.')]) | ||||
|  | ||||
|     def test_nonexistant_email(self): | ||||
|     def test_nonexistent_email(self): | ||||
|         """ | ||||
|         Test nonexistent email address. This should not fail because it would | ||||
|         expose information about registered users. | ||||
|   | ||||
| @@ -14,7 +14,7 @@ class GeoQuery(sql.Query): | ||||
|     """ | ||||
|     A single spatial SQL query. | ||||
|     """ | ||||
|     # Overridding the valid query terms. | ||||
|     # Overriding the valid query terms. | ||||
|     query_terms = ALL_TERMS | ||||
|     aggregates_module = gis_aggregates | ||||
|  | ||||
|   | ||||
| @@ -1,5 +1,5 @@ | ||||
| """ | ||||
|   The Spatial Reference class, represensents OGR Spatial Reference objects. | ||||
|   The Spatial Reference class, represents OGR Spatial Reference objects. | ||||
|  | ||||
|   Example: | ||||
|   >>> from django.contrib.gis.gdal import SpatialReference | ||||
|   | ||||
| @@ -187,7 +187,7 @@ class Deserializer(base.Deserializer): | ||||
|         m2m_data = {} | ||||
|  | ||||
|         model_fields = Model._meta.get_all_field_names() | ||||
|         # Deseralize each field. | ||||
|         # Deserialize each field. | ||||
|         for field_node in node.getElementsByTagName("field"): | ||||
|             # If the field is missing the name attribute, bail (are you | ||||
|             # sensing a pattern here?) | ||||
|   | ||||
| @@ -407,7 +407,7 @@ class SystemChecksTestCase(TestCase): | ||||
|         errors = SongAdmin.check(model=Song) | ||||
|         self.assertEqual(errors, []) | ||||
|  | ||||
|     def test_nonexistant_field(self): | ||||
|     def test_nonexistent_field(self): | ||||
|         class SongAdmin(admin.ModelAdmin): | ||||
|             readonly_fields = ("title", "nonexistent") | ||||
|  | ||||
| @@ -423,7 +423,7 @@ class SystemChecksTestCase(TestCase): | ||||
|         ] | ||||
|         self.assertEqual(errors, expected) | ||||
|  | ||||
|     def test_nonexistant_field_on_inline(self): | ||||
|     def test_nonexistent_field_on_inline(self): | ||||
|         class CityInline(admin.TabularInline): | ||||
|             model = City | ||||
|             readonly_fields = ['i_dont_exist']  # Missing attribute | ||||
|   | ||||
| @@ -212,7 +212,7 @@ class ValidationTestCase(TestCase): | ||||
|             warnings.filterwarnings('ignore', module='django.contrib.admin.options') | ||||
|             SongAdmin.validate(Song) | ||||
|  | ||||
|     def test_nonexistant_field(self): | ||||
|     def test_nonexistent_field(self): | ||||
|         class SongAdmin(admin.ModelAdmin): | ||||
|             readonly_fields = ("title", "nonexistent") | ||||
|  | ||||
| @@ -222,7 +222,7 @@ class ValidationTestCase(TestCase): | ||||
|             SongAdmin.validate, | ||||
|             Song) | ||||
|  | ||||
|     def test_nonexistant_field_on_inline(self): | ||||
|     def test_nonexistent_field_on_inline(self): | ||||
|         class CityInline(admin.TabularInline): | ||||
|             model = City | ||||
|             readonly_fields = ['i_dont_exist']  # Missing attribute | ||||
|   | ||||
| @@ -480,7 +480,7 @@ class AdminViewBasicTest(AdminViewBasicTestCase): | ||||
|         response = self.client.get('/test_admin/%s/admin_views/thing/' % self.urlbit, {'notarealfield': '5'}) | ||||
|         self.assertRedirects(response, '/test_admin/%s/admin_views/thing/?e=1' % self.urlbit) | ||||
|  | ||||
|         # Spanning relationships through an inexistant related object (Refs #16716) | ||||
|         # Spanning relationships through a nonexistent related object (Refs #16716) | ||||
|         response = self.client.get('/test_admin/%s/admin_views/thing/' % self.urlbit, {'notarealfield__whatever': '5'}) | ||||
|         self.assertRedirects(response, '/test_admin/%s/admin_views/thing/?e=1' % self.urlbit) | ||||
|  | ||||
| @@ -606,7 +606,7 @@ class AdminViewBasicTest(AdminViewBasicTestCase): | ||||
|             self.assertEqual(response.status_code, 400) | ||||
|             self.assertEqual(len(calls), 1) | ||||
|  | ||||
|         # Specifying a field that is not refered by any other model registered | ||||
|         # Specifying a field that is not referred by any other model registered | ||||
|         # to this admin site should raise an exception. | ||||
|         with patch_logger('django.security.DisallowedModelAdminToField', 'error') as calls: | ||||
|             response = self.client.get("/test_admin/admin/admin_views/section/", {TO_FIELD_VAR: 'name'}) | ||||
| @@ -625,12 +625,12 @@ class AdminViewBasicTest(AdminViewBasicTestCase): | ||||
|         response = self.client.get("/test_admin/admin/admin_views/ingredient/", {TO_FIELD_VAR: 'id'}) | ||||
|         self.assertEqual(response.status_code, 200) | ||||
|  | ||||
|         # #23329 - Specifying a field that is not refered by any other model directly registered | ||||
|         # #23329 - Specifying a field that is not referred by any other model directly registered | ||||
|         # to this admin site but registered through inheritance should be allowed. | ||||
|         response = self.client.get("/test_admin/admin/admin_views/referencedbyparent/", {TO_FIELD_VAR: 'id'}) | ||||
|         self.assertEqual(response.status_code, 200) | ||||
|  | ||||
|         # #23431 - Specifying a field that is only refered to by a inline of a registered | ||||
|         # #23431 - Specifying a field that is only referred to by a inline of a registered | ||||
|         # model should be allowed. | ||||
|         response = self.client.get("/test_admin/admin/admin_views/referencedbyinline/", {TO_FIELD_VAR: 'id'}) | ||||
|         self.assertEqual(response.status_code, 200) | ||||
|   | ||||
| @@ -903,7 +903,7 @@ class HorizontalVerticalFilterSeleniumFirefoxTests(AdminSeleniumWebDriverTestCas | ||||
|                          str(self.jenny.id), str(self.john.id)]) | ||||
|  | ||||
|             # ----------------------------------------------------------------- | ||||
|             # Check that chosing a filtered option sends it properly to the | ||||
|             # Check that choosing a filtered option sends it properly to the | ||||
|             # 'to' box. | ||||
|             input.send_keys('a') | ||||
|             self.assertSelectOptions(from_box, [str(self.arthur.id), str(self.jason.id)]) | ||||
|   | ||||
| @@ -950,7 +950,7 @@ class DBConstraintTestCase(TransactionTestCase): | ||||
|  | ||||
|     available_apps = ['backends'] | ||||
|  | ||||
|     def test_can_reference_existant(self): | ||||
|     def test_can_reference_existent(self): | ||||
|         obj = models.Object.objects.create() | ||||
|         ref = models.ObjectReference.objects.create(obj=obj) | ||||
|         self.assertEqual(ref.obj, obj) | ||||
| @@ -958,7 +958,7 @@ class DBConstraintTestCase(TransactionTestCase): | ||||
|         ref = models.ObjectReference.objects.get(obj=obj) | ||||
|         self.assertEqual(ref.obj, obj) | ||||
|  | ||||
|     def test_can_reference_non_existant(self): | ||||
|     def test_can_reference_non_existent(self): | ||||
|         self.assertFalse(models.Object.objects.filter(id=12345).exists()) | ||||
|         ref = models.ObjectReference.objects.create(obj_id=12345) | ||||
|         ref_new = models.ObjectReference.objects.get(obj_id=12345) | ||||
|   | ||||
| @@ -54,7 +54,7 @@ class SQLCommandsTestCase(TestCase): | ||||
|             if 'CHECK' in statement: | ||||
|                 success = True | ||||
|         if not success: | ||||
|             self.fail("'CHECK' not found in ouput %s" % output) | ||||
|             self.fail("'CHECK' not found in output %s" % output) | ||||
|  | ||||
|     def test_sql_delete(self): | ||||
|         app_config = apps.get_app_config('commands_sql') | ||||
|   | ||||
| @@ -38,7 +38,7 @@ class CustomColumnRegression(TestCase): | ||||
|     def test_author_get(self): | ||||
|         self.assertEqual(self.a1, Author.objects.get(first_name__exact='John')) | ||||
|  | ||||
|     def test_filter_on_nonexistant_field(self): | ||||
|     def test_filter_on_nonexistent_field(self): | ||||
|         self.assertRaisesMessage( | ||||
|             FieldError, | ||||
|             "Cannot resolve keyword 'firstname' into field. Choices are: Author_ID, article, first_name, last_name, primary_set", | ||||
|   | ||||
| @@ -267,7 +267,7 @@ class ExpressionsTests(TestCase): | ||||
|         # Another similar case for F() than above. Now we have the same join | ||||
|         # in two filter kwargs, one in the lhs lookup, one in F. Here pre | ||||
|         # #18375 the amount of joins generated was random if dict | ||||
|         # randomization was enabled, that is the generated query dependend | ||||
|         # randomization was enabled, that is the generated query dependent | ||||
|         # on which clause was seen first. | ||||
|         qs = Employee.objects.filter( | ||||
|             company_ceo_set__num_employees=F('pk'), | ||||
|   | ||||
| @@ -1097,7 +1097,7 @@ class ModelFormBasicTests(TestCase): | ||||
|         self.assertEqual(f.cleaned_data['slug'], 'entertainment') | ||||
|         self.assertEqual(f.cleaned_data['url'], 'entertainment') | ||||
|         c1 = f.save() | ||||
|         # Testing wether the same object is returned from the | ||||
|         # Testing whether the same object is returned from the | ||||
|         # ORM... not the fastest way... | ||||
|  | ||||
|         self.assertEqual(Category.objects.count(), 1) | ||||
|   | ||||
| @@ -281,7 +281,7 @@ class ModelInheritanceTests(TestCase): | ||||
|             .defer("italianrestaurant__serves_gnocchi") | ||||
|             .order_by("rating")) | ||||
|  | ||||
|         # Test that the field was actually defered | ||||
|         # Test that the field was actually deferred | ||||
|         with self.assertNumQueries(2): | ||||
|             objs = list(qs.all()) | ||||
|             self.assertTrue(objs[1].italianrestaurant.serves_gnocchi) | ||||
|   | ||||
| @@ -522,7 +522,7 @@ class SchemaTests(TransactionTestCase): | ||||
|         else: | ||||
|             self.fail("No FK constraint for author_id found") | ||||
|  | ||||
|     def test_alter_implicit_id_to_explict(self): | ||||
|     def test_alter_implicit_id_to_explicit(self): | ||||
|         """ | ||||
|         Should be able to convert an implicit "id" field to an explicit "id" | ||||
|         primary key field. | ||||
|   | ||||
| @@ -419,11 +419,11 @@ class SerializerTests(TestCase): | ||||
|             serializers.get_serializer("nonsense") | ||||
|         self.assertEqual(cm.exception.args, ("nonsense",)) | ||||
|  | ||||
|     def test_unregister_unkown_serializer(self): | ||||
|     def test_unregister_unknown_serializer(self): | ||||
|         with self.assertRaises(SerializerDoesNotExist): | ||||
|             serializers.unregister_serializer("nonsense") | ||||
|  | ||||
|     def test_get_unkown_deserializer(self): | ||||
|     def test_get_unknown_deserializer(self): | ||||
|         with self.assertRaises(SerializerDoesNotExist): | ||||
|             serializers.get_deserializer("nonsense") | ||||
|  | ||||
|   | ||||
| @@ -37,7 +37,7 @@ class SignedCookieTest(TestCase): | ||||
|         self.assertRaises(signing.BadSignature, | ||||
|             request.get_signed_cookie, 'c') | ||||
|  | ||||
|     def test_default_argument_supresses_exceptions(self): | ||||
|     def test_default_argument_suppresses_exceptions(self): | ||||
|         response = HttpResponse() | ||||
|         response.set_signed_cookie('c', 'hello') | ||||
|         request = HttpRequest() | ||||
|   | ||||
| @@ -73,7 +73,7 @@ class UpdateOnlyFieldsTests(TestCase): | ||||
|         with self.assertNumQueries(1): | ||||
|             s1.save() | ||||
|         # Test that the deferred class does not remember that gender was | ||||
|         # set, instead the instace should remember this. | ||||
|         # set, instead the instance should remember this. | ||||
|         s1 = Person.objects.only('name').get(pk=s.pk) | ||||
|         with self.assertNumQueries(1): | ||||
|             s1.save() | ||||
|   | ||||
| @@ -51,7 +51,7 @@ class BaseModelValidationTests(ValidationTestCase): | ||||
|         mtv = ModelToValidate(number=10, name='Some Name', url='not a url') | ||||
|         self.assertFieldFailsValidationWithMessage(mtv.full_clean, 'url', ['Enter a valid URL.']) | ||||
|  | ||||
|     def test_text_greater_that_charfields_max_length_raises_erros(self): | ||||
|     def test_text_greater_that_charfields_max_length_raises_errors(self): | ||||
|         mtv = ModelToValidate(number=10, name='Some Name' * 100) | ||||
|         self.assertFailsValidation(mtv.full_clean, ['name']) | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user