- 12 Feb, 2001 23 commits
-
-
Jim Fulton authored
extra semicolons at end, like Python allows extra commas.
-
Guido van Rossum authored
-
Guido van Rossum authored
compiling directly from DOM!
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
Most expression compilation has moved to TALGenerator (exceptions for now: attribute replacements and macro name).
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Martijn Pieters authored
allows such a module to import other modules in the same directory.
-
Guido van Rossum authored
- 11 Feb, 2001 1 commit
-
-
Guido van Rossum authored
-
- 10 Feb, 2001 5 commits
-
-
Chris McDonough authored
-
Chris McDonough authored
-
Chris McDonough authored
Raise error in _getobcontext if request.steps is len(0)... if someone deletes the root index_html, they will no longer get a puzzling failure if they attempt to view an object without an acquirable index_html.
-
Fred Drake authored
Fix reference to local variable; also submitting patch to Steve Purcell.
-
Chris McDonough authored
Changed product init code so that README.txt can be any of "README.txt", "README.TXT" or "readme.txt".
-
- 09 Feb, 2001 11 commits
-
-
Jim Fulton authored
we can rerun the tests and catch exceptions witha debugger.
-
Guido van Rossum authored
declarations.
-
Guido van Rossum authored
namespace declaration.
-
Chris McDonough authored
-
Guido van Rossum authored
- Only minimize empty elements when the content model is empty, keeping an explicit list of which elements have an empty content model (e.g. <img>, etc.). This checks whether the tagname is in an explicit list of such elements; the check is case insensitive. - Minimize certain attributes that are considered Boolean by HTML, e.g. ismap. Again, this does a case-insensitive check whether the attribute name is in a list of known Boolean attributes. Note: this should really be refactored, making HTML support a subclass rather than a keyword argument. Later...
-
Chris McDonough authored
-
Chris McDonough authored
-
Evan Simpson authored
-
Guido van Rossum authored
-
Guido van Rossum authored
- metal to do macro expansion (default on) - tal to do TAL expansion (default on) - html for XHTML heuristics (default off). See http://www.w3.org/TR/xhtml1/#guidelines for what this should do; currently all it does is to suppress the XML declaration and insert a space before the /> in minimized elements. Changed the TALCompiler class to generate enough code to be able to implement the tal=0 and metal=0 options to TALInterpreter; this meant e.g. compiling the original contents of nodes subject to replacement.
-
Chris McDonough authored
-