Return-Path: Delivered-To: apmail-gump-commits-archive@www.apache.org Received: (qmail 87233 invoked from network); 1 Jan 2005 16:36:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 1 Jan 2005 16:36:41 -0000 Received: (qmail 61971 invoked by uid 500); 1 Jan 2005 16:36:41 -0000 Mailing-List: contact commits-help@gump.apache.org; run by ezmlm Precedence: bulk Reply-To: commits@gump.apache.org List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@gump.apache.org Received: (qmail 61956 invoked by uid 99); 1 Jan 2005 16:36:41 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Sat, 01 Jan 2005 08:36:40 -0800 Received: (qmail 87225 invoked by uid 65534); 1 Jan 2005 16:36:39 -0000 Date: 1 Jan 2005 16:36:39 -0000 Message-ID: <20050101163639.87220.qmail@minotaur.apache.org> From: leosimons@apache.org To: commits@gump.apache.org Subject: svn commit: r123845 - in gump/branches/Dec04MajorCleanup/pygump/python/gump: . actor plugins MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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