From 5f32edf5ba6f909a332e5722093782d44261ca13 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Thu, 19 Jun 2003 18:44:56 +0000 Subject: [PATCH] Se agrega parte de Page que no se habia subido. --- pear_lib_tmp/HTML/Page/Doctypes.php | 69 +++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 pear_lib_tmp/HTML/Page/Doctypes.php diff --git a/pear_lib_tmp/HTML/Page/Doctypes.php b/pear_lib_tmp/HTML/Page/Doctypes.php new file mode 100644 index 0000000..d9bdddb --- /dev/null +++ b/pear_lib_tmp/HTML/Page/Doctypes.php @@ -0,0 +1,69 @@ +'; + +// XHTML 1.0 Transitional +$doctype['xhtml']['1.0']['transitional'][] = ''; + +// XHTML 1.0 Frameset +$doctype['xhtml']['1.0']['frameset'][] = ''; + +// all ready for this :) +// XHTML 1.1 +$doctype['xhtml']['1.1'][] = ''; + +// XHTML Basic 1.0 +$doctype['xhtml']['basic']['1.0'][] = ''; + +// HTML 4.01 Strict +$doctype['html']['4.01']['strict'][] = ''; + +// HTML 4.01 Transitional +$doctype['html']['4.01']['transitional'][] = ''; + +// HTML 4.01 Frameset +$doctype['html']['4.01']['frameset'][] = ''; + +// Since the following is simply historic, I'm not adding the level 1 & 2 or strict stuff. +// This doctype should be sufficient for most historic uses. + +// HTML 2.0 +$doctype['html']['2.0'][] = ''; + +// HTML 3.2 +$doctype['html']['3.2'][] = ''; + +?> \ No newline at end of file -- 2.43.0