Author: ltheussl Date: Wed Jan 18 12:46:59 2006 New Revision: 370255 URL: http://svn.apache.org/viewcvs?rev=370255&view=rev Log: PR: MPXDOC-125 Submitted by: Shinobu Kawai Yoshida url and timezone not used for contributor
Modified: maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/team-list.xml maven/maven-1/plugins/trunk/xdoc/xdocs/changes.xml Modified: maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/team-list.xml URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/team-list.xml?rev=370255&r1=370254&r2=370255&view=diff ============================================================================== --- maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/team-list.xml (original) +++ maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/team-list.xml Wed Jan 18 12:46:59 2006 @@ -47,6 +47,13 @@ #end #end #end + #foreach ($contributor in $project.contributors) + #if ($contributor.timezone) + #if ($contributor.timezone != "") + offsetDate("contributor-$contributor.name", "$contributor.timezone"); + #end + #end + #end } </script> </head> @@ -187,12 +194,24 @@ <message key="template.team_list.section.contributor.roles" bundle="plugin-resources.templates.templates" /> </th> + <th> + <message key="template.team_list.section.developer.offset" + bundle="plugin-resources.templates.templates" /> + </th> + <th> + <message key="template.team_list.section.developer.time" + bundle="plugin-resources.templates.templates" /> + </th> </tr> </thead> <tbody> #foreach ($contributor in $project.contributors) <tr> + #if ($contributor.url.length() != 0) + <td><a href="$contributor.url">$!contributor.name</a></td> + #else <td>$!contributor.name</td> + #end <td> #if ($contributor.email.length() != 0) <a href="mailto:$!contributor.email"> @@ -206,6 +225,13 @@ $role <br /> #end + </td> + <td>$!contributor.timezone</td> + <td> + <span id="contributor-$contributor.name"> + <message key="template.team_list.section.developer.timezone.unknown" + bundle="plugin-resources.templates.templates" /> + </span> </td> </tr> #end Modified: maven/maven-1/plugins/trunk/xdoc/xdocs/changes.xml URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/xdocs/changes.xml?rev=370255&r1=370254&r2=370255&view=diff ============================================================================== --- maven/maven-1/plugins/trunk/xdoc/xdocs/changes.xml (original) +++ maven/maven-1/plugins/trunk/xdoc/xdocs/changes.xml Wed Jan 18 12:46:59 2006 @@ -27,6 +27,7 @@ </properties> <body> <release version="1.10-SNAPSHOT" date="in SVN"> + <action dev="ltheussl" type="fix" issue="MPXDOC-125" due-to="Shinobu Kawai Yoshida">Url and timezone not used for contributor.</action> <action dev="ltheussl" type="fix" issue="MPXDOC-186">Mailing list links break if the address starts with http.</action> <action dev="ltheussl" type="fix" issue="MPXDOC-177">Internationalized sites have no images.</action> <action dev="ltheussl" type="add" issue="MPXDOC-164">New goal <code>xdoc:sitemap</code> to generate a sitemap.</action>