summaryrefslogtreecommitdiff
path: root/docs/hooks.rst
Commit message (Collapse)AuthorAgeFilesLines
* Deleted the hook methods which were deprecated in the previous releaseTodd Leonhardt2018-09-251-36/+15
| | | | | | | | | The following methods of cmd2.Cmd have been deleted: - preparse - postparsing_precmd - postparsing_postcmd The new application lifecycle hook framework allows for registering callbacks to be called at various points in the application lifecycle and is more powerful and flexible than the old system of fixed hook methods.
* Fix erroneous indication that ‘precmd()’ and ‘postcmd()’ are deprecatedkotfu2018-07-161-4/+0
|
* Fix typo.kotfu2018-07-151-3/+4
|
* Update description of command loopkotfu2018-07-151-16/+16
|
* preloop() and postloop() should not have been shown as deprecatedkotfu2018-07-121-10/+8
|
* Fix a couple minor typos in hooks.rstTodd Leonhardt2018-07-111-3/+3
|
* Add command finalization hookskotfu2018-07-051-0/+2
|
* Postcommand hooks implementedkotfu2018-06-221-11/+12
|
* Revised postparsing hookskotfu2018-06-211-19/+25
|
* Formating and light editingkotfu2018-06-031-23/+36
|
* Precommand hooks now check typing of passed callableskotfu2018-06-031-11/+22
|
* Begin converting precmd to passing and returning a data objectkotfu2018-06-031-3/+11
|
* Spacing, formating, and minor copy edits.kotfu2018-05-281-10/+13
|
* Add more whitespacekotfu2018-05-271-0/+3
|
* Merge branch 'master' into plugin_functionskotfu2018-05-271-2/+0
|\ | | | | | | | | # Conflicts: # cmd2/cmd2.py
| * Fixed bug where preparse() wasn't called before parsingTodd Leonhardt2018-05-271-2/+0
| | | | | | | | | | Also: - Deleted postparse() since it was redundant with postparsing_precmd()
* | Differentiate between postparsing hooks and precommand hookskotfu2018-05-271-0/+4
| |
* | implement precommand and postcommand hookskotfu2018-05-271-35/+143
| |
* | Add preloop and postloop hook capabilitieskotfu2018-05-261-7/+35
| |
* | Preparsing hooks not feasible, discarding.kotfu2018-05-261-21/+17
| |
* | Document and test postparsing hookskotfu2018-05-261-27/+96
| |
* | Allow registration of multiple postparsing hookskotfu2018-05-261-0/+19
|/
* Fix broken Sphinx documentationTodd Leonhardt2018-05-021-9/+9
| | | | All of the Sphinx autodoc/automethod documentation was broken since the cmd2.Cmd stuff got moved to cmd2.cmd2.Cmd when cmd2 got converted to a multi-file Python package.
* Mostly fix a bunch of spelling mistakes.Todd Leonhardt2017-03-131-5/+5
| | | | A few other miscellaneous minor tweaks for whitespace and such.
* Documentation updatesTodd Leonhardt2017-03-121-0/+61
- Added a new section on application life cycle and hook methods - Moved a warning to a more appropriate location - Added a note about using allow_redirection to disable output redirection and pipes