doc
index
/Users/hollis/Desktop/nakedmud/lib/pymodules/doc.py

doc.py
 
This module allows documentation for Python classes and modules to be viewed
in-game via the 'doc' command.

 
Modules
       
display
mudsys
os
pydoc

 
Functions
       
cmd_doc(ch, cmd, arg)
Return Python documentation for the specified module, class, function,
etc... for example:
 
> doc char.Char
 
Will return all available documentation for the Char class.
cmd_htmldoc(ch, cmd, arg)
Creates html documentation for all registered modules. html files will
be saved to html/pydocs/
register_module_doc(modname, package=None, root='pymodules')
Add a new module name to suggested_reading. If modname is a package,
recursively add its packages as well

 
Data
        HTML_DOC_DIR = '../html/pydocs'
builtins = ['char', 'room', 'obj', 'exit', 'account', 'mudsock', 'mud', 'mudsys', 'hooks', 'event', 'auxiliary', 'storage', 'olc']
fname = 'utils.pyc'
mod = 'olc'
modname = 'utils'
shortcuts = {'ch': 'char', 'sock': 'mudsock'}
suggested_reading = ['char', 'room', 'obj', 'exit', 'account', 'mudsock', 'mud', 'mudsys', 'hooks', 'event', 'auxiliary', 'storage', 'olc', 'account_handler', 'char_gen', 'cmd_admin', 'cmd_comm', 'cmd_inform', 'cmd_manip', 'cmd_misc', ...]