massive refactor

This commit is contained in:
Kenneth Reitz
2011-04-23 16:39:37 -04:00
parent af1cad8ca9
commit 9b8af20caf
18 changed files with 39 additions and 17 deletions
+25 -17
View File
@@ -7,9 +7,9 @@ background information about Python, then focuses on next steps.
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
introduction intro/duction
community intro/community
resources intro/resources
Getting Started Getting Started
@@ -20,10 +20,10 @@ This part of the guide focuses on setting up your Python environment.
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
which-python starting/which-python
installation starting/installation
dev-env starting/dev-env
getting-started-next starting/next
Writing Great Code Writing Great Code
@@ -34,11 +34,10 @@ This part of the guide focuses on best practices for writing Python code.
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
project-structure writing/structure
code-style writing/style
documentation starting/documentation
testing starting/tests
packaging
@@ -50,13 +49,22 @@ This part of the guide focuses on deploying your Python code.
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
project-structure shipping/packaging
documentation shipping/freezing
testing
packaging
freezing
Scenario Guide
--------------
This part of the guide focuses on tool and module advice based on
different scenarios.
.. toctree::
:maxdepth: 2
scenarios/web
scenarios/ci
Additional Notes Additional Notes
---------------- ----------------
+14
View File
@@ -0,0 +1,14 @@
Introduction
============
Idioms
::::::
Zen of Python
-------------
PEP-8
-----
View File