Christian Tismer wrote:

Samuele Pedroni wrote:

...

I have uploaded a new version, which seem to work with Firexfox, Safari,
and also Mac IE5 (which I admit I did not try the first time around),
js driven local sorting seems also to work with all three after some changes.


I ran a Dreamweaver Browser COmpatibility check over the main page.
It complains about the line
"""<table id="alpha" style="display: table;">"""

Value "table" is not supported for MSIE 5.0,5.5,6.0

quite possible


About valid HTML:

<link href="modules-index_files/delta.css" rel="stylesheet" type="text/css">

they are closed in XML sense:

<link href="modules-index_files/delta.css" rel="stylesheet" type="text/css"/>

notice the />  and at least the w3c validator is happy.


This tag is not closed, therefore the following

<script src="modules-index_files/delta.js" type="text/javascript"> </script></head>

is not allowed in the context of a link.

The sameholdsfor all "img" tags which should be closed.

This is in accordance with XHTML 1.0

it is true that it is reccomended to put a space:

<link href="modules-index_files/delta.css" rel="stylesheet" type="text/css" />

we should teach py.xml.html to do that.


_______________________________________________ [email protected] http://codespeak.net/mailman/listinfo/pypy-dev

Reply via email to