2002-09-16 17:19:24 +08:00
|
|
|
<?php
|
2002-09-24 06:08:50 +08:00
|
|
|
//
|
2002-12-10 21:23:22 +08:00
|
|
|
// ZoneMinder main web interface file, $Date$, $Revision$
|
2003-01-12 02:22:27 +08:00
|
|
|
// Copyright (C) 2003 Philip Coombes
|
2002-09-24 06:08:50 +08:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; either version 2
|
|
|
|
// of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
//
|
|
|
|
|
2004-10-13 17:38:54 +08:00
|
|
|
import_request_variables( "EGPCS" );
|
2004-09-24 15:51:26 +08:00
|
|
|
error_reporting (E_ALL ^ E_NOTICE);
|
2004-01-08 18:09:35 +08:00
|
|
|
|
2004-10-13 17:38:54 +08:00
|
|
|
$debug = false;
|
|
|
|
if ( $debug )
|
|
|
|
{
|
|
|
|
// Use these for debugging, though not both at once!
|
|
|
|
phpinfo( INFO_VARIABLES );
|
|
|
|
//error_reporting( E_ALL );
|
|
|
|
}
|
|
|
|
|
2004-12-29 02:20:11 +08:00
|
|
|
// Useful debugging lines for mobile devices
|
|
|
|
//ob_start();
|
|
|
|
//phpinfo( INFO_VARIABLES );
|
|
|
|
//$fp = fopen( "/tmp/env.html", "w" );
|
|
|
|
//fwrite( $fp, ob_get_contents() );
|
|
|
|
//fclose( $fp );
|
|
|
|
//ob_end_clean();
|
|
|
|
|
2002-10-11 17:44:41 +08:00
|
|
|
if ( !isset($PHP_SELF) )
|
2002-09-23 23:56:46 +08:00
|
|
|
{
|
2002-10-11 17:44:41 +08:00
|
|
|
$PHP_SELF = $HTTP_SERVER_VARS['PHP_SELF'];
|
2002-09-23 23:56:46 +08:00
|
|
|
}
|
|
|
|
|
2004-12-29 02:20:11 +08:00
|
|
|
if ( empty($format) )
|
|
|
|
{
|
|
|
|
$wurfl_file = "wurfl/wurfl_class.php";
|
|
|
|
if ( file_exists( $wurfl_file ) )
|
|
|
|
{
|
|
|
|
require_once( $wurfl_file );
|
|
|
|
$wurfl = new wurfl_class( $wurfl, $wurfl_agents );
|
|
|
|
// Set the user agent
|
|
|
|
$wurfl->GetDeviceCapabilitiesFromAgent($HTTP_SERVER_VARS['HTTP_USER_AGENT']);
|
|
|
|
|
|
|
|
//print_r( $wurfl->wurfl_agent );
|
|
|
|
if ( $wurfl->wurfl_agent )
|
|
|
|
{
|
|
|
|
if ( $wurfl->getDeviceCapability( 'html_wi_oma_xhtmlmp_1_0' ) )
|
|
|
|
{
|
|
|
|
$format = "xhtml";
|
|
|
|
$cookies = false;
|
|
|
|
$device['width'] = $wurfl->getDeviceCapability( 'resolution_width' );
|
|
|
|
$device['height'] = $wurfl->getDeviceCapability( 'resolution_height' );
|
|
|
|
}
|
|
|
|
elseif ( $wurfl->getDeviceCapability( 'wml_1_3' ) )
|
|
|
|
{
|
|
|
|
$format = "wml";
|
|
|
|
$cookies = false;
|
|
|
|
$device['width'] = $wurfl->getDeviceCapability( 'resolution_width' );
|
|
|
|
$device['height'] = $wurfl->getDeviceCapability( 'resolution_height' );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$format = "html";
|
|
|
|
$cookies = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// This is an example of using fixed device strings to just match your phone etc
|
|
|
|
$devices = array(
|
|
|
|
array( 'name'=>"Motorola V600", 'ua_match'=>"MOT-V600", 'format'=>"xhtml", 'cookies'=>false, 'width'=>176, 'height'=>220 ),
|
|
|
|
array( 'name'=>"Motorola V600", 'ua_match'=>"MOT-A820", 'format'=>"xhtml", 'cookies'=>false, 'width'=>176, 'height'=>220 )
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach ( $devices as $device )
|
|
|
|
{
|
|
|
|
if ( preg_match( '/'.$device['ua_match'].'/', $HTTP_SERVER_VARS['HTTP_USER_AGENT'] ) )
|
|
|
|
{
|
|
|
|
$format = $device['format'];
|
|
|
|
$cookies = $device['cookies'];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( empty($format) )
|
|
|
|
{
|
|
|
|
$accepts_wml = preg_match( '/text\/vnd.wap.wml/i', $HTTP_SERVER_VARS['HTTP_ACCEPT'] );
|
|
|
|
$accepts_html = preg_match( '/text\/html/i', $HTTP_SERVER_VARS['HTTP_ACCEPT'] );
|
|
|
|
|
|
|
|
if ( $accepts_wml && !$accepts_html )
|
|
|
|
{
|
|
|
|
$format = "wml";
|
|
|
|
$cookies = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$format = "html";
|
|
|
|
$cookies = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-09-23 23:56:46 +08:00
|
|
|
|
2004-12-29 02:20:11 +08:00
|
|
|
ini_set( "session.name", "ZMSESSID" );
|
|
|
|
if ( $cookies )
|
2002-09-23 23:56:46 +08:00
|
|
|
{
|
2004-12-29 02:20:11 +08:00
|
|
|
ini_set( "session.use_cookies", "1" );
|
|
|
|
ini_set( "session.use_trans_sid", "0" );
|
|
|
|
ini_set( "url_rewriter.tags", "" );
|
2002-09-24 00:37:41 +08:00
|
|
|
}
|
2002-10-17 06:11:06 +08:00
|
|
|
else
|
2002-09-20 23:29:41 +08:00
|
|
|
{
|
2004-12-29 02:20:11 +08:00
|
|
|
//ini_set( "session.auto_start", "1" );
|
|
|
|
ini_set( "session.use_cookies", "0" );
|
|
|
|
ini_set( "session.use_trans_sid", "1" );
|
|
|
|
|
|
|
|
if ( $format == "xhtml" )
|
|
|
|
{
|
|
|
|
ini_set( "arg_separator.output", "&" );
|
|
|
|
ini_set( "url_rewriter.tags", "a=href,area=href,frame=src,input=src,fieldset=" );
|
|
|
|
}
|
|
|
|
elseif ( $format == "wml" )
|
|
|
|
{
|
|
|
|
ini_set( "arg_separator.output", "&" );
|
|
|
|
ini_set( "url_rewriter.tags", "a=href,area=href,frame=src,input=src,go=href,card=ontimer" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !$HTTP_SESSION_VARS['format'] )
|
|
|
|
{
|
|
|
|
$HTTP_SESSION_VARS['format'] = $format;
|
|
|
|
$HTTP_SESSION_VARS['cookies'] = $cookies;
|
|
|
|
$HTTP_SESSION_VARS['device'] = $device;
|
2002-09-20 23:29:41 +08:00
|
|
|
}
|
2004-12-29 02:20:11 +08:00
|
|
|
|
|
|
|
require_once( "zm_$format.php" );
|
|
|
|
|
2002-09-20 23:29:41 +08:00
|
|
|
?>
|