Author: aum
Date: 2006-05-14 12:29:36 +0000 (Sun, 14 May 2006)
New Revision: 8701

Modified:
   trunk/apps/pyFreenet/code.leo
   trunk/apps/pyFreenet/fcp.py
   
trunk/apps/pyFreenet/html/private/SimpleXMLRPCServer.SimpleXMLRPCDispatcher-class.html
   
trunk/apps/pyFreenet/html/private/SimpleXMLRPCServer.SimpleXMLRPCServer-class.html
   trunk/apps/pyFreenet/html/private/SocketServer.BaseServer-class.html
   trunk/apps/pyFreenet/html/private/SocketServer.TCPServer-class.html
   trunk/apps/pyFreenet/html/private/SocketServer.ThreadingMixIn-class.html
   trunk/apps/pyFreenet/html/private/exceptions.Exception-class.html
   trunk/apps/pyFreenet/html/private/fcp-module.html
   trunk/apps/pyFreenet/html/private/fcp.ConnectionRefused-class.html
   trunk/apps/pyFreenet/html/private/fcp.FCPException-class.html
   trunk/apps/pyFreenet/html/private/fcp.FCPGetFailed-class.html
   trunk/apps/pyFreenet/html/private/fcp.FCPNodeConnection-class.html
   trunk/apps/pyFreenet/html/private/fcp.FCPProtocolError-class.html
   trunk/apps/pyFreenet/html/private/fcp.FCPPutFailed-class.html
   trunk/apps/pyFreenet/html/private/fcp.JobTicket-class.html
   trunk/apps/pyFreenet/html/private/fcpxmlrpc-module.html
   trunk/apps/pyFreenet/html/private/fcpxmlrpc.FCPXMLRPCServer-class.html
   
trunk/apps/pyFreenet/html/private/fcpxmlrpc.FreenetXMLRPCRequestHandler-class.html
   trunk/apps/pyFreenet/html/private/help.html
   trunk/apps/pyFreenet/html/private/indices.html
   trunk/apps/pyFreenet/html/private/sitemgr-module.html
   trunk/apps/pyFreenet/html/private/sitemgr.SiteMgr-class.html
   trunk/apps/pyFreenet/html/private/trees.html
   
trunk/apps/pyFreenet/html/public/SimpleXMLRPCServer.SimpleXMLRPCDispatcher-class.html
   
trunk/apps/pyFreenet/html/public/SimpleXMLRPCServer.SimpleXMLRPCServer-class.html
   trunk/apps/pyFreenet/html/public/SocketServer.TCPServer-class.html
   trunk/apps/pyFreenet/html/public/SocketServer.ThreadingMixIn-class.html
   trunk/apps/pyFreenet/html/public/exceptions.Exception-class.html
   trunk/apps/pyFreenet/html/public/fcp-module.html
   trunk/apps/pyFreenet/html/public/fcp.ConnectionRefused-class.html
   trunk/apps/pyFreenet/html/public/fcp.FCPException-class.html
   trunk/apps/pyFreenet/html/public/fcp.FCPGetFailed-class.html
   trunk/apps/pyFreenet/html/public/fcp.FCPNodeConnection-class.html
   trunk/apps/pyFreenet/html/public/fcp.FCPProtocolError-class.html
   trunk/apps/pyFreenet/html/public/fcp.FCPPutFailed-class.html
   trunk/apps/pyFreenet/html/public/fcp.JobTicket-class.html
   trunk/apps/pyFreenet/html/public/fcpxmlrpc-module.html
   trunk/apps/pyFreenet/html/public/fcpxmlrpc.FCPXMLRPCServer-class.html
   
trunk/apps/pyFreenet/html/public/fcpxmlrpc.FreenetXMLRPCRequestHandler-class.html
   trunk/apps/pyFreenet/html/public/help.html
   trunk/apps/pyFreenet/html/public/indices.html
   trunk/apps/pyFreenet/html/public/sitemgr-module.html
   trunk/apps/pyFreenet/html/public/sitemgr.SiteMgr-class.html
   trunk/apps/pyFreenet/html/public/trees.html
Log:
Fixed a few little bugs


Modified: trunk/apps/pyFreenet/code.leo
===================================================================
--- trunk/apps/pyFreenet/code.leo       2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/code.leo       2006-05-14 12:29:36 UTC (rev 8701)
@@ -16,7 +16,7 @@
 <v t="aum.20060513181137" tnodeList="aum.20060513181137"><vh>@nosent 
COPYING</vh></v>
 <v t="aum.20060513181205" tnodeList="aum.20060513181205"><vh>@nosent 
BUGS</vh></v>
 <v t="aum.20060513181313" tnodeList="aum.20060513181313"><vh>@nosent 
CHANGELOG</vh></v>
-<v t="aum.20060513182312" a="V" tnodeList="aum.20060513182312"><vh>@nosent 
release.py</vh></v>
+<v t="aum.20060513182312" tnodeList="aum.20060513182312"><vh>@nosent 
release.py</vh></v>
 </v>
 <v t="aum.20060514232355" a="E"><vh>Tutorials</vh>
 <v t="aum.20060514232355.1" tnodeList="aum.20060514232355.1"><vh>@nosent 
tutorial.py</vh></v>
@@ -33,7 +33,7 @@
 <v t="aum.20060506231352.1"><vh>genkey</vh></v>
 <v t="aum.20060506231352"><vh>get</vh></v>
 <v t="aum.20060507003931"><vh>put</vh></v>
-<v t="aum.20060511001853"><vh>putdir</vh></v>
+<v t="aum.20060511001853" a="V"><vh>putdir</vh></v>
 </v>
 <v t="aum.20060506224238" a="E"><vh>Other High Level Methods</vh>
 <v t="aum.20060514224855"><vh>listenGlobal</vh></v>
@@ -6279,7 +6279,7 @@
     if kw.get('Global', False):
         msgLines.append("Global=true")
     else:
-        msgLines.append("Global=true")
+        msgLines.append("Global=false")

     # scan directory and add its files
     n = 0
@@ -7380,8 +7380,13 @@
         pass

     # send the cancel
+    if self.isGlobal:
+        isGlobal = "true"
+    else:
+        isGlobal = "False"
+
     self.node._txMsg("RemovePersistentRequest",
-                     Global="false",
+                     Global=isGlobal,
                      Identifier=self.id)

 </t>

Modified: trunk/apps/pyFreenet/fcp.py
===================================================================
--- trunk/apps/pyFreenet/fcp.py 2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/fcp.py 2006-05-14 12:29:36 UTC (rev 8701)
@@ -471,7 +471,7 @@
         if kw.get('Global', False):
             msgLines.append("Global=true")
         else:
-            msgLines.append("Global=true")
+            msgLines.append("Global=false")

         # scan directory and add its files
         n = 0
@@ -1172,8 +1172,13 @@
             pass

         # send the cancel
+        if self.isGlobal:
+            isGlobal = "true"
+        else:
+            isGlobal = "False"
+    
         self.node._txMsg("RemovePersistentRequest",
-                         Global="false",
+                         Global=isGlobal,
                          Identifier=self.id)

     def _appendMsg(self, msg):

Modified: 
trunk/apps/pyFreenet/html/private/SimpleXMLRPCServer.SimpleXMLRPCDispatcher-class.html
===================================================================
--- 
trunk/apps/pyFreenet/html/private/SimpleXMLRPCServer.SimpleXMLRPCDispatcher-class.html
      2006-05-14 11:57:31 UTC (rev 8700)
+++ 
trunk/apps/pyFreenet/html/private/SimpleXMLRPCServer.SimpleXMLRPCDispatcher-class.html
      2006-05-14 12:29:36 UTC (rev 8701)
@@ -309,7 +309,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: 
trunk/apps/pyFreenet/html/private/SimpleXMLRPCServer.SimpleXMLRPCServer-class.html
===================================================================
--- 
trunk/apps/pyFreenet/html/private/SimpleXMLRPCServer.SimpleXMLRPCServer-class.html
  2006-05-14 11:57:31 UTC (rev 8700)
+++ 
trunk/apps/pyFreenet/html/private/SimpleXMLRPCServer.SimpleXMLRPCServer-class.html
  2006-05-14 12:29:36 UTC (rev 8701)
@@ -232,7 +232,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/private/SocketServer.BaseServer-class.html
===================================================================
--- trunk/apps/pyFreenet/html/private/SocketServer.BaseServer-class.html        
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/private/SocketServer.BaseServer-class.html        
2006-05-14 12:29:36 UTC (rev 8701)
@@ -278,7 +278,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/private/SocketServer.TCPServer-class.html
===================================================================
--- trunk/apps/pyFreenet/html/private/SocketServer.TCPServer-class.html 
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/private/SocketServer.TCPServer-class.html 
2006-05-14 12:29:36 UTC (rev 8701)
@@ -382,7 +382,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: 
trunk/apps/pyFreenet/html/private/SocketServer.ThreadingMixIn-class.html
===================================================================
--- trunk/apps/pyFreenet/html/private/SocketServer.ThreadingMixIn-class.html    
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/private/SocketServer.ThreadingMixIn-class.html    
2006-05-14 12:29:36 UTC (rev 8701)
@@ -157,7 +157,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/private/exceptions.Exception-class.html
===================================================================
--- trunk/apps/pyFreenet/html/private/exceptions.Exception-class.html   
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/private/exceptions.Exception-class.html   
2006-05-14 12:29:36 UTC (rev 8701)
@@ -86,7 +86,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/private/fcp-module.html
===================================================================
--- trunk/apps/pyFreenet/html/private/fcp-module.html   2006-05-14 11:57:31 UTC 
(rev 8700)
+++ trunk/apps/pyFreenet/html/private/fcp-module.html   2006-05-14 12:29:36 UTC 
(rev 8701)
@@ -458,7 +458,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/private/fcp.ConnectionRefused-class.html
===================================================================
--- trunk/apps/pyFreenet/html/private/fcp.ConnectionRefused-class.html  
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/private/fcp.ConnectionRefused-class.html  
2006-05-14 12:29:36 UTC (rev 8701)
@@ -89,7 +89,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/private/fcp.FCPException-class.html
===================================================================
--- trunk/apps/pyFreenet/html/private/fcp.FCPException-class.html       
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/private/fcp.FCPException-class.html       
2006-05-14 12:29:36 UTC (rev 8701)
@@ -93,7 +93,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/private/fcp.FCPGetFailed-class.html
===================================================================
--- trunk/apps/pyFreenet/html/private/fcp.FCPGetFailed-class.html       
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/private/fcp.FCPGetFailed-class.html       
2006-05-14 12:29:36 UTC (rev 8701)
@@ -91,7 +91,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/private/fcp.FCPNodeConnection-class.html
===================================================================
--- trunk/apps/pyFreenet/html/private/fcp.FCPNodeConnection-class.html  
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/private/fcp.FCPNodeConnection-class.html  
2006-05-14 12:29:36 UTC (rev 8701)
@@ -833,7 +833,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/private/fcp.FCPProtocolError-class.html
===================================================================
--- trunk/apps/pyFreenet/html/private/fcp.FCPProtocolError-class.html   
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/private/fcp.FCPProtocolError-class.html   
2006-05-14 12:29:36 UTC (rev 8701)
@@ -91,7 +91,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/private/fcp.FCPPutFailed-class.html
===================================================================
--- trunk/apps/pyFreenet/html/private/fcp.FCPPutFailed-class.html       
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/private/fcp.FCPPutFailed-class.html       
2006-05-14 12:29:36 UTC (rev 8701)
@@ -91,7 +91,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/private/fcp.JobTicket-class.html
===================================================================
--- trunk/apps/pyFreenet/html/private/fcp.JobTicket-class.html  2006-05-14 
11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/private/fcp.JobTicket-class.html  2006-05-14 
12:29:36 UTC (rev 8701)
@@ -244,7 +244,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/private/fcpxmlrpc-module.html
===================================================================
--- trunk/apps/pyFreenet/html/private/fcpxmlrpc-module.html     2006-05-14 
11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/private/fcpxmlrpc-module.html     2006-05-14 
12:29:36 UTC (rev 8701)
@@ -185,7 +185,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/private/fcpxmlrpc.FCPXMLRPCServer-class.html
===================================================================
--- trunk/apps/pyFreenet/html/private/fcpxmlrpc.FCPXMLRPCServer-class.html      
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/private/fcpxmlrpc.FCPXMLRPCServer-class.html      
2006-05-14 12:29:36 UTC (rev 8701)
@@ -294,7 +294,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: 
trunk/apps/pyFreenet/html/private/fcpxmlrpc.FreenetXMLRPCRequestHandler-class.html
===================================================================
--- 
trunk/apps/pyFreenet/html/private/fcpxmlrpc.FreenetXMLRPCRequestHandler-class.html
  2006-05-14 11:57:31 UTC (rev 8700)
+++ 
trunk/apps/pyFreenet/html/private/fcpxmlrpc.FreenetXMLRPCRequestHandler-class.html
  2006-05-14 12:29:36 UTC (rev 8701)
@@ -142,7 +142,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/private/help.html
===================================================================
--- trunk/apps/pyFreenet/html/private/help.html 2006-05-14 11:57:31 UTC (rev 
8700)
+++ trunk/apps/pyFreenet/html/private/help.html 2006-05-14 12:29:36 UTC (rev 
8701)
@@ -225,7 +225,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:26 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/private/indices.html
===================================================================
--- trunk/apps/pyFreenet/html/private/indices.html      2006-05-14 11:57:31 UTC 
(rev 8700)
+++ trunk/apps/pyFreenet/html/private/indices.html      2006-05-14 12:29:36 UTC 
(rev 8701)
@@ -350,7 +350,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:26 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/private/sitemgr-module.html
===================================================================
--- trunk/apps/pyFreenet/html/private/sitemgr-module.html       2006-05-14 
11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/private/sitemgr-module.html       2006-05-14 
12:29:36 UTC (rev 8701)
@@ -185,7 +185,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/private/sitemgr.SiteMgr-class.html
===================================================================
--- trunk/apps/pyFreenet/html/private/sitemgr.SiteMgr-class.html        
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/private/sitemgr.SiteMgr-class.html        
2006-05-14 12:29:36 UTC (rev 8701)
@@ -193,7 +193,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/private/trees.html
===================================================================
--- trunk/apps/pyFreenet/html/private/trees.html        2006-05-14 11:57:31 UTC 
(rev 8700)
+++ trunk/apps/pyFreenet/html/private/trees.html        2006-05-14 12:29:36 UTC 
(rev 8701)
@@ -120,7 +120,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:26 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: 
trunk/apps/pyFreenet/html/public/SimpleXMLRPCServer.SimpleXMLRPCDispatcher-class.html
===================================================================
--- 
trunk/apps/pyFreenet/html/public/SimpleXMLRPCServer.SimpleXMLRPCDispatcher-class.html
       2006-05-14 11:57:31 UTC (rev 8700)
+++ 
trunk/apps/pyFreenet/html/public/SimpleXMLRPCServer.SimpleXMLRPCDispatcher-class.html
       2006-05-14 12:29:36 UTC (rev 8701)
@@ -258,7 +258,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: 
trunk/apps/pyFreenet/html/public/SimpleXMLRPCServer.SimpleXMLRPCServer-class.html
===================================================================
--- 
trunk/apps/pyFreenet/html/public/SimpleXMLRPCServer.SimpleXMLRPCServer-class.html
   2006-05-14 11:57:31 UTC (rev 8700)
+++ 
trunk/apps/pyFreenet/html/public/SimpleXMLRPCServer.SimpleXMLRPCServer-class.html
   2006-05-14 12:29:36 UTC (rev 8701)
@@ -186,7 +186,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/public/SocketServer.TCPServer-class.html
===================================================================
--- trunk/apps/pyFreenet/html/public/SocketServer.TCPServer-class.html  
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/public/SocketServer.TCPServer-class.html  
2006-05-14 12:29:36 UTC (rev 8701)
@@ -348,7 +348,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: 
trunk/apps/pyFreenet/html/public/SocketServer.ThreadingMixIn-class.html
===================================================================
--- trunk/apps/pyFreenet/html/public/SocketServer.ThreadingMixIn-class.html     
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/public/SocketServer.ThreadingMixIn-class.html     
2006-05-14 12:29:36 UTC (rev 8701)
@@ -157,7 +157,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/public/exceptions.Exception-class.html
===================================================================
--- trunk/apps/pyFreenet/html/public/exceptions.Exception-class.html    
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/public/exceptions.Exception-class.html    
2006-05-14 12:29:36 UTC (rev 8701)
@@ -86,7 +86,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/public/fcp-module.html
===================================================================
--- trunk/apps/pyFreenet/html/public/fcp-module.html    2006-05-14 11:57:31 UTC 
(rev 8700)
+++ trunk/apps/pyFreenet/html/public/fcp-module.html    2006-05-14 12:29:36 UTC 
(rev 8701)
@@ -458,7 +458,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/public/fcp.ConnectionRefused-class.html
===================================================================
--- trunk/apps/pyFreenet/html/public/fcp.ConnectionRefused-class.html   
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/public/fcp.ConnectionRefused-class.html   
2006-05-14 12:29:36 UTC (rev 8701)
@@ -89,7 +89,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/public/fcp.FCPException-class.html
===================================================================
--- trunk/apps/pyFreenet/html/public/fcp.FCPException-class.html        
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/public/fcp.FCPException-class.html        
2006-05-14 12:29:36 UTC (rev 8701)
@@ -93,7 +93,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/public/fcp.FCPGetFailed-class.html
===================================================================
--- trunk/apps/pyFreenet/html/public/fcp.FCPGetFailed-class.html        
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/public/fcp.FCPGetFailed-class.html        
2006-05-14 12:29:36 UTC (rev 8701)
@@ -91,7 +91,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/public/fcp.FCPNodeConnection-class.html
===================================================================
--- trunk/apps/pyFreenet/html/public/fcp.FCPNodeConnection-class.html   
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/public/fcp.FCPNodeConnection-class.html   
2006-05-14 12:29:36 UTC (rev 8701)
@@ -619,7 +619,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/public/fcp.FCPProtocolError-class.html
===================================================================
--- trunk/apps/pyFreenet/html/public/fcp.FCPProtocolError-class.html    
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/public/fcp.FCPProtocolError-class.html    
2006-05-14 12:29:36 UTC (rev 8701)
@@ -91,7 +91,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/public/fcp.FCPPutFailed-class.html
===================================================================
--- trunk/apps/pyFreenet/html/public/fcp.FCPPutFailed-class.html        
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/public/fcp.FCPPutFailed-class.html        
2006-05-14 12:29:36 UTC (rev 8701)
@@ -91,7 +91,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/public/fcp.JobTicket-class.html
===================================================================
--- trunk/apps/pyFreenet/html/public/fcp.JobTicket-class.html   2006-05-14 
11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/public/fcp.JobTicket-class.html   2006-05-14 
12:29:36 UTC (rev 8701)
@@ -223,7 +223,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/public/fcpxmlrpc-module.html
===================================================================
--- trunk/apps/pyFreenet/html/public/fcpxmlrpc-module.html      2006-05-14 
11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/public/fcpxmlrpc-module.html      2006-05-14 
12:29:36 UTC (rev 8701)
@@ -185,7 +185,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/public/fcpxmlrpc.FCPXMLRPCServer-class.html
===================================================================
--- trunk/apps/pyFreenet/html/public/fcpxmlrpc.FCPXMLRPCServer-class.html       
2006-05-14 11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/public/fcpxmlrpc.FCPXMLRPCServer-class.html       
2006-05-14 12:29:36 UTC (rev 8701)
@@ -254,7 +254,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: 
trunk/apps/pyFreenet/html/public/fcpxmlrpc.FreenetXMLRPCRequestHandler-class.html
===================================================================
--- 
trunk/apps/pyFreenet/html/public/fcpxmlrpc.FreenetXMLRPCRequestHandler-class.html
   2006-05-14 11:57:31 UTC (rev 8700)
+++ 
trunk/apps/pyFreenet/html/public/fcpxmlrpc.FreenetXMLRPCRequestHandler-class.html
   2006-05-14 12:29:36 UTC (rev 8701)
@@ -142,7 +142,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/public/help.html
===================================================================
--- trunk/apps/pyFreenet/html/public/help.html  2006-05-14 11:57:31 UTC (rev 
8700)
+++ trunk/apps/pyFreenet/html/public/help.html  2006-05-14 12:29:36 UTC (rev 
8701)
@@ -225,7 +225,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:26 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/public/indices.html
===================================================================
--- trunk/apps/pyFreenet/html/public/indices.html       2006-05-14 11:57:31 UTC 
(rev 8700)
+++ trunk/apps/pyFreenet/html/public/indices.html       2006-05-14 12:29:36 UTC 
(rev 8701)
@@ -298,7 +298,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:26 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/public/sitemgr-module.html
===================================================================
--- trunk/apps/pyFreenet/html/public/sitemgr-module.html        2006-05-14 
11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/public/sitemgr-module.html        2006-05-14 
12:29:36 UTC (rev 8701)
@@ -185,7 +185,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/public/sitemgr.SiteMgr-class.html
===================================================================
--- trunk/apps/pyFreenet/html/public/sitemgr.SiteMgr-class.html 2006-05-14 
11:57:31 UTC (rev 8700)
+++ trunk/apps/pyFreenet/html/public/sitemgr.SiteMgr-class.html 2006-05-14 
12:29:36 UTC (rev 8701)
@@ -176,7 +176,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:25 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>

Modified: trunk/apps/pyFreenet/html/public/trees.html
===================================================================
--- trunk/apps/pyFreenet/html/public/trees.html 2006-05-14 11:57:31 UTC (rev 
8700)
+++ trunk/apps/pyFreenet/html/public/trees.html 2006-05-14 12:29:36 UTC (rev 
8701)
@@ -108,7 +108,7 @@

 <table border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
-    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Sun May 14 
23:27:21 2006</font></td>
+    <td align="left"><font size="-2">Generated by Epydoc 2.1 on Mon May 15 
00:27:26 2006</font></td>
     <td align="right"><a href="http://epydoc.sourceforge.net";
                       ><font size="-2">http://epydoc.sf.net</font></a></td>
   </tr>


Reply via email to