You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by le...@apache.org on 2005/01/01 17:36:39 UTC

svn commit: r123845 - in gump/branches/Dec04MajorCleanup/pygump/python/gump: . actor plugins

Author: leosimons
Date: Sat Jan  1 08:36:39 2005
New Revision: 123845

URL: http://svn.apache.org/viewcvs?view=rev&rev=123845
Log:
s/actor/plugins/
Added:
   gump/branches/Dec04MajorCleanup/pygump/python/gump/plugins/
      - copied from r123838, gump/branches/Dec04MajorCleanup/pygump/python/gump/actor/
Removed:
   gump/branches/Dec04MajorCleanup/pygump/python/gump/actor/
Modified:
   gump/branches/Dec04MajorCleanup/pygump/python/gump/__init__.py
   gump/branches/Dec04MajorCleanup/pygump/python/gump/plugins/__init__.py
   gump/branches/Dec04MajorCleanup/pygump/python/gump/plugins/dynagumper.py

Modified: gump/branches/Dec04MajorCleanup/pygump/python/gump/__init__.py
Url: http://svn.apache.org/viewcvs/gump/branches/Dec04MajorCleanup/pygump/python/gump/__init__.py?view=diff&rev=123845&p1=gump/branches/Dec04MajorCleanup/pygump/python/gump/__init__.py&r1=123844&p2=gump/branches/Dec04MajorCleanup/pygump/python/gump/__init__.py&r2=123845
==============================================================================
--- gump/branches/Dec04MajorCleanup/pygump/python/gump/__init__.py	(original)
+++ gump/branches/Dec04MajorCleanup/pygump/python/gump/__init__.py	Sat Jan  1 08:36:39 2005
@@ -33,7 +33,7 @@
 The gump.model module provides an object-oriented way to represent all the
 gump metadata.
 
-The gump.plugin module provides several utilities which can be plugged into
+The gump.plugins module provides several utilities which can be plugged into
 the gump engine for additional functionality. Plugins are responsible for all
 "side effects" of a gump run. For example, there are plugins to push data into
 database, plugins to send e-mails, etc.

Modified: gump/branches/Dec04MajorCleanup/pygump/python/gump/plugins/__init__.py
Url: http://svn.apache.org/viewcvs/gump/branches/Dec04MajorCleanup/pygump/python/gump/plugins/__init__.py?view=diff&rev=123845&p1=gump/branches/Dec04MajorCleanup/pygump/python/gump/actor/__init__.py&r1=123838&p2=gump/branches/Dec04MajorCleanup/pygump/python/gump/plugins/__init__.py&r2=123845
==============================================================================
--- gump/branches/Dec04MajorCleanup/pygump/python/gump/actor/__init__.py	(original)
+++ gump/branches/Dec04MajorCleanup/pygump/python/gump/plugins/__init__.py	Sat Jan  1 08:36:39 2005
@@ -14,5 +14,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+"""Contains several modules which can be plugged into the pygump engine."""
+
 __copyright__ = "Copyright (c) 2004-2005 The Apache Software Foundation"
 __license__   = "http://www.apache.org/licenses/LICENSE-2.0"

Modified: gump/branches/Dec04MajorCleanup/pygump/python/gump/plugins/dynagumper.py
Url: http://svn.apache.org/viewcvs/gump/branches/Dec04MajorCleanup/pygump/python/gump/plugins/dynagumper.py?view=diff&rev=123845&p1=gump/branches/Dec04MajorCleanup/pygump/python/gump/actor/dynagumper.py&r1=123838&p2=gump/branches/Dec04MajorCleanup/pygump/python/gump/plugins/dynagumper.py&r2=123845
==============================================================================
--- gump/branches/Dec04MajorCleanup/pygump/python/gump/actor/dynagumper.py	(original)
+++ gump/branches/Dec04MajorCleanup/pygump/python/gump/plugins/dynagumper.py	Sat Jan  1 08:36:39 2005
@@ -19,11 +19,7 @@
 
 import platform
 
-# comment out stuff to make it import without errors...
-#from gump.core.run.gumprun import *
-#import gump.core.run.actor
-
-class Dynagumper: #(gump.core.run.actor.AbstractRunActor):
+class Dynagumper:
     """
     Populate the DynaGump run metadata database.
     """
@@ -37,7 +33,6 @@
         Optional argument: log, instance of logging.logger or similar.
         Will use log from gump.logging if not provided.
         """
-        #gump.core.run.actor.AbstractRunActor.__init__(self,run)    
         self.db = db
         
         if not log: from gump import log