You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by vs...@apache.org on 2006/08/10 22:01:35 UTC

svn commit: r430510 - /maven/plugins/trunk/maven-project-info-reports-plugin/src/main/java/org/apache/maven/report/projectinfo/TeamListReport.java

Author: vsiveton
Date: Thu Aug 10 13:01:34 2006
New Revision: 430510

URL: http://svn.apache.org/viewvc?rev=430510&view=rev
Log:
Pr: MPIR-48: Internal html references are not generated in the team-list.html

o added internal link for developer id

Modified:
    maven/plugins/trunk/maven-project-info-reports-plugin/src/main/java/org/apache/maven/report/projectinfo/TeamListReport.java

Modified: maven/plugins/trunk/maven-project-info-reports-plugin/src/main/java/org/apache/maven/report/projectinfo/TeamListReport.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-project-info-reports-plugin/src/main/java/org/apache/maven/report/projectinfo/TeamListReport.java?rev=430510&r1=430509&r2=430510&view=diff
==============================================================================
--- maven/plugins/trunk/maven-project-info-reports-plugin/src/main/java/org/apache/maven/report/projectinfo/TeamListReport.java (original)
+++ maven/plugins/trunk/maven-project-info-reports-plugin/src/main/java/org/apache/maven/report/projectinfo/TeamListReport.java Thu Aug 10 13:01:34 2006
@@ -171,7 +171,7 @@
                     // To handle JS
                     sink.tableRow();
 
-                    tableCell( developer.getId() );
+                    tableCell( "<a name=\"" + developer.getId() + "\"></a>" + developer.getId(), true );
 
                     tableCell( developer.getName() );