summaryrefslogtreecommitdiff
path: root/apidoc/index.rst
diff options
context:
space:
mode:
Diffstat (limited to 'apidoc/index.rst')
-rwxr-xr-xapidoc/index.rst30
1 files changed, 23 insertions, 7 deletions
diff --git a/apidoc/index.rst b/apidoc/index.rst
index ae62f69..2ed011e 100755
--- a/apidoc/index.rst
+++ b/apidoc/index.rst
@@ -26,7 +26,7 @@ Bottle is a fast, simple and lightweight WSGI_ micro web-framework for Python_.
* **Routing:** Requests to function-call mapping with support for clean and dynamic URLs.
* **Templates:** Fast and pythonic :ref:`build-in template engine <tutorial-templates>` and support for mako_, jinja2_ and cheetah_ templates.
* **Utilities:** Convenient access to form data, file uploads, cookies, headers and other HTTP related metadata.
-* **Server:** Build-in HTTP development server and support for paste_, fapws3_, flup_, cherrypy_ or any other WSGI_ capable HTTP server.
+* **Server:** Build-in HTTP development server and support for paste_, fapws3_, `Google App Engine <http://code.google.com/intl/en-US/appengine/>`_, cherrypy_ or any other WSGI_ capable HTTP server.
.. rubric:: Example: "Hello World" in a bottle
@@ -48,20 +48,25 @@ Bottle is a fast, simple and lightweight WSGI_ micro web-framework for Python_.
Install the latest stable release via PyPi_ (``easy_install -U bottle``) or download `bottle.py`__ (unstable) into your project directory. There are no hard [1]_ dependencies other than the Python standard library. Bottle runs with **Python 2.5+ and 3.x** (using 2to3)
-Documentation
+User's Guide
===============
-The documentation is a work in progress. If you have questions not answered here, please check the :doc:`faq`, file a ticket at bottles issue_tracker_ or send an e-mail to the `mailing list <mailto:bottlepy@googlegroups.com>`_.
+Start here if you want to learn how to use the bottle framework for web development. If you have any questions not answered here, feel free to ask the `mailing list <mailto:bottlepy@googlegroups.com>`_.
.. toctree::
:maxdepth: 2
tutorial
- recieps
+ stpl
faq
+
+API Documentation
+==================
+Looking for a specific function, class or method? These chapters cover all the interfaces provided by the Framework and explain how to use them.
+
+.. toctree::
+ :maxdepth: 2
+
api
- stpl
- changelog
- development
Tutorials and Resources
=======================
@@ -70,7 +75,18 @@ Tutorials and Resources
:maxdepth: 2
tutorial_app
+ recieps
+
+Development and Contribution
+============================
+
+These chapters are intended for developers interested in the bottle development and release workflow.
+.. toctree::
+ :maxdepth: 2
+
+ changelog
+ development
Licence