summaryrefslogtreecommitdiff
path: root/inc/parser/xhtml.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2006-02-24 16:12:21 +0100
committerAndreas Gohr <andi@splitbrain.org>2006-02-24 16:12:21 +0100
commitb8c943a4dc3a62e354013977a018c677b13a20c5 (patch)
tree4ef627223dacfc12edd2f7b5bd243cebeee72954 /inc/parser/xhtml.php
parentc2f250d59839ed7e003550ee117e313b43469879 (diff)
downloadrpg-b8c943a4dc3a62e354013977a018c677b13a20c5.tar.gz
rpg-b8c943a4dc3a62e354013977a018c677b13a20c5.tar.bz2
removed deprecated TOC code
darcs-hash:20060224151221-7ad00-314d411cb22d2cd59079751f31cf4b4c49a7f0b6.gz
Diffstat (limited to 'inc/parser/xhtml.php')
-rw-r--r--inc/parser/xhtml.php43
1 files changed, 0 insertions, 43 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php
index 4cdfdf5c2..2d241589f 100644
--- a/inc/parser/xhtml.php
+++ b/inc/parser/xhtml.php
@@ -120,49 +120,6 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
$this->_xmlEntities($item['title']).'</a></span>';
}
-/** FIXME deprecated
-
- function toc_open() {
- global $lang;
- $this->doc .= '<div class="toc">'.DOKU_LF;
- $this->doc .= '<div class="tocheader toctoggle" id="toc__header">';
- $this->doc .= $lang['toc'];
- $this->doc .= '</div>'.DOKU_LF;
- $this->doc .= '<div id="toc__inside">'.DOKU_LF;
- }
-
- function tocbranch_open($level) {
- $this->doc .= '<ul class="toc">'.DOKU_LF;
- }
-
- function tocitem_open($level, $empty = FALSE) {
- if ( !$empty ) {
- $this->doc .= '<li class="level'.$level.'">';
- } else {
- $this->doc .= '<li class="clear">';
- }
- }
-
- function tocelement($level, $title) {
- $this->doc .= '<span class="li"><a href="#'.$this->_headerToLink($title).'" class="toc">';
- $this->doc .= $this->_xmlEntities($title);
- $this->doc .= '</a></span>';
- }
-
- function tocitem_close($level) {
- $this->doc .= '</li>'.DOKU_LF;
- }
-
- function tocbranch_close($level) {
- $this->doc .= '</ul>'.DOKU_LF;
- }
-
- function toc_close() {
- $this->doc .= '</div>'.DOKU_LF.'</div>'.DOKU_LF;
- }
-
-*/
-
function header($text, $level, $pos) {
global $conf;
//handle section editing