Refs #32956 -- Capitalized HTTP/HTTPS in comments, docs, and docstrings.

This commit is contained in:
David Smith 2021-10-19 20:01:44 +01:00 committed by Mariusz Felisiak
parent fd881e8cd9
commit 7ef0bc922c
7 changed files with 9 additions and 11 deletions

View File

@ -1437,7 +1437,7 @@ class _MediaFilesHandler(FSFilesHandler):
class LiveServerThread(threading.Thread): class LiveServerThread(threading.Thread):
"""Thread for running a live http server while the tests are running.""" """Thread for running a live HTTP server while the tests are running."""
server_class = ThreadedWSGIServer server_class = ThreadedWSGIServer

View File

@ -218,7 +218,7 @@ The following mixins are used to construct Django's editing views:
.. class:: django.views.generic.edit.DeletionMixin .. class:: django.views.generic.edit.DeletionMixin
Enables handling of the ``DELETE`` http action. Enables handling of the ``DELETE`` HTTP action.
**Methods and Attributes** **Methods and Attributes**

View File

@ -269,10 +269,10 @@ of :exc:`IntegrityError`.
.. currentmodule:: django.http .. currentmodule:: django.http
Http Exceptions HTTP Exceptions
=============== ===============
Http exceptions may be imported from ``django.http``. HTTP exceptions may be imported from ``django.http``.
``UnreadablePostError`` ``UnreadablePostError``
----------------------- -----------------------

View File

@ -289,9 +289,7 @@ class AdminViewBasicTest(AdminViewBasicTestCase):
self.assertEqual(response.status_code, 302) # redirect somewhere self.assertEqual(response.status_code, 302) # redirect somewhere
def test_popup_add_POST(self): def test_popup_add_POST(self):
""" """HTTP response from a popup is properly escaped."""
Ensure http response from a popup is properly escaped.
"""
post_data = { post_data = {
IS_POPUP_VAR: '1', IS_POPUP_VAR: '1',
'title': 'title with a new\nline', 'title': 'title with a new\nline',

View File

@ -89,7 +89,7 @@ class ViewTest(SimpleTestCase):
def test_pathological_http_method(self): def test_pathological_http_method(self):
""" """
The edge case of an http request that spoofs an existing method name is The edge case of an HTTP request that spoofs an existing method name is
caught. caught.
""" """
self.assertEqual(SimpleView.as_view()( self.assertEqual(SimpleView.as_view()(

View File

@ -360,12 +360,12 @@ class ClientTest(TestCase):
self.assertContains(response, '30 is the value') self.assertContains(response, '30 is the value')
def test_redirect_http(self): def test_redirect_http(self):
"GET a URL that redirects to an http URI" """GET a URL that redirects to an HTTP URI."""
response = self.client.get('/http_redirect_view/', follow=True) response = self.client.get('/http_redirect_view/', follow=True)
self.assertFalse(response.test_was_secure_request) self.assertFalse(response.test_was_secure_request)
def test_redirect_https(self): def test_redirect_https(self):
"GET a URL that redirects to an https URI" """GET a URL that redirects to an HTTPS URI."""
response = self.client.get('/https_redirect_view/', follow=True) response = self.client.get('/https_redirect_view/', follow=True)
self.assertTrue(response.test_was_secure_request) self.assertTrue(response.test_was_secure_request)

View File

@ -58,7 +58,7 @@ class SetLanguageTests(TestCase):
def test_setlang_http_next(self): def test_setlang_http_next(self):
""" """
The set_language view only redirects to the 'next' argument if it is The set_language view only redirects to the 'next' argument if it is
"safe" and its scheme is https if the request was sent over https. "safe" and its scheme is HTTPS if the request was sent over HTTPS.
""" """
lang_code = self._get_inactive_language_code() lang_code = self._get_inactive_language_code()
non_https_next_url = 'http://testserver/redirection/' non_https_next_url = 'http://testserver/redirection/'