Ticket #17028: diveintopython_mirror_doc.patch

File diveintopython_mirror_doc.patch, 3.0 KB (added by pyriku, 13 years ago)
  • docs/intro/index.txt

     
    3131   
    3232    .. _python: http://python.org/
    3333    .. _list of Python resources for non-programmers: http://wiki.python.org/moin/BeginnersGuide/NonProgrammers
    34     .. _dive into python: http://diveintopython.org/
     34    .. _dive into python: http://diveintopython.nfshost.com/
    3535    .. _dead-tree version: http://www.amazon.com/exec/obidos/ASIN/1590593561/ref=nosim/jacobian20
    3636    .. _books about Python: http://wiki.python.org/moin/PythonBooks
     37 No newline at end of file
  • docs/topics/http/urls.txt

     
    109109    * ``/articles/2003/03/03/`` would match the final pattern. Django would call
    110110      the function ``news.views.article_detail(request, '2003', '03', '03')``.
    111111
    112 .. _Dive Into Python's explanation: http://diveintopython.org/regular_expressions/street_addresses.html#re.matching.2.3
     112.. _Dive Into Python's explanation: http://diveintopython.nfshost.com/regular_expressions/street_addresses.html#re.matching.2.3
    113113
    114114Named groups
    115115============
  • docs/topics/settings.txt

     
    3939``mysite.settings``. Note that the settings module should be on the
    4040Python `import search path`_.
    4141
    42 .. _import search path: http://diveintopython.org/getting_to_know_python/everything_is_an_object.html
     42.. _import search path: http://diveintopython.nfshost.com/getting_to_know_python/everything_is_an_object.html
    4343
    4444The django-admin.py utility
    4545---------------------------
  • docs/ref/templates/builtins.txt

     
    19171917Returns a slice of the list.
    19181918
    19191919Uses the same syntax as Python's list slicing. See
    1920 http://diveintopython.org/native_data_types/lists.html#odbchelper.list.slice
     1920http://diveintopython.nfshost.com/native_data_types/lists.html#odbchelper.list.slice
    19211921for an introduction.
    19221922
    19231923Example::
  • docs/ref/django-admin.txt

     
    11681168Note that this option is unnecessary in ``manage.py``, because it takes care of
    11691169setting the Python path for you.
    11701170
    1171 .. _import search path: http://diveintopython.org/getting_to_know_python/everything_is_an_object.html
     1171.. _import search path: http://diveintopython.nfshost.com/getting_to_know_python/everything_is_an_object.html
    11721172
    11731173.. django-admin-option:: --settings
    11741174
Back to Top