You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ecs-user@jakarta.apache.org by Yuji Kumasaka <ku...@mms.intec.co.jp> on 2001/06/26 08:00:14 UTC

Doctype support DTD HTML 4.01


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 <ku...@mms.intec.co.jp>

--------------------- Original Message Ends --------------------

-- 
Yuji Kumasaka <ku...@mms.intec.co.jp>


---------------------------------------------------------------------
To unsubscribe, e-mail: ecs-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: ecs-user-help@jakarta.apache.org


Re: Doctype support DTD HTML 4.01

Posted by robert burrell donkin <ro...@mac.com>.
On Wednesday, June 27, 2001, at 01:07 AM, Yuji Kumasaka wrote:

>
> Thanks, Robert.
>
> The Apache Bug Database,
>> http://jakarta.apache.org/site/bugs.html
>
> http://nagoya.apache.org/bugzilla/query.cgi
>
> I couldn't found ecs in the Program listbox.
> I want to add ecs to Program listbox.
>

you go right ahead and post any bugs to this list :)
ecs is pretty stable and we don't get much traffic so we're not on 
bugzilla

i was just giving you a gentle push towards the website since most other 
jakarta projects have much more traffic and will (probably) ask you to 
submit a (proper) patch.


you'll be glad to know that i've now committed the additional 4.01 HTML 
doctypes. (many thanks)

if you want to use the new doctypes, you'll need to use cvs and build 
ecs yourself. if you're not already using the latest cvs version, i'd 
recommend that you do so since there is a 1.4.1 bug fix for 
international characters in there.

- robert



---------------------------------------------------------------------
To unsubscribe, e-mail: ecs-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: ecs-user-help@jakarta.apache.org


Re: Doctype support DTD HTML 4.01

Posted by Yuji Kumasaka <ku...@mms.intec.co.jp>.
Thanks, Robert.

The Apache Bug Database, 
> http://jakarta.apache.org/site/bugs.html

http://nagoya.apache.org/bugzilla/query.cgi

I couldn't found ecs in the Program listbox.
I want to add ecs to Program listbox.



On Tue, 26 Jun 2001 22:58:29 +0100
robert burrell donkin <ro...@mac.com> wrote:
> BTW
> you might like to take a look at:
> 
> http://jakarta.apache.org/site/getinvolved.html
> http://jakarta.apache.org/site/bugs.html

-- 
Yuji Kumasaka <ku...@mms.intec.co.jp>


---------------------------------------------------------------------
To unsubscribe, e-mail: ecs-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: ecs-user-help@jakarta.apache.org


Re: Doctype support DTD HTML 4.01

Posted by robert burrell donkin <ro...@mac.com>.
On Tuesday, June 26, 2001, at 07:00 AM, Yuji Kumasaka wrote:

> Hi, all.

hi

> ecs 1.4.1 support Doctype class.
>
> by the way, HTML4.0 was revised to HTML 4.01.
> So, HTML4.0 was obsoleted.
>

yeh - you're right, we probably should have 4.01 DOCTYPEs available.

i'm preparing some patches now
i don't think that i'll get time to test them properly tonight so they 
probably won't get committed until tomorrow.

BTW
you might like to take a look at:

http://jakarta.apache.org/site/getinvolved.html
http://jakarta.apache.org/site/bugs.html

- robert

---------------------------------------------------------------------
To unsubscribe, e-mail: ecs-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: ecs-user-help@jakarta.apache.org