[llvm-commits] [zorg] r125876 - in /zorg/trunk/llvmlab/llvmlab/ui/templates: dashboard.html dashboard_popup.html

Daniel Dunbar daniel at zuster.org
Fri Feb 18 08:41:29 PST 2011


Author: ddunbar
Date: Fri Feb 18 10:41:29 2011
New Revision: 125876

URL: http://llvm.org/viewvc/llvm-project?rev=125876&view=rev
Log:
llvmlab: Sketch template for a dashboard phase pop-up.

Added:
    zorg/trunk/llvmlab/llvmlab/ui/templates/dashboard_popup.html
Modified:
    zorg/trunk/llvmlab/llvmlab/ui/templates/dashboard.html

Modified: zorg/trunk/llvmlab/llvmlab/ui/templates/dashboard.html
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/llvmlab/llvmlab/ui/templates/dashboard.html?rev=125876&r1=125875&r2=125876&view=diff
==============================================================================
--- zorg/trunk/llvmlab/llvmlab/ui/templates/dashboard.html (original)
+++ zorg/trunk/llvmlab/llvmlab/ui/templates/dashboard.html Fri Feb 18 10:41:29 2011
@@ -5,7 +5,7 @@
 <h1>Welcome to the LLVM Lab Dashboard!</h1>
 
 <p>
-The most recent validate revision is<br>
+The most recent released revision is<br>
     r123456 <br>
 validated at:<br>
     2011-06-01 10:34 <br>
@@ -146,4 +146,8 @@
   </tr>
 </table>
 
+<h1>Example Phase Popups</h1>
+
+{% include "dashboard_popup.html" %}
+
 {% endblock %}

Added: zorg/trunk/llvmlab/llvmlab/ui/templates/dashboard_popup.html
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/llvmlab/llvmlab/ui/templates/dashboard_popup.html?rev=125876&view=auto
==============================================================================
--- zorg/trunk/llvmlab/llvmlab/ui/templates/dashboard_popup.html (added)
+++ zorg/trunk/llvmlab/llvmlab/ui/templates/dashboard_popup.html Fri Feb 18 10:41:29 2011
@@ -0,0 +1,11 @@
+{# Fragment template for rendering an individual phase pop-up #}
+<h3>Phase 4 - r123456</h3>
+<table>
+  <thead>
+    <tr><th>Builder</th><th>Status</th></tr>
+  </thead>
+  <tr><td>clang-i386-darwin10-RA-fnt</td><td>PASS</td></tr>
+  <tr><td>clang-x86_64-darwin10-RA-fnt</td><td>PASS</td></tr>
+  <tr><td>clang-i386-linux-RA-fnt</td><td>PASS</td></tr>
+  <tr><td>clang-x86_64-linux-RA-fnt</td><td>PASS</td></tr>
+</table>





More information about the llvm-commits mailing list