From 7e1265ede7c82999d2def9e001422c41aa48afc0 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 24 Oct 2007 07:50:10 +0100 Subject: drop tagwall from trunk --- tw/output/HL_DEBUG_output.php | 74 ------------------------------------------- tw/output/HTML_output.php | 67 --------------------------------------- tw/output/XHTML_output.php | 67 --------------------------------------- 3 files changed, 208 deletions(-) delete mode 100644 tw/output/HL_DEBUG_output.php delete mode 100644 tw/output/HTML_output.php delete mode 100644 tw/output/XHTML_output.php (limited to 'tw/output') diff --git a/tw/output/HL_DEBUG_output.php b/tw/output/HL_DEBUG_output.php deleted file mode 100644 index 4a2521bd4..000000000 --- a/tw/output/HL_DEBUG_output.php +++ /dev/null @@ -1,74 +0,0 @@ -highlight( "<$tag>" ); - $attr = null; - foreach ($attributes as $value) - { - if($value[1]) $attr .= ' '.$value[0].'="'.$value[1].'"'; - } - return $this->highlight( "<$tag$attr>" ); - } - - function single ($tag, &$attributes) - { - if($attributes == null) - return $this->highlight( "<$tag />" ); - $attr = null; - foreach ($attributes as $value) - { - if($value[1]) $attr .= $value[0].'="'.$value[1].'" '; - } - return $this->highlight( "<$tag $attr/>" ); - } - - // template for end tags - function close ($tag) - { - return $this->highlight( "" ); - } - - function template_end() { return null; } - - - function highlight($string) - { - $string = str_replace("&","&",$string); - return ''.str_replace("<","<",$string).''; - } - -} //END class HTML_output - -?> \ No newline at end of file diff --git a/tw/output/HTML_output.php b/tw/output/HTML_output.php deleted file mode 100644 index 3df2fef9d..000000000 --- a/tw/output/HTML_output.php +++ /dev/null @@ -1,67 +0,0 @@ -"; - $attr = null; - foreach ($attributes as $value) - { - if($value[1]) $attr .= ' '.$value[0].'="'.$value[1].'"'; - } - return "<$tag$attr>"; - } - - function single ($tag, &$attributes) - { - if($attributes == null) - return "<$tag>"; - $attr = null; - foreach ($attributes as $value) - { - if($value[1]) $attr .= ' '.$value[0].'="'.$value[1].'"'; - } - return "<$tag$attr>"; - } - - // template for end tags - function close ($tag) - { - return ""; - } - - function template_end() { return null; } - -} //END class HTML_output - -?> \ No newline at end of file diff --git a/tw/output/XHTML_output.php b/tw/output/XHTML_output.php deleted file mode 100644 index 89207b611..000000000 --- a/tw/output/XHTML_output.php +++ /dev/null @@ -1,67 +0,0 @@ -"; - $attr = null; - foreach ($attributes as $value) - { - if($value[1]) $attr .= ' '.$value[0].'="'.$value[1].'"'; - } - return "<$tag$attr>"; - } - - function single ($tag, &$attributes) - { - if($attributes == null) - return "<$tag />"; - $attr = null; - foreach ($attributes as $value) - { - if($value[1]) $attr .= $value[0].'="'.$value[1].'" '; - } - return "<$tag $attr/>"; - } - - // template for end tags - function close ($tag) - { - return ""; - } - - function template_end() { return null; } - -} //END class XHTML_output - -?> \ No newline at end of file -- cgit v1.2.3