Fixed #9487 -- Corrected several links into the Python docs that were broken by the recent Python docs refactor.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9312 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Karen Tracey 2008-11-01 19:02:09 +00:00
parent 8955a085a5
commit d4f4ab8535
10 changed files with 11 additions and 11 deletions

View file

@ -344,7 +344,7 @@ else. In our case, let's say the tag should be used like this:
<p>The time is {% current_time "%Y-%m-%d %I:%M %p" %}.</p>
.. _`strftime syntax`: http://www.python.org/doc/current/lib/module-time.html#l2h-1941
.. _`strftime syntax`: http://docs.python.org/library/time.html#time.strftime
The parser for this function should grab the parameter and create a ``Node``
object::

View file

@ -8,7 +8,7 @@ This document explains how to output CSV (Comma Separated Values) dynamically
using Django views. To do this, you can either use the `Python CSV library`_ or
the Django template system.
.. _Python CSV library: http://www.python.org/doc/current/lib/module-csv.html
.. _Python CSV library: http://docs.python.org/library/csv.html
Using the Python CSV library
============================

View file

@ -131,7 +131,7 @@ Here's the above "Hello World" example rewritten to use ``cStringIO``::
response.write(pdf)
return response
.. _cStringIO: http://www.python.org/doc/current/lib/module-cStringIO.html
.. _cStringIO: http://docs.python.org/library/stringio.html#module-cStringIO
Further resources
=================