--- nfo/site/htdocs/index.php 2004/08/31 02:27:53 1.6 +++ nfo/site/htdocs/index.php 2004/09/03 22:43:17 1.10 @@ -4,11 +4,13 @@ --- Main index and content access page. -------------------------------------------------------------------------------- --- rabit, 01:28 24.08.2004 ---- $Id: index.php,v 1.6 2004/08/31 02:27:53 rabit Exp $ +--- $Id: index.php,v 1.10 2004/09/03 22:43:17 joko Exp $ ------------------------------------------------------------------------------*/ include('inc/common/common.php.inc'); +common_benchmark_addstep('start'); + //------------------------------------------------------------------------------ //- Web authorisation: @@ -26,6 +28,8 @@ } +common_benchmark_addstep('authorisation test'); + //------------------------------------------------------------------------------ //- GET/POST variable encapsulation: @@ -35,6 +39,15 @@ if(isset($_GET['li'])) $common_sessiondata['userdata']['language_id'] = intval($_GET['li']); + +//------------------------------------------------------------------------------ +//- User Agent <-> Output Type: +$common['client']['session_enabled'] = 1; +if ($_SERVER['HTTP_USER_AGENT'] == 'M3Gate/1.2') { + $common['client']['session_enabled'] = 0; + $request_outputtype = 'wml'; +} + //------------------------------------------------------------------------------ //- Variable defaults: @@ -53,13 +66,17 @@ } -//------------------------------------------------------------------------------ +common_benchmark_addstep('GET/POST variable processing'); +//------------------------------------------------------------------------------ // Dispatching the output content type: switch($request_outputtype) { - case 'xml': // XML output + case 'wml': // WML output + + include($common['site']['incroot'] . 'otdef/otd_wml1.php.inc'); + common_benchmark_addstep('OTD_WML1 included'); break; @@ -69,11 +86,16 @@ default: - // Generate a HTML page: - common_page($request_contentkey, $language_id); + include($common['site']['incroot'] . 'otdef/otd_html1.php.inc'); + common_benchmark_addstep('OTD_HTML1 included'); } //------------------------------------------------------------------------------ +// Render output: + +if(isset($otd_render)) $otd_render($request_contentkey, $language_id); + +//------------------------------------------------------------------------------ ?>