[Midnightbsd-cvs] mports: index.tmpl: just add thead and tbody tags...helps with some user

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Wed Oct 31 18:03:10 EDT 2007


Log Message:
-----------
just add thead and tbody tags...helps with some user agents.

Modified Files:
--------------
    mports/Tools/magus/www/tmpls:
        index.tmpl (r1.1 -> r1.2)

-------------- next part --------------
Index: index.tmpl
===================================================================
RCS file: /home/cvs/mports/Tools/magus/www/tmpls/index.tmpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -LTools/magus/www/tmpls/index.tmpl -LTools/magus/www/tmpls/index.tmpl -u -r1.1 -r1.2
--- Tools/magus/www/tmpls/index.tmpl
+++ Tools/magus/www/tmpls/index.tmpl
@@ -22,11 +22,15 @@
 <TMPL_IF NAME="locks">
 <h2>Currently Building</h2>
 <table class="locks">
+<thead>
 <tr>
 	<th>Port</th>
 	<th>Machine</th>
 	<th>Arch</th>
 </tr>
+</thead>
+
+<tbody>
 <TMPL_LOOP NAME="locks">
 <tr>
 	<td><a href="<TMPL_VAR name=port_root>/<TMPL_VAR NAME=port>"><TMPL_VAR NAME="port"></a></td>
@@ -34,6 +38,7 @@
 	<td><TMPL_VAR name="arch"></td>
 </tr>
 </TMPL_LOOP>
+</tbody>
 </table>
 </TMPL_IF>
 
@@ -43,7 +48,16 @@
 
 <h2>Latest Results</h2>
 <table class="result-list">
-	<tr><th>Port</th><th>Version</th><th>Summary</th><th>Machine</th><th>Arch</th></tr>
+	<thead>
+	<tr>
+		<th>Port</th>
+		<th>Version</th>
+		<th>Summary</th>
+		<th>Machine</th>
+		<th>Arch</th>
+	</tr>
+	</thead>
+	<tbody>
 	<TMPL_LOOP NAME=results>
 	<tr class="<TMPL_VAR NAME=summary>">
 		<td><a href="<TMPL_VAR name=port_root>/<TMPL_VAR NAME=port>"><TMPL_VAR NAME="port"></a></td>
@@ -53,6 +67,7 @@
 		<td><TMPL_VAR NAME=arch></td>
 	</tr>
 	</TMPL_LOOP>
+	</tbody>
 </table>
 
-<TMPL_INCLUDE NAME="footer.tmpl">
\ No newline at end of file
+<TMPL_INCLUDE NAME="footer.tmpl">


More information about the Midnightbsd-cvs mailing list