Skip to content

Commit 1024b5e

Browse files
smithdc1felixxm
authored andcommitted
Fixed 32956 -- Lowercased spelling of "web" and "web framework" where appropriate.
1 parent acde917 commit 1024b5e

File tree

113 files changed

+265
-267
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+265
-267
lines changed

AUTHORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Django was originally created in late 2003 at World Online, the Web division
1+
Django was originally created in late 2003 at World Online, the web division
22
of the Lawrence Journal-World newspaper in Lawrence, Kansas.
33

44
Here is an inevitably incomplete list of MUCH-APPRECIATED CONTRIBUTORS --

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Django
33
======
44

5-
Django is a high-level Python Web framework that encourages rapid development
5+
Django is a high-level Python web framework that encourages rapid development
66
and clean, pragmatic design. Thanks for checking it out.
77

88
All documentation is in the "``docs``" directory and online at

django/conf/global_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ def gettext_noop(s):
471471
SESSION_COOKIE_SAMESITE = 'Lax'
472472
# Whether to save the session data on every request.
473473
SESSION_SAVE_EVERY_REQUEST = False
474-
# Whether a user's session cookie expires when the Web browser is closed.
474+
# Whether a user's session cookie expires when the web browser is closed.
475475
SESSION_EXPIRE_AT_BROWSER_CLOSE = False
476476
# The module to store session data
477477
SESSION_ENGINE = 'django.contrib.sessions.backends.db'

django/contrib/admin/templates/registration/logged_out.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
{% block content %}
99

10-
<p>{% translate "Thanks for spending some quality time with the Web site today." %}</p>
10+
<p>{% translate "Thanks for spending some quality time with the web site today." %}</p>
1111

1212
<p><a href="{% url 'admin:index' %}">{% translate 'Log in again' %}</a></p>
1313

django/contrib/admin/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def quote(s):
6969
Ensure that primary key values do not confuse the admin URLs by escaping
7070
any '/', '_' and ':' and similarly problematic characters.
7171
Similar to urllib.parse.quote(), except that the quoting is slightly
72-
different so that it doesn't get automatically unquoted by the Web browser.
72+
different so that it doesn't get automatically unquoted by the web browser.
7373
"""
7474
return s.translate(QUOTE_MAP) if isinstance(s, str) else s
7575

django/contrib/auth/middleware.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def process_request(self, request):
2727

2828
class RemoteUserMiddleware(MiddlewareMixin):
2929
"""
30-
Middleware for utilizing Web-server-provided authentication.
30+
Middleware for utilizing web-server-provided authentication.
3131
3232
If request.user is not authenticated, then this middleware attempts to
3333
authenticate the username passed in the ``REMOTE_USER`` request header.
@@ -113,7 +113,7 @@ def _remove_invalid_user(self, request):
113113

114114
class PersistentRemoteUserMiddleware(RemoteUserMiddleware):
115115
"""
116-
Middleware for Web-server provided authentication on logon pages.
116+
Middleware for web-server provided authentication on logon pages.
117117
118118
Like RemoteUserMiddleware but keeps the user authenticated even if
119119
the header (``REMOTE_USER``) is not found in the request. Useful

django/contrib/gis/gdal/srs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class AxisOrder(IntEnum):
4343

4444
class SpatialReference(GDALBase):
4545
"""
46-
A wrapper for the OGRSpatialReference object. According to the GDAL Web site,
46+
A wrapper for the OGRSpatialReference object. According to the GDAL web site,
4747
the SpatialReference object "provide[s] services to represent coordinate
4848
systems (projections and datums) and to transform between them."
4949
"""

django/contrib/gis/geometry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# Regular expression for recognizing HEXEWKB and WKT. A prophylactic measure
66
# to prevent potentially malicious input from reaching the underlying C
7-
# library. Not a substitute for good Web security programming practices.
7+
# library. Not a substitute for good web security programming practices.
88
hex_regex = _lazy_re_compile(r'^[0-9A-F]+$', re.I)
99
wkt_regex = _lazy_re_compile(
1010
r'^(SRID=(?P<srid>\-?\d+);)?'

django/contrib/sessions/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Session(AbstractBaseSession):
2222
2323
For complete documentation on using Sessions in your code, consult
2424
the sessions documentation that is shipped with Django (also available
25-
on the Django Web site).
25+
on the Django web site).
2626
"""
2727
objects = SessionManager()
2828

django/contrib/staticfiles/management/commands/runserver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
class Command(RunserverCommand):
9-
help = "Starts a lightweight Web server for development and also serves static files."
9+
help = "Starts a lightweight web server for development and also serves static files."
1010

1111
def add_arguments(self, parser):
1212
super().add_arguments(parser)

0 commit comments

Comments
 (0)