Home | History | Annotate | Download | only in templates
      1 {% extends "defindex.html" %}
      2 {% block tables %}
      3   <p><strong>{% trans %}Parts of the documentation:{% endtrans %}</strong></p>
      4   <table class="contentstable" align="center"><tr>
      5     <td width="50%">
      6       <p class="biglink"><a class="biglink" href="{{ pathto("whatsnew/" + version) }}">{% trans %}What's new in Python {{ version }}?{% endtrans %}</a><br/>
      7          <span class="linkdescr">{% trans whatsnew_index=pathto("whatsnew/index") %}or <a href="{{ whatsnew_index }}">all "What's new" documents</a> since 2.0{% endtrans %}</span></p>
      8       <p class="biglink"><a class="biglink" href="{{ pathto("tutorial/index") }}">{% trans %}Tutorial{% endtrans %}</a><br/>
      9          <span class="linkdescr">{% trans %}start here{% endtrans %}</span></p>
     10       <p class="biglink"><a class="biglink" href="{{ pathto("library/index") }}">{% trans %}Library Reference{% endtrans %}</a><br/>
     11          <span class="linkdescr">{% trans %}keep this under your pillow{% endtrans %}</span></p>
     12       <p class="biglink"><a class="biglink" href="{{ pathto("reference/index") }}">{% trans %}Language Reference{% endtrans %}</a><br/>
     13          <span class="linkdescr">{% trans %}describes syntax and language elements{% endtrans %}</span></p>
     14       <p class="biglink"><a class="biglink" href="{{ pathto("using/index") }}">{% trans %}Python Setup and Usage{% endtrans %}</a><br/>
     15          <span class="linkdescr">{% trans %}how to use Python on different platforms{% endtrans %}</span></p>
     16       <p class="biglink"><a class="biglink" href="{{ pathto("howto/index") }}">{% trans %}Python HOWTOs{% endtrans %}</a><br/>
     17          <span class="linkdescr">{% trans %}in-depth documents on specific topics{% endtrans %}</span></p>
     18     </td><td width="50%">
     19       <p class="biglink"><a class="biglink" href="{{ pathto("installing/index") }}">{% trans %}Installing Python Modules{% endtrans %}</a><br/>
     20          <span class="linkdescr">{% trans %}installing from the Python Package Index &amp; other sources{% endtrans %}</span></p>
     21       <p class="biglink"><a class="biglink" href="{{ pathto("distributing/index") }}">{% trans %}Distributing Python Modules{% endtrans %}</a><br/>
     22          <span class="linkdescr">{% trans %}publishing modules for installation by others{% endtrans %}</span></p>
     23       <p class="biglink"><a class="biglink" href="{{ pathto("extending/index") }}">{% trans %}Extending and Embedding{% endtrans %}</a><br/>
     24          <span class="linkdescr">{% trans %}tutorial for C/C++ programmers{% endtrans %}</span></p>
     25       <p class="biglink"><a class="biglink" href="{{ pathto("c-api/index") }}">{% trans %}Python/C API{% endtrans %}</a><br/>
     26          <span class="linkdescr">{% trans %}reference for C/C++ programmers{% endtrans %}</span></p>
     27       <p class="biglink"><a class="biglink" href="{{ pathto("faq/index") }}">{% trans %}FAQs{% endtrans %}</a><br/>
     28          <span class="linkdescr">{% trans %}frequently asked questions (with answers!){% endtrans %}</span></p>
     29     </td></tr>
     30   </table>
     31 
     32   <p><strong>{% trans %}Indices and tables:{% endtrans %}</strong></p>
     33   <table class="contentstable" align="center"><tr>
     34     <td width="50%">
     35       <p class="biglink"><a class="biglink" href="{{ pathto("py-modindex") }}">{% trans %}Global Module Index{% endtrans %}</a><br/>
     36          <span class="linkdescr">{% trans %}quick access to all modules{% endtrans %}</span></p>
     37       <p class="biglink"><a class="biglink" href="{{ pathto("genindex") }}">{% trans %}General Index{% endtrans %}</a><br/>
     38          <span class="linkdescr">{% trans %}all functions, classes, terms{% endtrans %}</span></p>
     39       <p class="biglink"><a class="biglink" href="{{ pathto("glossary") }}">{% trans %}Glossary{% endtrans %}</a><br/>
     40          <span class="linkdescr">{% trans %}the most important terms explained{% endtrans %}</span></p>
     41     </td><td width="50%">
     42       <p class="biglink"><a class="biglink" href="{{ pathto("search") }}">{% trans %}Search page{% endtrans %}</a><br/>
     43          <span class="linkdescr">{% trans %}search this documentation{% endtrans %}</span></p>
     44       <p class="biglink"><a class="biglink" href="{{ pathto("contents") }}">{% trans %}Complete Table of Contents{% endtrans %}</a><br/>
     45          <span class="linkdescr">{% trans %}lists all sections and subsections{% endtrans %}</span></p>
     46     </td></tr>
     47   </table>
     48 
     49   <p><strong>{% trans %}Meta information:{% endtrans %}</strong></p>
     50   <table class="contentstable" align="center"><tr>
     51     <td width="50%">
     52       <p class="biglink"><a class="biglink" href="{{ pathto("bugs") }}">{% trans %}Reporting bugs{% endtrans %}</a></p>
     53       <p class="biglink"><a class="biglink" href="{{ pathto("about") }}">{% trans %}About the documentation{% endtrans %}</a></p>
     54     </td><td width="50%">
     55       <p class="biglink"><a class="biglink" href="{{ pathto("license") }}">{% trans %}History and License of Python{% endtrans %}</a></p>
     56       <p class="biglink"><a class="biglink" href="{{ pathto("copyright") }}">{% trans %}Copyright{% endtrans %}</a></p>
     57     </td></tr>
     58   </table>
     59 {% endblock %}
     60