You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ev...@apache.org on 2005/12/02 15:06:22 UTC

svn commit: r351730 - /maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/View.vm

Author: evenisse
Date: Fri Dec  2 06:06:18 2005
New Revision: 351730

URL: http://svn.apache.org/viewcvs?rev=351730&view=rev
Log:
PR: CONTINUUM-495

Use Velocity quiet notation for Developers and some other fields

Modified:
    maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/View.vm

Modified: maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/View.vm
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/View.vm?rev=351730&r1=351729&r2=351730&view=diff
==============================================================================
--- maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/View.vm (original)
+++ maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/View.vm Fri Dec  2 06:06:18 2005
@@ -139,9 +139,9 @@
           #end
           <td>
             #if ( $notifier.type == "irc" )
-              $notifier.configuration.host:$notifier.configuration.port$notifier.configuration.channel
+              $!{notifier.configuration.host}:$!{notifier.configuration.port}$!{notifier.configuration.channel}
             #else
-              $notifier.configuration.address
+              $!{notifier.configuration.address}
             #end
             #if ( !$notifier.isEnabled() )
               (DISABLED)
@@ -217,7 +217,7 @@
       </tr>
       #foreach ( $dependency in $project.dependencies )
       <tr class="$css.nextClass">
-        <td>$dependency.groupId:$dependency.artifactId:$dependency.version</td>
+        <td>$!{dependency.groupId}:$!{dependency.artifactId}:$!{dependency.version}</td>
       </tr>
       #end
     </table>
@@ -245,8 +245,8 @@
       </tr>
       #foreach ( $developer in $project.developers )
       <tr class="$css.nextClass">
-        <td>$developer.name</td>
-        <td>$developer.email</td>
+        <td>#if ( $developer.name ) $developer.name #else $!{developer.id}</td>
+        <td>$!{developer.email}</td>
         <!-- td>&nbsp;</td -->
       </tr>
       #end