Updated Wikipedia links to use https

This commit is contained in:
Claude Paroz 2015-08-08 12:02:32 +02:00
parent 18f3d4c1bd
commit 64982cc2fb
38 changed files with 66 additions and 66 deletions

View file

@ -320,7 +320,7 @@ is not very helpful at preventing that bug from reoccurring down the road.
Now for our hands-on example.
__ http://en.wikipedia.org/wiki/Test-driven_development
__ https://en.wikipedia.org/wiki/Test-driven_development
Writing some tests for ticket #24788
------------------------------------

View file

@ -19,7 +19,7 @@ Although you can use Django without a database, it comes with an
`object-relational mapper`_ in which you describe your database layout in Python
code.
.. _object-relational mapper: http://en.wikipedia.org/wiki/Object-relational_mapping
.. _object-relational mapper: https://en.wikipedia.org/wiki/Object-relational_mapping
The :doc:`data-model syntax </topics/db/models>` offers many rich ways of
representing your models -- so far, it's been solving many years' worth of

View file

@ -344,7 +344,7 @@ Finally, a performance note: these regular expressions are compiled the first
time the URLconf module is loaded. They're super fast (as long as the lookups
aren't too complex as noted above).
.. _Wikipedia's entry: http://en.wikipedia.org/wiki/Regular_expression
.. _Wikipedia's entry: https://en.wikipedia.org/wiki/Regular_expression
:func:`~django.conf.urls.url` argument: view
--------------------------------------------

View file

@ -121,7 +121,7 @@ the next time you make a change, either when you add a new feature or fix a bug.
So let's do that right away.
.. _test-driven development: http://en.wikipedia.org/wiki/Test-driven_development
.. _test-driven development: https://en.wikipedia.org/wiki/Test-driven_development
Writing our first test
======================
@ -679,7 +679,7 @@ Coverage will help to identify dead code. See
information about testing.
.. _Selenium: http://seleniumhq.org/
.. _continuous integration: http://en.wikipedia.org/wiki/Continuous_integration
.. _continuous integration: https://en.wikipedia.org/wiki/Continuous_integration
What's next?
============