From: Mike C. F. <mcf...@us...> - 2005-09-17 05:37:21
|
Update of /cvsroot/pydispatcher/dispatch/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15623/docs Modified Files: index.html Log Message: Urgh, didn't get the index.html changes checked in first time Index: index.html =================================================================== RCS file: /cvsroot/pydispatcher/dispatch/docs/index.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** index.html 26 Nov 2004 06:37:33 -0000 1.7 --- index.html 17 Sep 2005 05:37:11 -0000 1.8 *************** *** 1,8 **** <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> ! <html><head> ! <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"><title>Python Dispatch Package</title> ! <link href="style/sitestyle.css" type="text/css" rel="stylesheet"> ! <meta content="Patrick K. O'Brien" name="author"></head> <body> <h1>PyDispatcher</h1> --- 1,11 ---- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> ! <html> ! <head> ! <meta content="text/html; charset=ISO-8859-1" ! http-equiv="content-type"> ! <title>Python Dispatch Package</title> <link href="style/sitestyle.css" type="text/css" rel="stylesheet"> ! <meta content="Patrick K. O'Brien" name="author"> ! </head> <body> <h1>PyDispatcher</h1> *************** *** 11,17 **** routing infrastructure for use in multiple contexts. The mechanism ! of PyDispatcher started life as a highly rated <a href="http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/87056">recipe</a> in the <a href="http://aspn.activestate.com/ASPN/Python/Cookbook/">Python ! Cookbook</a>. The SourceForge <a href="https://sourceforge.net/projects/pydispatcher/">project</a> aims to include various enhancements to the recipe developed during use in various applications.<br> --- 14,22 ---- routing infrastructure for use in multiple contexts. The mechanism ! of PyDispatcher started life as a highly rated <a ! href="http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/87056">recipe</a> in the <a href="http://aspn.activestate.com/ASPN/Python/Cookbook/">Python ! Cookbook</a>. The SourceForge <a ! href="https://sourceforge.net/projects/pydispatcher/">project</a> aims to include various enhancements to the recipe developed during use in various applications.<br> *************** *** 68,72 **** <h2>Acquisition and Installation</h2> <p>PyDispatcher is available as a standard Python distutils ! installation package from the SourceForge project <a href="https://sourceforge.net/project/showfiles.php?group_id=79755">file repository</a>. To install, unzip the source archive into a temporary directory and run:<br> --- 73,78 ---- <h2>Acquisition and Installation</h2> <p>PyDispatcher is available as a standard Python distutils ! installation package from the SourceForge project <a ! href="https://sourceforge.net/project/showfiles.php?group_id=79755">file repository</a>. To install, unzip the source archive into a temporary directory and run:<br> *************** *** 74,78 **** <pre>python setup.py install<br></pre> <p>PyDispatcher does not include any binary packages, so there should ! be no issues in installation. To use the <a href="https://sourceforge.net/cvs/?group_id=79755">CVS version</a> of PyDispatcher (useful for developers of PyDispatcher), simply check out the module to a directory on your PythonPath.<br> --- 80,85 ---- <pre>python setup.py install<br></pre> <p>PyDispatcher does not include any binary packages, so there should ! be no issues in installation. To use the <a ! href="https://sourceforge.net/cvs/?group_id=79755">CVS version</a> of PyDispatcher (useful for developers of PyDispatcher), simply check out the module to a directory on your PythonPath.<br> *************** *** 84,88 **** </p> <p class="technical">Python 2.2.2 (and ! earlier) weak reference implementations have a subtle <a href="https://sourceforge.net/tracker/?group_id=5470&atid=105470&func=detail&aid=742911">bug</a> in their weakref destructor code which can cause memory access errors (aka segfaults) on program shutdown. If you are using Python 2.2, --- 91,96 ---- </p> <p class="technical">Python 2.2.2 (and ! earlier) weak reference implementations have a subtle <a ! href="https://sourceforge.net/tracker/?group_id=5470&atid=105470&func=detail&aid=742911">bug</a> in their weakref destructor code which can cause memory access errors (aka segfaults) on program shutdown. If you are using Python 2.2, *************** *** 94,98 **** </p> <p class="technical">Python 2.3.2 (and earlier) has a different (even ! more subtle) <a href="http://cvs.sourceforge.net/viewcvs.py/python/python/dist/src/Modules/gc_weakref.txt?rev=2.1&view=auto">bug</a> in the weakref destructor code which, again, can cause segfaults. If you are using Python 2.3, it is <strong>strongly --- 102,107 ---- </p> <p class="technical">Python 2.3.2 (and earlier) has a different (even ! more subtle) <a ! href="http://cvs.sourceforge.net/viewcvs.py/python/python/dist/src/Modules/gc_weakref.txt?rev=2.1&view=auto">bug</a> in the weakref destructor code which, again, can cause segfaults. If you are using Python 2.3, it is <strong>strongly *************** *** 105,117 **** <h2>Documentation</h2> <p>You can find usage samples in the examples directory of the ! distribution. The dispatcher module's <a href="pydoc/dispatch.dispatcher.html">reference documentation</a> is currently the major source of information regarding usage.<br> </p> <p>PyDispatcher welcomes contributions, suggestions, and feedback from ! users in the pydispatcher-dev <a href="http://lists.sourceforge.net/lists/listinfo/pydispatcher-devel">mailing list</a>.<br> </p> <h2>Release Notes</h2> <ul> <li>Version 1.0.2</li> <ul> --- 114,140 ---- <h2>Documentation</h2> <p>You can find usage samples in the examples directory of the ! distribution. The dispatcher module's <a ! href="pydoc/dispatch.dispatcher.html">reference documentation</a> is currently the major source of information regarding usage.<br> </p> <p>PyDispatcher welcomes contributions, suggestions, and feedback from ! users in the pydispatcher-dev <a ! href="http://lists.sourceforge.net/lists/listinfo/pydispatcher-devel">mailing list</a>.<br> </p> <h2>Release Notes</h2> <ul> + <li>Version 1.0.3</li> + <ul> + <li>Add "robust" module with single function sendRobust, which + catches errors during callbacks and returns the error instances instead + of propagating the error</li> + <li>Patch bug in SafeRef deletion where traceback module has + already been deleted by interpreter shutdown</li> + <li>Patch bug in _removeReceiver where sendersBack has already been + deleted by interpreter shutdown</li> + <li>Make SafeRef pre-cache method name to allow for repr after + cleanup of the method</li> + </ul> <li>Version 1.0.2</li> <ul> *************** *** 120,124 **** </ul> <li>Version 1.0.1</li> - <ul> <li>Fixes 2 memory leaks, one regarding the back-reference table --- 143,146 ---- *************** *** 132,136 **** </ul> </ul> ! ! <p class="footer">A SourceForge Open-Source project: <a href="http://sourceforge.net"><img title="" alt="SourceForge" style="border: 0px solid ; width: 88px; height: 31px;" src="http://sourceforge.net/sflogo.php?group_id=79755&type=1" align="middle" border="0" height="31" width="88"></a></p> ! </body></html> \ No newline at end of file --- 154,162 ---- </ul> </ul> ! <p class="footer">A SourceForge Open-Source project: <a ! href="http://sourceforge.net"><img title="" alt="SourceForge" ! style="border: 0px solid ; width: 88px; height: 31px;" ! src="http://sourceforge.net/sflogo.php?group_id=79755&type=1" ! align="middle" border="0" height="31" width="88"></a></p> ! </body> ! </html> |