Merged in tristate config.
git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@777 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
parent
7bd5f57cfc
commit
79ddb94748
|
@ -216,9 +216,19 @@ function isNetscape()
|
|||
return( $browser == "mozilla" );
|
||||
}
|
||||
|
||||
function canStreamNative()
|
||||
{
|
||||
return( ZM_CAN_STREAM == "yes" || ( ZM_CAN_STREAM == "auto" && isNetscape() ) );
|
||||
}
|
||||
|
||||
function canStreamApplet()
|
||||
{
|
||||
return( (ZM_OPT_CAMBOZOLA && file_exists( ZM_PATH_WEB.'/'.ZM_PATH_CAMBOZOLA )) );
|
||||
}
|
||||
|
||||
function canStream()
|
||||
{
|
||||
return( ZM_CAN_STREAM || isNetscape() || (ZM_OPT_CAMBOZOLA && file_exists( ZM_PATH_WEB.'/'.ZM_PATH_CAMBOZOLA )) );
|
||||
return( canStreamNative() | canStreamApplet() );
|
||||
}
|
||||
|
||||
function fixDevices()
|
||||
|
|
|
@ -101,7 +101,7 @@ window.setTimeout( "window.location.replace( '<?= "$PHP_SELF?view=cycle&mid=$nex
|
|||
if ( $mode == "stream" )
|
||||
{
|
||||
$stream_src = ZM_PATH_ZMS."?monitor=".$monitor['Id']."&idle=".STREAM_IDLE_DELAY."&refresh=".STREAM_FRAME_DELAY."&ttl=".REFRESH_CYCLE;
|
||||
if ( isNetscape() )
|
||||
if ( canStreamNative() )
|
||||
{
|
||||
?>
|
||||
<tr><td colspan="3" align="center"><a href="javascript: newWindow( '<?= $PHP_SELF ?>?view=watch&mid=<?= $monitor['Id'] ?>', 'zmWatch<?= $monitor['Id'] ?>', <?= $monitor['Width']+$jws['watch']['w'] ?>, <?= $monitor['Height']+$jws['watch']['h'] ?> );"><img src="<?= $stream_src ?>" border="0" width="<?= $monitor['Width'] ?>" height="<?= $monitor['Height'] ?>"></a></td></tr>
|
||||
|
|
|
@ -234,7 +234,7 @@ if ( $mode == "still" && $paged && !empty($page) )
|
|||
if ( $mode == "stream" )
|
||||
{
|
||||
$stream_src = ZM_PATH_ZMS."?path=".ZM_PATH_WEB."&event=$eid&rate=$rate&scale=$scale";
|
||||
if ( isNetscape() )
|
||||
if ( canStreamNative() )
|
||||
{
|
||||
?>
|
||||
<tr><td colspan="6" align="center" valign="middle"><img src="<?= $stream_src ?>" border="0" width="<?= reScale( $event['Width'], $scale ) ?>" height="<?= reScale( $event['Height'], $scale ) ?>"></td></tr>
|
||||
|
|
|
@ -83,7 +83,7 @@ window.setTimeout( "window.location.reload(true)", <?= REFRESH_IMAGE*1000 ?> );
|
|||
if ( $mode == "stream" )
|
||||
{
|
||||
$stream_src = ZM_PATH_ZMS."?monitor=".$monitor['Id']."&idle=".STREAM_IDLE_DELAY."&refresh=".STREAM_FRAME_DELAY;
|
||||
if ( isNetscape() )
|
||||
if ( canStreamNative() )
|
||||
{
|
||||
?>
|
||||
<tr><td colspan="2" align="center"><img src="<?= $stream_src ?>" border="0" width="<?= $monitor['Width'] ?>" height="<?= $monitor['Height'] ?>"></td></tr>
|
||||
|
|
|
@ -111,7 +111,7 @@ window.setTimeout( "window.location.reload(true)", <?= REFRESH_IMAGE*1000 ?> );
|
|||
if ( $mode == "stream" )
|
||||
{
|
||||
$stream_src = ZM_PATH_ZMS."?monitor=".$monitor['Id']."&idle=".STREAM_IDLE_DELAY."&refresh=".STREAM_FRAME_DELAY."&scale=$scale";
|
||||
if ( isNetscape() )
|
||||
if ( canStreamNative() )
|
||||
{
|
||||
?>
|
||||
<tr><td colspan="5" align="center"><img src="<?= $stream_src ?>" border="0" width="<?= reScale( $monitor['Width'], $scale ) ?>" height="<?= reScale( $monitor['Height'], $scale ) ?>"></td></tr>
|
||||
|
|
Loading…
Reference in New Issue