~ubuntu-branches/ubuntu/precise/zoneminder/precise

« back to all changes in this revision

Viewing changes to web/skins/mobile/views/event.php

  • Committer: Bazaar Package Importer
  • Author(s): Vagrant Cascadian, Peter Howard, Vagrant Cascadian
  • Date: 2011-07-24 16:44:30 UTC
  • mfrom: (15.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20110724164430-yibtwwjqlqb7hv1o
Tags: 1.24.4-1
[ Peter Howard ]
* Initial release of 1.24.4 (Closes: #634985).
  - Fix 32/64-bit type declarations (Closes: #614404).
* Update patches.

[ Vagrant Cascadian ]
* Add patch to fix FTBFS by using libv4l1-videodev.h from libv4l-dev.
  Thanks to Andreas Metzler for reporting the issue. 
  (Closes: #619813). 
* Document adding the www-data user to the video group in README.Debian.
  (Closes: #611324)
* Depend on libsys-mmap-perl to enable mapped memory support.
  (Closes: #607331)
* Update libjs-mootools patch to use -nc variants (Closes: #635075).
* Depend on javascript-common, to ensure that /javascript is available in 
  the web server.
* Set the upstream version in postinst at build time.
* Use dh-autoreconf to properly clean up autogenerated files during build.
* Add Vcs-HG to debian/control. 
* Add Build-Depends: libv4l-dev, libbz2-dev, dh-autoreconf, libsys-mmap-perl.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?php
2
2
//
3
 
// ZoneMinder web event view file, $Date: 2008-07-25 10:48:16 +0100 (Fri, 25 Jul 2008) $, $Revision: 2612 $
 
3
// ZoneMinder web event view file, $Date: 2010-02-23 09:12:12 +0000 (Tue, 23 Feb 2010) $, $Revision: 3031 $
4
4
// Copyright (C) 2001-2008 Philip Coombes
5
5
//
6
6
// This program is free software; you can redistribute it and/or
132
132
{
133
133
    $imageData = getImageSrc( $event, $frame, $scale );
134
134
?>
135
 
       <a href="?view=frame&amp;eid=<?= $_REQUEST['eid'] ?>&amp;fid=<?= $frame['FrameId'] ?>"><img src="<?= $imageData['thumbPath'] ?>" class="<?= $imageData['imageClass'] ?>" alt="<?= $frame['Type'] ?>/<?= $frame['Type']=='Alarm'?$frame['Score']:0 ?>"/></a>
 
135
       <a href="?view=frame&amp;eid=<?= $_REQUEST['eid'] ?>&amp;fid=<?= $frame['FrameId'] ?>"><img src="<?= viewImagePath( $imageData['thumbPath'] ) ?>" class="<?= $imageData['imageClass'] ?>" alt="<?= $frame['Type'] ?>/<?= $frame['Type']=='Alarm'?$frame['Score']:0 ?>"/></a>
136
136
<?php
137
137
}
138
138
?>