[Repoze-dev] Plope CVS: Packages/supervisor2/src/supervisor - __init__.py:1.3 childutils.py:1.7 datatypes.py:1.15 dispatchers.py:1.25 events.py:1.16 http.py:1.32 loggers.py:1.14 options.py:1.90 process.py:1.64 rpcinterface.py:1.20 states.py:1.4 supervisorctl.py:1.36 supervisord.py:1.96 web.py:1.24 xmlrpc.py:1.38

chrism cvs at plope.com
Sat Sep 22 23:53:21 UTC 2007


Update of /home/chrism/cvs/Packages/supervisor2/src/supervisor
In directory cabana.palladion.com:/tmp/cvs-serv19565/src/supervisor

Modified Files:
	__init__.py childutils.py datatypes.py dispatchers.py 
	events.py http.py loggers.py options.py process.py 
	rpcinterface.py states.py supervisorctl.py supervisord.py 
	web.py xmlrpc.py 
Log Message:
Use the repoze license for supervisor2.  It's largely the same as the ZPL, except it removes the servicemark clause. 


=== Packages/supervisor2/src/supervisor/__init__.py 1.2 => 1.3 ===
--- Packages/supervisor2/src/supervisor/__init__.py:1.2	Wed Aug  1 15:40:07 2007
+++ Packages/supervisor2/src/supervisor/__init__.py	Sat Sep 22 19:53:20 2007
@@ -1 +1,15 @@
+##############################################################################
+#
+# Copyright (c) 2007 Agendaless Consulting and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the BSD-like license at
+# http://www.repoze.org/LICENSE.txt.  A copy of the license should accompany
+# this distribution.  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL
+# EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO,
+# THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND
+# FITNESS FOR A PARTICULAR PURPOSE
+#
+##############################################################################
+
 __import__('pkg_resources').declare_namespace(__name__)


=== Packages/supervisor2/src/supervisor/childutils.py 1.6 => 1.7 ===
--- Packages/supervisor2/src/supervisor/childutils.py:1.6	Sat Sep  8 16:44:13 2007
+++ Packages/supervisor2/src/supervisor/childutils.py	Sat Sep 22 19:53:20 2007
@@ -3,12 +3,12 @@
 # Copyright (c) 2007 Agendaless Consulting and Contributors.
 # All Rights Reserved.
 #
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# This software is subject to the provisions of the BSD-like license at
+# http://www.repoze.org/LICENSE.txt.  A copy of the license should accompany
+# this distribution.  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL
+# EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO,
+# THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND
+# FITNESS FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
 


=== Packages/supervisor2/src/supervisor/datatypes.py 1.14 => 1.15 ===
--- Packages/supervisor2/src/supervisor/datatypes.py:1.14	Sat Sep 22 06:33:38 2007
+++ Packages/supervisor2/src/supervisor/datatypes.py	Sat Sep 22 19:53:20 2007
@@ -3,12 +3,12 @@
 # Copyright (c) 2007 Agendaless Consulting and Contributors.
 # All Rights Reserved.
 #
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# This software is subject to the provisions of the BSD-like license at
+# http://www.repoze.org/LICENSE.txt.  A copy of the license should accompany
+# this distribution.  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL
+# EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO,
+# THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND
+# FITNESS FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
 


=== Packages/supervisor2/src/supervisor/dispatchers.py 1.24 => 1.25 ===
--- Packages/supervisor2/src/supervisor/dispatchers.py:1.24	Sat Sep 22 16:58:36 2007
+++ Packages/supervisor2/src/supervisor/dispatchers.py	Sat Sep 22 19:53:20 2007
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2007 Agendaless Consulting and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the BSD-like license at
+# http://www.repoze.org/LICENSE.txt.  A copy of the license should accompany
+# this distribution.  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL
+# EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO,
+# THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND
+# FITNESS FOR A PARTICULAR PURPOSE
+#
+##############################################################################
+
 import errno
 from asyncore import compact_traceback
 


=== Packages/supervisor2/src/supervisor/events.py 1.15 => 1.16 ===
--- Packages/supervisor2/src/supervisor/events.py:1.15	Thu Sep  6 02:44:51 2007
+++ Packages/supervisor2/src/supervisor/events.py	Sat Sep 22 19:53:20 2007
@@ -3,12 +3,12 @@
 # Copyright (c) 2007 Agendaless Consulting and Contributors.
 # All Rights Reserved.
 #
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# This software is subject to the provisions of the BSD-like license at
+# http://www.repoze.org/LICENSE.txt.  A copy of the license should accompany
+# this distribution.  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL
+# EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO,
+# THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND
+# FITNESS FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
 


=== Packages/supervisor2/src/supervisor/http.py 1.31 => 1.32 ===
--- Packages/supervisor2/src/supervisor/http.py:1.31	Sat Sep 22 18:58:27 2007
+++ Packages/supervisor2/src/supervisor/http.py	Sat Sep 22 19:53:20 2007
@@ -3,14 +3,15 @@
 # Copyright (c) 2007 Agendaless Consulting and Contributors.
 # All Rights Reserved.
 #
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# This software is subject to the provisions of the BSD-like license at
+# http://www.repoze.org/LICENSE.txt.  A copy of the license should accompany
+# this distribution.  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL
+# EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO,
+# THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND
+# FITNESS FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
+
 import asyncore
 import os
 import stat


=== Packages/supervisor2/src/supervisor/loggers.py 1.13 => 1.14 ===
--- Packages/supervisor2/src/supervisor/loggers.py:1.13	Tue Sep 18 22:17:41 2007
+++ Packages/supervisor2/src/supervisor/loggers.py	Sat Sep 22 19:53:20 2007
@@ -3,12 +3,12 @@
 # Copyright (c) 2007 Agendaless Consulting and Contributors.
 # All Rights Reserved.
 #
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# This software is subject to the provisions of the BSD-like license at
+# http://www.repoze.org/LICENSE.txt.  A copy of the license should accompany
+# this distribution.  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL
+# EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO,
+# THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND
+# FITNESS FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
 


=== Packages/supervisor2/src/supervisor/options.py 1.89 => 1.90 ===
--- Packages/supervisor2/src/supervisor/options.py:1.89	Sat Sep 22 17:36:48 2007
+++ Packages/supervisor2/src/supervisor/options.py	Sat Sep 22 19:53:20 2007
@@ -3,12 +3,12 @@
 # Copyright (c) 2007 Agendaless Consulting and Contributors.
 # All Rights Reserved.
 #
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# This software is subject to the provisions of the BSD-like license at
+# http://www.repoze.org/LICENSE.txt.  A copy of the license should accompany
+# this distribution.  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL
+# EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO,
+# THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND
+# FITNESS FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
 


=== Packages/supervisor2/src/supervisor/process.py 1.63 => 1.64 ===
--- Packages/supervisor2/src/supervisor/process.py:1.63	Sat Sep 22 18:07:11 2007
+++ Packages/supervisor2/src/supervisor/process.py	Sat Sep 22 19:53:20 2007
@@ -3,12 +3,12 @@
 # Copyright (c) 2007 Agendaless Consulting and Contributors.
 # All Rights Reserved.
 #
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# This software is subject to the provisions of the BSD-like license at
+# http://www.repoze.org/LICENSE.txt.  A copy of the license should accompany
+# this distribution.  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL
+# EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO,
+# THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND
+# FITNESS FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
 


=== Packages/supervisor2/src/supervisor/rpcinterface.py 1.19 => 1.20 ===
--- Packages/supervisor2/src/supervisor/rpcinterface.py:1.19	Sat Sep 22 17:03:18 2007
+++ Packages/supervisor2/src/supervisor/rpcinterface.py	Sat Sep 22 19:53:20 2007
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2007 Agendaless Consulting and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the BSD-like license at
+# http://www.repoze.org/LICENSE.txt.  A copy of the license should accompany
+# this distribution.  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL
+# EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO,
+# THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND
+# FITNESS FOR A PARTICULAR PURPOSE
+#
+##############################################################################
+
 import os
 import time
 import datetime


=== Packages/supervisor2/src/supervisor/states.py 1.3 => 1.4 ===
--- Packages/supervisor2/src/supervisor/states.py:1.3	Thu Sep  6 00:52:21 2007
+++ Packages/supervisor2/src/supervisor/states.py	Sat Sep 22 19:53:20 2007
@@ -3,12 +3,12 @@
 # Copyright (c) 2007 Agendaless Consulting and Contributors.
 # All Rights Reserved.
 #
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
+# This software is subject to the provisions of the BSD-like license at
+# http://www.repoze.org/LICENSE.txt.  A copy of the license should accompany
+# this distribution.  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL
+# EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO,
+# THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND
+# FITNESS FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
 


=== Packages/supervisor2/src/supervisor/supervisorctl.py 1.35 => 1.36 ===
--- Packages/supervisor2/src/supervisor/supervisorctl.py:1.35	Sat Sep 22 06:47:11 2007
+++ Packages/supervisor2/src/supervisor/supervisorctl.py	Sat Sep 22 19:53:20 2007
@@ -4,12 +4,12 @@
 # Copyright (c) 2007 Agendaless Consulting and Contributors.
 # All Rights Reserved.
 #
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
+# This software is subject to the provisions of the BSD-like license at
+# http://www.repoze.org/LICENSE.txt.  A copy of the license should accompany
+# this distribution.  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL
+# EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO,
+# THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND
+# FITNESS FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
 """supervisorctl -- control applications run by supervisord from the cmd line.


=== Packages/supervisor2/src/supervisor/supervisord.py 1.95 => 1.96 ===
--- Packages/supervisor2/src/supervisor/supervisord.py:1.95	Sat Sep 22 18:07:11 2007
+++ Packages/supervisor2/src/supervisor/supervisord.py	Sat Sep 22 19:53:20 2007
@@ -4,12 +4,12 @@
 # Copyright (c) 2007 Agendaless Consulting and Contributors.
 # All Rights Reserved.
 #
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# This software is subject to the provisions of the BSD-like license at
+# http://www.repoze.org/LICENSE.txt.  A copy of the license should accompany
+# this distribution.  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL
+# EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO,
+# THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND
+# FITNESS FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
 """supervisord -- run a set of applications as daemons.


=== Packages/supervisor2/src/supervisor/web.py 1.23 => 1.24 ===
--- Packages/supervisor2/src/supervisor/web.py:1.23	Sat Sep 22 18:58:27 2007
+++ Packages/supervisor2/src/supervisor/web.py	Sat Sep 22 19:53:20 2007
@@ -3,12 +3,12 @@
 # Copyright (c) 2007 Agendaless Consulting and Contributors.
 # All Rights Reserved.
 #
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# This software is subject to the provisions of the BSD-like license at
+# http://www.repoze.org/LICENSE.txt.  A copy of the license should accompany
+# this distribution.  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL
+# EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO,
+# THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND
+# FITNESS FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
 


=== Packages/supervisor2/src/supervisor/xmlrpc.py 1.37 => 1.38 ===
--- Packages/supervisor2/src/supervisor/xmlrpc.py:1.37	Sat Sep 22 18:58:27 2007
+++ Packages/supervisor2/src/supervisor/xmlrpc.py	Sat Sep 22 19:53:20 2007
@@ -3,12 +3,12 @@
 # Copyright (c) 2007 Agendaless Consulting and Contributors.
 # All Rights Reserved.
 #
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
+# This software is subject to the provisions of the BSD-like license at
+# http://www.repoze.org/LICENSE.txt.  A copy of the license should accompany
+# this distribution.  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL
+# EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO,
+# THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND
+# FITNESS FOR A PARTICULAR PURPOSE
 #
 ##############################################################################
 

_______________________________________________
Repoze-dev mailing list
Repoze-dev at lists.repoze.org
http://lists.repoze.org/mailman/listinfo/repoze-dev



More information about the Repoze-dev mailing list