Update of /cvsroot/wpdev/xmlscripts/scripts/wolfpack
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22076/wolfpack
Modified Files:
__init__.py console.py
Log Message:
Documentation
Index: console.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/wolfpack/console.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** console.py 26 May 2004 13:07:27 -0000 1.10
--- console.py 27 Jun 2004 19:24:46 -0000 1.11
***************
*** 15,33 ****
import _wolfpack.console
- log = _wolfpack.console.log
send = _wolfpack.console.send
!
! """
! \function wolfpack.console.getbuffer
! \return Console Buffer
! \description Returns the current console buffer.
! """
! def getbuffer():
! return _wolfpack.console.getbuffer()
!
! """
! \function wolfpack.console.reloadScripts
! \description Tells the console to reload scripts.
! """
! def reloadScripts():
! return _wolfpack.console.reloadScripts()
--- 15,24 ----
import _wolfpack.console
send = _wolfpack.console.send
! sendprogress = _wolfpack.console.sendprogress
! senddone = _wolfpack.console.senddone
! sendfail = _wolfpack.console.sendfail
! sendskip = _wolfpack.console.sendskip
! getbuffer = _wolfpack.console.getbuffer
! log = _wolfpack.console.log
! shutdown = _wolfpack.console.shutdown
Index: __init__.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/wolfpack/__init__.py,v
retrieving revision 1.53
retrieving revision 1.54
diff -C2 -d -r1.53 -r1.54
*** __init__.py 30 May 2004 13:22:41 -0000 1.53
--- __init__.py 27 Jun 2004 19:24:46 -0000 1.54
***************
*** 65,76 ****
return _wolfpack.findmulti( arg )
- """
- \function wolfpack.region
- \param x
- \param y
- \param map
- \return The Region ID
- \description Gets the region for a position.
- """
def region( x, y, map ):
if not type( x ) is IntType or not type( y ) is IntType or not type( map ) is IntType:
--- 65,68 ----
|