
python-checkins at python
Oct 20, 2007, 11:04 AM
Post #1 of 1
(54 views)
Permalink
|
|
r58566 - doctools/trunk/sphinx/templates/index.html doctools/trunk/sphinx/templates/search.html
|
|
Author: georg.brandl Date: Sat Oct 20 20:04:28 2007 New Revision: 58566 Modified: doctools/trunk/sphinx/templates/index.html doctools/trunk/sphinx/templates/search.html Log: Prepare for new toplevel chapter, "Using Python." Modified: doctools/trunk/sphinx/templates/index.html ============================================================================== --- doctools/trunk/sphinx/templates/index.html (original) +++ doctools/trunk/sphinx/templates/index.html Sat Oct 20 20:04:28 2007 @@ -17,6 +17,8 @@ <span class="linkdescr">changes since previous major release</span></p> <p class="biglink"><a class="biglink" href="{{ pathto("tutorial/index.rst") }}">Tutorial</a><br> <span class="linkdescr">start here</span></p> + <p class="biglink"><a class="biglink" href="{{ pathto("using/index.rst") }}">Using Python</a><br> + <span class="linkdescr">how to use Python on different platforms</span></p> <p class="biglink"><a class="biglink" href="{{ pathto("reference/index.rst") }}">Language Reference</a><br> <span class="linkdescr">describes syntax and language elements</span></p> <p class="biglink"><a class="biglink" href="{{ pathto("library/index.rst") }}">Library Reference</a><br> Modified: doctools/trunk/sphinx/templates/search.html ============================================================================== --- doctools/trunk/sphinx/templates/search.html (original) +++ doctools/trunk/sphinx/templates/search.html Sat Oct 20 20:04:28 2007 @@ -25,6 +25,7 @@ {% for id, name, checked in [ ('tutorial', 'Python Tutorial', true), ('library', 'Library Reference', true), + ('using', 'Using Python', true), ('reference', 'Language Reference', false), ('extending', 'Extending and Embedding', false), ('c-api', 'Python/C API', false), _______________________________________________ Python-checkins mailing list Python-checkins [at] python http://mail.python.org/mailman/listinfo/python-checkins
|