From 04cdcb0feb369ac4c60e10ccdc139c57e8b52e62 Mon Sep 17 00:00:00 2001 From: Zearin Date: Fri, 7 Oct 2011 10:34:23 -0400 Subject: Removed leftovers from installing with pip. Oops! I noticed there was a bunch of extra crap left over from when I installed this module onto my own system. I thought it wouldn't have modified itself at the time (just the Python module library on my system), but I was wrong. Begone, useless cruft! --- doxygen/html/classexample_1_1CmdLineApp.html | 299 --------------------------- 1 file changed, 299 deletions(-) delete mode 100644 doxygen/html/classexample_1_1CmdLineApp.html (limited to 'doxygen/html/classexample_1_1CmdLineApp.html') diff --git a/doxygen/html/classexample_1_1CmdLineApp.html b/doxygen/html/classexample_1_1CmdLineApp.html deleted file mode 100644 index 55bda32..0000000 --- a/doxygen/html/classexample_1_1CmdLineApp.html +++ /dev/null @@ -1,299 +0,0 @@ - - - - -Cmd2: example::CmdLineApp Class Reference - - - - - - - - - - - - - - -
- - -
- - - - - - - - - - - -
-
Cmd2 - -
- -
-
- - - - - -
-
- -
-
-
- -
-
- -
-
example::CmdLineApp Class Reference
-
-
-
-Inheritance diagram for example::CmdLineApp:
-
-
- - -cmd2::Cmd - -
- -

List of all members.

- - - - - - - - - -

-Public Member Functions

def do_speak

-Static Public Attributes

 do_orate = do_speak
 do_say = do_speak
int maxrepeats = 3
list multilineCommands = ['orate']
string redirector = '->'
-

Detailed Description

-
-

Definition at line 6 of file example.py.

-

Member Function Documentation

- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
def example::CmdLineApp::do_speak ( self,
 arg,
 opts = None 
)
-
-
-
Repeats what you tell me to.
-

Definition at line 17 of file example.py.

- -

References maxrepeats.

-
00017 
-00018     def do_speak(self, arg, opts=None):
-00019         """Repeats what you tell me to."""
-00020         arg = ''.join(arg)
-00021         if opts.piglatin:
-00022             arg = '%s%say' % (arg[1:].rstrip(), arg[0])
-00023         if opts.shout:
-00024             arg = arg.upper()
-00025         repetitions = opts.repeat or 1
-00026         for i in range(min(repetitions, self.maxrepeats)):
-00027             self.stdout.write(arg)
-00028             self.stdout.write('\n')
-00029             # self.stdout.write is better than "print", because Cmd can be
-00030             # initialized with a non-standard output destination        
-
-
-
-
-

Member Data Documentation

- -
-
- - - - -
example::CmdLineApp::do_orate = do_speak [static]
-
-
- -

Definition at line 32 of file example.py.

- -
-
- -
-
- - - - -
example::CmdLineApp::do_say = do_speak [static]
-
-
- -

Definition at line 31 of file example.py.

- -
-
- -
-
- - - - -
int example::CmdLineApp::maxrepeats = 3 [static]
-
-
- -

Definition at line 9 of file example.py.

- -

Referenced by do_speak().

- -
-
- -
-
- - - - -
list example::CmdLineApp::multilineCommands = ['orate'] [static]
-
-
- -

Reimplemented from cmd2::Cmd.

- -

Definition at line 7 of file example.py.

- -
-
- -
-
- - - - -
string example::CmdLineApp::redirector = '->' [static]
-
-
- -

Reimplemented from cmd2::Cmd.

- -

Definition at line 10 of file example.py.

- -
-
-
The documentation for this class was generated from the following file:
    -
  • /Users/amrogers/Developer/Projects/cmd2/example/example.py
  • -
-
-
- - - - - -- cgit v1.2.1