cvs commit: gump/project jakarta-tomcat-5.xml jakarta-tomcat-catalina.xml

2004-08-11 Thread billbarker
billbarker2004/08/11 23:41:13

  Modified:project  jakarta-tomcat-5.xml jakarta-tomcat-catalina.xml
  Log:
  Updating to reflect the new Tomcat build structure.
  
  Adding a project so that we don't have a circular dependancy.
  
  I had some trouble setting up Gumpy, so I haven't actually tested it.  But it can't 
possibly be more broken than it already is :).
  
  Revision  ChangesPath
  1.28  +24 -0 gump/project/jakarta-tomcat-5.xml
  
  Index: jakarta-tomcat-5.xml
  ===
  RCS file: /home/cvs/gump/project/jakarta-tomcat-5.xml,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- jakarta-tomcat-5.xml  23 Jul 2004 04:09:00 -  1.27
  +++ jakarta-tomcat-5.xml  12 Aug 2004 06:41:13 -  1.28
  @@ -132,4 +132,28 @@
from="[EMAIL PROTECTED]" />
 
   
  +  
  +org.apache.tomcat.dbcp
  +
  +
  +  
  +  
  +  
  +  
  +  
  +
  +
  +
  +
  +
  +
  +
  +
  +  
  +
   
  
  
  
  1.18  +1 -0  gump/project/jakarta-tomcat-catalina.xml
  
  Index: jakarta-tomcat-catalina.xml
  ===
  RCS file: /home/cvs/gump/project/jakarta-tomcat-catalina.xml,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- jakarta-tomcat-catalina.xml   23 Jul 2004 04:09:00 -  1.17
  +++ jakarta-tomcat-catalina.xml   12 Aug 2004 06:41:13 -  1.18
  @@ -54,6 +54,7 @@
   project="jakarta-tomcat-jasper_tc5"/>
 
 
  +  
 
 
 
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: cvs commit: gump/profile gump.xml

2004-08-11 Thread Stefan Bodewig
On 11 Aug 2004, <[EMAIL PROTECTED]> wrote:

>   I have to match the project names here (for Gupmy).
>   Not sure if traditional worked diffrently...

Not sure either 8-)

since my traditional installation is running out of disk space and
instead of cutting down my profile I'll give Python Gump a new try
after vacation.

Stefan

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [RT] two wild thoughts

2004-08-11 Thread Dalibor Topic
Stefan Bodewig  apache.org> writes:

> 
> Hi,
> 
> Maybe you should have used two RT threads with meaningful subjects?
> 
> On Mon, 09 Aug 2004, Stefano Mazzocchi  apache.org> wrote:
> 
> > Wild Thought #1
> > 
> > We now have Mono installed on Brutus.
> 
> The Ant tests show that it doesn't work very well, in particular it
> fails on stuff that works perfectly well in my installations.  So
> maybe Debian's Mono package really isn't ready for prime time, yet.
> 
> > We just need to download the ikvm[1] and try to run our java tools
> > on top of a "virtual" java virtual machine running on top of Mono.
> 
> +1 once Mono really works on Brutus.

We've had something like that for Kaffe[1] for a brief moment made by Jim Pick.
See http://www.kaffe.org/~jim/kaffe-gump/ for the scripts, and
http://www.kaffe.org/~jim/gump/log/ for the output. Jim has offered to host
devel.classpath.org on a beefed up kaffe.org server, and we may have a gump
setup there, too, eventually.

cheers,
dalibor topic

[1] Always use the CVS head, we're too busy hacking to do releases ;)


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Busted...

2004-08-11 Thread Stefano Mazzocchi
Adam R. B. Jack wrote:
It sure is tough developing on CVS HEAD when we run live off CVS HEAD. 
(ok SVN trunk). I need to fix that, so I can break things a little w/o 
the stress. I broke them today, some datetime changes due to the MySQL 
work (I'll explain shortly). I am out of time today, and probably won't 
fix it until the mornign. Sorry for the outage...

BTW: I think we ought have a 'live' parrallel to 'trunk', run brutus off 
'live' and SVN move trunk to live only when stable (and tested in test 
on Brutus). That seem a good plan?
that was the suggestion forming in my head while reading :-)
+1
--
Stefano.


smime.p7s
Description: S/MIME Cryptographic Signature


Busted...

2004-08-11 Thread Adam R. B. Jack
It sure is tough developing on CVS HEAD when we run live off CVS HEAD. (ok SVN trunk). 
I need to fix that, so I can break things a little w/o the stress. I broke them today, 
some datetime changes due to the MySQL work (I'll explain shortly). I am out of time 
today, and probably won't fix it until the mornign. Sorry for the outage...
BTW: I think we ought have a 'live' parrallel to 'trunk', run brutus off 'live' and 
SVN move trunk to live only when stable (and tested in test on Brutus). That seem a 
good plan?
regards
Adam
--
Have you Gump'ed your code today?
http://gump.apache.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


svn commit: rev 36255 - gump/trunk/python/gump/stats/mysql

2004-08-11 Thread ajack
Author: ajack
Date: Wed Aug 11 13:55:46 2004
New Revision: 36255

Modified:
   gump/trunk/python/gump/stats/mysql/statsdb.py
Log:
Quote last modified date (in SQL)

Modified: gump/trunk/python/gump/stats/mysql/statsdb.py
==
--- gump/trunk/python/gump/stats/mysql/statsdb.py   (original)
+++ gump/trunk/python/gump/stats/mysql/statsdb.py   Wed Aug 11 13:55:46 2004
@@ -146,7 +146,7 @@
 def putModuleStats(self,stats):
 extras=None
 if stats.lastModified:
-extras={'last_modified':stats.lastModified}
+extras={'last_modified':"'" + stats.lastModified.strftime('%Y-%m-%d 
%H:%M:%S') + "'"}
 self._putStats('module_stats','module_name',stats,extras)
 
 def delModuleStats(self,stats):

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: rev 36253 - in gump/trunk/python/gump: model stats/mysql

2004-08-11 Thread ajack
Author: ajack
Date: Wed Aug 11 13:37:00 2004
New Revision: 36253

Modified:
   gump/trunk/python/gump/model/module.py
   gump/trunk/python/gump/stats/mysql/statsdb.py
Log:
More haste (less speed)

Modified: gump/trunk/python/gump/model/module.py
==
--- gump/trunk/python/gump/model/module.py  (original)
+++ gump/trunk/python/gump/model/module.py  Wed Aug 11 13:37:00 2004
@@ -682,4 +682,4 @@
 # Track code updates/changes
 # 
 if module.isModified():
-self.lastModified=default.default.datetimeObject
\ No newline at end of file
+self.lastModified=default.datetimeObject
\ No newline at end of file

Modified: gump/trunk/python/gump/stats/mysql/statsdb.py
==
--- gump/trunk/python/gump/stats/mysql/statsdb.py   (original)
+++ gump/trunk/python/gump/stats/mysql/statsdb.py   Wed Aug 11 13:37:00 2004
@@ -131,7 +131,14 @@
 
 # Extract that extra
 if settings.has_key('last_modified') and settings['last_modified']:
-stats.lastModified=settings['last_modified']
+value=settings['last_modified']
+if isinstance(value,datetime.datetime):
+stats.lastModified=value
+else:
+if not value == '-00-00 00:00:00':
+setattr(stats,attr,
+
datetime.datetime.fromtimestamp(time.mktime(time.strptime(value,
+
'%Y-%m-%d %H:%M:%S'
 except IndexError:
 pass
 return stats

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: rev 36251 - gump/trunk/python/gump/model

2004-08-11 Thread ajack
Author: ajack
Date: Wed Aug 11 13:31:52 2004
New Revision: 36251

Modified:
   gump/trunk/python/gump/model/module.py
Log:
Moving to MySQL means a transition from timestamps (secs as float)

to datetime objects. More work to do.

Modified: gump/trunk/python/gump/model/module.py
==
--- gump/trunk/python/gump/model/module.py  (original)
+++ gump/trunk/python/gump/model/module.py  Wed Aug 11 13:31:52 2004
@@ -682,4 +682,4 @@
 # Track code updates/changes
 # 
 if module.isModified():
-self.lastModified=default.time
\ No newline at end of file
+self.lastModified=default.default.datetimeObject
\ No newline at end of file

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: rev 36250 - gump/trunk/python/gump/stats/mysql

2004-08-11 Thread ajack
Author: ajack
Date: Wed Aug 11 13:23:47 2004
New Revision: 36250

Modified:
   gump/trunk/python/gump/stats/mysql/statsdb.py
Log:
Ignore: -00-00 00:00:00

Modified: gump/trunk/python/gump/stats/mysql/statsdb.py
==
--- gump/trunk/python/gump/stats/mysql/statsdb.py   (original)
+++ gump/trunk/python/gump/stats/mysql/statsdb.py   Wed Aug 11 13:23:47 2004
@@ -190,8 +190,10 @@
 if isinstance(value,datetime.datetime):
 setattr(stats,attr,value)
 else:
-setattr(stats,attr,
-
datetime.datetime.fromtimestamp(time.mktime(time.strptime(value,'%Y-%m-%d %H:%M:%S'
+if not value == '-00-00 00:00:00':
+setattr(stats,attr,
+
datetime.datetime.fromtimestamp(time.mktime(time.strptime(value,
+
'%Y-%m-%d %H:%M:%S'
 else:
 setattr(stats,attr,value)
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: rev 36249 - gump/trunk/python/gump/stats/mysql

2004-08-11 Thread ajack
Author: ajack
Date: Wed Aug 11 13:21:35 2004
New Revision: 36249

Modified:
   gump/trunk/python/gump/stats/mysql/statsdb.py
Log:
retry 

Modified: gump/trunk/python/gump/stats/mysql/statsdb.py
==
--- gump/trunk/python/gump/stats/mysql/statsdb.py   (original)
+++ gump/trunk/python/gump/stats/mysql/statsdb.py   Wed Aug 11 13:21:35 2004
@@ -191,7 +191,7 @@
 setattr(stats,attr,value)
 else:
 setattr(stats,attr,
-
datetime.datetime.fromtimestamp(time.strptime(value,'%Y-%m-%d %H:%M:%S')))
+
datetime.datetime.fromtimestamp(time.mktime(time.strptime(value,'%Y-%m-%d %H:%M:%S'
 else:
 setattr(stats,attr,value)
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: rev 36248 - gump/trunk/python/gump/stats/mysql

2004-08-11 Thread ajack
Author: ajack
Date: Wed Aug 11 13:19:25 2004
New Revision: 36248

Modified:
   gump/trunk/python/gump/stats/mysql/statsdb.py
Log:
Attempt to cope w/ some MySQL interfaces returning strings, not datetime.datetime,

i.e. pre-Python 2.3 I guess.

Modified: gump/trunk/python/gump/stats/mysql/statsdb.py
==
--- gump/trunk/python/gump/stats/mysql/statsdb.py   (original)
+++ gump/trunk/python/gump/stats/mysql/statsdb.py   Wed Aug 11 13:19:25 2004
@@ -179,8 +179,21 @@
 for (attr, column) in StatisticsDB.ATTR_COLUMN_MAP.items():
 if settings.has_key(column) and settings[column]:
 if hasattr(stats,attr):
-#print "GET ATTR : " + `type(getattr(stats,attr))`

-setattr(stats,attr,settings[column])
+value=settings[column]
+
+# Seems some SQL interfaces do not return datetime objects
+# but strings, for SQL:datetime.
+
+
+if column in StatisticsDB.DATES:   
+print "GET ATTR : " + `type(getattr(stats,attr))` 
 
+if isinstance(value,datetime.datetime):
+setattr(stats,attr,value)
+else:
+setattr(stats,attr,
+
datetime.datetime.fromtimestamp(time.strptime(value,'%Y-%m-%d %H:%M:%S')))
+else:
+setattr(stats,attr,value)
 
 def _putBaseStats(self,stats,column_name): 
 """

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: gump/profile gump.xml

2004-08-11 Thread ajack
ajack   2004/08/11 13:02:32

  Modified:profile  gump.xml
  Log:
  I have to match the project names here (for Gupmy).
  Not sure if traditional worked diffrently...
  
  Revision  ChangesPath
  1.377 +2 -1  gump/profile/gump.xml
  
  Index: gump.xml
  ===
  RCS file: /home/cvs/gump/profile/gump.xml,v
  retrieving revision 1.376
  retrieving revision 1.377
  diff -u -r1.376 -r1.377
  --- gump.xml  11 Aug 2004 10:20:10 -  1.376
  +++ gump.xml  11 Aug 2004 20:02:32 -  1.377
  @@ -285,7 +285,8 @@
 
 
  -  
  +  
  +  
 
 
 
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: rev 36241 - gump/trunk/python/gump/mysql

2004-08-11 Thread ajack
Author: ajack
Date: Wed Aug 11 11:56:27 2004
New Revision: 36241

Modified:
   gump/trunk/python/gump/mysql/databaser.py
Log:
Complete last (on all SQL, I hope.)

Modified: gump/trunk/python/gump/mysql/databaser.py
==
--- gump/trunk/python/gump/mysql/databaser.py   (original)
+++ gump/trunk/python/gump/mysql/databaser.py   Wed Aug 11 11:56:27 2004
@@ -81,7 +81,7 @@
 helper=None
 try:
 conn=self.getConnected()
-helper=gump.utils.mysql.DbHelper(conn)
+helper=gump.utils.mysql.DbHelper(conn,self.dbInfo.getDatabase())
 
 # Prepare the data
 settings = {}

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: rev 36238 - in gump/trunk/python/gump: mysql stats/mysql utils

2004-08-11 Thread ajack
Author: ajack
Date: Wed Aug 11 11:16:45 2004
New Revision: 36238

Modified:
   gump/trunk/python/gump/mysql/databaser.py
   gump/trunk/python/gump/stats/mysql/statsdb.py
   gump/trunk/python/gump/utils/mysql.py
Log:
Allow the database to be configurable (within the SQL).

Modified: gump/trunk/python/gump/mysql/databaser.py
==
--- gump/trunk/python/gump/mysql/databaser.py   (original)
+++ gump/trunk/python/gump/mysql/databaser.py   Wed Aug 11 11:16:45 2004
@@ -33,6 +33,7 @@
 
 def __init__(self,run):  
 gump.run.actor.AbstractRunActor.__init__(self,run)
+self.dbInfo=self.workspace.getDatabaseInformation()
 
 def processOtherEvent(self,event):   
 pass
@@ -51,7 +52,7 @@
 helper=None
 try:
 conn=self.getConnected()
-helper=gump.utils.mysql.DbHelper(conn)
+helper=gump.utils.mysql.DbHelper(conn,self.dbInfo.getDatabase())
 
 # Prepare the data
 settings = {}
@@ -106,13 +107,12 @@
 """
 Get a database connection.
 """
-dbInfo=self.workspace.getDatabaseInformation()
 
 return MySQLdb.Connect(
-host=dbInfo.getHost(), 
-user=dbInfo.getUser(),
-passwd=dbInfo.getPasswd(), 
-db=dbInfo.getDatabase(),
+host=self.dbInfo.getHost(), 
+user=self.dbInfo.getUser(),
+passwd=self.dbInfo.getPasswd(), 
+db=self.dbInfo.getDatabase(),
 compress=1,
 cursorclass=MySQLdb.cursors.DictCursor)
 

Modified: gump/trunk/python/gump/stats/mysql/statsdb.py
==
--- gump/trunk/python/gump/stats/mysql/statsdb.py   (original)
+++ gump/trunk/python/gump/stats/mysql/statsdb.py   Wed Aug 11 11:16:45 2004
@@ -76,7 +76,7 @@
 
 # print 'ThreadSafe : ' + `MySQLdb.threadsafety`
 
-self.helper=gump.utils.mysql.DbHelper(self.conn)
+self.helper=gump.utils.mysql.DbHelper(self.conn,dbInfo.getDatabase())
  
 # Workspace
 def getWorkspaceStats(self,workspaceName):

Modified: gump/trunk/python/gump/utils/mysql.py
==
--- gump/trunk/python/gump/utils/mysql.py   (original)
+++ gump/trunk/python/gump/utils/mysql.py   Wed Aug 11 11:16:45 2004
@@ -29,8 +29,9 @@
MySQL Statistics Database Interface
 """
 
-def __init__(self,conn):
+def __init__(self,conn,database='gump'):
 self.conn=conn
+self.database=database
 
 def __del__(self):
 if self.conn:
@@ -41,7 +42,7 @@
 """
 Generate a select statement, index is a single name
 """ 
-statement="SELECT * FROM gump.gump_%s WHERE %s='%s'" % (table_name, 
column_name, entity_name) 
+statement="SELECT * FROM %s.gump_%s WHERE %s='%s'" % (self.database, 
table_name, column_name, entity_name) 
 return statement
 
 def select(self,table_name,column_name,entity_name,columns):
@@ -85,7 +86,7 @@
 """ 
 Perform an SQL INSERT 
 """
-statement = "INSERT INTO gump.gump_%s (" % table_name
+statement = "INSERT INTO %s.gump_%s (" % (self.database, table_name)
 keys=settings.keys()
 statement += ", ".join(keys)
 statement += ") VALUES ("
@@ -120,7 +121,7 @@
 Take a dictionary of settings (column names/types) and 
 generate an update statement. Note: The index is a single name.
 """
-statement = "UPDATE gump.gump_%s SET " % table_name
+statement = "UPDATE %s.gump_%s SET " % (self.database, table_name)
 keys=settings.keys()
 keys.remove(column_name)
 statement += ", ".join([key + '=' + str(settings[key]) for key in keys])
@@ -154,8 +155,8 @@
 Perform an SQL DELETE 
 Index is single name
 """
-statement = "DELETE FROM gump.gump_%s WHERE %s='%s'" \
-% (table_name, column_name, entity_name)
+statement = "DELETE FROM %s.gump_%s WHERE %s='%s'" \
+% (self.database, table_name, column_name, entity_name)
 return statement
 
 def delete(self,table_name,column_name,entity_name):   

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: re-org

2004-08-11 Thread Stefano Mazzocchi
Adam R. B. Jack wrote:
Stefano replied:
Any preference on if we keep ./python/gump or move to ./gump. [I go 
back and forth]

I would strongly suggest to remove all mentions to programming 
language, unless there is a clear need to do so but this doesn't seem 
like the case here.

I will try to get to it. I am shy of doing this 'cos last time I tried, 
SVN crapped out part way. Perhaps some resource thing with such a big 
move, or something. Maybe I'll try it commandline on ASF hardware, so no 
network woes to add to the problem.
did you try to do a remove move?
Any preference for the main scripts (entry points) to be in bin, or in
root? [I think bin, to follow what Nicola started.]
I would like to have *one* script, in root, called "gump" that did 
everything (and may call other scripts in ./bin, I don't care).

Ok, well you now have one script in the root doign the main thing (a 
full run). It is the same as the cron/gump.py except meant for humans 
(so gives output). ["Yahoo, about darn time", shouts Nicola in the 
distance. ;-) ]

Mind you, it could (perhaps) do with being merged with Nicola's gmp.sh 
work in bin, which gives full access to everything. Still, it is a step 
in the right direction.
expects patches soon ;-)
--
Stefano.


smime.p7s
Description: S/MIME Cryptographic Signature


Re: re-org

2004-08-11 Thread Adam R. B. Jack
Stefano replied:
Any preference on if we keep ./python/gump or move to ./gump. [I go back 
and forth]
I would strongly suggest to remove all mentions to programming language, 
unless there is a clear need to do so but this doesn't seem like the case 
here.
I will try to get to it. I am shy of doing this 'cos last time I tried, SVN 
crapped out part way. Perhaps some resource thing with such a big move, or something. 
Maybe I'll try it commandline on ASF hardware, so no network woes to add to the 
problem.
Any preference for the main scripts (entry points) to be in bin, or in
root? [I think bin, to follow what Nicola started.]
I would like to have *one* script, in root, called "gump" that did everything 
(and may call other scripts in ./bin, I don't care).
Ok, well you now have one script in the root doign the main thing (a full run). It is the 
same as the cron/gump.py except meant for humans (so gives output). ["Yahoo, about darn 
time", shouts Nicola in the distance. ;-) ]
Mind you, it could (perhaps) do with being merged with Nicola's gmp.sh work in bin, 
which gives full access to everything. Still, it is a step in the right direction.
regards
Adam
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


[jira] Commented: (GUMP-76) Install Mono 1.0 on brutus

2004-08-11 Thread general
The following comment has been added to this issue:

 Author: Leo Simons
Created: Wed, 11 Aug 2004 8:57 AM
   Body:
upgraded mono to 1.0-4. No 1.0.1 packages yet, but they're in the queue.
-
View this comment:
  http://issues.apache.org/jira/browse/GUMP-76?page=comments#action_37183

-
View the issue:
  http://issues.apache.org/jira/browse/GUMP-76

Here is an overview of the issue:
-
Key: GUMP-76
Summary: Install Mono 1.0 on brutus
   Type: Wish

 Status: Open
   Priority: Minor

Project: Gump
 Components: 
 configuration of live servers

   Assignee: Stefan Bodewig
   Reporter: Stefan Bodewig

Created: Tue, 3 Aug 2004 5:15 AM
Updated: Wed, 11 Aug 2004 8:57 AM

Description:
See  for
context, it would immediately benefit Ant which has unit tests for
some of its .NET tasks.

Debian packages are available from http://pkg-mono.alioth.debian.org/


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[jira] Commented: (GUMP-75) Move Ant nightly builds from user bodewig to nightlybuild

2004-08-11 Thread general
The following comment has been added to this issue:

 Author: Leo Simons
Created: Wed, 11 Aug 2004 8:36 AM
   Body:
This /should/ be done. Let me know if it doesn't work.
-
View this comment:
  http://issues.apache.org/jira/browse/GUMP-75?page=comments#action_37182

-
View the issue:
  http://issues.apache.org/jira/browse/GUMP-75

Here is an overview of the issue:
-
Key: GUMP-75
Summary: Move Ant nightly builds from user bodewig to nightlybuild
   Type: Wish

 Status: In Progress
   Priority: Minor

Project: Gump
 Components: 
 configuration of live servers

   Assignee: Leo Simons
   Reporter: Stefan Bodewig

Created: Tue, 3 Aug 2004 5:11 AM
Updated: Wed, 11 Aug 2004 8:36 AM

Description:
There is a shell script in bodewig's home dir on brutus that has
been successful in producing nightly builds of Ant in
.  Please add the script to
the experimental system of user nightlybuild and disable bodewig's
script after that.



-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[jira] Work Started: (GUMP-75) Move Ant nightly builds from user bodewig to nightlybuild

2004-08-11 Thread general
Message:

   Work on this issue has been started by Leo Simons (mailto:[EMAIL PROTECTED])

-
View the issue:
  http://issues.apache.org/jira/browse/GUMP-75

Here is an overview of the issue:
-
Key: GUMP-75
Summary: Move Ant nightly builds from user bodewig to nightlybuild
   Type: Wish

 Status: In Progress
   Priority: Minor

Project: Gump
 Components: 
 configuration of live servers

   Assignee: Leo Simons
   Reporter: Stefan Bodewig

Created: Tue, 3 Aug 2004 5:11 AM
Updated: Wed, 11 Aug 2004 8:36 AM

Description:
There is a shell script in bodewig's home dir on brutus that has
been successful in producing nightly builds of Ant in
.  Please add the script to
the experimental system of user nightlybuild and disable bodewig's
script after that.



-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[jira] Closed: (GUMP-70) /gump/ placeholder page on brutus

2004-08-11 Thread general
Message:

   The following issue has been closed.

   Resolver: Leo Simons
   Date: Wed, 11 Aug 2004 8:25 AM

now in svn as conf/brutus.apache.org/var/www. Updated by cron 4 times an hour.
-
View the issue:
  http://issues.apache.org/jira/browse/GUMP-70

Here is an overview of the issue:
-
Key: GUMP-70
Summary: /gump/ placeholder page on brutus
   Type: Improvement

 Status: Closed
   Priority: Major
 Resolution: FIXED

Project: Gump
 Components: 
 configuration of live servers

   Assignee: 
   Reporter: Leo Simons

Created: Fri, 25 Jun 2004 2:40 AM
Updated: Wed, 11 Aug 2004 8:25 AM

Description:
* created /var/www/gump with appropriate perms
* create index.html file there

TODO:

* proper index.html, perhaps as a CVS checkout



-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[jira] Closed: (GUMP-65) TomCat needs

2004-08-11 Thread general
Message:

   The following issue has been closed.

   Resolver: Leo Simons
   Date: Wed, 11 Aug 2004 8:26 AM

we're moving away from tomcat
-
View the issue:
  http://issues.apache.org/jira/browse/GUMP-65

Here is an overview of the issue:
-
Key: GUMP-65
Summary: TomCat needs
   Type: Task

 Status: Closed
   Priority: Major
 Resolution: FIXED

Project: Gump
 Components: 
 configuration of live servers

   Assignee: 
   Reporter: Adam Jack

Created: Fri, 18 Jun 2004 7:03 AM
Updated: Wed, 11 Aug 2004 8:26 AM
Environment: Brutus

Description:
The tomcat installation needs to be made into a 'service' (not run via a user, and not 
restarted after a power failure).

The /gump/ Forrest webapp needs to allow for multiple Gumps (so maybe /gump/public, 
/gump/jdk15, /gump/test, etc.)


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: rev 36226 - in gump/trunk/conf: . brutus.apache.org brutus.apache.org/var brutus.apache.org/var/www brutus.apache.org/var/www/gump

2004-08-11 Thread leosimons
Author: leosimons
Date: Wed Aug 11 08:14:14 2004
New Revision: 36226

Added:
   gump/trunk/conf/
   gump/trunk/conf/brutus.apache.org/
   gump/trunk/conf/brutus.apache.org/var/
   gump/trunk/conf/brutus.apache.org/var/www/
   gump/trunk/conf/brutus.apache.org/var/www/gump/
   gump/trunk/conf/brutus.apache.org/var/www/gump/index.html
   gump/trunk/conf/brutus.apache.org/var/www/index.html
Log:
Put some brutus stuff under version control

Added: gump/trunk/conf/brutus.apache.org/var/www/gump/index.html
==
--- (empty file)
+++ gump/trunk/conf/brutus.apache.org/var/www/gump/index.html   Wed Aug 11 08:14:14 
2004
@@ -0,0 +1,24 @@
+
+
+Welcome to [EMAIL PROTECTED]
+
+
+
+Welcome to [EMAIL PROTECTED]
+
+The following is available:
+
+
+Main gump instance
+Experimental run using jdk 1.5
+PyDoc documentation for gump
+
+
+
+Enjoy.
+
+- The Gump Team
+
+PS: if you need actual information about gump, you're looking for http://gump.apache.org/";>gump.apache.org.
+
+

Added: gump/trunk/conf/brutus.apache.org/var/www/index.html
==
--- (empty file)
+++ gump/trunk/conf/brutus.apache.org/var/www/index.htmlWed Aug 11 08:14:14 
2004
@@ -0,0 +1,24 @@
+
+
+Welcome to [EMAIL PROTECTED]
+
+
+
+Welcome to [EMAIL PROTECTED]
+
+The following is available:
+
+
+Main gump instance
+Experimental run using jdk 1.5
+PyDoc documentation for gump
+
+
+
+Enjoy.
+
+- The Gump Team
+
+PS: if you need actual information about gump, you're looking for http://gump.apache.org/";>gump.apache.org.
+
+

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[jira] Closed: (GUMP-73) HTTPD reconfiguration

2004-08-11 Thread general
Message:

   The following issue has been closed.

   Resolver: Leo Simons
   Date: Wed, 11 Aug 2004 8:11 AM

done a while back!
-
View the issue:
  http://issues.apache.org/jira/browse/GUMP-73

Here is an overview of the issue:
-
Key: GUMP-73
Summary: HTTPD reconfiguration
   Type: Task

 Status: Closed
   Priority: Critical
 Resolution: FIXED

Project: Gump
 Components: 
 configuration of live servers

   Assignee: Leo Simons
   Reporter: Adam Jack

Created: Thu, 8 Jul 2004 10:44 PM
Updated: Wed, 11 Aug 2004 8:11 AM
Due: Fri, 9 Jul 2004 12:00 AM

Description:
) Let's remove (or, at least, shut down) tomcat.
2) Restore the config such that http://brutus.apache.org/gump/{flavour} goes
to /usr/local/gump/{flavour}/results.



-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[jira] Closed: (GUMP-69) Install JDK1.5 and configure HTTPD for a JDK15 gump 'flavour'

2004-08-11 Thread general
Message:

   The following issue has been closed.

   Resolver: Leo Simons
   Date: Wed, 11 Aug 2004 8:10 AM

ehm, no it doesn't. I just double-triple-checked
-
View the issue:
  http://issues.apache.org/jira/browse/GUMP-69

Here is an overview of the issue:
-
Key: GUMP-69
Summary: Install JDK1.5 and configure HTTPD for a JDK15 gump 'flavour'
   Type: Task

 Status: Closed
   Priority: Major
 Resolution: FIXED

Project: Gump
 Components: 
 configuration of live servers

   Assignee: 
   Reporter: Adam Jack

Created: Sun, 20 Jun 2004 7:14 PM
Updated: Wed, 11 Aug 2004 8:10 AM

Description:
1) Install JDK 1.5
2) Follow 'Gump Farm' (see BrutusConfig) requirements for HTTP configuration for 
non-Forrest-webapp new flavour 'jdk15' (i.e. point to the ./jdk15/results area for 
http://.../gump/jdk15/.


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[jira] Closed: (GUMP-77) Install an RDBMS on Brutus

2004-08-11 Thread general
Message:

   The following issue has been closed.

   Resolver: Leo Simons
   Date: Wed, 11 Aug 2004 8:07 AM

installed mysql
-
View the issue:
  http://issues.apache.org/jira/browse/GUMP-77

Here is an overview of the issue:
-
Key: GUMP-77
Summary: Install an RDBMS on Brutus
   Type: Task

 Status: Closed
   Priority: Major
 Resolution: FIXED

Project: Gump
 Components: 
 configuration of live servers

   Assignee: 
   Reporter: Adam Jack

Created: Tue, 3 Aug 2004 7:27 AM
Updated: Wed, 11 Aug 2004 8:07 AM

Description:
Gump needs an RDBMS for storing results (and perhaps for webapps communicating with 
batch runs, and so forth).

Python can interact with RDBMS, here is information on how and with what.

   http://www.python.org/topics/database/
   http://www.python.org/topics/database/modules.html

I am game to try other databases (it isn't as if we need complex queries).


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[jira] Closed: (GUMP-78) Brutus needs to accept incoming connections from ASF only

2004-08-11 Thread general
Message:

   The following issue has been closed.

   Resolver: Leo Simons
   Date: Wed, 11 Aug 2004 8:06 AM

I've firewalled off everything but 22/80/8080 which should be sufficient. Direct 
connection to brutus is simply a lot faster for me :-D
-
View the issue:
  http://issues.apache.org/jira/browse/GUMP-78

Here is an overview of the issue:
-
Key: GUMP-78
Summary: Brutus needs to accept incoming connections from ASF only
   Type: Task

 Status: Closed
   Priority: Major
 Resolution: FIXED

Project: Gump

   Assignee: 
   Reporter: Adam Jack

Created: Mon, 9 Aug 2004 2:19 PM
Updated: Wed, 11 Aug 2004 8:06 AM

Description:
As we install things like MySQL onto Brutus, heck -- anyway, we really need to 
restrict inbound connections. IMHO Brutus ought only allow incoming connections from 
ASF machine, and then perhaps SSH/HTTP(S) only. I think we'd ProxyPass 
gump.apache.org/data/ to brutus, to server pages.

Can we restrict Brutus this way?


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: brutus admin work

2004-08-11 Thread Leo Simons
we now have iptables installed and configured to only accept connections 
on ports 22,80,8080. I used the configuration package 'lokkit' (command: 
'lokkit') for the configuration, as our needs are so simple.

we also have something called 'aide' installed, which monitors for 
intrusions and e-mails reports to the root user.

set up as follows:
  apt-get install lokkit
  apt-get install aide
  lokkit # set up ports
  iptables -A INPUT -j RH-Lokkit-0-50-INPUT # use the new chain
  iptables -A FORWARD -j RH-Lokkit-0-50-INPUT
cheers,
- LSD
Leo Simons wrote:
I'm working on some upgrades and other stoof on brutus. If it dies, 
blame me :-D

- LSD
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


[Gump Wiki] Updated: BrutusConfig

2004-08-11 Thread general
   Date: 2004-08-11T07:55:50
   Editor: LeoSimons <[EMAIL PROTECTED]>
   Wiki: Gump Wiki
   Page: BrutusConfig
   URL: http://wiki.apache.org/gump/BrutusConfig

   no comment

Change Log:

--
@@ -2,8 +2,8 @@
 
 Install the following via {{{apt-get install}}}:
 
- * '''required''': apache cvs libxp-dev libxt6 libxtst6 python subversion xvfb
- * '''convenience''': curl lynx htdate sudo vim bzip2 mutt nano
+ * '''required''': apache cvs libxp-dev libxt6 libxtst6 python subversion xvfb 
mysql-server python2.3-mysqldb
+ * '''convenience''': curl lynx htdate sudo vim bzip2 mutt nano mysql-client 
phpmyadmin
 
 === Create gump user ===
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[Gump Wiki] Updated: BrutusConfig

2004-08-11 Thread general
   Date: 2004-08-11T07:45:23
   Editor: LeoSimons <[EMAIL PROTECTED]>
   Wiki: Gump Wiki
   Page: BrutusConfig
   URL: http://wiki.apache.org/gump/BrutusConfig

   no comment

Change Log:

--
@@ -3,7 +3,7 @@
 Install the following via {{{apt-get install}}}:
 
  * '''required''': apache cvs libxp-dev libxt6 libxtst6 python subversion xvfb
- * '''convenience''': curl lynx htdate sudo vim bzip2 mutt
+ * '''convenience''': curl lynx htdate sudo vim bzip2 mutt nano
 
 === Create gump user ===
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[Gump Wiki] Updated: BrutusConfig

2004-08-11 Thread general
   Date: 2004-08-11T07:45:00
   Editor: LeoSimons <[EMAIL PROTECTED]>
   Wiki: Gump Wiki
   Page: BrutusConfig
   URL: http://wiki.apache.org/gump/BrutusConfig

   no comment

Change Log:

--
@@ -3,7 +3,7 @@
 Install the following via {{{apt-get install}}}:
 
  * '''required''': apache cvs libxp-dev libxt6 libxtst6 python subversion xvfb
- * '''convenience''': curl lynx htdate sudo vim bzip2
+ * '''convenience''': curl lynx htdate sudo vim bzip2 mutt
 
 === Create gump user ===
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



brutus admin work

2004-08-11 Thread Leo Simons
I'm working on some upgrades and other stoof on brutus. If it dies, 
blame me :-D

- LSD
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


cvs commit: gump/project db-torque.xml

2004-08-11 Thread bodewig
bodewig 2004/08/11 03:32:26

  Modified:project  db-torque.xml
  Log:
  Enable nagging
  
  Revision  ChangesPath
  1.13  +3 -10 gump/project/db-torque.xml
  
  Index: db-torque.xml
  ===
  RCS file: /home/cvs/gump/project/db-torque.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- db-torque.xml 26 Jul 2004 07:14:24 -  1.12
  +++ db-torque.xml 11 Aug 2004 10:32:26 -  1.13
  @@ -17,13 +17,10 @@
   
   
 Persistence Layer
  -  http://jakarta.apache.org/turbine/torque/"/>
  +  http://db.apache.org/torque/"/>
   
 
   
  -  
  -  
  -
 
   
   
  @@ -63,10 +60,8 @@
   
   
   
  -
 
 
 
  @@ -94,10 +89,8 @@
   
   
   
  -
 
 
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: gump/project caucho-libs.xml mx4j.xml

2004-08-11 Thread bodewig
bodewig 2004/08/11 03:20:11

  Modified:profile  gump.xml
   project  mx4j.xml
  Added:   project  caucho-libs.xml
  Log:
  Add Caucho's Hessian, needed by mx4j-tools - thanks to Simone Bordet
  
  Revision  ChangesPath
  1.376 +2 -0  gump/profile/gump.xml
  
  Index: gump.xml
  ===
  RCS file: /home/cvs/gump/profile/gump.xml,v
  retrieving revision 1.375
  retrieving revision 1.376
  diff -u -r1.375 -r1.376
  --- gump.xml  11 Aug 2004 08:36:47 -  1.375
  +++ gump.xml  11 Aug 2004 10:20:10 -  1.376
  @@ -216,6 +216,7 @@
 
 
 
  +  
 
 http://dev.w3.org/cvsweb/~checkout~/2001/DOM-Test-Suite/domts.xml?content-type=text/xml"/>
 
  @@ -285,6 +286,7 @@
  package="avalon-phoenix-dependencies"/>
 
 
  +  
 
 
 
  
  
  
  1.31  +8 -8  gump/project/mx4j.xml
  
  Index: mx4j.xml
  ===
  RCS file: /home/cvs/gump/project/mx4j.xml,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- mx4j.xml  11 Aug 2004 08:36:10 -  1.30
  +++ mx4j.xml  11 Aug 2004 10:20:11 -  1.31
  @@ -63,14 +63,14 @@
   javax.management
   
   
  -
  -
  +
   
  +
  +
  +
   
   
   
  -
  -

   
   
  @@ -82,14 +82,14 @@
   javax.management
   
   
  -
  +
   
  +
  +
  +
   
   
   
  -
  -
  -

   
   
  
  
  
  1.1  gump/project/caucho-libs.xml
  
  Index: caucho-libs.xml
  ===
  
  
  
  
http://www.caucho.com/"/>

  Additional Libraries from Caucho

  

  
Lightweight, self-describing binary RPC protocol
  
  com.caucho.hessian
  
  

  

  
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: MX4J build failure

2004-08-11 Thread Stefan Bodewig
On Wed, 11 Aug 2004, Simone Bordet <[EMAIL PROTECTED]> wrote:

> No dependency on Resin.

OK, I've eliminated that.

> But you should download hessian-3.0.8.jar,

I have done so,

> which contains both hessian and burlap,

Looking into the JAR I see it contains Burlap, but I cannot find any
hint on the Caucho website.

Thanks

Stefan

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: MX4J build failure

2004-08-11 Thread Bordet, Simone
Hi, 

> > I received a gump build failure for MX4J.  This is due to recent 
> > commits for new functionalities that have dependencies with
> > + servlet.jar (javax.servlet.* classes) hessian-3.0.8.jar 
> > + (downloadable from http://www.caucho.com), a pair of 
> protocols released under the ASL.
> 
> Ah, I already added Servlet API and Resin, which I thought 
> would be needed.
> 
> Hmm, looking closer you also seem to need Burlap in addition 
> to Hessian, will download that (2.1.12) as well.
> 
> > Let me know if you need further information.
> 
> No dependency on Resin itself, correct?

No dependency on Resin.
But you should download hessian-3.0.8.jar, which contains both hessian and burlap, not 
version 2.1.12.
http://caucho.com/hessian/ (Download section)

Thanks !

Simon

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: MX4J build failure

2004-08-11 Thread Stefan Bodewig
On Wed, 11 Aug 2004, Simone Bordet <[EMAIL PROTECTED]> wrote:

> I received a gump build failure for MX4J.  This is due to recent
> commits for new functionalities that have dependencies with
> + servlet.jar (javax.servlet.* classes)
> + hessian-3.0.8.jar (downloadable from http://www.caucho.com), a pair of protocols 
> released under the ASL.

Ah, I already added Servlet API and Resin, which I thought would be
needed.

Hmm, looking closer you also seem to need Burlap in addition to
Hessian, will download that (2.1.12) as well.

> Let me know if you need further information.

No dependency on Resin itself, correct?

Cheers

Stefan

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



MX4J build failure

2004-08-11 Thread Bordet, Simone
Hi guys,

I received a gump build failure for MX4J.
This is due to recent commits for new functionalities that have dependencies with
+ servlet.jar (javax.servlet.* classes)
+ hessian-3.0.8.jar (downloadable from http://www.caucho.com), a pair of protocols 
released under the ASL.

Let me know if you need further information.

Thanks

Simon 
(MX4J project admin)


cvs commit: gump/project james-server.xml

2004-08-11 Thread bodewig
bodewig 2004/08/11 01:37:16

  Modified:project  james-server.xml
  Log:
  James needs Bouncy Castle's SMIME support
  
  Revision  ChangesPath
  1.15  +1 -0  gump/project/james-server.xml
  
  Index: james-server.xml
  ===
  RCS file: /home/cvs/gump/project/james-server.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- james-server.xml  10 Jul 2004 22:20:26 -  1.14
  +++ james-server.xml  11 Aug 2004 08:37:15 -  1.15
  @@ -61,6 +61,7 @@
   
   
   
  +
   
   
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: gump/profile gump.xml

2004-08-11 Thread bodewig
bodewig 2004/08/11 01:36:47

  Modified:profile  gump.xml
  Added:   project  bouncycastle.xml
  Log:
  Install Bouncy Castle packages
  
  Revision  ChangesPath
  1.1  gump/project/bouncycastle.xml
  
  Index: bouncycastle.xml
  ===
  
  
  
  
http://www.bouncycastle.org/"/>

  Bouncy Castle Crypto APIs

  

  
Bouncy Castle JCE provider
  
  org.bouncycastle
  
  

  

  
Bouncy Castle SMIME/CMS
  
  org.bouncycastle
  
  

  
  
  
  
  
  1.375 +2 -0  gump/profile/gump.xml
  
  Index: gump.xml
  ===
  RCS file: /home/cvs/gump/profile/gump.xml,v
  retrieving revision 1.374
  retrieving revision 1.375
  diff -u -r1.374 -r1.375
  --- gump.xml  11 Aug 2004 08:12:51 -  1.374
  +++ gump.xml  11 Aug 2004 08:36:47 -  1.375
  @@ -213,6 +213,7 @@
 
 
 
  +  
 
 
 
  @@ -283,6 +284,7 @@
 
 
  +  
 
 
 
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: gump/project mx4j.xml

2004-08-11 Thread bodewig
bodewig 2004/08/11 01:36:10

  Modified:project  mx4j.xml
  Log:
  wrong project name
  
  Revision  ChangesPath
  1.30  +2 -2  gump/project/mx4j.xml
  
  Index: mx4j.xml
  ===
  RCS file: /home/cvs/gump/project/mx4j.xml,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- mx4j.xml  11 Aug 2004 08:13:55 -  1.29
  +++ mx4j.xml  11 Aug 2004 08:36:10 -  1.30
  @@ -65,7 +65,7 @@
   
   
   
  -
  +
   
   
   
  @@ -83,7 +83,7 @@
   
   
   
  -
  +
   
   
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: gump/project db-commons-sandbox.xml db-ojb.xml

2004-08-11 Thread bodewig
bodewig 2004/08/11 01:21:31

  Modified:project  db-commons-sandbox.xml db-ojb.xml
  Log:
  Grafolia doesn't seem to have any dependencies and just builds, cool
  
  Revision  ChangesPath
  1.2   +2 -0  gump/project/db-commons-sandbox.xml
  
  Index: db-commons-sandbox.xml
  ===
  RCS file: /home/cvs/gump/project/db-commons-sandbox.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- db-commons-sandbox.xml10 Aug 2004 08:31:14 -  1.1
  +++ db-commons-sandbox.xml11 Aug 2004 08:21:30 -  1.2
  @@ -25,6 +25,8 @@
   
 
   
  +
  +
 
   
   
  
  
  
  1.19  +2 -2  gump/project/db-ojb.xml
  
  Index: db-ojb.xml
  ===
  RCS file: /home/cvs/gump/project/db-ojb.xml,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- db-ojb.xml10 Aug 2004 08:16:47 -  1.18
  +++ db-ojb.xml11 Aug 2004 08:21:30 -  1.19
  @@ -40,7 +40,7 @@
   
   
   
  -
  +
   
   
   
  @@ -97,7 +97,7 @@
   
   
   
  -
  +
   
   
   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: gump/project mx4j.xml

2004-08-11 Thread bodewig
bodewig 2004/08/11 01:13:55

  Modified:project  mx4j.xml
  Log:
  mx4j-tools now depend on Servlet API and Resin
  
  Revision  ChangesPath
  1.29  +4 -0  gump/project/mx4j.xml
  
  Index: mx4j.xml
  ===
  RCS file: /home/cvs/gump/project/mx4j.xml,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- mx4j.xml  3 Jun 2004 15:42:37 -   1.28
  +++ mx4j.xml  11 Aug 2004 08:13:55 -  1.29
  @@ -65,9 +65,11 @@
   
   
   
  +
   
   
   
  +
   

   
  @@ -81,10 +83,12 @@
   
   
   
  +
   
   
   
   
  +
   

   
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



cvs commit: gump/project resin.xml jgen.xml

2004-08-11 Thread bodewig
bodewig 2004/08/11 01:12:51

  Modified:profile  gump.xml
   project  jgen.xml
  Added:   project  resin.xml
  Log:
  Make resin an installed package
  
  Revision  ChangesPath
  1.374 +2 -0  gump/profile/gump.xml
  
  Index: gump.xml
  ===
  RCS file: /home/cvs/gump/profile/gump.xml,v
  retrieving revision 1.373
  retrieving revision 1.374
  diff -u -r1.373 -r1.374
  --- gump.xml  10 Aug 2004 08:43:26 -  1.373
  +++ gump.xml  11 Aug 2004 08:12:51 -  1.374
  @@ -228,6 +228,7 @@
 
 
 
  +  
 
 
 
  @@ -330,6 +331,7 @@
 
 
 
  +  
 
 
 
  
  
  
  1.12  +0 -6  gump/project/jgen.xml
  
  Index: jgen.xml
  ===
  RCS file: /home/cvs/gump/project/jgen.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- jgen.xml  6 May 2004 16:03:40 -   1.11
  +++ jgen.xml  11 Aug 2004 08:12:51 -  1.12
  @@ -49,12 +49,6 @@
   
 
   
  -  
  -http://www.caucho.com/"/>
  -com.caucho
  -
  -  
  -
 
   http://www.enterprisedt.com/downloads/ftp.html"/>
   com.enterprisedt.net.ftp
  
  
  
  1.1  gump/project/resin.xml
  
  Index: resin.xml
  ===
  
  
  
  
http://www.caucho.com/"/>

  Resin Servlet and JSP engine

  

  com.caucho
  
  

  
  
  
  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Board Report Preparation...

2004-08-11 Thread Stefan Bodewig
On Tue, 10 Aug 2004, Adam R. B. Jack <[EMAIL PROTECTED]> wrote:
>>> I believe that it is coming time for board reports,
>>
>> Nope, we are due in September, but
> 
> I did wonder, but only saw the boards calendar & noticed other
> groups preparing. So, how would I have figured out our 'cycle' or
> whatever?

board/committee-info.txt in the committers CVS module.

> Is it every 3 months or something?

Yes.  We had to report the first two months after Gump became a TLP
and after that start with our regular schedule of "March, June,
September, December".

Stefan

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]