Hi, all.
ecs 1.4.1 support Doctype class.
by the way, HTML4.0 was revised to HTML 4.01.
So, HTML4.0 was obsoleted.
the Doctype class include following method.
* public static class Html40Strict()
* public static class Html40Transitional()
* public static class Html40Frameset()
These methods need to correct.
From
this.identifier = "\"-//W3C//DTD HTML 4.0//EN\"";
this.identifier = "\"-//W3C//DTD HTML 4.0 Transitional//EN\"";
this.identifier = "\"-//W3C//DTD HTML 4.0 Frameset//EN\"";
To
this.identifier = "\"-//W3C//DTD HTML 4.01//EN\"";
this.identifier = "\"-//W3C//DTD HTML 4.01 Transitional//EN\"";
this.identifier = "\"-//W3C//DTD HTML 4.01 Frameset//EN\"";
FYI:
Strict HTML 4.01 DTD is
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
Transitional HTML 4.01 DTD is
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd>
Frameset HTML 4.01 DTD is
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd>
--
Yuji Kumasaka <[EMAIL PROTECTED]>
--------------------- Original Message Ends --------------------
--
Yuji Kumasaka <[EMAIL PROTECTED]>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]