On Thu, 31 May 2001, Allan Rae wrote:
> On Wed, 30 May 2001, Michael Koziarski wrote:
> [...]
> > There is a gzipped patch for www-user, this is a bit more than just
> > validation fixes. In preparation for the CSS use I've stripped out
> > all <font> tags. So applying this patch will make the site a little
> > ugly (if you have ugly default fonts that is :)).
>
> I got your patch. I'll look it over and hopefully commit it to the
I won't have time to finish reading through the patch today (or this
weekend) but it looks quite good -- one small thing on site_map.php3
though. Why have you got:
<ul>
<li>...</li>
<li><ul>
...
</ul></li>
<li>...</li>
</ul>
for nested lists? Both Netscape and Opera render an extra empty dot point
that looks silly.
I thought this is valid?
<ul>
<li>...</li>
<ul>
...
</ul>
<li>...</li>
</ul>
or at least:
<ul>
<li>...
<ul>
...
</ul></li>
<li>...</li>
</ul>
would be more appropriate.
Allan. (ARRae)