I haven't got karma or an account to the web server, so here's a patch
for a minor problem I found while messing with the site. The problem is
that $rowspan and $colspan variables for setting the attributes of <td>
cells need to be reset, otherwise later cells which don't explicitly set
those values will reuse the old ones.
I don't see these being used anywhere on the current site, but if someone
needs it in the future this should save them some hassle.
Kief
Index: site.vsl
===================================================================
RCS file: /home/cvs/jakarta-site2/xdocs/stylesheets/site.vsl,v
retrieving revision 1.23
diff -u -r1.23 site.vsl
--- site.vsl 4 Jan 2002 12:38:37 -0000 1.23
+++ site.vsl 19 Jan 2002 09:21:55 -0000
@@ -57,6 +57,8 @@
#end
</font>
</td>
+#set ($colspan = "")
+#set ($rowspan = "")
#end
#macro ( th $value)
@@ -75,6 +77,8 @@
#end
</font>
</td>
+#set ($colspan = "")
+#set ($rowspan = "")
#end
#macro ( projectanchor $name $value )
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>