Mercurial > python-cmd2
changeset 364:29221236d1a1
updating refresh scripts
author | cat@eee |
---|---|
date | Thu, 18 Feb 2010 14:04:10 -0500 |
parents | 2b2836b783be |
children | b0e108b6d068 |
files | docs/index.rst docs/pycon2010/pycon2010.rst docs/refresh.bash |
diffstat | 3 files changed, 15 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/docs/index.rst Thu Feb 18 13:45:43 2010 -0500 +++ b/docs/index.rst Thu Feb 18 14:04:10 2010 -0500 @@ -9,14 +9,13 @@ A python package for building powerful command-line interpreter (CLI) programs. Extends the Python Standard Library's cmd_ package. + +.. _`cmd2 project page`: http://www.assembla.com/wiki/show/python-cmd2 +.. _`project bug tracker`: http://trac-hg.assembla.com/python-cmd2/report/1 + .. _cmd: http://docs.python.org/library/cmd.html#module-cmd -`cmd2 project page`_: http://docs.python.org/library/cmd.html#module-cmd - -`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 +.. _`PyCon 2010 presentation`: http://catherinedevlin.pythoneers.com/presentations/cmd_cmd2/pycon2010.html The basic use of ``cmd2`` is identical to that of cmd_. @@ -33,6 +32,14 @@ app = App() app.cmdloop() +Resources +--------- + +* cmd_ +* `project bug tracker`_ +* `cmd2 project page`_ +* `PyCon 2010 presentation`: Easy Command-Line Applications with cmd and cmd2 + 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