You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by jv...@apache.org on 2005/04/20 06:30:13 UTC

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

Author: jvanzyl
Date: Tue Apr 19 21:30:11 2005
New Revision: 162014

URL: http://svn.apache.org/viewcvs?view=rev&rev=162014
Log:
o show the files that have changed

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

Modified: maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/ProjectBuild.vm
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/ProjectBuild.vm?view=diff&r1=162013&r2=162014
==============================================================================
--- maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/ProjectBuild.vm (original)
+++ maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/ProjectBuild.vm Tue Apr 19 21:30:11 2005
@@ -13,6 +13,17 @@
     </table>
   </p>
 
+  <h4>Changes</h4>
+  <p>
+    <table border="1" cellspacing="2" cellpadding="3">
+      #foreach ( $file in $buildResult.changedFiles )
+      <tr>
+        <td>$file</td>
+      </tr>
+      #end
+    </table>
+  </p>
+
   <h4>Standard Output</h4>
   <p>
     <div style="width:100%; height:500px; overflow:auto; border-style: solid; border-width: 1px"><code><pre>$buildResult.standardOutput</pre></code></div>