--- nfo/php/libs/com.newsblob.phphtmllib/defines.inc 2003/01/30 03:29:08 1.1 +++ nfo/php/libs/com.newsblob.phphtmllib/defines.inc 2003/02/22 20:55:24 1.2 @@ -4,7 +4,7 @@ * This file holds some global defines used by several * classes of phpHtmlLib. * - * $Id: defines.inc,v 1.1 2003/01/30 03:29:08 jonen Exp $ + * $Id: defines.inc,v 1.2 2003/02/22 20:55:24 jonen Exp $ * * @author Walter A. Boring IV * @package phpHtmlLib @@ -28,4 +28,32 @@ */ define("INDENT_NICE", 0); define("INDENT_LEFT_JUSTIFY", -1); + + +/** + * some nice globals + */ +define( "_HTML_SPACE", " "); + +/** + * Some global defines for the tag classes + */ +define( "_INDENT_STR", " "); + +define( "_NEWLINEAFTERCONTENT", 1); +define( "_NEWLINEAFTEROPENTAG", 2); +define( "_NEWLINEAFTERCLOSETAG", 4); +define( "_CONTENTREQUIRED", 8); +define( "_CLOSETAGREQUIRED", 16); +define( "_DEPRICATED", 32); +define( "_INDENT", 64); +define( "_COLLAPSE", 128); +define( "_ALWAYS_UPPERCASE", 256); +define( "_ALWAYS_LOWERCASE", 512); +define( "_NOFINISHSLASHXHTML", 1024); +define( "_CDATACONTENTWRAP", 2048); +define( "_XHTMLCOMPLIANT", 4096); + +define( "_TAG_PREFIX", "<"); +define( "_TAG_SUFFIX", ">"); ?>