You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by "David DIDIER (JIRA)" <ji...@codehaus.org> on 2005/09/29 21:39:10 UTC

[jira] Created: (MNG-1046) Project Mailing Lists reports bad URL, post and archive

Project Mailing Lists reports bad URL, post and archive
-------------------------------------------------------

         Key: MNG-1046
         URL: http://jira.codehaus.org/browse/MNG-1046
     Project: Maven 2
        Type: Bug
  Components: maven-project-info-reports-plugin  
    Versions: 2.0-beta-2    
 Reporter: David DIDIER


Here is my pom :

<mailingLists>
        <mailingList>
            <name>NDD Development</name>
            <subscribe>ndd-dev-request@ml.free.fr?subject=subscribe</subscribe>
            <unsubscribe>ndd-dev-request@ml.free.fr?subject=unsubscribe</unsubscribe>
            <post/>
            <archive/>
            <otherArchives/>
        </mailingList>
    </mailingLists>

generates (with site:site) in "mailing lists" the array :

NDD Development  |||  {Subscribe, ndd-dev-request@ml.free.fr?subject=subscribe}  |||  {Unsubscribe, ndd-dev-request@ml.free.fr?subject=unsubscribe}  |||  {Post, }  |||  {???UNKWOWN???, }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Commented: (MNG-1046) Project Mailing Lists reports bad URL, post and archive

Posted by "Vincent Siveton (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-1046?page=comments#action_47776 ] 

Vincent Siveton commented on MNG-1046:
--------------------------------------

I'll try to correct Post and Archive pb this week. 

> Project Mailing Lists reports bad URL, post and archive
> -------------------------------------------------------
>
>          Key: MNG-1046
>          URL: http://jira.codehaus.org/browse/MNG-1046
>      Project: Maven 2
>         Type: Bug
>   Components: maven-project-info-reports-plugin
>     Versions: 2.0-beta-2
>     Reporter: David DIDIER
>      Fix For: 2.0-beta-4
>  Attachments: maven-reporting-impl.diff
>
>
> Here is my pom :
> <mailingLists>
>         <mailingList>
>             <name>NDD Development</name>
>             <subscribe>ndd-dev-request@ml.free.fr?subject=subscribe</subscribe>
>             <unsubscribe>ndd-dev-request@ml.free.fr?subject=unsubscribe</unsubscribe>
>             <post/>
>             <archive/>
>             <otherArchives/>
>         </mailingList>
>     </mailingLists>
> generates (with site:site) in "mailing lists" the array :
> NDD Development  |||  {Subscribe, ndd-dev-request@ml.free.fr?subject=subscribe}  |||  {Unsubscribe, ndd-dev-request@ml.free.fr?subject=unsubscribe}  |||  {Post, }  |||  {???UNKWOWN???, }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Closed: (MNG-1046) Project Mailing Lists reports bad URL, post and archive

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-1046?page=all ]
     
Brett Porter closed MNG-1046:
-----------------------------

    Resolution: Fixed

fixed other issue, applied patch.

> Project Mailing Lists reports bad URL, post and archive
> -------------------------------------------------------
>
>          Key: MNG-1046
>          URL: http://jira.codehaus.org/browse/MNG-1046
>      Project: Maven 2
>         Type: Bug
>   Components: maven-project-info-reports-plugin
>     Versions: 2.0-beta-2
>     Reporter: David DIDIER
>     Assignee: Vincent Siveton
>      Fix For: 2.0-beta-4
>  Attachments: maven-reporting-impl.diff
>
>
> Here is my pom :
> <mailingLists>
>         <mailingList>
>             <name>NDD Development</name>
>             <subscribe>ndd-dev-request@ml.free.fr?subject=subscribe</subscribe>
>             <unsubscribe>ndd-dev-request@ml.free.fr?subject=unsubscribe</unsubscribe>
>             <post/>
>             <archive/>
>             <otherArchives/>
>         </mailingList>
>     </mailingLists>
> generates (with site:site) in "mailing lists" the array :
> NDD Development  |||  {Subscribe, ndd-dev-request@ml.free.fr?subject=subscribe}  |||  {Unsubscribe, ndd-dev-request@ml.free.fr?subject=unsubscribe}  |||  {Post, }  |||  {???UNKWOWN???, }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Updated: (MNG-1046) Project Mailing Lists reports bad URL, post and archive

Posted by "Vincent Siveton (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-1046?page=all ]

Vincent Siveton updated MNG-1046:
---------------------------------

    Attachment: maven-reporting-impl.diff

The getValidHref() method in the AbstractMavenReportRenderer class uses Commons Validator 1.4 to check if an url is valid or not.
>From this release, URLValidator does not handle url like http://www.google.com (see http://issues.apache.org/bugzilla/show_bug.cgi?id=30686) We did a small hack for it.
In the same way, EmailValidator fails with an email like described here.
Here is the patch.

> Project Mailing Lists reports bad URL, post and archive
> -------------------------------------------------------
>
>          Key: MNG-1046
>          URL: http://jira.codehaus.org/browse/MNG-1046
>      Project: Maven 2
>         Type: Bug
>   Components: maven-project-info-reports-plugin
>     Versions: 2.0-beta-2
>     Reporter: David DIDIER
>      Fix For: 2.0-beta-4
>  Attachments: maven-reporting-impl.diff
>
>
> Here is my pom :
> <mailingLists>
>         <mailingList>
>             <name>NDD Development</name>
>             <subscribe>ndd-dev-request@ml.free.fr?subject=subscribe</subscribe>
>             <unsubscribe>ndd-dev-request@ml.free.fr?subject=unsubscribe</unsubscribe>
>             <post/>
>             <archive/>
>             <otherArchives/>
>         </mailingList>
>     </mailingLists>
> generates (with site:site) in "mailing lists" the array :
> NDD Development  |||  {Subscribe, ndd-dev-request@ml.free.fr?subject=subscribe}  |||  {Unsubscribe, ndd-dev-request@ml.free.fr?subject=unsubscribe}  |||  {Post, }  |||  {???UNKWOWN???, }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Updated: (MNG-1046) Project Mailing Lists reports bad URL, post and archive

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-1046?page=all ]

Brett Porter updated MNG-1046:
------------------------------

    Fix Version: 2.0-beta-4

> Project Mailing Lists reports bad URL, post and archive
> -------------------------------------------------------
>
>          Key: MNG-1046
>          URL: http://jira.codehaus.org/browse/MNG-1046
>      Project: Maven 2
>         Type: Bug
>   Components: maven-project-info-reports-plugin
>     Versions: 2.0-beta-2
>     Reporter: David DIDIER
>      Fix For: 2.0-beta-4

>
>
> Here is my pom :
> <mailingLists>
>         <mailingList>
>             <name>NDD Development</name>
>             <subscribe>ndd-dev-request@ml.free.fr?subject=subscribe</subscribe>
>             <unsubscribe>ndd-dev-request@ml.free.fr?subject=unsubscribe</unsubscribe>
>             <post/>
>             <archive/>
>             <otherArchives/>
>         </mailingList>
>     </mailingLists>
> generates (with site:site) in "mailing lists" the array :
> NDD Development  |||  {Subscribe, ndd-dev-request@ml.free.fr?subject=subscribe}  |||  {Unsubscribe, ndd-dev-request@ml.free.fr?subject=unsubscribe}  |||  {Post, }  |||  {???UNKWOWN???, }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org