Skip to content

Commit 10544c6

Browse files
committed
Merge remote-tracking branch 'upstream/main'
2 parents de322a4 + ac2d907 commit 10544c6

File tree

5 files changed

+24
-3
lines changed

5 files changed

+24
-3
lines changed

docs/faq/general.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,3 +218,14 @@ If you need a publication date, use the year of release of the version you're
218218
referencing (e.g., 2013 for v1.5)
219219

220220
.. _APA style: https://apastyle.apa.org/
221+
222+
Where can I find more Django resources?
223+
=======================================
224+
225+
The Steering Council maintains a collection of Django third-party packages,
226+
organizations and resources at
227+
https://www.djangoproject.com/community/ecosystem/.
228+
229+
That page will be updated to contain links to various Django content such as
230+
podcasts, videos, conferences, blogs, books, and learning resources. It also
231+
features popular, robust, community-maintained packages.

docs/internals/contributing/index.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,9 @@ encounter or assist in triaging existing tickets to ensure a smooth development
110110
workflow.
111111

112112
Django also has a :ref:`process for suggesting ideas <requesting-features>`
113-
where you can join the community in discussing ideas for new features.
113+
where you can join the community in discussing ideas for new features. Beyond
114+
the Django codebase, there's a `vibrant ecosystem`_ that is maintained by the
115+
community that you can contribute to.
114116

115117
Explore the ways you can make a difference below, and join us in making Django
116118
better for everyone.
@@ -122,5 +124,6 @@ better for everyone.
122124
triaging-tickets
123125

124126
.. _ticket tracker: https://code.djangoproject.com/
127+
.. _vibrant ecosystem: https://www.djangoproject.com/community/ecosystem/
125128

126129
We're looking forward to working with you. Welcome aboard!

docs/intro/whatsnext.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ So what's next?
1111

1212
Well, we've always been big fans of learning by doing. At this point you should
1313
know enough to start a project of your own and start fooling around. As you need
14-
to learn new tricks, come back to the documentation.
14+
to learn new tricks, come back to the documentation. There's also a bigger
15+
`Django ecosystem`_ out there for you to explore that the community has
16+
created.
1517

1618
We've put a lot of effort into making Django's documentation useful, clear and
1719
as complete as possible. The rest of this document explains more about how the
@@ -20,6 +22,8 @@ documentation works so that you can get the most out of it.
2022
(Yes, this is documentation about documentation. Rest assured we have no plans
2123
to write a document about how to read the document about documentation.)
2224

25+
.. _Django ecosystem: https://www.djangoproject.com/community/ecosystem/
26+
2327
Finding documentation
2428
=====================
2529

docs/ref/utils.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,7 @@ escaping HTML.
741741
is anything contained within ``<>``.
742742

743743
Absolutely NO guarantee is provided about the resulting string being
744-
HTML safe. So NEVER mark safe the result of a ``strip_tag`` call without
744+
HTML safe. So NEVER mark safe the result of a ``strip_tags`` call without
745745
escaping it first, for example with :func:`~django.utils.html.escape`.
746746

747747
For example::

tests/backends/base/test_base.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
TransactionTestCase,
1010
skipUnlessDBFeature,
1111
)
12+
from django.test.runner import DebugSQLTextTestResult
1213
from django.test.utils import CaptureQueriesContext, override_settings
1314

1415
from ..models import Person, Square
@@ -134,6 +135,8 @@ def test_rollback_debug_log(self):
134135
)
135136

136137
def test_no_logs_without_debug(self):
138+
if isinstance(self._outcome.result, DebugSQLTextTestResult):
139+
self.skipTest("--debug-sql interferes with this test")
137140
with self.assertNoLogs("django.db.backends", "DEBUG"):
138141
with self.assertRaises(Exception), transaction.atomic():
139142
Person.objects.create(first_name="first", last_name="last")

0 commit comments

Comments
 (0)