~ubuntu-branches/ubuntu/saucy/zoneminder/saucy

« back to all changes in this revision

Viewing changes to web/skins/classic/views/js/monitor.js.php

  • Committer: Package Import Robot
  • Author(s): Vagrant Cascadian
  • Date: 2012-01-16 11:58:05 UTC
  • mfrom: (15.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20120116115805-7wuujfldrv2le04e
Tags: 1.25.0-1
* Fix typo in libv4l1-videodev.h patch that caused v4l1 support to be 
  dropped.
* Fail to build if version in postinst doesn't match upstream version.
* Add Build-Depends: libavdevice-dev to fix MPEG streaming (Closes: #515558).
* debian/rules: Convert to using debhelper overrides.
* Set debian/compat to 7.
* Simplify debian/watch file. 
* Refresh debian/patches/use_libjs-mootools.
* Refresh debian/patches/libv4l1-videodev.h. 
* Remove dependencies on php4 and related packages.
* Remove build-dependencies on libmysqlclient14-dev and 
  libmysqlclient15-dev. 
* Update Build-Depends to use libjpeg-dev instead of libjpeg62-dev 
  (Closes: #647114). 
* Add patch to fix build by testing for C headers rather than C++ headers. 
  Thanks to Ryan Niebur. (Closes: #654230)
* Add a patch to fix build problems caused by API changes in libav 0.8.
  Thanks again to Ryan Niebur. (Closes: #654230)

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
if ( ZM_OPT_CONTROL )
6
6
{
7
7
?>
8
 
var controlOptions = new Hash();
 
8
var controlOptions = new Object();
9
9
<?php
10
10
    global $controlTypes;
11
11
    $controlTypes = array( ''=>$SLANG['None'] );
42
42
if ( empty($_REQUEST['mid']) )
43
43
{
44
44
?>
45
 
var monitorNames = new Hash();
 
45
var monitorNames = new Object();
46
46
<?php
47
47
    foreach ( dbFetchAll( "select Name from Monitors order by Name asc", "Name" ) as $name )
48
48
    {