mirror of https://github.com/apache/archiva.git
Changing 'Dependend on by' to 'Used by' as per #MRM-186. Code isn't changed yet as it's the word 'dependees' and I don't have a good replacement for that
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@478968 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
de98dc86b0
commit
f70c29e3ce
|
@ -59,7 +59,7 @@ public class RepositoryActionMapper
|
||||||
else if ( "showArtifactDependees".equals( actionMapping.getName() ) )
|
else if ( "showArtifactDependees".equals( actionMapping.getName() ) )
|
||||||
{
|
{
|
||||||
return BROWSE_PREFIX + params.remove( "groupId" ) + "/" + params.remove( "artifactId" ) + "/" +
|
return BROWSE_PREFIX + params.remove( "groupId" ) + "/" + params.remove( "artifactId" ) + "/" +
|
||||||
params.remove( "version" ) + "/dependedonby";
|
params.remove( "version" ) + "/usedby";
|
||||||
}
|
}
|
||||||
else if ( "showArtifactDependencyTree".equals( actionMapping.getName() ) )
|
else if ( "showArtifactDependencyTree".equals( actionMapping.getName() ) )
|
||||||
{
|
{
|
||||||
|
@ -119,7 +119,7 @@ public class RepositoryActionMapper
|
||||||
{
|
{
|
||||||
return new ActionMapping( "showArtifactDependencies", "/", "", params );
|
return new ActionMapping( "showArtifactDependencies", "/", "", params );
|
||||||
}
|
}
|
||||||
else if ( "dependedonby".equals( parts[3] ) )
|
else if ( "usedby".equals( parts[3] ) )
|
||||||
{
|
{
|
||||||
return new ActionMapping( "showArtifactDependees", "/", "", params );
|
return new ActionMapping( "showArtifactDependees", "/", "", params );
|
||||||
}
|
}
|
||||||
|
|
|
@ -117,7 +117,7 @@
|
||||||
<ww:param name="version" value="%{version}"/>
|
<ww:param name="version" value="%{version}"/>
|
||||||
</ww:url>
|
</ww:url>
|
||||||
</c:set>
|
</c:set>
|
||||||
<my:currentWWUrl url="${url}">Depended On By</my:currentWWUrl>
|
<my:currentWWUrl url="${url}">Used By</my:currentWWUrl>
|
||||||
<%-- TODO:
|
<%-- TODO:
|
||||||
<a href="TODO">Mailing Lists</a>
|
<a href="TODO">Mailing Lists</a>
|
||||||
--%>
|
--%>
|
||||||
|
|
Loading…
Reference in New Issue