[ 
https://issues.apache.org/jira/browse/MSHARED-608?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15807576#comment-15807576
 ] 

Hudson commented on MSHARED-608:
--------------------------------

SUCCESS: Integrated in Jenkins build maven-shared Jigsaw #675 (See 
[https://builds.apache.org/job/maven-shared%20Jigsaw/675/])
[MSHARED-608] Remove index.html-adding block in 
AbstractMavenReportRenderer#getValidHref() (michaelo: 
[http://svn.apache.org/viewvc/?view=rev&rev=1777793])
* (edit) 
maven-reporting-impl/src/main/java/org/apache/maven/reporting/AbstractMavenReportRenderer.java


> Remove index.html-adding block in AbstractMavenReportRenderer#getValidHref()
> ----------------------------------------------------------------------------
>
>                 Key: MSHARED-608
>                 URL: https://issues.apache.org/jira/browse/MSHARED-608
>             Project: Maven Shared Components
>          Issue Type: Bug
>          Components: maven-reporting-impl
>    Affects Versions: maven-reporting-impl 2.4
>            Reporter: Michael Osipov
>            Assignee: Michael Osipov
>             Fix For: maven-reporting-impl 3.0
>
>
> If URL validation fails, the following is executed:
> {code:java}
> String hrefTmp;
> if ( !href.endsWith( "/" ) )
> {
>   hrefTmp = href + "/index.html";
> }
> else
> {
>   hrefTmp = href + "index.html";
> }
> if ( UrlValidationUtil.isValidUrl( hrefTmp ) )
> {
>   return href;
> }
> {code}
> There are several problems here:
> * The assumption that {{/}} will point to {{index.html}} is wrong. This is 
> not known. It can ultimately lead to 404. No assumption shall be made to the 
> target.
> * There is no way that if a URL is already invalid it will get a valid URL by 
> adding {{index.html}}.
> Remove this code block.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to