[Oval-commits] r278 - in trunk/oval-agent: . ovalClient

Pavel Vinogradov blaze-guest at alioth.debian.org
Tue Oct 30 17:04:06 UTC 2007


Author: blaze-guest
Date: 2007-10-30 17:04:06 +0000 (Tue, 30 Oct 2007)
New Revision: 278

Modified:
   trunk/oval-agent/oval-agent.py
   trunk/oval-agent/ovalClient/__init__.py
   trunk/oval-agent/ovalClient/ovalHttpClient.py
   trunk/oval-agent/setup.py
Log:
Add proper license information to all python files

Modified: trunk/oval-agent/oval-agent.py
===================================================================
--- trunk/oval-agent/oval-agent.py	2007-10-14 20:01:20 UTC (rev 277)
+++ trunk/oval-agent/oval-agent.py	2007-10-30 17:04:06 UTC (rev 278)
@@ -1,13 +1,14 @@
 #!/usr/bin/python
 # -*- coding: utf-8 -*-
-#                                                                                                                                              
 #
 # Written by Pavel Vinogradov <Pavel.Vinogradov at nixdev.net>
 # Licensed under the GNU General Public License version 2.
-"""  Agent package that interact with oval-server and evaluate local machine with received definitions.
 
-    Interact with oval-server over HTTP protocol and use ovaldi package for evaluate definitions. 
-    Don't present any statistic.                                                                                                                                                                                                        
+"""  Agent package that interact with oval-server and evaluate local machine
+    with received definitions.
+
+    Interact with oval-server over HTTP protocol and use ovaldi package for
+    evaluate definitions. Don't present any statistic.
 """
  
 from ConfigParser import SafeConfigParser

Modified: trunk/oval-agent/ovalClient/__init__.py
===================================================================
--- trunk/oval-agent/ovalClient/__init__.py	2007-10-14 20:01:20 UTC (rev 277)
+++ trunk/oval-agent/ovalClient/__init__.py	2007-10-30 17:04:06 UTC (rev 278)
@@ -3,11 +3,9 @@
 #
 ######################################################################
 #
-# (c) 2007 Pavel Vinogradov                                                                                                       
+# Written by Pavel Vinogradov <Pavel.Vinogradov at nixdev.net>
 # Licensed under the GNU General Public License version 2.
 #
 ######################################################################
-
 __all__ = ['ovalHttpClient']
-__version__ = 0.5
-version = 0.2
+__version__ = 0.3

Modified: trunk/oval-agent/ovalClient/ovalHttpClient.py
===================================================================
--- trunk/oval-agent/ovalClient/ovalHttpClient.py	2007-10-14 20:01:20 UTC (rev 277)
+++ trunk/oval-agent/ovalClient/ovalHttpClient.py	2007-10-30 17:04:06 UTC (rev 278)
@@ -1,6 +1,7 @@
+#!/usr/bin/python
 # -*- coding: utf-8 -*-
-#                                                                                                                                              
-# Written by Pavel Vinogradov
+#
+# Written by Pavel Vinogradov <Pavel.Vinogradov at nixdev.net>
 # Licensed under the GNU General Public License version 2.
 
 """ Client class for interacting with oval-server over HTTP protocol """
@@ -121,4 +122,4 @@
 			self.postResult()
 		
 			self.logger.debug ('Go to sleep')
-			time.sleep(60 * self.check_interval)			
\ No newline at end of file
+			time.sleep(60 * self.check_interval)			

Modified: trunk/oval-agent/setup.py
===================================================================
--- trunk/oval-agent/setup.py	2007-10-14 20:01:20 UTC (rev 277)
+++ trunk/oval-agent/setup.py	2007-10-30 17:04:06 UTC (rev 278)
@@ -1,8 +1,8 @@
 #!/usr/bin/python
+# -*- coding: utf-8 -*-
 #
-# Written by Pavel VInogradov
-# see LICENSE.txt for license information
-#
+# Written by Pavel Vinogradov <Pavel.Vinogradov at nixdev.net>
+# Licensed under the GNU General Public License version 2.
 
 """The oval-agent program for interact with oval-server daemon.
 
@@ -22,7 +22,7 @@
     author = "Pavel Vinogradov",
     author_email = "<oval-devel at lists.alioth.debian.org>",
     url = "http://oval.alioth.debian.org",
-    license = "GPL",
+    license = "GPL2",
     
     packages = ["ovalClient"],
 




More information about the Oval-commits mailing list