1<?php 2/** 3 * HTML output functions 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author Andreas Gohr <andi@splitbrain.org> 7 */ 8 9if(!defined('DOKU_INC')) die('meh.'); 10if(!defined('NL')) define('NL',"\n"); 11 12/** 13 * Convenience function to quickly build a wikilink 14 * 15 * @author Andreas Gohr <andi@splitbrain.org> 16 */ 17function html_wikilink($id,$name=null,$search=''){ 18 static $xhtml_renderer = null; 19 if(is_null($xhtml_renderer)){ 20 $xhtml_renderer = p_get_renderer('xhtml'); 21 } 22 23 return $xhtml_renderer->internallink($id,$name,$search,true,'navigation'); 24} 25 26/** 27 * Helps building long attribute lists 28 * 29 * @deprecated Use buildAttributes instead 30 * @author Andreas Gohr <andi@splitbrain.org> 31 */ 32function html_attbuild($attributes){ 33 $ret = ''; 34 foreach ( $attributes as $key => $value ) { 35 $ret .= $key.'="'.formText($value).'" '; 36 } 37 return trim($ret); 38} 39 40/** 41 * The loginform 42 * 43 * @author Andreas Gohr <andi@splitbrain.org> 44 */ 45function html_login(){ 46 global $lang; 47 global $conf; 48 global $ID; 49 50 print p_locale_xhtml('login'); 51 print '<div class="centeralign">'.NL; 52 $form = new Doku_Form(array('id' => 'dw__login')); 53 $form->startFieldset($lang['btn_login']); 54 $form->addHidden('id', $ID); 55 $form->addHidden('do', 'login'); 56 $form->addElement(form_makeTextField('u', ((!$_REQUEST['http_credentials']) ? $_REQUEST['u'] : ''), $lang['user'], 'focus__this', 'block')); 57 $form->addElement(form_makePasswordField('p', $lang['pass'], '', 'block')); 58 if($conf['rememberme']) { 59 $form->addElement(form_makeCheckboxField('r', '1', $lang['remember'], 'remember__me', 'simple')); 60 } 61 $form->addElement(form_makeButton('submit', '', $lang['btn_login'])); 62 $form->endFieldset(); 63 64 if(actionOK('register')){ 65 $form->addElement('<p>'.$lang['reghere'].': '.tpl_actionlink('register','','','',true).'</p>'); 66 } 67 68 if (actionOK('resendpwd')) { 69 $form->addElement('<p>'.$lang['pwdforget'].': '.tpl_actionlink('resendpwd','','','',true).'</p>'); 70 } 71 72 html_form('login', $form); 73 print '</div>'.NL; 74} 75 76/** 77 * inserts section edit buttons if wanted or removes the markers 78 * 79 * @author Andreas Gohr <andi@splitbrain.org> 80 */ 81function html_secedit($text,$show=true){ 82 global $INFO; 83 84 $regexp = '#<!-- EDIT(\d+) ([A-Z_]+) (?:"([^"]*)" )?\[(\d+-\d*)\] -->#'; 85 86 if(!$INFO['writable'] || !$show || $INFO['rev']){ 87 return preg_replace($regexp,'',$text); 88 } 89 90 return preg_replace_callback($regexp, 91 'html_secedit_button', $text); 92} 93 94/** 95 * prepares section edit button data for event triggering 96 * used as a callback in html_secedit 97 * 98 * @triggers HTML_SECEDIT_BUTTON 99 * @author Andreas Gohr <andi@splitbrain.org> 100 */ 101function html_secedit_button($matches){ 102 $data = array('secid' => $matches[1], 103 'target' => strtolower($matches[2]), 104 'range' => $matches[count($matches) - 1]); 105 if (count($matches) === 5) { 106 $data['name'] = $matches[3]; 107 } 108 109 return trigger_event('HTML_SECEDIT_BUTTON', $data, 110 'html_secedit_get_button'); 111} 112 113/** 114 * prints a section editing button 115 * used as default action form HTML_SECEDIT_BUTTON 116 * 117 * @author Adrian Lang <lang@cosmocode.de> 118 */ 119function html_secedit_get_button($data) { 120 global $ID; 121 global $INFO; 122 123 if (!isset($data['name']) || $data['name'] === '') return; 124 125 $name = $data['name']; 126 unset($data['name']); 127 128 $secid = $data['secid']; 129 unset($data['secid']); 130 131 return "<div class='secedit editbutton_" . $data['target'] . 132 " editbutton_" . $secid . "'>" . 133 html_btn('secedit', $ID, '', 134 array_merge(array('do' => 'edit', 135 'rev' => $INFO['lastmod'], 136 'summary' => '['.$name.'] '), $data), 137 'post', $name) . '</div>'; 138} 139 140/** 141 * Just the back to top button (in its own form) 142 * 143 * @author Andreas Gohr <andi@splitbrain.org> 144 */ 145function html_topbtn(){ 146 global $lang; 147 148 $ret = ''; 149 $ret = '<a class="nolink" href="#dokuwiki__top"><input type="button" class="button" value="'.$lang['btn_top'].'" onclick="window.scrollTo(0, 0)" title="'.$lang['btn_top'].'" /></a>'; 150 151 return $ret; 152} 153 154/** 155 * Displays a button (using its own form) 156 * If tooltip exists, the access key tooltip is replaced. 157 * 158 * @author Andreas Gohr <andi@splitbrain.org> 159 */ 160function html_btn($name,$id,$akey,$params,$method='get',$tooltip='',$label=false){ 161 global $conf; 162 global $lang; 163 164 if (!$label) 165 $label = $lang['btn_'.$name]; 166 167 $ret = ''; 168 $tip = ''; 169 170 //filter id (without urlencoding) 171 $id = idfilter($id,false); 172 173 //make nice URLs even for buttons 174 if($conf['userewrite'] == 2){ 175 $script = DOKU_BASE.DOKU_SCRIPT.'/'.$id; 176 }elseif($conf['userewrite']){ 177 $script = DOKU_BASE.$id; 178 }else{ 179 $script = DOKU_BASE.DOKU_SCRIPT; 180 $params['id'] = $id; 181 } 182 183 $ret .= '<form class="button btn_'.$name.'" method="'.$method.'" action="'.$script.'"><div class="no">'; 184 185 if(is_array($params)){ 186 reset($params); 187 while (list($key, $val) = each($params)) { 188 $ret .= '<input type="hidden" name="'.$key.'" '; 189 $ret .= 'value="'.htmlspecialchars($val).'" />'; 190 } 191 } 192 193 if ($tooltip!='') { 194 $tip = htmlspecialchars($tooltip); 195 }else{ 196 $tip = htmlspecialchars($label); 197 } 198 199 $ret .= '<input type="submit" value="'.hsc($label).'" class="button" '; 200 if($akey){ 201 $tip .= ' ['.strtoupper($akey).']'; 202 $ret .= 'accesskey="'.$akey.'" '; 203 } 204 $ret .= 'title="'.$tip.'" '; 205 $ret .= '/>'; 206 $ret .= '</div></form>'; 207 208 return $ret; 209} 210 211/** 212 * show a wiki page 213 * 214 * @author Andreas Gohr <andi@splitbrain.org> 215 */ 216function html_show($txt=null){ 217 global $ID; 218 global $REV; 219 global $HIGH; 220 global $INFO; 221 //disable section editing for old revisions or in preview 222 if($txt || $REV){ 223 $secedit = false; 224 }else{ 225 $secedit = true; 226 } 227 228 if (!is_null($txt)){ 229 //PreviewHeader 230 echo '<br id="scroll__here" />'; 231 echo p_locale_xhtml('preview'); 232 echo '<div class="preview">'; 233 $html = html_secedit(p_render('xhtml',p_get_instructions($txt),$info),$secedit); 234 if($INFO['prependTOC']) $html = tpl_toc(true).$html; 235 echo $html; 236 echo '<div class="clearer"></div>'; 237 echo '</div>'; 238 239 }else{ 240 if ($REV) print p_locale_xhtml('showrev'); 241 $html = p_wiki_xhtml($ID,$REV,true); 242 $html = html_secedit($html,$secedit); 243 if($INFO['prependTOC']) $html = tpl_toc(true).$html; 244 $html = html_hilight($html,$HIGH); 245 echo $html; 246 } 247} 248 249/** 250 * ask the user about how to handle an exisiting draft 251 * 252 * @author Andreas Gohr <andi@splitbrain.org> 253 */ 254function html_draft(){ 255 global $INFO; 256 global $ID; 257 global $lang; 258 global $conf; 259 $draft = unserialize(io_readFile($INFO['draft'],false)); 260 $text = cleanText(con($draft['prefix'],$draft['text'],$draft['suffix'],true)); 261 262 print p_locale_xhtml('draft'); 263 $form = new Doku_Form(array('id' => 'dw__editform')); 264 $form->addHidden('id', $ID); 265 $form->addHidden('date', $draft['date']); 266 $form->addElement(form_makeWikiText($text, array('readonly'=>'readonly'))); 267 $form->addElement(form_makeOpenTag('div', array('id'=>'draft__status'))); 268 $form->addElement($lang['draftdate'].' '. dformat(filemtime($INFO['draft']))); 269 $form->addElement(form_makeCloseTag('div')); 270 $form->addElement(form_makeButton('submit', 'recover', $lang['btn_recover'], array('tabindex'=>'1'))); 271 $form->addElement(form_makeButton('submit', 'draftdel', $lang['btn_draftdel'], array('tabindex'=>'2'))); 272 $form->addElement(form_makeButton('submit', 'show', $lang['btn_cancel'], array('tabindex'=>'3'))); 273 html_form('draft', $form); 274} 275 276/** 277 * Highlights searchqueries in HTML code 278 * 279 * @author Andreas Gohr <andi@splitbrain.org> 280 * @author Harry Fuecks <hfuecks@gmail.com> 281 */ 282function html_hilight($html,$phrases){ 283 $phrases = array_filter((array) $phrases); 284 $regex = join('|',array_map('ft_snippet_re_preprocess', array_map('preg_quote_cb',$phrases))); 285 286 if ($regex === '') return $html; 287 if (!utf8_check($regex)) return $html; 288 $html = @preg_replace_callback("/((<[^>]*)|$regex)/ui",'html_hilight_callback',$html); 289 return $html; 290} 291 292/** 293 * Callback used by html_hilight() 294 * 295 * @author Harry Fuecks <hfuecks@gmail.com> 296 */ 297function html_hilight_callback($m) { 298 $hlight = unslash($m[0]); 299 if ( !isset($m[2])) { 300 $hlight = '<span class="search_hit">'.$hlight.'</span>'; 301 } 302 return $hlight; 303} 304 305/** 306 * Run a search and display the result 307 * 308 * @author Andreas Gohr <andi@splitbrain.org> 309 */ 310function html_search(){ 311 global $conf; 312 global $QUERY; 313 global $ID; 314 global $lang; 315 316 $intro = p_locale_xhtml('searchpage'); 317 // allow use of placeholder in search intro 318 $intro = str_replace( 319 array('@QUERY@','@SEARCH@'), 320 array(hsc(rawurlencode($QUERY)),hsc($QUERY)), 321 $intro); 322 echo $intro; 323 flush(); 324 325 //show progressbar 326 print '<div class="centeralign" id="dw__loading">'.NL; 327 print '<script type="text/javascript" charset="utf-8"><!--//--><![CDATA[//><!--'.NL; 328 print 'showLoadBar();'.NL; 329 print '//--><!]]></script>'.NL; 330 print '<br /></div>'.NL; 331 flush(); 332 333 //do quick pagesearch 334 $data = array(); 335 336 $data = ft_pageLookup($QUERY,true,useHeading('navigation')); 337 if(count($data)){ 338 print '<div class="search_quickresult">'; 339 print '<h3>'.$lang['quickhits'].':</h3>'; 340 print '<ul class="search_quickhits">'; 341 foreach($data as $id => $title){ 342 print '<li> '; 343 if (useHeading('navigation')) { 344 $name = $title; 345 }else{ 346 $ns = getNS($id); 347 if($ns){ 348 $name = shorten(noNS($id), ' ('.$ns.')',30); 349 }else{ 350 $name = $id; 351 } 352 } 353 print html_wikilink(':'.$id,$name); 354 print '</li> '; 355 } 356 print '</ul> '; 357 //clear float (see http://www.complexspiral.com/publications/containing-floats/) 358 print '<div class="clearer"></div>'; 359 print '</div>'; 360 } 361 flush(); 362 363 //do fulltext search 364 $data = ft_pageSearch($QUERY,$regex); 365 if(count($data)){ 366 $num = 1; 367 foreach($data as $id => $cnt){ 368 print '<div class="search_result">'; 369 print html_wikilink(':'.$id,useHeading('navigation')?null:$id,$regex); 370 if($cnt !== 0){ 371 print ': <span class="search_cnt">'.$cnt.' '.$lang['hits'].'</span><br />'; 372 if($num < FT_SNIPPET_NUMBER){ // create snippets for the first number of matches only 373 print '<div class="search_snippet">'.ft_snippet($id,$regex).'</div>'; 374 } 375 $num++; 376 } 377 print '</div>'; 378 flush(); 379 } 380 }else{ 381 print '<div class="nothing">'.$lang['nothingfound'].'</div>'; 382 } 383 384 //hide progressbar 385 print '<script type="text/javascript" charset="utf-8"><!--//--><![CDATA[//><!--'.NL; 386 print 'hideLoadBar("dw__loading");'.NL; 387 print '//--><!]]></script>'.NL; 388 flush(); 389} 390 391/** 392 * Display error on locked pages 393 * 394 * @author Andreas Gohr <andi@splitbrain.org> 395 */ 396function html_locked(){ 397 global $ID; 398 global $conf; 399 global $lang; 400 global $INFO; 401 402 $locktime = filemtime(wikiLockFN($ID)); 403 $expire = dformat($locktime + $conf['locktime']); 404 $min = round(($conf['locktime'] - (time() - $locktime) )/60); 405 406 print p_locale_xhtml('locked'); 407 print '<ul>'; 408 print '<li><div class="li"><strong>'.$lang['lockedby'].':</strong> '.editorinfo($INFO['locked']).'</div></li>'; 409 print '<li><div class="li"><strong>'.$lang['lockexpire'].':</strong> '.$expire.' ('.$min.' min)</div></li>'; 410 print '</ul>'; 411} 412 413/** 414 * list old revisions 415 * 416 * @author Andreas Gohr <andi@splitbrain.org> 417 * @author Ben Coburn <btcoburn@silicodon.net> 418 */ 419function html_revisions($first=0){ 420 global $ID; 421 global $INFO; 422 global $conf; 423 global $lang; 424 /* we need to get one additionally log entry to be able to 425 * decide if this is the last page or is there another one. 426 * see html_recent() 427 */ 428 $revisions = getRevisions($ID, $first, $conf['recent']+1); 429 if(count($revisions)==0 && $first!=0){ 430 $first=0; 431 $revisions = getRevisions($ID, $first, $conf['recent']+1);; 432 } 433 $hasNext = false; 434 if (count($revisions)>$conf['recent']) { 435 $hasNext = true; 436 array_pop($revisions); // remove extra log entry 437 } 438 439 $date = dformat($INFO['lastmod']); 440 441 print p_locale_xhtml('revisions'); 442 443 $form = new Doku_Form(array('id' => 'page__revisions')); 444 $form->addElement(form_makeOpenTag('ul')); 445 if($INFO['exists'] && $first==0){ 446 if (isset($INFO['meta']) && isset($INFO['meta']['last_change']) && $INFO['meta']['last_change']['type']===DOKU_CHANGE_TYPE_MINOR_EDIT) 447 $form->addElement(form_makeOpenTag('li', array('class' => 'minor'))); 448 else 449 $form->addElement(form_makeOpenTag('li')); 450 $form->addElement(form_makeOpenTag('div', array('class' => 'li'))); 451 $form->addElement(form_makeTag('input', array( 452 'type' => 'checkbox', 453 'name' => 'rev2[]', 454 'value' => 'current'))); 455 456 $form->addElement(form_makeOpenTag('span', array('class' => 'date'))); 457 $form->addElement($date); 458 $form->addElement(form_makeCloseTag('span')); 459 460 $form->addElement('<img src="'.DOKU_BASE.'lib/images/blank.gif" width="15" height="11" alt="" />'); 461 462 $form->addElement(form_makeOpenTag('a', array( 463 'class' => 'wikilink1', 464 'href' => wl($ID)))); 465 $form->addElement($ID); 466 $form->addElement(form_makeCloseTag('a')); 467 468 $form->addElement(form_makeOpenTag('span', array('class' => 'sum'))); 469 $form->addElement(' – '); 470 $form->addElement(htmlspecialchars($INFO['sum'])); 471 $form->addElement(form_makeCloseTag('span')); 472 473 $form->addElement(form_makeOpenTag('span', array('class' => 'user'))); 474 $form->addElement((empty($INFO['editor']))?('('.$lang['external_edit'].')'):editorinfo($INFO['editor'])); 475 $form->addElement(form_makeCloseTag('span')); 476 477 $form->addElement('('.$lang['current'].')'); 478 $form->addElement(form_makeCloseTag('div')); 479 $form->addElement(form_makeCloseTag('li')); 480 } 481 482 foreach($revisions as $rev){ 483 $date = dformat($rev); 484 $info = getRevisionInfo($ID,$rev,true); 485 $exists = page_exists($ID,$rev); 486 487 if ($info['type']===DOKU_CHANGE_TYPE_MINOR_EDIT) 488 $form->addElement(form_makeOpenTag('li', array('class' => 'minor'))); 489 else 490 $form->addElement(form_makeOpenTag('li')); 491 $form->addElement(form_makeOpenTag('div', array('class' => 'li'))); 492 if($exists){ 493 $form->addElement(form_makeTag('input', array( 494 'type' => 'checkbox', 495 'name' => 'rev2[]', 496 'value' => $rev))); 497 }else{ 498 $form->addElement('<img src="'.DOKU_BASE.'lib/images/blank.gif" width="15" height="11" alt="" />'); 499 } 500 501 $form->addElement(form_makeOpenTag('span', array('class' => 'date'))); 502 $form->addElement($date); 503 $form->addElement(form_makeCloseTag('span')); 504 505 if($exists){ 506 $form->addElement(form_makeOpenTag('a', array('href' => wl($ID,"rev=$rev,do=diff", false, '&'), 'class' => 'diff_link'))); 507 $form->addElement(form_makeTag('img', array( 508 'src' => DOKU_BASE.'lib/images/diff.png', 509 'width' => 15, 510 'height' => 11, 511 'title' => $lang['diff'], 512 'alt' => $lang['diff']))); 513 $form->addElement(form_makeCloseTag('a')); 514 515 $form->addElement(form_makeOpenTag('a', array('href' => wl($ID,"rev=$rev",false,'&'), 'class' => 'wikilink1'))); 516 $form->addElement($ID); 517 $form->addElement(form_makeCloseTag('a')); 518 }else{ 519 $form->addElement('<img src="'.DOKU_BASE.'lib/images/blank.gif" width="15" height="11" alt="" />'); 520 $form->addElement($ID); 521 } 522 523 $form->addElement(form_makeOpenTag('span', array('class' => 'sum'))); 524 $form->addElement(' – '); 525 $form->addElement(htmlspecialchars($info['sum'])); 526 $form->addElement(form_makeCloseTag('span')); 527 528 $form->addElement(form_makeOpenTag('span', array('class' => 'user'))); 529 if($info['user']){ 530 $form->addElement(editorinfo($info['user'])); 531 if(auth_ismanager()){ 532 $form->addElement(' ('.$info['ip'].')'); 533 } 534 }else{ 535 $form->addElement($info['ip']); 536 } 537 $form->addElement(form_makeCloseTag('span')); 538 539 $form->addElement(form_makeCloseTag('div')); 540 $form->addElement(form_makeCloseTag('li')); 541 } 542 $form->addElement(form_makeCloseTag('ul')); 543 $form->addElement(form_makeButton('submit', 'diff', $lang['diff2'])); 544 html_form('revisions', $form); 545 546 print '<div class="pagenav">'; 547 $last = $first + $conf['recent']; 548 if ($first > 0) { 549 $first -= $conf['recent']; 550 if ($first < 0) $first = 0; 551 print '<div class="pagenav-prev">'; 552 print html_btn('newer',$ID,"p",array('do' => 'revisions', 'first' => $first)); 553 print '</div>'; 554 } 555 if ($hasNext) { 556 print '<div class="pagenav-next">'; 557 print html_btn('older',$ID,"n",array('do' => 'revisions', 'first' => $last)); 558 print '</div>'; 559 } 560 print '</div>'; 561 562} 563 564/** 565 * display recent changes 566 * 567 * @author Andreas Gohr <andi@splitbrain.org> 568 * @author Matthias Grimm <matthiasgrimm@users.sourceforge.net> 569 * @author Ben Coburn <btcoburn@silicodon.net> 570 */ 571function html_recent($first=0){ 572 global $conf; 573 global $lang; 574 global $ID; 575 /* we need to get one additionally log entry to be able to 576 * decide if this is the last page or is there another one. 577 * This is the cheapest solution to get this information. 578 */ 579 $recents = getRecents($first,$conf['recent'] + 1,getNS($ID)); 580 if(count($recents) == 0 && $first != 0){ 581 $first=0; 582 $recents = getRecents($first,$conf['recent'] + 1,getNS($ID)); 583 } 584 $hasNext = false; 585 if (count($recents)>$conf['recent']) { 586 $hasNext = true; 587 array_pop($recents); // remove extra log entry 588 } 589 590 print p_locale_xhtml('recent'); 591 592 if (getNS($ID) != '') 593 print '<div class="level1"><p>' . sprintf($lang['recent_global'], getNS($ID), wl('', 'do=recent')) . '</p></div>'; 594 595 $form = new Doku_Form(array('id' => 'dw__recent', 'method' => 'GET')); 596 $form->addHidden('sectok', null); 597 $form->addHidden('do', 'recent'); 598 $form->addHidden('id', $ID); 599 $form->addElement(form_makeOpenTag('ul')); 600 601 foreach($recents as $recent){ 602 $date = dformat($recent['date']); 603 if ($recent['type']===DOKU_CHANGE_TYPE_MINOR_EDIT) 604 $form->addElement(form_makeOpenTag('li', array('class' => 'minor'))); 605 else 606 $form->addElement(form_makeOpenTag('li')); 607 608 $form->addElement(form_makeOpenTag('div', array('class' => 'li'))); 609 610 $form->addElement(form_makeOpenTag('span', array('class' => 'date'))); 611 $form->addElement($date); 612 $form->addElement(form_makeCloseTag('span')); 613 614 $form->addElement(form_makeOpenTag('a', array('class' => 'diff_link', 'href' => wl($recent['id'],"do=diff", false, '&')))); 615 $form->addElement(form_makeTag('img', array( 616 'src' => DOKU_BASE.'lib/images/diff.png', 617 'width' => 15, 618 'height'=> 11, 619 'title' => $lang['diff'], 620 'alt' => $lang['diff'] 621 ))); 622 $form->addElement(form_makeCloseTag('a')); 623 624 $form->addElement(form_makeOpenTag('a', array('class' => 'revisions_link', 'href' => wl($recent['id'],"do=revisions",false,'&')))); 625 $form->addElement(form_makeTag('img', array( 626 'src' => DOKU_BASE.'lib/images/history.png', 627 'width' => 12, 628 'height'=> 14, 629 'title' => $lang['btn_revs'], 630 'alt' => $lang['btn_revs'] 631 ))); 632 $form->addElement(form_makeCloseTag('a')); 633 634 $form->addElement(html_wikilink(':'.$recent['id'],useHeading('navigation')?null:$recent['id'])); 635 636 $form->addElement(form_makeOpenTag('span', array('class' => 'sum'))); 637 $form->addElement(' – '.htmlspecialchars($recent['sum'])); 638 $form->addElement(form_makeCloseTag('span')); 639 640 $form->addElement(form_makeOpenTag('span', array('class' => 'user'))); 641 if($recent['user']){ 642 $form->addElement(editorinfo($recent['user'])); 643 if(auth_ismanager()){ 644 $form->addElement(' ('.$recent['ip'].')'); 645 } 646 }else{ 647 $form->addElement($recent['ip']); 648 } 649 $form->addElement(form_makeCloseTag('span')); 650 651 $form->addElement(form_makeCloseTag('div')); 652 $form->addElement(form_makeCloseTag('li')); 653 } 654 $form->addElement(form_makeCloseTag('ul')); 655 656 $form->addElement(form_makeOpenTag('div', array('class' => 'pagenav'))); 657 $last = $first + $conf['recent']; 658 if ($first > 0) { 659 $first -= $conf['recent']; 660 if ($first < 0) $first = 0; 661 $form->addElement(form_makeOpenTag('div', array('class' => 'pagenav-prev'))); 662 $form->addElement(form_makeTag('input', array( 663 'type' => 'submit', 664 'name' => 'first['.$first.']', 665 'value' => $lang['btn_newer'], 666 'accesskey' => 'n', 667 'title' => $lang['btn_newer'].' [N]', 668 'class' => 'button' 669 ))); 670 $form->addElement(form_makeCloseTag('div')); 671 } 672 if ($hasNext) { 673 $form->addElement(form_makeOpenTag('div', array('class' => 'pagenav-next'))); 674 $form->addElement(form_makeTag('input', array( 675 'type' => 'submit', 676 'name' => 'first['.$last.']', 677 'value' => $lang['btn_older'], 678 'accesskey' => 'p', 679 'title' => $lang['btn_older'].' [P]', 680 'class' => 'button' 681 ))); 682 $form->addElement(form_makeCloseTag('div')); 683 } 684 $form->addElement(form_makeCloseTag('div')); 685 html_form('recent', $form); 686} 687 688/** 689 * Display page index 690 * 691 * @author Andreas Gohr <andi@splitbrain.org> 692 */ 693function html_index($ns){ 694 global $conf; 695 global $ID; 696 $dir = $conf['datadir']; 697 $ns = cleanID($ns); 698 #fixme use appropriate function 699 if(empty($ns)){ 700 $ns = dirname(str_replace(':','/',$ID)); 701 if($ns == '.') $ns =''; 702 } 703 $ns = utf8_encodeFN(str_replace(':','/',$ns)); 704 705 echo p_locale_xhtml('index'); 706 echo '<div id="index__tree">'; 707 708 $data = array(); 709 search($data,$conf['datadir'],'search_index',array('ns' => $ns)); 710 echo html_buildlist($data,'idx','html_list_index','html_li_index'); 711 712 echo '</div>'; 713} 714 715/** 716 * Index item formatter 717 * 718 * User function for html_buildlist() 719 * 720 * @author Andreas Gohr <andi@splitbrain.org> 721 */ 722function html_list_index($item){ 723 global $ID; 724 $ret = ''; 725 $base = ':'.$item['id']; 726 $base = substr($base,strrpos($base,':')+1); 727 if($item['type']=='d'){ 728 $ret .= '<a href="'.wl($ID,'idx='.rawurlencode($item['id'])).'" class="idx_dir"><strong>'; 729 $ret .= $base; 730 $ret .= '</strong></a>'; 731 }else{ 732 $ret .= html_wikilink(':'.$item['id']); 733 } 734 return $ret; 735} 736 737/** 738 * Index List item 739 * 740 * This user function is used in html_buildlist to build the 741 * <li> tags for namespaces when displaying the page index 742 * it gives different classes to opened or closed "folders" 743 * 744 * @author Andreas Gohr <andi@splitbrain.org> 745 */ 746function html_li_index($item){ 747 if($item['type'] == "f"){ 748 return '<li class="level'.$item['level'].'">'; 749 }elseif($item['open']){ 750 return '<li class="open">'; 751 }else{ 752 return '<li class="closed">'; 753 } 754} 755 756/** 757 * Default List item 758 * 759 * @author Andreas Gohr <andi@splitbrain.org> 760 */ 761function html_li_default($item){ 762 return '<li class="level'.$item['level'].'">'; 763} 764 765/** 766 * Build an unordered list 767 * 768 * Build an unordered list from the given $data array 769 * Each item in the array has to have a 'level' property 770 * the item itself gets printed by the given $func user 771 * function. The second and optional function is used to 772 * print the <li> tag. Both user function need to accept 773 * a single item. 774 * 775 * Both user functions can be given as array to point to 776 * a member of an object. 777 * 778 * @author Andreas Gohr <andi@splitbrain.org> 779 */ 780function html_buildlist($data,$class,$func,$lifunc='html_li_default'){ 781 if (count($data) === 0) { 782 return ''; 783 } 784 785 $level = $data[0]['level']; 786 $opens = 0; 787 $ret = ''; 788 789 if ($level < 2) { 790 // Trigger building a wrapper ul if the first level is 791 // 0 (we have a root object) or 1 (just the root content) 792 --$level; 793 } 794 795 foreach ($data as $item){ 796 797 if( $item['level'] > $level ){ 798 //open new list 799 for($i=0; $i<($item['level'] - $level); $i++){ 800 if ($i) $ret .= "<li class=\"clear\">\n"; 801 $ret .= "\n<ul class=\"$class\">\n"; 802 } 803 }elseif( $item['level'] < $level ){ 804 //close last item 805 $ret .= "</li>\n"; 806 for ($i=0; $i<($level - $item['level']); $i++){ 807 //close higher lists 808 $ret .= "</ul>\n</li>\n"; 809 } 810 } elseif ($ret !== '') { 811 //close last item 812 $ret .= "</li>\n"; 813 } 814 815 //remember current level 816 $level = $item['level']; 817 818 //print item 819 $ret .= call_user_func($lifunc,$item); 820 $ret .= '<div class="li">'; 821 822 $ret .= call_user_func($func,$item); 823 $ret .= '</div>'; 824 } 825 826 //close remaining items and lists 827 for ($i=0; $i < $level; $i++){ 828 $ret .= "</li></ul>\n"; 829 } 830 831 return $ret; 832} 833 834/** 835 * display backlinks 836 * 837 * @author Andreas Gohr <andi@splitbrain.org> 838 * @author Michael Klier <chi@chimeric.de> 839 */ 840function html_backlinks(){ 841 global $ID; 842 global $conf; 843 global $lang; 844 845 print p_locale_xhtml('backlinks'); 846 847 $data = ft_backlinks($ID); 848 849 if(!empty($data)) { 850 print '<ul class="idx">'; 851 foreach($data as $blink){ 852 print '<li><div class="li">'; 853 print html_wikilink(':'.$blink,useHeading('navigation')?null:$blink); 854 print '</div></li>'; 855 } 856 print '</ul>'; 857 } else { 858 print '<div class="level1"><p>' . $lang['nothingfound'] . '</p></div>'; 859 } 860} 861 862/** 863 * show diff 864 * 865 * @author Andreas Gohr <andi@splitbrain.org> 866 * @param string $text - compare with this text with most current version 867 * @param bool $intr - display the intro text 868 */ 869function html_diff($text='',$intro=true,$type=null){ 870 global $ID; 871 global $REV; 872 global $lang; 873 global $conf; 874 875 if(!$type) $type = $_REQUEST['difftype']; 876 if($type != 'inline') $type = 'sidebyside'; 877 878 // we're trying to be clever here, revisions to compare can be either 879 // given as rev and rev2 parameters, with rev2 being optional. Or in an 880 // array in rev2. 881 $rev1 = $REV; 882 883 if(is_array($_REQUEST['rev2'])){ 884 $rev1 = (int) $_REQUEST['rev2'][0]; 885 $rev2 = (int) $_REQUEST['rev2'][1]; 886 887 if(!$rev1){ 888 $rev1 = $rev2; 889 unset($rev2); 890 } 891 }else{ 892 $rev2 = (int) $_REQUEST['rev2']; 893 } 894 895 $r_minor = ''; 896 $l_minor = ''; 897 898 if($text){ // compare text to the most current revision 899 $l_rev = ''; 900 $l_text = rawWiki($ID,''); 901 $l_head = '<a class="wikilink1" href="'.wl($ID).'">'. 902 $ID.' '.dformat((int) @filemtime(wikiFN($ID))).'</a> '. 903 $lang['current']; 904 905 $r_rev = ''; 906 $r_text = cleanText($text); 907 $r_head = $lang['yours']; 908 }else{ 909 if($rev1 && $rev2){ // two specific revisions wanted 910 // make sure order is correct (older on the left) 911 if($rev1 < $rev2){ 912 $l_rev = $rev1; 913 $r_rev = $rev2; 914 }else{ 915 $l_rev = $rev2; 916 $r_rev = $rev1; 917 } 918 }elseif($rev1){ // single revision given, compare to current 919 $r_rev = ''; 920 $l_rev = $rev1; 921 }else{ // no revision was given, compare previous to current 922 $r_rev = ''; 923 $revs = getRevisions($ID, 0, 1); 924 $l_rev = $revs[0]; 925 $REV = $l_rev; // store revision back in $REV 926 } 927 928 // when both revisions are empty then the page was created just now 929 if(!$l_rev && !$r_rev){ 930 $l_text = ''; 931 }else{ 932 $l_text = rawWiki($ID,$l_rev); 933 } 934 $r_text = rawWiki($ID,$r_rev); 935 936 if(!$l_rev){ 937 $l_head = '—'; 938 }else{ 939 $l_info = getRevisionInfo($ID,$l_rev,true); 940 if($l_info['user']){ 941 $l_user = editorinfo($l_info['user']); 942 if(auth_ismanager()) $l_user .= ' ('.$l_info['ip'].')'; 943 } else { 944 $l_user = $l_info['ip']; 945 } 946 $l_user = '<span class="user">'.$l_user.'</span>'; 947 $l_sum = ($l_info['sum']) ? '<span class="sum">'.hsc($l_info['sum']).'</span>' : ''; 948 if ($l_info['type']===DOKU_CHANGE_TYPE_MINOR_EDIT) $l_minor = 'class="minor"'; 949 950 $l_head = '<a class="wikilink1" href="'.wl($ID,"rev=$l_rev").'">'. 951 $ID.' ['.dformat($l_rev).']</a>'. 952 '<br />'.$l_user.' '.$l_sum; 953 } 954 955 if($r_rev){ 956 $r_info = getRevisionInfo($ID,$r_rev,true); 957 if($r_info['user']){ 958 $r_user = editorinfo($r_info['user']); 959 if(auth_ismanager()) $r_user .= ' ('.$r_info['ip'].')'; 960 } else { 961 $r_user = $r_info['ip']; 962 } 963 $r_user = '<span class="user">'.$r_user.'</span>'; 964 $r_sum = ($r_info['sum']) ? '<span class="sum">'.hsc($r_info['sum']).'</span>' : ''; 965 if ($r_info['type']===DOKU_CHANGE_TYPE_MINOR_EDIT) $r_minor = 'class="minor"'; 966 967 $r_head = '<a class="wikilink1" href="'.wl($ID,"rev=$r_rev").'">'. 968 $ID.' ['.dformat($r_rev).']</a>'. 969 '<br />'.$r_user.' '.$r_sum; 970 }elseif($_rev = @filemtime(wikiFN($ID))){ 971 $_info = getRevisionInfo($ID,$_rev,true); 972 if($_info['user']){ 973 $_user = editorinfo($_info['user']); 974 if(auth_ismanager()) $_user .= ' ('.$_info['ip'].')'; 975 } else { 976 $_user = $_info['ip']; 977 } 978 $_user = '<span class="user">'.$_user.'</span>'; 979 $_sum = ($_info['sum']) ? '<span class="sum">'.hsc($_info['sum']).'</span>' : ''; 980 if ($_info['type']===DOKU_CHANGE_TYPE_MINOR_EDIT) $r_minor = 'class="minor"'; 981 982 $r_head = '<a class="wikilink1" href="'.wl($ID).'">'. 983 $ID.' ['.dformat($_rev).']</a> '. 984 '('.$lang['current'].')'. 985 '<br />'.$_user.' '.$_sum; 986 }else{ 987 $r_head = '— ('.$lang['current'].')'; 988 } 989 } 990 991 $df = new Diff(explode("\n",htmlspecialchars($l_text)), 992 explode("\n",htmlspecialchars($r_text))); 993 994 if($type == 'inline'){ 995 $tdf = new InlineDiffFormatter(); 996 } else { 997 $tdf = new TableDiffFormatter(); 998 } 999 1000 1001 1002 if($intro) print p_locale_xhtml('diff'); 1003 1004 if (!$text) { 1005 ptln('<div class="diffoptions">'); 1006 1007 $form = new Doku_Form(array('action'=>wl())); 1008 $form->addHidden('id',$ID); 1009 $form->addHidden('rev2[0]',$l_rev); 1010 $form->addHidden('rev2[1]',$r_rev); 1011 $form->addHidden('do','diff'); 1012 $form->addElement(form_makeListboxField( 1013 'difftype', 1014 array( 1015 'sidebyside' => $lang['diff_side'], 1016 'inline' => $lang['diff_inline']), 1017 $type, 1018 $lang['diff_type'], 1019 '','', 1020 array('class'=>'quickselect'))); 1021 $form->addElement(form_makeButton('submit', 'diff','Go')); 1022 $form->printForm(); 1023 1024 1025 $diffurl = wl($ID, array( 1026 'do' => 'diff', 1027 'rev2[0]' => $l_rev, 1028 'rev2[1]' => $r_rev, 1029 'difftype' => $type, 1030 )); 1031 ptln('<p><a class="wikilink1" href="'.$diffurl.'">'.$lang['difflink'].'</a></p>'); 1032 ptln('</div>'); 1033 } 1034 ?> 1035 <table class="diff diff_<?php echo $type?>"> 1036 <tr> 1037 <th colspan="2" <?php echo $l_minor?>> 1038 <?php echo $l_head?> 1039 </th> 1040 <th colspan="2" <?php echo $r_minor?>> 1041 <?php echo $r_head?> 1042 </th> 1043 </tr> 1044 <?php echo $tdf->format($df)?> 1045 </table> 1046 <?php 1047} 1048 1049/** 1050 * show warning on conflict detection 1051 * 1052 * @author Andreas Gohr <andi@splitbrain.org> 1053 */ 1054function html_conflict($text,$summary){ 1055 global $ID; 1056 global $lang; 1057 1058 print p_locale_xhtml('conflict'); 1059 $form = new Doku_Form(array('id' => 'dw__editform')); 1060 $form->addHidden('id', $ID); 1061 $form->addHidden('wikitext', $text); 1062 $form->addHidden('summary', $summary); 1063 $form->addElement(form_makeButton('submit', 'save', $lang['btn_save'], array('accesskey'=>'s'))); 1064 $form->addElement(form_makeButton('submit', 'cancel', $lang['btn_cancel'])); 1065 html_form('conflict', $form); 1066 print '<br /><br /><br /><br />'.NL; 1067} 1068 1069/** 1070 * Prints the global message array 1071 * 1072 * @author Andreas Gohr <andi@splitbrain.org> 1073 */ 1074function html_msgarea(){ 1075 global $MSG, $MSG_shown; 1076 // store if the global $MSG has already been shown and thus HTML output has been started 1077 $MSG_shown = true; 1078 1079 if(!isset($MSG)) return; 1080 1081 $shown = array(); 1082 foreach($MSG as $msg){ 1083 $hash = md5($msg['msg']); 1084 if(isset($shown[$hash])) continue; // skip double messages 1085 print '<div class="'.$msg['lvl'].'">'; 1086 print $msg['msg']; 1087 print '</div>'; 1088 $shown[$hash] = 1; 1089 } 1090 1091 unset($GLOBALS['MSG']); 1092} 1093 1094/** 1095 * Prints the registration form 1096 * 1097 * @author Andreas Gohr <andi@splitbrain.org> 1098 */ 1099function html_register(){ 1100 global $lang; 1101 global $conf; 1102 global $ID; 1103 1104 print p_locale_xhtml('register'); 1105 print '<div class="centeralign">'.NL; 1106 $form = new Doku_Form(array('id' => 'dw__register')); 1107 $form->startFieldset($lang['btn_register']); 1108 $form->addHidden('do', 'register'); 1109 $form->addHidden('save', '1'); 1110 $form->addElement(form_makeTextField('login', $_POST['login'], $lang['user'], '', 'block', array('size'=>'50'))); 1111 if (!$conf['autopasswd']) { 1112 $form->addElement(form_makePasswordField('pass', $lang['pass'], '', 'block', array('size'=>'50'))); 1113 $form->addElement(form_makePasswordField('passchk', $lang['passchk'], '', 'block', array('size'=>'50'))); 1114 } 1115 $form->addElement(form_makeTextField('fullname', $_POST['fullname'], $lang['fullname'], '', 'block', array('size'=>'50'))); 1116 $form->addElement(form_makeTextField('email', $_POST['email'], $lang['email'], '', 'block', array('size'=>'50'))); 1117 $form->addElement(form_makeButton('submit', '', $lang['btn_register'])); 1118 $form->endFieldset(); 1119 html_form('register', $form); 1120 1121 print '</div>'.NL; 1122} 1123 1124/** 1125 * Print the update profile form 1126 * 1127 * @author Christopher Smith <chris@jalakai.co.uk> 1128 * @author Andreas Gohr <andi@splitbrain.org> 1129 */ 1130function html_updateprofile(){ 1131 global $lang; 1132 global $conf; 1133 global $ID; 1134 global $INFO; 1135 global $auth; 1136 1137 print p_locale_xhtml('updateprofile'); 1138 1139 if (empty($_POST['fullname'])) $_POST['fullname'] = $INFO['userinfo']['name']; 1140 if (empty($_POST['email'])) $_POST['email'] = $INFO['userinfo']['mail']; 1141 print '<div class="centeralign">'.NL; 1142 $form = new Doku_Form(array('id' => 'dw__register')); 1143 $form->startFieldset($lang['profile']); 1144 $form->addHidden('do', 'profile'); 1145 $form->addHidden('save', '1'); 1146 $form->addElement(form_makeTextField('fullname', $_SERVER['REMOTE_USER'], $lang['user'], '', 'block', array('size'=>'50', 'disabled'=>'disabled'))); 1147 $attr = array('size'=>'50'); 1148 if (!$auth->canDo('modName')) $attr['disabled'] = 'disabled'; 1149 $form->addElement(form_makeTextField('fullname', $_POST['fullname'], $lang['fullname'], '', 'block', $attr)); 1150 $attr = array('size'=>'50'); 1151 if (!$auth->canDo('modMail')) $attr['disabled'] = 'disabled'; 1152 $form->addElement(form_makeTextField('email', $_POST['email'], $lang['email'], '', 'block', $attr)); 1153 $form->addElement(form_makeTag('br')); 1154 if ($auth->canDo('modPass')) { 1155 $form->addElement(form_makePasswordField('newpass', $lang['newpass'], '', 'block', array('size'=>'50'))); 1156 $form->addElement(form_makePasswordField('passchk', $lang['passchk'], '', 'block', array('size'=>'50'))); 1157 } 1158 if ($conf['profileconfirm']) { 1159 $form->addElement(form_makeTag('br')); 1160 $form->addElement(form_makePasswordField('oldpass', $lang['oldpass'], '', 'block', array('size'=>'50'))); 1161 } 1162 $form->addElement(form_makeButton('submit', '', $lang['btn_save'])); 1163 $form->addElement(form_makeButton('reset', '', $lang['btn_reset'])); 1164 $form->endFieldset(); 1165 html_form('updateprofile', $form); 1166 print '</div>'.NL; 1167} 1168 1169/** 1170 * Preprocess edit form data 1171 * 1172 * @author Andreas Gohr <andi@splitbrain.org> 1173 * 1174 * @triggers HTML_EDITFORM_OUTPUT 1175 */ 1176function html_edit(){ 1177 global $ID; 1178 global $REV; 1179 global $DATE; 1180 global $PRE; 1181 global $SUF; 1182 global $INFO; 1183 global $SUM; 1184 global $lang; 1185 global $conf; 1186 global $TEXT; 1187 global $RANGE; 1188 1189 if (isset($_REQUEST['changecheck'])) { 1190 $check = $_REQUEST['changecheck']; 1191 } elseif(!$INFO['exists']){ 1192 // $TEXT has been loaded from page template 1193 $check = md5(''); 1194 } else { 1195 $check = md5($TEXT); 1196 } 1197 $mod = md5($TEXT) !== $check; 1198 1199 $wr = $INFO['writable'] && !$INFO['locked']; 1200 $include = 'edit'; 1201 if($wr){ 1202 if ($REV) $include = 'editrev'; 1203 }else{ 1204 // check pseudo action 'source' 1205 if(!actionOK('source')){ 1206 msg('Command disabled: source',-1); 1207 return; 1208 } 1209 $include = 'read'; 1210 } 1211 1212 global $license; 1213 1214 $form = new Doku_Form(array('id' => 'dw__editform')); 1215 $form->addHidden('id', $ID); 1216 $form->addHidden('rev', $REV); 1217 $form->addHidden('date', $DATE); 1218 $form->addHidden('prefix', $PRE . '.'); 1219 $form->addHidden('suffix', $SUF); 1220 $form->addHidden('changecheck', $check); 1221 1222 $data = array('form' => $form, 1223 'wr' => $wr, 1224 'media_manager' => true, 1225 'target' => (isset($_REQUEST['target']) && $wr && 1226 $RANGE !== '') ? $_REQUEST['target'] : 'section', 1227 'intro_locale' => $include); 1228 1229 if ($data['target'] !== 'section') { 1230 // Only emit event if page is writable, section edit data is valid and 1231 // edit target is not section. 1232 trigger_event('HTML_EDIT_FORMSELECTION', $data, 'html_edit_form', true); 1233 } else { 1234 html_edit_form($data); 1235 } 1236 if (isset($data['intro_locale'])) { 1237 echo p_locale_xhtml($data['intro_locale']); 1238 } 1239 1240 $form->addHidden('target', $data['target']); 1241 $form->addElement(form_makeOpenTag('div', array('id'=>'wiki__editbar'))); 1242 $form->addElement(form_makeOpenTag('div', array('id'=>'size__ctl'))); 1243 $form->addElement(form_makeCloseTag('div')); 1244 if ($wr) { 1245 $form->addElement(form_makeOpenTag('div', array('class'=>'editButtons'))); 1246 $form->addElement(form_makeButton('submit', 'save', $lang['btn_save'], array('id'=>'edbtn__save', 'accesskey'=>'s', 'tabindex'=>'4'))); 1247 $form->addElement(form_makeButton('submit', 'preview', $lang['btn_preview'], array('id'=>'edbtn__preview', 'accesskey'=>'p', 'tabindex'=>'5'))); 1248 $form->addElement(form_makeButton('submit', 'draftdel', $lang['btn_cancel'], array('tabindex'=>'6'))); 1249 $form->addElement(form_makeCloseTag('div')); 1250 $form->addElement(form_makeOpenTag('div', array('class'=>'summary'))); 1251 $form->addElement(form_makeTextField('summary', $SUM, $lang['summary'], 'edit__summary', 'nowrap', array('size'=>'50', 'tabindex'=>'2'))); 1252 $elem = html_minoredit(); 1253 if ($elem) $form->addElement($elem); 1254 $form->addElement(form_makeCloseTag('div')); 1255 } 1256 $form->addElement(form_makeCloseTag('div')); 1257 if($wr && $conf['license']){ 1258 $form->addElement(form_makeOpenTag('div', array('class'=>'license'))); 1259 $out = $lang['licenseok']; 1260 $out .= ' <a href="'.$license[$conf['license']]['url'].'" rel="license" class="urlextern"'; 1261 if(isset($conf['target']['extern'])) $out .= ' target="'.$conf['target']['extern'].'"'; 1262 $out .= '>'.$license[$conf['license']]['name'].'</a>'; 1263 $form->addElement($out); 1264 $form->addElement(form_makeCloseTag('div')); 1265 } 1266 1267 if ($wr) { 1268 // sets changed to true when previewed 1269 echo '<script type="text/javascript" charset="utf-8"><!--//--><![CDATA[//><!--'. NL; 1270 echo 'textChanged = ' . ($mod ? 'true' : 'false'); 1271 echo '//--><!]]></script>' . NL; 1272 } ?> 1273 <div style="width:99%;"> 1274 1275 <div class="toolbar"> 1276 <div id="draft__status"><?php if(!empty($INFO['draft'])) echo $lang['draftdate'].' '.dformat();?></div> 1277 <div id="tool__bar"><?php if ($wr && $data['media_manager']){?><a href="<?php echo DOKU_BASE?>lib/exe/mediamanager.php?ns=<?php echo $INFO['namespace']?>" 1278 target="_blank"><?php echo $lang['mediaselect'] ?></a><?php }?></div> 1279 1280 </div> 1281 <?php 1282 1283 html_form('edit', $form); 1284 print '</div>'.NL; 1285} 1286 1287/** 1288 * Display the default edit form 1289 * 1290 * Is the default action for HTML_EDIT_FORMSELECTION. 1291 */ 1292function html_edit_form($param) { 1293 global $TEXT; 1294 1295 if ($param['target'] !== 'section') { 1296 msg('No editor for edit target ' . $param['target'] . ' found.', -1); 1297 } 1298 1299 $attr = array('tabindex'=>'1'); 1300 if (!$param['wr']) $attr['readonly'] = 'readonly'; 1301 1302 $param['form']->addElement(form_makeWikiText($TEXT, $attr)); 1303} 1304 1305/** 1306 * Adds a checkbox for minor edits for logged in users 1307 * 1308 * @author Andreas Gohr <andi@splitbrain.org> 1309 */ 1310function html_minoredit(){ 1311 global $conf; 1312 global $lang; 1313 // minor edits are for logged in users only 1314 if(!$conf['useacl'] || !$_SERVER['REMOTE_USER']){ 1315 return false; 1316 } 1317 1318 $p = array(); 1319 $p['tabindex'] = 3; 1320 if(!empty($_REQUEST['minor'])) $p['checked']='checked'; 1321 return form_makeCheckboxField('minor', '1', $lang['minoredit'], 'minoredit', 'nowrap', $p); 1322} 1323 1324/** 1325 * prints some debug info 1326 * 1327 * @author Andreas Gohr <andi@splitbrain.org> 1328 */ 1329function html_debug(){ 1330 global $conf; 1331 global $lang; 1332 global $auth; 1333 global $INFO; 1334 1335 //remove sensitive data 1336 $cnf = $conf; 1337 debug_guard($cnf); 1338 $nfo = $INFO; 1339 debug_guard($nfo); 1340 $ses = $_SESSION; 1341 debug_guard($ses); 1342 1343 print '<html><body>'; 1344 1345 print '<p>When reporting bugs please send all the following '; 1346 print 'output as a mail to andi@splitbrain.org '; 1347 print 'The best way to do this is to save this page in your browser</p>'; 1348 1349 print '<b>$INFO:</b><pre>'; 1350 print_r($nfo); 1351 print '</pre>'; 1352 1353 print '<b>$_SERVER:</b><pre>'; 1354 print_r($_SERVER); 1355 print '</pre>'; 1356 1357 print '<b>$conf:</b><pre>'; 1358 print_r($cnf); 1359 print '</pre>'; 1360 1361 print '<b>DOKU_BASE:</b><pre>'; 1362 print DOKU_BASE; 1363 print '</pre>'; 1364 1365 print '<b>abs DOKU_BASE:</b><pre>'; 1366 print DOKU_URL; 1367 print '</pre>'; 1368 1369 print '<b>rel DOKU_BASE:</b><pre>'; 1370 print dirname($_SERVER['PHP_SELF']).'/'; 1371 print '</pre>'; 1372 1373 print '<b>PHP Version:</b><pre>'; 1374 print phpversion(); 1375 print '</pre>'; 1376 1377 print '<b>locale:</b><pre>'; 1378 print setlocale(LC_ALL,0); 1379 print '</pre>'; 1380 1381 print '<b>encoding:</b><pre>'; 1382 print $lang['encoding']; 1383 print '</pre>'; 1384 1385 if($auth){ 1386 print '<b>Auth backend capabilities:</b><pre>'; 1387 print_r($auth->cando); 1388 print '</pre>'; 1389 } 1390 1391 print '<b>$_SESSION:</b><pre>'; 1392 print_r($ses); 1393 print '</pre>'; 1394 1395 print '<b>Environment:</b><pre>'; 1396 print_r($_ENV); 1397 print '</pre>'; 1398 1399 print '<b>PHP settings:</b><pre>'; 1400 $inis = ini_get_all(); 1401 print_r($inis); 1402 print '</pre>'; 1403 1404 print '</body></html>'; 1405} 1406 1407/** 1408 * List available Administration Tasks 1409 * 1410 * @author Andreas Gohr <andi@splitbrain.org> 1411 * @author Håkan Sandell <hakan.sandell@home.se> 1412 */ 1413function html_admin(){ 1414 global $ID; 1415 global $INFO; 1416 global $lang; 1417 global $conf; 1418 global $auth; 1419 1420 // build menu of admin functions from the plugins that handle them 1421 $pluginlist = plugin_list('admin'); 1422 $menu = array(); 1423 foreach ($pluginlist as $p) { 1424 if($obj =& plugin_load('admin',$p) === null) continue; 1425 1426 // check permissions 1427 if($obj->forAdminOnly() && !$INFO['isadmin']) continue; 1428 1429 $menu[$p] = array('plugin' => $p, 1430 'prompt' => $obj->getMenuText($conf['lang']), 1431 'sort' => $obj->getMenuSort() 1432 ); 1433 } 1434 1435 // data security check 1436 // @todo: could be checked and only displayed if $conf['savedir'] is under the web root 1437 echo '<a style="border:none; float:right;" 1438 href="http://www.dokuwiki.org/security#web_access_security"> 1439 <img src="data/security.png" alt="Your data directory seems to be protected properly." 1440 onerror="this.parentNode.style.display=\'none\'" /></a>'; 1441 1442 print p_locale_xhtml('admin'); 1443 1444 // Admin Tasks 1445 if($INFO['isadmin']){ 1446 ptln('<ul class="admin_tasks">'); 1447 1448 if($menu['usermanager'] && $auth && $auth->canDo('getUsers')){ 1449 ptln(' <li class="admin_usermanager"><div class="li">'. 1450 '<a href="'.wl($ID, array('do' => 'admin','page' => 'usermanager')).'">'. 1451 $menu['usermanager']['prompt'].'</a></div></li>'); 1452 } 1453 unset($menu['usermanager']); 1454 1455 if($menu['acl']){ 1456 ptln(' <li class="admin_acl"><div class="li">'. 1457 '<a href="'.wl($ID, array('do' => 'admin','page' => 'acl')).'">'. 1458 $menu['acl']['prompt'].'</a></div></li>'); 1459 } 1460 unset($menu['acl']); 1461 1462 if($menu['plugin']){ 1463 ptln(' <li class="admin_plugin"><div class="li">'. 1464 '<a href="'.wl($ID, array('do' => 'admin','page' => 'plugin')).'">'. 1465 $menu['plugin']['prompt'].'</a></div></li>'); 1466 } 1467 unset($menu['plugin']); 1468 1469 if($menu['config']){ 1470 ptln(' <li class="admin_config"><div class="li">'. 1471 '<a href="'.wl($ID, array('do' => 'admin','page' => 'config')).'">'. 1472 $menu['config']['prompt'].'</a></div></li>'); 1473 } 1474 unset($menu['config']); 1475 } 1476 ptln('</ul>'); 1477 1478 // Manager Tasks 1479 ptln('<ul class="admin_tasks">'); 1480 1481 if($menu['revert']){ 1482 ptln(' <li class="admin_revert"><div class="li">'. 1483 '<a href="'.wl($ID, array('do' => 'admin','page' => 'revert')).'">'. 1484 $menu['revert']['prompt'].'</a></div></li>'); 1485 } 1486 unset($menu['revert']); 1487 1488 if($menu['popularity']){ 1489 ptln(' <li class="admin_popularity"><div class="li">'. 1490 '<a href="'.wl($ID, array('do' => 'admin','page' => 'popularity')).'">'. 1491 $menu['popularity']['prompt'].'</a></div></li>'); 1492 } 1493 unset($menu['popularity']); 1494 1495 // print DokuWiki version: 1496 ptln('</ul>'); 1497 echo '<div id="admin__version">'; 1498 echo getVersion(); 1499 echo '</div>'; 1500 1501 // print the rest as sorted list 1502 if(count($menu)){ 1503 usort($menu, 'p_sort_modes'); 1504 // output the menu 1505 ptln('<div class="clearer"></div>'); 1506 print p_locale_xhtml('adminplugins'); 1507 ptln('<ul>'); 1508 foreach ($menu as $item) { 1509 if (!$item['prompt']) continue; 1510 ptln(' <li><div class="li"><a href="'.wl($ID, 'do=admin&page='.$item['plugin']).'">'.$item['prompt'].'</a></div></li>'); 1511 } 1512 ptln('</ul>'); 1513 } 1514} 1515 1516/** 1517 * Form to request a new password for an existing account 1518 * 1519 * @author Benoit Chesneau <benoit@bchesneau.info> 1520 */ 1521function html_resendpwd() { 1522 global $lang; 1523 global $conf; 1524 global $ID; 1525 1526 print p_locale_xhtml('resendpwd'); 1527 print '<div class="centeralign">'.NL; 1528 $form = new Doku_Form(array('id' => 'dw__resendpwd')); 1529 $form->startFieldset($lang['resendpwd']); 1530 $form->addHidden('do', 'resendpwd'); 1531 $form->addHidden('save', '1'); 1532 $form->addElement(form_makeTag('br')); 1533 $form->addElement(form_makeTextField('login', $_POST['login'], $lang['user'], '', 'block')); 1534 $form->addElement(form_makeTag('br')); 1535 $form->addElement(form_makeTag('br')); 1536 $form->addElement(form_makeButton('submit', '', $lang['btn_resendpwd'])); 1537 $form->endFieldset(); 1538 html_form('resendpwd', $form); 1539 print '</div>'.NL; 1540} 1541 1542/** 1543 * Return the TOC rendered to XHTML 1544 * 1545 * @author Andreas Gohr <andi@splitbrain.org> 1546 */ 1547function html_TOC($toc){ 1548 if(!count($toc)) return ''; 1549 global $lang; 1550 $out = '<!-- TOC START -->'.DOKU_LF; 1551 $out .= '<div class="toc">'.DOKU_LF; 1552 $out .= '<div class="tocheader toctoggle" id="toc__header">'; 1553 $out .= $lang['toc']; 1554 $out .= '</div>'.DOKU_LF; 1555 $out .= '<div id="toc__inside">'.DOKU_LF; 1556 $out .= html_buildlist($toc,'toc','html_list_toc'); 1557 $out .= '</div>'.DOKU_LF.'</div>'.DOKU_LF; 1558 $out .= '<!-- TOC END -->'.DOKU_LF; 1559 return $out; 1560} 1561 1562/** 1563 * Callback for html_buildlist 1564 */ 1565function html_list_toc($item){ 1566 if(isset($item['hid'])){ 1567 $link = '#'.$item['hid']; 1568 }else{ 1569 $link = $item['link']; 1570 } 1571 1572 return '<span class="li"><a href="'.$link.'" class="toc">'. 1573 hsc($item['title']).'</a></span>'; 1574} 1575 1576/** 1577 * Helper function to build TOC items 1578 * 1579 * Returns an array ready to be added to a TOC array 1580 * 1581 * @param string $link - where to link (if $hash set to '#' it's a local anchor) 1582 * @param string $text - what to display in the TOC 1583 * @param int $level - nesting level 1584 * @param string $hash - is prepended to the given $link, set blank if you want full links 1585 */ 1586function html_mktocitem($link, $text, $level, $hash='#'){ 1587 global $conf; 1588 return array( 'link' => $hash.$link, 1589 'title' => $text, 1590 'type' => 'ul', 1591 'level' => $level); 1592} 1593 1594/** 1595 * Output a Doku_Form object. 1596 * Triggers an event with the form name: HTML_{$name}FORM_OUTPUT 1597 * 1598 * @author Tom N Harris <tnharris@whoopdedo.org> 1599 */ 1600function html_form($name, &$form) { 1601 // Safety check in case the caller forgets. 1602 $form->endFieldset(); 1603 trigger_event('HTML_'.strtoupper($name).'FORM_OUTPUT', $form, 'html_form_output', false); 1604} 1605 1606/** 1607 * Form print function. 1608 * Just calls printForm() on the data object. 1609 */ 1610function html_form_output($data) { 1611 $data->printForm(); 1612} 1613 1614/** 1615 * Embed a flash object in HTML 1616 * 1617 * This will create the needed HTML to embed a flash movie in a cross browser 1618 * compatble way using valid XHTML 1619 * 1620 * The parameters $params, $flashvars and $atts need to be associative arrays. 1621 * No escaping needs to be done for them. The alternative content *has* to be 1622 * escaped because it is used as is. If no alternative content is given 1623 * $lang['noflash'] is used. 1624 * 1625 * @author Andreas Gohr <andi@splitbrain.org> 1626 * @link http://latrine.dgx.cz/how-to-correctly-insert-a-flash-into-xhtml 1627 * 1628 * @param string $swf - the SWF movie to embed 1629 * @param int $width - width of the flash movie in pixels 1630 * @param int $height - height of the flash movie in pixels 1631 * @param array $params - additional parameters (<param>) 1632 * @param array $flashvars - parameters to be passed in the flashvar parameter 1633 * @param array $atts - additional attributes for the <object> tag 1634 * @param string $alt - alternative content (is NOT automatically escaped!) 1635 * @returns string - the XHTML markup 1636 */ 1637function html_flashobject($swf,$width,$height,$params=null,$flashvars=null,$atts=null,$alt=''){ 1638 global $lang; 1639 1640 $out = ''; 1641 1642 // prepare the object attributes 1643 if(is_null($atts)) $atts = array(); 1644 $atts['width'] = (int) $width; 1645 $atts['height'] = (int) $height; 1646 if(!$atts['width']) $atts['width'] = 425; 1647 if(!$atts['height']) $atts['height'] = 350; 1648 1649 // add object attributes for standard compliant browsers 1650 $std = $atts; 1651 $std['type'] = 'application/x-shockwave-flash'; 1652 $std['data'] = $swf; 1653 1654 // add object attributes for IE 1655 $ie = $atts; 1656 $ie['classid'] = 'clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'; 1657 1658 // open object (with conditional comments) 1659 $out .= '<!--[if !IE]> -->'.NL; 1660 $out .= '<object '.buildAttributes($std).'>'.NL; 1661 $out .= '<!-- <![endif]-->'.NL; 1662 $out .= '<!--[if IE]>'.NL; 1663 $out .= '<object '.buildAttributes($ie).'>'.NL; 1664 $out .= ' <param name="movie" value="'.hsc($swf).'" />'.NL; 1665 $out .= '<!--><!-- -->'.NL; 1666 1667 // print params 1668 if(is_array($params)) foreach($params as $key => $val){ 1669 $out .= ' <param name="'.hsc($key).'" value="'.hsc($val).'" />'.NL; 1670 } 1671 1672 // add flashvars 1673 if(is_array($flashvars)){ 1674 $out .= ' <param name="FlashVars" value="'.buildURLparams($flashvars).'" />'.NL; 1675 } 1676 1677 // alternative content 1678 if($alt){ 1679 $out .= $alt.NL; 1680 }else{ 1681 $out .= $lang['noflash'].NL; 1682 } 1683 1684 // finish 1685 $out .= '</object>'.NL; 1686 $out .= '<!-- <![endif]-->'.NL; 1687 1688 return $out; 1689} 1690 1691