view docs/index.rst @ 358:70fead908abe

add info re: assembla page
author catherine@Drou
date Thu, 18 Feb 2010 00:10:25 -0500
parents 49bea7cab179
children 5b95dacca46e
line wrap: on
line source

.. cmd2 documentation master file, created by
   sphinx-quickstart on Wed Feb 10 12:05:28 2010.
   You can adapt this file completely to your liking, but it should at least
   contain the root `toctree` directive.

cmd2
====

`cmd2 project page`_

`project bug tracker`_

.. _`cmd2 Project page`: http://www.assembla.com/wiki/show/python-cmd2
.. _`project bug tracker`: http://trac-hg.assembla.com/python-cmd2/report/1

The basic use of ``cmd2`` is identical to that of cmd_.

1. Create a subclass of ``cmd2.Cmd``.  Define attributes and
   ``do_*`` methods to control its behavior.  Throughout this documentation,
   we will assume that you are naming your subclass ``App``::
   
     from cmd2 import Cmd
     class App(Cmd):
         # customized attributes and methods here
         
2. Instantiate ``App`` and start the command loop::

     app = App()
     app.cmdloop()

These docs will refer to ``App`` as your ``cmd2.Cmd``
subclass, and ``app`` as an instance of ``App``.  Of
course, in your program, you may name them whatever
you want.
     
Contents:

.. toctree::
   :maxdepth: 2
   
   overview
   example
   freefeatures
   settingchanges
   unfreefeatures

Indices and tables
==================

* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`