Re: Uniform plugin site skin

2006-08-02 Thread Brett Porter
Hi Pete, If you specify the skin like this: org.apache.maven.skins maven-stylus-skin It will always use the latest version, which will match the main site (though if it changes it won't be updated on the individual sites until they are redeployed - but that's fine for now). However, I

is everyone subscribed to [EMAIL PROTECTED]

2006-08-02 Thread Brett Porter
It seems that build failures are going unnoticed recently. And for once, I'm not the one causing them (except that MRM webapp - doh!) a) is everyone subscribed? b) is everyone paying attention when they fail? c) what can we do to make it better? (yes, getting everything into Continuum is one th

Uniform plugin site skin

2006-08-02 Thread Pete Marvin King
Hello All, There's a discussion on the list on making the standard maven plugin's site skin uniform the the maven site. There's a suggestion in MNG1212, the site skin can be pack in a jar. But I'm wondering who will be responsible for maintaining the plugin site skins? if there are changes in the

[jira] Subscription: Outstanding Repository Maintenance: Uploads

2006-08-02 Thread jira
Issue Subscription Filter: Outstanding Repository Maintenance: Uploads (5 issues) Subscriber: mavendevlist Key Summary MAVENUPLOAD-1028Upload Joda-Time 1.3 http://jira.codehaus.org/browse/MAVENUPLOAD-1028 MAVENUPLOAD-1008Full bundle for xerces:dom3-xml-apis:1.0 htt

[jira] Subscription: Outstanding Repository Maintenance: Evangelism

2006-08-02 Thread jira
Issue Subscription Filter: Outstanding Repository Maintenance: Evangelism (27 issues) Subscriber: mavendevlist Key Summary MEV-426 Quartz 1.5.2 missing pom and jar. Has source. http://jira.codehaus.org/browse/MEV-426 MEV-427 relocate ehcache:ehcache to net.sf.ehcache

Re: [discussion/idea] resource scoping

2006-08-02 Thread Brett Porter
Hi David, I see what you mean now. The first thing I'd try is to add excludes to the creation of test-jar for the resources you don't want included. If that isn't satisfactory, then certainly adding an additional classpath might be an option - I've seen recent additions of requests for that

Re: [discussion/idea] resource scoping

2006-08-02 Thread David J. M. Karlsen
Brett Porter wrote: I'm sorry ,maybe its just because I'm pre-coffee, but I don't really understand what you are referring to. Sorry - I'll try to elaborate a little more: process-[test-]resources copies with targetPath to target/[test-]classes, which is added to the classpath. So it should al

Re: using standard maven site template

2006-08-02 Thread Jason van Zyl
On 2 Aug 06, at 8:36 AM 2 Aug 06, Brett Porter wrote: Hi, I've created a skin (maven-application-skin), which is the maven- theme.css and images needed to do the Continuum l&f with the normal Maven page layout (ie, css layout, not tables like in Continuum right now). Thought this might

Re: [discussion/idea] resource scoping

2006-08-02 Thread Jochen Wiedmann
Brett Porter wrote: I'm sorry ,maybe its just because I'm pre-coffee Hopefully, that's gonna be fixed soon? (SCNR :-) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [discussion/idea] resource scoping

2006-08-02 Thread Brett Porter
I'm sorry ,maybe its just because I'm pre-coffee, but I don't really understand what you are referring to. process-[test-]resources copies with targetPath to target/[test-]classes, which is added to the classpath. So it should all be correct. I assume you are talking about modifying the mani

[discussion/idea] resource scoping

2006-08-02 Thread David J. M. Karlsen
Hi list! We have resource scoping today with the //build/resources and //build/testresources elements - this is OK for stuff that's supposed to end up in the archived artifact. (yes - I am aware that a different targetPath may be specified - but these directories won't be added to the suref

Provide site descriptor? (was: Missing site descriptor)

2006-08-02 Thread Vincent Siveton
Hi, The best is to provide the schema for Maven2 site.xml (see MSITE-118). This schema is in the Doxia Decoration Model project [1]. Staging site for xsd and the doc is currently available at: http://people.apache.org/~vsiveton/doxia-decoration-model/decoration.html http://people.apache.org/~vsi

Re: [proposal] Maven front page, navigation

2006-08-02 Thread John Casey
We're probably going to start in on this in August, once we can get some spare time. For now, I think everyone's busy... -j On 8/2/06, Arnaud HERITIER <[EMAIL PROTECTED]> wrote: +1 Nothing new about that ? Arnaud On 6/20/06, Thierry Barnier <[EMAIL PROTECTED]> wrote: > > +1 > > 2006/6/19, Br

Re: Missing site descriptor

2006-08-02 Thread Lukas Theussl
I have removed this page, along with a couple of others, during a site clean-up in preparation of the m1.1b3 release. It was an old m1 page (dated from 7 December 2004), I kept a copy of it [1] in case someone wants to use it for an update, the current m1 equivalent is here [2]. I think that th

Re: Is m2-ibiblio-rsync-repository actually synced?

2006-08-02 Thread Carlos Sanchez
get the right script that warns with changed files, syncs metadata and syncs only new artifacts. The current code is here https://svn.apache.org/repos/asf/maven/components/trunk/maven-meeper/src/bin/m2-sync On 8/2/06, Jochen Wiedmann <[EMAIL PROTECTED]> wrote: On 8/2/06, Carlos Sanchez <[EMAIL

Re: changes to the repo scripts

2006-08-02 Thread Carlos Sanchez
That didn't solve the problem, it's in this line RSYNC_SSH="-e \"ssh $SSH_OPTS\"" SSH_OPTS was previously set to SSH_OPTS="-i $HOME/.ssh/new-id_dsa" when used RSYNC_SSH in the rsync command it get's messed up with the quoting On 8/2/06, Jochen Wiedmann <[EMAIL PROTECTED]> wrote: On 8/2/06, C

Re: Mave site search box

2006-08-02 Thread Arnaud HERITIER
Can't you do like in m1 : http://maven.apache.org/maven-1.x/plugins/bundled/ Arnaud On 8/2/06, Pete Marvin King <[EMAIL PROTECTED]> wrote: Tried that suggestion. I'm not sure if we're allowed to remove the google logo. Thanks for the feedback. pete marvin Cabasson Denis wrote: > Now, that

Re: changes to the repo scripts

2006-08-02 Thread Jochen Wiedmann
On 8/2/06, Carlos Sanchez <[EMAIL PROTECTED]> wrote: if [ -z $NO_SSH ] then if [ -z $SSH_OPTS ] I am almost sure that you'd want if [ -z "$NO_SSH" ] then if [ -z "$SSH_OPTS" ] or even if [ x"$NO_SSH" = "x" ] then if [ x"$SSH_OPTS" = "x" ]

Re: changes to the repo scripts

2006-08-02 Thread Carlos Sanchez
I was trying to make an script that can run automatically The problem I have with the codehaus repo is in this part of the script, it doesn't work when SSH_OPTS is defined (only for the codehaus repo). Maybe somebody with better knowledge of bash can help me. if [ -z $NO_SSH ] then if [ -z

Re: Is m2-ibiblio-rsync-repository actually synced?

2006-08-02 Thread Jochen Wiedmann
On 8/2/06, Carlos Sanchez <[EMAIL PROTECTED]> wrote: m2 is under demand for now m1 is automatic What's the problem? The metadata files? -- My wife Mary and I have been married for forty-seven years and not once have we had an argument serious enough to consider divorce; murder, yes, but divor

Re: [proposal] Maven front page, navigation

2006-08-02 Thread Arnaud HERITIER
+1 Nothing new about that ? Arnaud On 6/20/06, Thierry Barnier <[EMAIL PROTECTED]> wrote: +1 2006/6/19, Brett Porter <[EMAIL PROTECTED]>: > > (adapted from "Making the current web site suck less" initial proposal, > based on user/dev feedback) > > I'm embarrassed to say that the front page lo

Re: Is m2-ibiblio-rsync-repository actually synced?

2006-08-02 Thread Carlos Sanchez
half right m2 is under demand for now m1 is automatic On 8/1/06, Jochen Wiedmann <[EMAIL PROTECTED]> wrote: Carlos Sanchez wrote: > it happens under demand. it'll be available in the next hours Does that mean, that I am still supposed to announce changes in the directory, despite of the "rsyn

Re: Mave site search box

2006-08-02 Thread Pete Marvin King
Tried that suggestion. I'm not sure if we're allowed to remove the google logo. Thanks for the feedback. pete marvin Cabasson Denis wrote: > Now, that is a big box!!! > > Isn't there a way to make the Google logo a bit smaller? (I guess there are > legals considerations there). > > For the

Re: using standard maven site template

2006-08-02 Thread Jesse McConnell
+1, that can only be a good thing On 8/2/06, Brett Porter <[EMAIL PROTECTED]> wrote: Hi, I've created a skin (maven-application-skin), which is the maven-theme.css and images needed to do the Continuum l&f with the normal Maven page layout (ie, css layout, not tables like in Continuum right now

Re: Review of maven-dependency-plugin documentation

2006-08-02 Thread Matt Brozowski
On Aug 1, 2006, at 7:18 PM, Allan Ramirez wrote: Hi Everyone, The plugin docs for maven-dependency-plugin is now ready for review. Staging site can be found here. http://people.apache.org/~aramirez/maven-dependency-plugin/ Another one I noticed this morning. The groupId is listed as org.a

Re: Review of maven-dependency-plugin documentation

2006-08-02 Thread Allan Ramirez
Applied, and with regards in the terms used, I added a link to dependency mechanism for more information about dependencies Cheers, allan Franz Allan Valencia See wrote: Good day, Here are my reviews, in general dependency and other related terms were not explained (since this is the depende

Re: Review of maven-dependency-plugin documentation

2006-08-02 Thread Allan Ramirez
changed. Thanks for that. allan Matt Brozowski wrote: On Aug 1, 2006, at 7:18 PM, Allan Ramirez wrote: Hi Everyone, The plugin docs for maven-dependency-plugin is now ready for review. Staging site can be found here. http://people.apache.org/~aramirez/maven-dependency-plugin/ Most of th

Re: Please review maven-ear-plugin site documentation

2006-08-02 Thread Stephane Nicoll
Nice. I added the support of HAR files meanwhile. By the way it's missing in the list at the beginning of the main page: http://people.apache.org/~epunzalan/maven-ear-plugin/index.html I though I updated it but I don't find the revision for this file in viewvc (?!) Thanks, Stéphane On 8/2/06, E

Re: Review of maven-antrun-plugin documentation

2006-08-02 Thread Franz Allan Valencia See
Good day, Thank you for your review. I've now applied them and submitted the patch to http://jira.codehaus.org/browse/MANTRUN-55 Here is the changes within the patch: In usage.html - maven.dependency.classpath (Reported by Vincent Siveton) - Review <<> (Reported by Vincent Siveton) - i

Missing site descriptor

2006-08-02 Thread Cabasson Denis
Both new and old site documentation points to http://maven.apache.org/site.html for the site descriptor. Looks like this page is missing right now. This could be a real pain for users trying to set up their sites. Could someone restore this page, or set a redir

RE: Mave site search box

2006-08-02 Thread Cabasson Denis
Now, that is a big box!!! Isn't there a way to make the Google logo a bit smaller? (I guess there are legals considerations there). For the design part, I would prefer 2 separate boxes for search and download. Would it be possible to add a radio button to include search in the mojo.codehaus.org

Mave site search box

2006-08-02 Thread Pete Marvin King
Hello All, There was discussion on the list about putting a search box in the maven site index page. I gave it a shot, here's the sample page http://jira.codehaus.org/secure/attachment/21969/index.html Please post your feedback in the issue : http://jira.codehaus.org/browse/MNG-2471 Thanks,