summaryrefslogtreecommitdiff
path: root/docs/misc
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2011-09-04 21:17:30 +0000
committerRamiro Morales <cramm0@gmail.com>2011-09-04 21:17:30 +0000
commit932b1b8d6dbd1a4d8e50aa0528c1489094f5704c (patch)
tree2eabdbaca6daac3166847f77d3f06efc3dc2d928 /docs/misc
parent9110257a328bacae0a6131ca7b3c8b241fef128c (diff)
Converted links to external topics so they use intersphinx extension markup.
This allows to make these links more resilent to changes in the target URLs. Thanks Jannis for the report and Aymeric Augustin for the patch. Fixes #16586. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16720 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/misc')
-rw-r--r--docs/misc/design-philosophies.txt12
1 files changed, 5 insertions, 7 deletions
diff --git a/docs/misc/design-philosophies.txt b/docs/misc/design-philosophies.txt
index 631097ae2b..e6aea334b0 100644
--- a/docs/misc/design-philosophies.txt
+++ b/docs/misc/design-philosophies.txt
@@ -73,13 +73,11 @@ as possible.
Explicit is better than implicit
--------------------------------
-This, a `core Python principle`_, means Django shouldn't do too much "magic."
-Magic shouldn't happen unless there's a really good reason for it. Magic is
-worth using only if it creates a huge convenience unattainable in other ways,
-and it isn't implemented in a way that confuses developers who are trying to
-learn how to use the feature.
-
-.. _`core Python principle`: http://www.python.org/dev/peps/pep-0020/
+This is a core Python principle listed in :pep:`20`, and it means Django
+shouldn't do too much "magic." Magic shouldn't happen unless there's a really
+good reason for it. Magic is worth using only if it creates a huge convenience
+unattainable in other ways, and it isn't implemented in a way that confuses
+developers who are trying to learn how to use the feature.
.. _consistency: