[Nym3-commit] r330 - in trunk/nymbaron: . Client Server

jr at conuropsis.org jr at conuropsis.org
Mon Oct 10 02:06:32 CEST 2005


Author: jr
Date: 2005-10-10 02:06:31 +0200 (Mon, 10 Oct 2005)
New Revision: 330

Modified:
   trunk/nymbaron/Client/__init__.py
   trunk/nymbaron/Server/__init__.py
   trunk/nymbaron/TODO
   trunk/nymbaron/__init__.py
Log:
- add doc strings in modules __init__.py


Modified: trunk/nymbaron/Client/__init__.py
===================================================================
--- trunk/nymbaron/Client/__init__.py	2005-10-09 12:50:13 UTC (rev 329)
+++ trunk/nymbaron/Client/__init__.py	2005-10-10 00:06:31 UTC (rev 330)
@@ -0,0 +1,30 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2004,2005 Jean-René Reinhard <jr at komite.net>
+# and Laurent Fousse <laurent at komite.net>.
+# 
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to
+# deal in the Software without restriction, including without limitation the
+# rights to use, copy, modify, merge, publish, distribute, and/or sell copies
+# of the Software, and to permit persons to whom the Software is furnished to
+# do so, provided that the above copyright notice(s) and this permission
+# notice appear in all copies of the Software and that both the above
+# copyright notice(s) and this permission notice appear in supporting
+# documentation.
+# 
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
+# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE
+# LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR
+# ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
+# IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
+# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+"""nymbaron.Client
+
+    Type III nymholder client code.
+    """
+__all__ = [ ]
+

Modified: trunk/nymbaron/Server/__init__.py
===================================================================
--- trunk/nymbaron/Server/__init__.py	2005-10-09 12:50:13 UTC (rev 329)
+++ trunk/nymbaron/Server/__init__.py	2005-10-10 00:06:31 UTC (rev 330)
@@ -0,0 +1,30 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2004,2005 Jean-René Reinhard <jr at komite.net>
+# and Laurent Fousse <laurent at komite.net>.
+# 
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to
+# deal in the Software without restriction, including without limitation the
+# rights to use, copy, modify, merge, publish, distribute, and/or sell copies
+# of the Software, and to permit persons to whom the Software is furnished to
+# do so, provided that the above copyright notice(s) and this permission
+# notice appear in all copies of the Software and that both the above
+# copyright notice(s) and this permission notice appear in supporting
+# documentation.
+# 
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
+# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE
+# LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR
+# ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
+# IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
+# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+"""nymbaron.Server
+
+    Type III nymserver code.
+    """
+__all__ = [ ]
+

Modified: trunk/nymbaron/TODO
===================================================================
--- trunk/nymbaron/TODO	2005-10-09 12:50:13 UTC (rev 329)
+++ trunk/nymbaron/TODO	2005-10-10 00:06:31 UTC (rev 330)
@@ -23,7 +23,7 @@
  X reorder the items of the usage string [client]
 
 doc:
- - add doc strings in __init__.py in every module.
+ o add doc strings in __init__.py in every module.
 
 Message.py:
  X add the print method which prints the content of a command object in a user

Modified: trunk/nymbaron/__init__.py
===================================================================
--- trunk/nymbaron/__init__.py	2005-10-09 12:50:13 UTC (rev 329)
+++ trunk/nymbaron/__init__.py	2005-10-10 00:06:31 UTC (rev 330)
@@ -0,0 +1,30 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2004,2005 Jean-René Reinhard <jr at komite.net>
+# and Laurent Fousse <laurent at komite.net>.
+# 
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to
+# deal in the Software without restriction, including without limitation the
+# rights to use, copy, modify, merge, publish, distribute, and/or sell copies
+# of the Software, and to permit persons to whom the Software is furnished to
+# do so, provided that the above copyright notice(s) and this permission
+# notice appear in all copies of the Software and that both the above
+# copyright notice(s) and this permission notice appear in supporting
+# documentation.
+# 
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
+# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE
+# LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR
+# ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
+# IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
+# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+"""nymbaron
+
+    Type III nymserver and nymholder client code.
+    """
+__all__ = [ 'Client', 'Server' ]
+



More information about the Nym3-commit mailing list