Removing interim dated builds from /www/www.apache.org/dist/java-repository

2005-01-04 Thread Mark R. Diggory
Please excuse the cross post. I'm planning to run some commands on the java-repository to remove interim builds and SNAPSHOTS. Specifically, I'll be running: #!/bin/sh LOCATION=/www/www.apache.org/dist/java-repository find ${LOCATION} -name '*200[0-4]*' | while read j; do rm -f $j; done

Re: [java-repository] licenses update

2004-12-12 Thread Mark R. Diggory
Phil, I'd bring up discussion on some of these issues with the Maven folks to have them help clarify the repository layout. If licenses and readmes are old, then Maven should provide a means to update these when publishing (does it). If I remember correctly, the repository plugin should be

Re: md5's

2004-10-08 Thread Mark R. Diggory
The ball is in play. http://jira.codehaus.org/browse/MPARTIFACT-39 -Mark Henk P. Penning wrote: On Wed, 6 Oct 2004, Mark R. Diggory wrote: Date: Wed, 06 Oct 2004 14:08:38 -0400 From: Mark R. Diggory [EMAIL PROTECTED] To: Dion Gillard [EMAIL PROTECTED] Cc: Henk P. Penning [EMAIL PROTECTED], [EMAIL

Re: md5's

2004-10-07 Thread Mark R. Diggory
it can be omitted there if troublesome. Thanks, Brett Henk P. Penning wrote: On Wed, 6 Oct 2004, Mark R. Diggory wrote: Date: Wed, 06 Oct 2004 14:08:38 -0400 From: Mark R. Diggory [EMAIL PROTECTED] To: Dion Gillard [EMAIL PROTECTED] Cc: Henk P. Penning [EMAIL PROTECTED], [EMAIL PROTECTED

Re: md5's

2004-10-06 Thread Mark R. Diggory
publishing worked initially in a staging area as not to confuse existing cron jobs attempting to validate md5's on the server. This would probably be best served in the systems default tmp directory. -Mark Dion Gillard wrote: On Tue, 05 Oct 2004 14:11:03 -0400, Mark R. Diggory [EMAIL PROTECTED

Re: Repository upload instructions

2004-08-25 Thread Mark R. Diggory
Felipe Leme wrote: On Tue, 2004-08-24 at 22:47, Jason van Zyl wrote: issues. We can't put (L)GPL stuff in Apache hardware period. Better remove my bundle then :-( No, the LGPL projects get submited to Maven/ibiblio for publishing, not to the ASF Repository. Your requesting the publishing of

Re: md5 checksum formats on BSD

2004-08-11 Thread Mark R. Diggory
be set within Ant and Maven to allow developers to choose the md5 output format one would like to use. Yes, I do believe this would be an excellent feature enhancement to these tools. -Mark Mark R. Diggory wrote: Both Maven and Ant only insert only the checksum into the file. I believe

Re: empty md5 files in ibiblio repository

2004-08-08 Thread Mark R. Diggory
. I doubt it, and whoever uploads those probably needs to start creating them. Can't the script be changed to look for md5 and if it isn't found, look for md5sum? which should do the job. - Brett Quoting Mark R. Diggory [EMAIL PROTECTED]: Another idea, Shouldn't it be possible from Maven

Re: empty md5 files in ibiblio repository

2004-08-08 Thread Mark R. Diggory
Mark R. Diggory wrote: Brett Porter wrote: Not really Maven's domain to do this, and you won't get Maven run on minotaur, or probably ibiblio for that matter. Ant exists, but I think they'd all prefer shell scripts. No, I mean client side. Where maven would download the artifact to its local

Re: empty md5 files in ibiblio repository

2004-08-05 Thread Mark R. Diggory
-checksums It's been overwritten again and is owned by you - I presumed it was some script you had on another server that was getting synced in. The problem is it uses some md5 command that is not present on ibiblio. Cheers, Ben Mark R. Diggory wrote: Ok, is this a script that runs on ibiblio or minotaur

Re: empty md5 files in ibiblio repository

2004-08-05 Thread Mark R. Diggory
Another idea, Shouldn't it be possible from Maven to correct the offending md5 signature? sign-artifact or something of that nature run within the hsqldb project directory? -Mark Mark R. Diggory wrote: Typical, http://www.apache.org/dist/java-repository/create-checksums This is the issue

Re: empty md5 files in ibiblio repository

2004-08-04 Thread Mark R. Diggory
Ok, is this a script that runs on ibiblio or minotaur? Many of the md5's come from the apache java-repository, I suspect if they are not fixed there that they will be replaced during the rsync process. -Mark Ben Walding wrote: Some other server keeps hosing the create-checksums script I use to

Re: [VOTE] Options for the Jakarta Taglibs Maven repository

2004-08-03 Thread Mark R. Diggory
Felipe Leme wrote: Hi all, As we haven't reached a common sense on how to name the groups, I think we should vote for it. The issues are: 1.Multiple directories x one directory: [ ] +1 Put everything in one directory (such as jakarta-taglibs) Advantage: less groups on ibiblio Disadvantage:

Re: [VOTE] Options for the Jakarta Taglibs Maven repository

2004-08-03 Thread Mark R. Diggory
don't agree with on my other email just sent as a starting point for a discussion. I think I'm the one who didn't have enough coffee when I wrote this... ;-) I'll respond in kind to your other thread. -- Mark R. Diggory Software Developer Harvard MIT Data Center http://www.hmdc.harvard.edu

Re: [VOTE] Options for the Jakarta Taglibs Maven repository

2004-08-03 Thread Mark R. Diggory
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Mark R. Diggory

Re: [VOTE] Options for the Jakarta Taglibs Maven repository

2004-08-03 Thread Mark R. Diggory
/apache/jakarta/taglibs/jndi/1.0.1/jndi-1.0.1.jar Is this the plan? -- Mark R. Diggory Software Developer Harvard MIT Data Center http://www.hmdc.harvard.edu - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: New Maven repository

2004-07-18 Thread Mark R. Diggory
Carlos, A snapshot in Maven terms is any release symlinked to create a reference to the most current version (so in Maven, a snapshot can be an official release or a dated build). IE: http://www.apache.org/dist/java-repository/commons-collections/jars/commons-collections-3.1.jar is symlinked

saveErrors...

2004-06-23 Thread Mark R. Diggory
I was looking at the code for Action.saveErrors(...) and was think this is a little inflexible when it comes to error and message management: protected void saveErrors(HttpServletRequest request, ActionMessages errors) { // Remove any error messages attribute if none are required

Please IGNORE, This post is to the wrong list (was Re: saveErrors...)

2004-06-23 Thread Mark R. Diggory
Mark R. Diggory wrote: I was looking at the code for Action.saveErrors(...) and was think this is a little inflexible when it comes to error and message management: protected void saveErrors(HttpServletRequest request, ActionMessages errors) { // Remove any error messages

Re: groups syncing to ibiblio

2004-05-05 Thread Mark R. Diggory
Mauro Talevi wrote: Mark, separating maven repositories by organizations sort of defeates the point of putting them in a common unique place such as ibiblio. That is, once could two different url, say dist.apache.org dist.codehaus.org and those can be set on the client side as the maven repos

Maven Repository Status

2004-04-23 Thread Mark R. Diggory
I just wanted to drop everyone a note to let you know that I made the rsync of the java-repository between Apache and Ibiblio much more stable this week. It now occurs every 4 hours (EST 12am, 4am, 8am ...). If you ever encounter issues with your jars not getting synced into ibiblio, please

Re: [Fwd: Re: [commons-site] Alternate Horizontal Project Navigat ion]

2004-02-24 Thread Mark R. Diggory
Jason van Zyl wrote: Dealing with umbrella sites is definitely something that people want some advice on how to do best. An umbrella page is really an aggregation of all information contained within all the subprojects. So in this case maybe we need a different kind of page. Possibly having a

Re: [Fwd: Re: [commons-site] Alternate Horizontal Project Navigat ion]

2004-02-24 Thread Mark R. Diggory
[EMAIL PROTECTED] wrote: I like the idea of the blue bgcolor for non-focused tabs, but I'd also say to use a lighter gray for the fg of those tabs (increases contrast and readability). As for the pipes, it's a simple solution and seems very effective on other sites. yep One thing, though: I

Re: [Fwd: Re: [commons-site] Alternate Horizontal Project Navigation]

2004-02-24 Thread Mark R. Diggory
Jason van Zyl wrote: On Mon, 2004-02-23 at 07:55, Mark R. Diggory wrote: I thought it'd be good to forward this onto you Crazy Maven Developers. What do you think about horizontal project navigation: http://www.apache.org/~mdiggory/commons/math/userguide/index.html What you have in the tabs

[Fwd: Re: [commons-site] Alternate Horizontal Project Navigation]

2004-02-23 Thread Mark R. Diggory
: http://www.apache.org/~mdiggory/commons/math/userguide/index.html -Mark Tim O'Brien wrote: I think this helps. Although the About Math tab should have a blank subtab for consistency. ...now the left nav - it is s busy. Tim Mark R. Diggory wrote: I worked out the kinks on an alternate

Re: [Fwd: Re: [commons-site] Alternate Horizontal Project Navigation]

2004-02-23 Thread Mark R. Diggory
say it's really close to being a nice alternative. Just my 2c. -john On Mon, 2004-02-23 at 07:55, Mark R. Diggory wrote: I thought it'd be good to forward this onto you Crazy Maven Developers. What do you think about horizontal project navigation: http://www.apache.org/~mdiggory/commons/math

Re: [Fwd: Re: [commons-site] Alternate Horizontal Project Navigat ion]

2004-02-23 Thread Mark R. Diggory
Project Navigation] On Mon, 2004-02-23 at 07:55, Mark R. Diggory wrote: I thought it'd be good to forward this onto you Crazy Maven Developers. What do you think about horizontal project navigation: http://www.apache.org/~mdiggory/commons/math/userguide/index.html What you have in the tabs