You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by br...@apache.org on 2005/08/15 05:42:21 UTC

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

Author: brett
Date: Sun Aug 14 20:42:17 2005
New Revision: 232740

URL: http://svn.apache.org/viewcvs?rev=232740&view=rev
Log:
fix function reference

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

Modified: maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/Summary.vm
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/Summary.vm?rev=232740&r1=232739&r2=232740&view=diff
==============================================================================
--- maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/Summary.vm (original)
+++ maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/Summary.vm Sun Aug 14 20:42:17 2005
@@ -56,7 +56,8 @@
         #end
 
         #if ( $item.latestBuildId )
-        #set ( $build = $continuum.getLatestBuildForProject($item.id) )
+        ## TODO: get rid of this call back to $continuum
+        #set ( $build = $continuum.getLatestBuildResultForProject($item.id) )
         <td><a href="$link.setPage('ProjectBuild.vm').addPathInfo('view', "ProjectBuild").addPathInfo('id', $item.id).addPathInfo('buildId', $build.id)">Last Result</a></td>
         #else
         <td>Last Result</td>