diff options
author | Andreas Gohr <andi@splitbrain.org> | 2009-10-20 23:23:38 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2009-10-20 23:23:38 +0200 |
commit | db959ae30700e3924a73350a3a43a2c36b431de7 (patch) | |
tree | f89b3fb0609abb72cf93fa8060f7fc27f4c15f40 /doku.php | |
parent | 8ec3f7bdbf7a5f702a3022332a6f6cb424d0981a (diff) | |
download | rpg-db959ae30700e3924a73350a3a43a2c36b431de7.tar.gz rpg-db959ae30700e3924a73350a3a43a2c36b431de7.tar.bz2 |
Coding Standard Cleanup
Ignore-this: 259cb5773c3144c6c706d87298dcf674
darcs-hash:20091020212338-7ad00-6bf1c5c403491f136a1c02af5ecd9f84d7227107.gz
Diffstat (limited to 'doku.php')
-rw-r--r-- | doku.php | 110 |
1 files changed, 55 insertions, 55 deletions
@@ -8,74 +8,74 @@ // xdebug_start_profiling(); - if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/'); - require_once(DOKU_INC.'inc/init.php'); - require_once(DOKU_INC.'inc/common.php'); - require_once(DOKU_INC.'inc/events.php'); - require_once(DOKU_INC.'inc/pageutils.php'); - require_once(DOKU_INC.'inc/html.php'); - require_once(DOKU_INC.'inc/auth.php'); - require_once(DOKU_INC.'inc/actions.php'); - - //import variables - $QUERY = trim($_REQUEST['id']); - $ID = getID(); - $NS = getNS($ID); - $REV = $_REQUEST['rev']; - $ACT = $_REQUEST['do']; - $IDX = $_REQUEST['idx']; - $DATE = $_REQUEST['date']; - $RANGE = $_REQUEST['lines']; - $HIGH = $_REQUEST['s']; - if(empty($HIGH)) $HIGH = getGoogleQuery(); - - $TEXT = cleanText($_POST['wikitext']); - $PRE = cleanText($_POST['prefix']); - $SUF = cleanText($_POST['suffix']); - $SUM = $_REQUEST['summary']; - - //sanitize revision - $REV = preg_replace('/[^0-9]/','',$REV); - - //we accept the do param as HTTP header, too: - if(!empty($_SERVER['HTTP_X_DOKUWIKI_DO'])){ +if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/'); +require_once(DOKU_INC.'inc/init.php'); +require_once(DOKU_INC.'inc/common.php'); +require_once(DOKU_INC.'inc/events.php'); +require_once(DOKU_INC.'inc/pageutils.php'); +require_once(DOKU_INC.'inc/html.php'); +require_once(DOKU_INC.'inc/auth.php'); +require_once(DOKU_INC.'inc/actions.php'); + +//import variables +$QUERY = trim($_REQUEST['id']); +$ID = getID(); +$NS = getNS($ID); +$REV = $_REQUEST['rev']; +$ACT = $_REQUEST['do']; +$IDX = $_REQUEST['idx']; +$DATE = $_REQUEST['date']; +$RANGE = $_REQUEST['lines']; +$HIGH = $_REQUEST['s']; +if(empty($HIGH)) $HIGH = getGoogleQuery(); + +$TEXT = cleanText($_POST['wikitext']); +$PRE = cleanText($_POST['prefix']); +$SUF = cleanText($_POST['suffix']); +$SUM = $_REQUEST['summary']; + +//sanitize revision +$REV = preg_replace('/[^0-9]/','',$REV); + +//we accept the do param as HTTP header, too: +if(!empty($_SERVER['HTTP_X_DOKUWIKI_DO'])){ $ACT = trim(strtolower($_SERVER['HTTP_X_DOKUWIKI_DO'])); - } +} - if(!empty($IDX)) $ACT='index'; - //set default #FIXME not needed here? done in actions? - if(empty($ACT)) $ACT = 'show'; +if(!empty($IDX)) $ACT='index'; +//set default #FIXME not needed here? done in actions? +if(empty($ACT)) $ACT = 'show'; - //make infos about the selected page available - $INFO = pageinfo(); +//make infos about the selected page available +$INFO = pageinfo(); - // handle debugging - if($conf['allowdebug'] && $ACT == 'debug'){ +// handle debugging +if($conf['allowdebug'] && $ACT == 'debug'){ html_debug(); exit; - } +} - //send 404 for missing pages if configured or ID has special meaning to bots - if(!$INFO['exists'] && - ($conf['send404'] || preg_match('/^(robots\.txt|sitemap\.xml(\.gz)?|favicon\.ico|crossdomain\.xml)$/',$ID)) && - ($ACT == 'show' || substr($ACT,0,7) == 'export_') ){ +//send 404 for missing pages if configured or ID has special meaning to bots +if(!$INFO['exists'] && + ($conf['send404'] || preg_match('/^(robots\.txt|sitemap\.xml(\.gz)?|favicon\.ico|crossdomain\.xml)$/',$ID)) && + ($ACT == 'show' || substr($ACT,0,7) == 'export_') ){ header('HTTP/1.0 404 Not Found'); - } +} - //prepare breadcrumbs (initialize a static var) - if ($conf['breadcrumbs']) breadcrumbs(); +//prepare breadcrumbs (initialize a static var) +if ($conf['breadcrumbs']) breadcrumbs(); - // check upstream - checkUpdateMessages(); +// check upstream +checkUpdateMessages(); - trigger_event('DOKUWIKI_STARTED',$tmp=array()); +trigger_event('DOKUWIKI_STARTED',$tmp=array()); - //close session - session_write_close(); +//close session +session_write_close(); - //do the work - act_dispatch($ACT); +//do the work +act_dispatch($ACT); - trigger_event('DOKUWIKI_DONE', $tmp=array()); +trigger_event('DOKUWIKI_DONE', $tmp=array()); // xdebug_dump_function_profile(1); |