[2.1.x] Refs #29877 -- Made diveinto.org URLs HTTPS.
Backport of 136a900ef9
from master
This commit is contained in:
parent
fbd95ce9bb
commit
8a348c5fd0
2
AUTHORS
2
AUTHORS
|
@ -897,6 +897,6 @@ A big THANK YOU goes to:
|
||||||
|
|
||||||
Ian Bicking for convincing Adrian to ditch code generation.
|
Ian Bicking for convincing Adrian to ditch code generation.
|
||||||
|
|
||||||
Mark Pilgrim for "Dive Into Python" (http://www.diveinto.org/python3/).
|
Mark Pilgrim for "Dive Into Python" (https://www.diveinto.org/python3/).
|
||||||
|
|
||||||
Guido van Rossum for creating Python.
|
Guido van Rossum for creating Python.
|
||||||
|
|
|
@ -43,7 +43,7 @@ so that it can be of use to the widest audience.
|
||||||
to |django-developers| or drop by `#django-dev on irc.freenode.net`__ to
|
to |django-developers| or drop by `#django-dev on irc.freenode.net`__ to
|
||||||
chat with other Django users who might be able to help.
|
chat with other Django users who might be able to help.
|
||||||
|
|
||||||
__ http://www.diveinto.org/python3/
|
__ https://www.diveinto.org/python3/
|
||||||
__ irc://irc.freenode.net/django-dev
|
__ irc://irc.freenode.net/django-dev
|
||||||
|
|
||||||
What does this tutorial cover?
|
What does this tutorial cover?
|
||||||
|
@ -333,7 +333,7 @@ This test checks that the ``make_toast()`` returns ``'toast'``.
|
||||||
* After reading those, if you want something a little meatier to sink
|
* After reading those, if you want something a little meatier to sink
|
||||||
your teeth into, there's always the Python :mod:`unittest` documentation.
|
your teeth into, there's always the Python :mod:`unittest` documentation.
|
||||||
|
|
||||||
__ http://www.diveinto.org/python3/unit-testing.html
|
__ https://www.diveinto.org/python3/unit-testing.html
|
||||||
|
|
||||||
Running your new test
|
Running your new test
|
||||||
---------------------
|
---------------------
|
||||||
|
|
|
@ -36,5 +36,5 @@ place: read this material to quickly get up and running.
|
||||||
|
|
||||||
.. _python: https://python.org/
|
.. _python: https://python.org/
|
||||||
.. _list of Python resources for non-programmers: https://wiki.python.org/moin/BeginnersGuide/NonProgrammers
|
.. _list of Python resources for non-programmers: https://wiki.python.org/moin/BeginnersGuide/NonProgrammers
|
||||||
.. _Dive Into Python: http://www.diveinto.org/python3/
|
.. _Dive Into Python: https://www.diveinto.org/python3/
|
||||||
.. _books about Python: https://wiki.python.org/moin/PythonBooks
|
.. _books about Python: https://wiki.python.org/moin/PythonBooks
|
||||||
|
|
|
@ -1604,7 +1604,7 @@ Example usage::
|
||||||
|
|
||||||
django-admin migrate --pythonpath='/home/djangoprojects/myproject'
|
django-admin migrate --pythonpath='/home/djangoprojects/myproject'
|
||||||
|
|
||||||
.. _import search path: http://www.diveinto.org/python3/your-first-python-program.html#importsearchpath
|
.. _import search path: https://www.diveinto.org/python3/your-first-python-program.html#importsearchpath
|
||||||
|
|
||||||
.. django-admin-option:: --settings SETTINGS
|
.. django-admin-option:: --settings SETTINGS
|
||||||
|
|
||||||
|
|
|
@ -2092,7 +2092,7 @@ individual elements of the sequence.
|
||||||
Returns a slice of the list.
|
Returns a slice of the list.
|
||||||
|
|
||||||
Uses the same syntax as Python's list slicing. See
|
Uses the same syntax as Python's list slicing. See
|
||||||
http://www.diveinto.org/python3/native-datatypes.html#slicinglists
|
https://www.diveinto.org/python3/native-datatypes.html#slicinglists
|
||||||
for an introduction.
|
for an introduction.
|
||||||
|
|
||||||
Example::
|
Example::
|
||||||
|
|
|
@ -46,7 +46,7 @@ The value of ``DJANGO_SETTINGS_MODULE`` should be in Python path syntax, e.g.
|
||||||
``mysite.settings``. Note that the settings module should be on the
|
``mysite.settings``. Note that the settings module should be on the
|
||||||
Python `import search path`_.
|
Python `import search path`_.
|
||||||
|
|
||||||
.. _import search path: http://www.diveinto.org/python3/your-first-python-program.html#importsearchpath
|
.. _import search path: https://www.diveinto.org/python3/your-first-python-program.html#importsearchpath
|
||||||
|
|
||||||
The ``django-admin`` utility
|
The ``django-admin`` utility
|
||||||
----------------------------
|
----------------------------
|
||||||
|
|
Loading…
Reference in New Issue