Commit bb15b098 authored by Guido van Rossum's avatar Guido van Rossum

Add another TO DO item.

parent 0e90db9e
...@@ -86,6 +86,14 @@ TO DO ...@@ -86,6 +86,14 @@ TO DO
- TALInterpreter currently always uses an XML parser to parse inserted - TALInterpreter currently always uses an XML parser to parse inserted
structure; it should use a parser appropriate to the mode. structure; it should use a parser appropriate to the mode.
- The HTML parser currently returns <img ismap> as if it said <img
ismap="ismap">. This will break with old browsers. I see two ways
to fix this: (1) change the API to return None for the value in this
case, and then generate different code; or (2) special-case the
generator to recognize that the value is the same as the attribute
name for specific attribute names (the list is BOOLEAN_HTML_ATTRS in
TALInterpreter).
- HTMLTALParser.py and TALParser.py are silly names. Should be - HTMLTALParser.py and TALParser.py are silly names. Should be
HTMLTALCompiler.py and XMLTALCompiler.py (or maybe shortened, HTMLTALCompiler.py and XMLTALCompiler.py (or maybe shortened,
without "TAL"?) without "TAL"?)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment