X-Git-Url: https://git.llucax.com/software/bife/bife-all.git/blobdiff_plain/241c44fb6d36ff7d10fb8d10692aa8492aff811f..0bc38f0abdc18d6b4fffaa0c65d2a8f34a298969:/base/examples/index.php?ds=inline diff --git a/base/examples/index.php b/base/examples/index.php index 656561b..5377064 100644 --- a/base/examples/index.php +++ b/base/examples/index.php @@ -26,40 +26,7 @@ // $Id$ // -// Inicialization {{{ -ini_set('include_path', '../src:../../hit/src:../../bife/src:'. - ini_get('include_path')); -umask('002'); -require_once 'HTML/Template/HIT.php'; -require_once 'BIFE/Parser.php'; -require_once 'BIFE/Translate.php'; -// }}} - -// Selects the file to view {{{ -$file = isset($_REQUEST['BIFE']) ? $_REQUEST['BIFE'] : 'index.xbf'; -#$file = isset($_SERVER['PATH_INFO']) ? ".{$_SERVER['PATH_INFO']}" : 'index.xbf'; -// }}} - -// Looks if we want to show the source {{{ -if (@$_REQUEST['S']) { - if (@$_REQUEST['B']) { - // We want to see the BIFE file source. - echo '
'; - echo htmlentities(join('', file($file))); - } else { - // We want to see the php file source. - highlight_file($_SERVER['SCRIPT_FILENAME']); - } - exit; -} -// }}} - -// If we are not looking at the source, we use BIFE to show the page {{{ -$template =& new HTML_Template_HIT('templates'); -$parser =& new BIFE_Parser('BIFE_Translate'); -$page =& $parser->parseFile($file); -$parser->__destruct(); -echo $page->render($template); -// }}} +// Starts bife. +header('Location: bife/'); ?>