*/ if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../').'/'); require_once(DOKU_INC.'inc/parserutils.php'); /** * Convenience function to quickly build a wikilink * * @author Andreas Gohr */ function html_wikilink($id,$name=NULL,$search=''){ require_once(DOKU_INC.'inc/parser/xhtml.php'); static $xhtml_renderer = NULL; if(is_null($xhtml_renderer)){ $xhtml_renderer = new Doku_Renderer_xhtml(); } return $xhtml_renderer->internallink($id,$name,$search,true); } /** * Helps building long attribute lists * * @author Andreas Gohr */ function html_attbuild($attributes){ $ret = ''; foreach ( $attributes as $key => $value ) { $ret .= $key.'="'.formtext($value).'" '; } return trim($ret); } /** * The loginform * * @author Andreas Gohr */ function html_login(){ global $lang; global $conf; global $ID; print p_locale_xhtml('login'); ?>


'; print $lang['reghere']; print ': '.$lang['register'].''; print '

'; } ?>
*/ function html_editbutton(){ global $ID; global $REV; global $ACT; global $INFO; if($ACT == 'show' || $ACT == 'search'){ if($INFO['writable']){ if($INFO['exists']){ $r = html_btn('edit',$ID,'e',array('do' => 'edit','rev' => $REV),'post'); }else{ $r = html_btn('create',$ID,'e',array('do' => 'edit','rev' => $REV),'post'); } }else{ $r = html_btn('source',$ID,'v',array('do' => 'edit','rev' => $REV),'post'); } }else{ $r = html_btn('show',$ID,'v',array('do' => 'show')); } return $r; } /** * prints a section editing button * * @author Andreas Gohr */ function html_secedit_button($section,$p){ global $ID; global $lang; $secedit = ''; # if($p) $secedit .= "

\n"; $secedit .= '
'; $secedit .= html_btn('secedit',$ID,'', array('do' => 'edit', 'lines' => "$section"), 'post'); $secedit .= '
'; # if($p) $secedit .= "\n

"; return $secedit; } /** * inserts section edit buttons if wanted or removes the markers * * @author Andreas Gohr */ function html_secedit($text,$show=true){ global $INFO; if($INFO['writable'] && $show && !$INFO['rev']){ $text = preg_replace('##e', "html_secedit_button('\\1',true)", $text); $text = preg_replace('##e', "html_secedit_button('\\1',false)", $text); }else{ $text = preg_replace('##e','',$text); } return $text; } /** * Just the back to top button (in its own form) * * @author Andreas Gohr */ function html_topbtn(){ global $lang; $ret = ''; $ret = ''; return $ret; } /** * Just the back to media window button in its own form * * @author Matthias Grimm */ function html_backtomedia_button($params,$akey=''){ global $conf; global $lang; $ret = '

'; reset($params); while (list($key, $val) = each($params)) { $ret .= ''; } $ret .= ' */ function html_btn($name,$id,$akey,$params,$method='get'){ global $conf; global $lang; $label = $lang['btn_'.$name]; $ret = ''; //filter id (without urlencoding) $id = idfilter($id,false); //make nice URLs even for buttons if($conf['userewrite'] == 2){ $script = DOKU_BASE.DOKU_SCRIPT.'/'.$id; }elseif($conf['userewrite']){ $script = DOKU_BASE.$id; }else{ $script = DOKU_BASE.DOKU_SCRIPT; $params['id'] = $id; } $ret .= ''; reset($params); while (list($key, $val) = each($params)) { $ret .= ''; } $ret .= ' */ function html_show($txt=''){ global $ID; global $REV; global $HIGH; //disable section editing for old revisions or in preview if($txt || $REV){ $secedit = false; }else{ $secedit = true; } if ($txt){ //PreviewHeader print p_locale_xhtml('preview'); print '
'; print html_secedit(p_render('xhtml',p_get_instructions($txt),$info),$secedit); print '
'; }else{ if ($REV) print p_locale_xhtml('showrev'); $html = p_wiki_xhtml($ID,$REV,true); $html = html_secedit($html,$secedit); print html_hilight($html,$HIGH); } } /** * Highlights searchqueries in HTML code * * @author Andreas Gohr */ function html_hilight($html,$query){ $queries = preg_split ("/\s/",$query,-1,PREG_SPLIT_NO_EMPTY); foreach ($queries as $q){ $q = preg_quote($q,'/'); $html = preg_replace("/((<[^>]*)|$q)/ie", '"\2"=="\1"? "\1":"\1"', $html); } return $html; } /** * Run a search and display the result * * @author Andreas Gohr */ function html_search(){ require_once(DOKU_INC.'inc/search.php'); global $conf; global $QUERY; global $ID; global $lang; print p_locale_xhtml('searchpage'); flush(); //show progressbar print '
'; print ''; print '
'; //do quick pagesearch $data = array(); search($data,$conf['datadir'],'search_pagename',array(query => cleanID($QUERY))); if(count($data)){ sort($data); print '
'; print ''.$lang[quickhits].':
'; foreach($data as $row){ print '
'; print html_wikilink(':'.$row['id'],$conf['useheading']?NULL:$row['id']); print '
'; } //clear float (see http://www.complexspiral.com/publications/containing-floats/) print '
 
'; print '
'; } flush(); //do fulltext search $data = array(); search($data,$conf['datadir'],'search_fulltext',array(query => utf8_strtolower($QUERY))); if(count($data)){ usort($data,'sort_search_fulltext'); foreach($data as $row){ print '
'; print html_wikilink(':'.$row['id'],$conf['useheading']?NULL:$row['id'],$row['poswords']); print ': '.$row['count'].' '.$lang['hits'].'
'; print '
'.$row['snippet'].'
'; print '
'; } }else{ print '
'.$lang['nothingfound'].'
'; } //hide progressbar print ''; } /** * Display error on locked pages * * @author Andreas Gohr */ function html_locked(){ global $ID; global $conf; global $lang; global $INFO; $locktime = filemtime(wikiFN($ID).'.lock'); $expire = @date($conf['dformat'], $locktime + $conf['locktime'] ); $min = round(($conf['locktime'] - (time() - $locktime) )/60); print p_locale_xhtml('locked'); print '
    '; print '
  • '.$lang['lockedby'].': '.$INFO['locked'].'
  • '; print '
  • '.$lang['lockexpire'].': '.$expire.' ('.$min.' min)
  • '; print '
'; } /** * list old revisions * * @author Andreas Gohr */ function html_revisions(){ global $ID; global $INFO; global $conf; global $lang; $revisions = getRevisions($ID); $date = @date($conf['dformat'],$INFO['lastmod']); print p_locale_xhtml('revisions'); print '
    '; if($INFO['exists']){ print '
  • '; print $date; print ' '; print ''.$ID.' '; print $INFO['sum']; print ' '; print $INFO['editor']; print ' '; print '('.$lang['current'].')'; print '
  • '; } foreach($revisions as $rev){ $date = date($conf['dformat'],$rev); $info = getRevisionInfo($ID,$rev); print '
  • '; print $date; print ' '; print ''; print ' '; print ''.$ID.' '; print htmlspecialchars($info['sum']); print ' '; if($info['user']){ print $info['user']; }else{ print $info['ip']; } print ''; print '
  • '; } print '
'; } /** * display recent changes * * @author Andreas Gohr * @author Matthias Grimm */ function html_recent($first=0){ global $conf; global $lang; /* we need to get one additionally log entry to be able to * decide if this is the last page or is there another one. * This is the cheapest solution to get this information. */ $recents = getRecents($first,$conf['recent'] + 1,true); if(count($recents) == 0 && $first != 0){ $first=0; $recents = getRecents(0,$conf['recent'] + 1,true); } $cnt = count($recents) <= $conf['recent'] ? count($recents) : $conf['recent']; print p_locale_xhtml('recent'); print '
    '; $keys = array_keys($recents); for ($n=0; $n < $cnt; $n++){ $id = $keys[$n]; $date = date($conf['dformat'],$recents[$id]['date']); print '
  • '; print $date.' '; print ''; print ''; print ' '; print ''; print ''; print ' '; print html_wikilink($id,$conf['useheading']?NULL:$id); print ' '.htmlspecialchars($recents[$id]['sum']); print ' '; if($recents[$id]['user']){ print $recents[$id]['user']; }else{ print $recents[$id]['ip']; } print ''; print '
  • '; } print '
'; print ''; } /** * Display page index * * @author Andreas Gohr */ function html_index($ns){ require_once(DOKU_INC.'inc/search.php'); global $conf; global $ID; $dir = $conf['datadir']; $ns = cleanID($ns); #fixme use appropriate function if(empty($ns)){ $ns = dirname(str_replace(':','/',$ID)); if($ns == '.') $ns =''; } $ns = utf8_encodeFN(str_replace(':','/',$ns)); print p_locale_xhtml('index'); $data = array(); search($data,$conf['datadir'],'search_index',array('ns' => $ns)); print html_buildlist($data,'idx','html_list_index','html_li_index'); } /** * Index item formatter * * User function for html_buildlist() * * @author Andreas Gohr */ function html_list_index($item){ $ret = ''; $base = ':'.$item['id']; $base = substr($base,strrpos($base,':')+1); if($item['type']=='d'){ $ret .= ''; $ret .= $base; $ret .= ''; }else{ $ret .= html_wikilink(':'.$item['id']); } return $ret; } /** * Index List item * * This user function is used in html_build_lidt to build the *
  • tags for namespaces when displaying the page index * it gives different classes to opened or closed "folders" * * @author Andreas Gohr */ function html_li_index($item){ if($item['type'] == "f"){ return '
  • '; }elseif($item['open']){ return '
  • '; }else{ return '
  • '; } } /** * Default List item * * @author Andreas Gohr */ function html_li_default($item){ return '
  • '; } /** * Build an unordered list * * Build an unordered list from the given $data array * Each item in the array has to have a 'level' property * the item itself gets printed by the given $func user * function. The second and optional function is used to * print the
  • tag. Both user function need to accept * a single item. * * @author Andreas Gohr */ function html_buildlist($data,$class,$func,$lifunc='html_li_default'){ $level = 0; $opens = 0; $ret = ''; foreach ($data as $item){ if( $item['level'] > $level ){ //open new list for($i=0; $i<($item['level'] - $level); $i++){ if ($i) $ret .= "
  • \n"; $ret .= "\n
      \n"; } }elseif( $item['level'] < $level ){ //close last item $ret .= "\n"; for ($i=0; $i<($level - $item['level']); $i++){ //close higher lists $ret .= "
    \n
  • \n"; } }else{ //close last item $ret .= "\n"; } //remember current level $level = $item['level']; //print item $ret .= $lifunc($item); //user function $ret .= ''; $ret .= $func($item); //user function $ret .= ''; } //close remaining items and lists for ($i=0; $i < $level; $i++){ $ret .= "\n"; } return $ret; } /** * display backlinks * * @author Andreas Gohr */ function html_backlinks(){ require_once(DOKU_INC.'inc/search.php'); global $ID; global $conf; if(preg_match('#^(.*):(.*)$#',$ID,$matches)){ $opts['ns'] = $matches[1]; $opts['name'] = $matches[2]; }else{ $opts['ns'] = ''; $opts['name'] = $ID; } print p_locale_xhtml('backlinks'); $data = array(); search($data,$conf['datadir'],'search_backlinks',$opts); sort($data); print '
      '; foreach($data as $row){ print '
    • '; print html_wikilink(':'.$row['id'],$conf['useheading']?NULL:$row['id']); print '
    • '; } print '
    '; } /** * show diff * * @author Andreas Gohr */ function html_diff($text='',$intro=true){ require_once(DOKU_INC.'inc/DifferenceEngine.php'); global $ID; global $REV; global $lang; global $conf; if($text){ $df = new Diff(split("\n",htmlspecialchars(rawWiki($ID,''))), split("\n",htmlspecialchars(cleanText($text)))); $left = ''. $ID.' '.date($conf['dformat'],@filemtime(wikiFN($ID))).''. $lang['current']; $right = $lang['yours']; }else{ if($REV){ $r = $REV; }else{ //use last revision if none given $revs = getRevisions($ID); $r = $revs[0]; } $df = new Diff(split("\n",htmlspecialchars(rawWiki($ID,$r))), split("\n",htmlspecialchars(rawWiki($ID,'')))); $left = ''. $ID.' '.date($conf['dformat'],$r).''; $right = ''. $ID.' '.date($conf['dformat'],@filemtime(wikiFN($ID))).' '. $lang['current']; } $tdf = new TableDiffFormatter(); if($intro) print p_locale_xhtml('diff'); ?> format($df)?>
    */ function html_conflict($text,$summary){ global $ID; global $lang; print p_locale_xhtml('conflict'); ?>




    */ function html_msgarea(){ global $MSG; if(!isset($MSG)) return; foreach($MSG as $msg){ print '
    '; print $msg['msg']; print '
    '; } } /** * Prints the registration form * * @author Andreas Gohr */ function html_register(){ global $lang; global $conf; global $ID; print p_locale_xhtml('register'); ?>





    */ function html_edit($text=null,$include='edit'){ //FIXME: include needed? global $ID; global $REV; global $DATE; global $RANGE; global $PRE; global $SUF; global $INFO; global $SUM; global $lang; global $conf; //set summary default if(!$SUM){ if($REV){ $SUM = $lang['restored']; }elseif(!$INFO['exists']){ $SUM = $lang['created']; } } //no text? Load it! if(!isset($text)){ $pr = false; //no preview mode if($RANGE){ list($PRE,$text,$SUF) = rawWikiSlices($RANGE,$ID,$REV); }else{ $text = rawWiki($ID,$REV); } }else{ $pr = true; //preview mode } $wr = $INFO['writable']; if($wr){ if ($REV) print p_locale_xhtml('editrev'); print p_locale_xhtml($include); }else{ print p_locale_xhtml('read'); $ro='readonly="readonly"'; } if(!$DATE) $DATE = $INFO['lastmod']; ?>
    :
    */ function html_signature(){ global $conf; global $INFO; $sig = $conf['signature']; $sig = strftime($sig); $sig = str_replace('@USER@',$_SERVER['REMOTE_USER'],$sig); $sig = str_replace('@NAME@',$INFO['userinfo']['name'],$sig); $sig = str_replace('@MAIL@',$INFO['userinfo']['mail'],$sig); $sig = str_replace('@DATE@',date($conf['dformat']),$sig); return $sig; } /** * prints some debug info * * @author Andreas Gohr */ function html_debug(){ global $conf; global $lang; //remove sensitive data $cnf = $conf; $cnf['auth']='***'; $cnf['notify']='***'; $cnf['ftp']='***'; print ''; print '

    When reporting bugs please send all the following '; print 'output as a mail to andi@splitbrain.org '; print 'The best way to do this is to save this page in your browser

    '; print '$_SERVER:
    ';
      print_r($_SERVER);
      print '
    '; print '$conf:
    ';
      print_r($cnf);
      print '
    '; print 'DOKU_BASE:
    ';
      print DOKU_BASE;
      print '
    '; print 'abs DOKU_BASE:
    ';
      print DOKU_URL;
      print '
    '; print 'rel DOKU_BASE:
    ';
      print dirname($_SERVER['PHP_SELF']).'/';
      print '
    '; print 'PHP Version:
    ';
      print phpversion();
      print '
    '; print 'locale:
    ';
      print setlocale(LC_ALL,0);
      print '
    '; print 'encoding:
    ';
      print $lang['encoding'];
      print '
    '; print 'Environment:
    ';
      print_r($_ENV);
      print '
    '; print 'PHP settings:
    ';
      $inis = ini_get_all();
      print_r($inis);
      print '
    '; print ''; } /** * Print the admin overview page * * @author Andreas Gohr */ function html_admin(){ global $ID; global $lang; global $conf; print p_locale_xhtml('admin'); ptln(''); } //Setup VIM: ex: et ts=2 enc=utf-8 :