diff --git a/CONTROL/control b/CONTROL/control index aa9c27c..af91e95 100644 --- a/CONTROL/control +++ b/CONTROL/control @@ -1,9 +1,9 @@ Package: webif Priority: optional Section: web -Version: 0.9.12-5 +Version: 0.9.12-6 Architecture: mipsel Maintainer: af123@hummypkg.org.uk -Depends: webif-channelicons(>=1.0.1),mongoose(>=3.0-7),jim(>=0.73-1),jim-oo,jim-sqlite3(>=0.73),jim-cgi(>=0.5),service-control(>=1.2),busybox(>=1.19.3-1),lsof,epg(>=1.0.9),hmt(>=1.1.6),ssmtp,anacron,trm,openssl-command,nicesplice,id3v2,file,rsvsync(>=1.0.2),webif-charts(>=1.2),stripts(>=1.1.0) +Depends: webif-channelicons(>=1.0.2),mongoose(>=3.0-7),jim(>=0.73-1),jim-oo,jim-sqlite3(>=0.73),jim-cgi(>=0.5),service-control(>=1.2),busybox(>=1.19.3-1),lsof,epg(>=1.0.9),hmt(>=1.1.6),ssmtp,anacron,trm,openssl-command,nicesplice,id3v2,file,rsvsync(>=1.0.2),webif-charts(>=1.2),stripts(>=1.1.2) Suggests: ffmpeg,webif-iphone Description: An evolving web interface for the Humax. diff --git a/var/mongoose/cgi-bin/browse/browse.js b/var/mongoose/cgi-bin/browse/browse.js index 48af8fe..2269f24 100755 --- a/var/mongoose/cgi-bin/browse/browse.js +++ b/var/mongoose/cgi-bin/browse/browse.js @@ -577,7 +577,7 @@ var dmenuclick = function(action, el, pos) disableall(); - window.location = '/cgi-bin/browse/play.jim?' + + window.location = '/play/play.jim?' + 'dir=' + encodeURIComponent(dir) + '&file=' + file; } diff --git a/var/mongoose/cgi-bin/status.jim b/var/mongoose/cgi-bin/status.jim index 8e0d095..6056441 100755 --- a/var/mongoose/cgi-bin/status.jim +++ b/var/mongoose/cgi-bin/status.jim @@ -42,7 +42,7 @@ set output {} set data [get_data] if {[llength $data]} { - sleep 2 + sleep 3 set ndata [get_data] foreach name [array names ndata] { if {![dict exists $seen $name]} { set seen($name) 0 } diff --git a/var/mongoose/html/css/vlc.css b/var/mongoose/html/css/vlc.css deleted file mode 100644 index 982fa46..0000000 --- a/var/mongoose/html/css/vlc.css +++ /dev/null @@ -1,60 +0,0 @@ -.x-vlc-slider { - background:#C7F2FF; - text-align:center; - - } - .x-vlc-slider-thumb { - background:#4EAECC; - width:3px; -} -.x-vlc-main { - -} -.x-vlc-toolbar { - - color:black; - -} - .x-vlc-toolbar * { - vertical-align:top; - - } -.x-vlc-btn { - - padding-right:10px; - - -} -.x-vlc-btn-fullscreen { - background:url(/img/vlc/fullscreen2.gif) no-repeat; -} - .x-vlc-btn-plus { - background:url(/img/vlc/plus2.gif) no-repeat; -} -.x-vlc-btn-moins { - background:url(/img/vlc/moins2.gif) no-repeat; -} -.x-vlc-btn:hover { - color:red; - -} -.x-vlc-btn-play { - background:url(/img/vlc/play2.gif) no-repeat; -} -.x-vlc-btn-stop { - background:url(/img/vlc/stop2.gif) no-repeat; - -} -.x-vlc-btn-pause { - background:url(/img/vlc/pause2.gif) no-repeat; - -} -.x-vlc-timer { - width:100px; - font-size:12px; - vertical-align:top; - text-align:center -} -.x-vlc-about { - font-size:10px; -} diff --git a/var/mongoose/html/js/jquery.flash.js b/var/mongoose/html/js/jquery.flash.js new file mode 100644 index 0000000..e47cc2e --- /dev/null +++ b/var/mongoose/html/js/jquery.flash.js @@ -0,0 +1,288 @@ +/** + * Flash (http://jquery.lukelutman.com/plugins/flash) + * A jQuery plugin for embedding Flash movies. + * + * Version 1.0 + * November 9th, 2006 + * + * Copyright (c) 2006 Luke Lutman (http://www.lukelutman.com) + * Dual licensed under the MIT and GPL licenses. + * http://www.opensource.org/licenses/mit-license.php + * http://www.opensource.org/licenses/gpl-license.php + * + * Inspired by: + * SWFObject (http://blog.deconcept.com/swfobject/) + * UFO (http://www.bobbyvandersluis.com/ufo/) + * sIFR (http://www.mikeindustries.com/sifr/) + * + * IMPORTANT: + * The packed version of jQuery breaks ActiveX control + * activation in Internet Explorer. Use JSMin to minifiy + * jQuery (see: http://jquery.lukelutman.com/plugins/flash#activex). + * + **/ +;(function(){ + +var $$; + +/** + * + * @desc Replace matching elements with a flash movie. + * @author Luke Lutman + * @version 1.0.1 + * + * @name flash + * @param Hash htmlOptions Options for the embed/object tag. + * @param Hash pluginOptions Options for detecting/updating the Flash plugin (optional). + * @param Function replace Custom block called for each matched element if flash is installed (optional). + * @param Function update Custom block called for each matched if flash isn't installed (optional). + * @type jQuery + * + * @cat plugins/flash + * + * @example $('#hello').flash({ src: 'hello.swf' }); + * @desc Embed a Flash movie. + * + * @example $('#hello').flash({ src: 'hello.swf' }, { version: 8 }); + * @desc Embed a Flash 8 movie. + * + * @example $('#hello').flash({ src: 'hello.swf' }, { expressInstall: true }); + * @desc Embed a Flash movie using Express Install if flash isn't installed. + * + * @example $('#hello').flash({ src: 'hello.swf' }, { update: false }); + * @desc Embed a Flash movie, don't show an update message if Flash isn't installed. + * +**/ +$$ = jQuery.fn.flash = function(htmlOptions, pluginOptions, replace, update) { + + // Set the default block. + var block = replace || $$.replace; + + // Merge the default and passed plugin options. + pluginOptions = $$.copy($$.pluginOptions, pluginOptions); + + // Detect Flash. + if(!$$.hasFlash(pluginOptions.version)) { + // Use Express Install (if specified and Flash plugin 6,0,65 or higher is installed). + if(pluginOptions.expressInstall && $$.hasFlash(6,0,65)) { + // Add the necessary flashvars (merged later). + var expressInstallOptions = { + flashvars: { + MMredirectURL: location, + MMplayerType: 'PlugIn', + MMdoctitle: jQuery('title').text() + } + }; + // Ask the user to update (if specified). + } else if (pluginOptions.update) { + // Change the block to insert the update message instead of the flash movie. + block = update || $$.update; + // Fail + } else { + // The required version of flash isn't installed. + // Express Install is turned off, or flash 6,0,65 isn't installed. + // Update is turned off. + // Return without doing anything. + return this; + } + } + + // Merge the default, express install and passed html options. + htmlOptions = $$.copy($$.htmlOptions, expressInstallOptions, htmlOptions); + + // Invoke $block (with a copy of the merged html options) for each element. + return this.each(function(){ + block.call(this, $$.copy(htmlOptions)); + }); + +}; +/** + * + * @name flash.copy + * @desc Copy an arbitrary number of objects into a new object. + * @type Object + * + * @example $$.copy({ foo: 1 }, { bar: 2 }); + * @result { foo: 1, bar: 2 }; + * +**/ +$$.copy = function() { + var options = {}, flashvars = {}; + for(var i = 0; i < arguments.length; i++) { + var arg = arguments[i]; + if(arg == undefined) continue; + jQuery.extend(options, arg); + // don't clobber one flash vars object with another + // merge them instead + if(arg.flashvars == undefined) continue; + jQuery.extend(flashvars, arg.flashvars); + } + options.flashvars = flashvars; + return options; +}; +/* + * @name flash.hasFlash + * @desc Check if a specific version of the Flash plugin is installed + * @type Boolean + * +**/ +$$.hasFlash = function() { + // look for a flag in the query string to bypass flash detection + if(/hasFlash\=true/.test(location)) return true; + if(/hasFlash\=false/.test(location)) return false; + var pv = $$.hasFlash.playerVersion().match(/\d+/g); + var rv = String([arguments[0], arguments[1], arguments[2]]).match(/\d+/g) || String($$.pluginOptions.version).match(/\d+/g); + for(var i = 0; i < 3; i++) { + pv[i] = parseInt(pv[i] || 0); + rv[i] = parseInt(rv[i] || 0); + // player is less than required + if(pv[i] < rv[i]) return false; + // player is greater than required + if(pv[i] > rv[i]) return true; + } + // major version, minor version and revision match exactly + return true; +}; +/** + * + * @name flash.hasFlash.playerVersion + * @desc Get the version of the installed Flash plugin. + * @type String + * +**/ +$$.hasFlash.playerVersion = function() { + // ie + try { + try { + // avoid fp6 minor version lookup issues + // see: http://blog.deconcept.com/2006/01/11/getvariable-setvariable-crash-internet-explorer-flash-6/ + var axo = new ActiveXObject('ShockwaveFlash.ShockwaveFlash.6'); + try { axo.AllowScriptAccess = 'always'; } + catch(e) { return '6,0,0'; } + } catch(e) {} + return new ActiveXObject('ShockwaveFlash.ShockwaveFlash').GetVariable('$version').replace(/\D+/g, ',').match(/^,?(.+),?$/)[1]; + // other browsers + } catch(e) { + try { + if(navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin){ + return (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]).description.replace(/\D+/g, ",").match(/^,?(.+),?$/)[1]; + } + } catch(e) {} + } + return '0,0,0'; +}; +/** + * + * @name flash.htmlOptions + * @desc The default set of options for the object or embed tag. + * +**/ +$$.htmlOptions = { + height: 240, + flashvars: {}, + pluginspage: 'http://www.adobe.com/go/getflashplayer', + src: '#', + type: 'application/x-shockwave-flash', + width: 320 +}; +/** + * + * @name flash.pluginOptions + * @desc The default set of options for checking/updating the flash Plugin. + * +**/ +$$.pluginOptions = { + expressInstall: false, + update: true, + version: '6.0.65' +}; +/** + * + * @name flash.replace + * @desc The default method for replacing an element with a Flash movie. + * +**/ +$$.replace = function(htmlOptions) { + this.innerHTML = '
This content requires the Flash Player. Download Flash Player. Already have Flash Player? Click here.
'; + this.innerHTML = ''+this.innerHTML+''; + jQuery(this) + .addClass('flash-update') + .prepend(msg); +}; +/** + * + * @desc Convert a hash of html options to a string of attributes, using Function.apply(). + * @example toAttributeString.apply(htmlOptions) + * @result foo="bar" foo="bar" + * +**/ +function toAttributeString() { + var s = ''; + for(var key in this) + if(typeof this[key] != 'function') + s += key+'="'+this[key]+'" '; + return s; +}; +/** + * + * @desc Convert a hash of flashvars to a url-encoded string, using Function.apply(). + * @example toFlashvarsString.apply(flashvarsObject) + * @result foo=bar&foo=bar + * +**/ +function toFlashvarsString() { + var s = ''; + for(var key in this) + if(typeof this[key] != 'function') + s += key+'='+encodeURIComponent(this[key])+'&'; + return s.replace(/&$/, ''); +}; +/** + * + * @name flash.transform + * @desc Transform a set of html options into an embed tag. + * @type String + * + * @example $$.transform(htmlOptions) + * @result + * + * Note: The embed tag is NOT standards-compliant, but it + * works in all current browsers. flash.transform can be + * overwritten with a custom function to generate more + * standards-compliant markup. + * +**/ +$$.transform = function(htmlOptions) { + htmlOptions.toString = toAttributeString; + if(htmlOptions.flashvars) htmlOptions.flashvars.toString = toFlashvarsString; + return ''; +}; + +/** + * + * Flash Player 9 Fix (http://blog.deconcept.com/2006/07/28/swfobject-143-released/) + * +**/ +if (window.attachEvent) { + window.attachEvent("onbeforeunload", function(){ + __flash_unloadHandler = function() {}; + __flash_savedUnloadHandler = function() {}; + }); +} + +})(); \ No newline at end of file diff --git a/var/mongoose/html/play/img/old/fforward.png b/var/mongoose/html/play/img/old/fforward.png new file mode 100644 index 0000000..3d78f90 Binary files /dev/null and b/var/mongoose/html/play/img/old/fforward.png differ diff --git a/var/mongoose/html/img/vlc/fullscreen.gif b/var/mongoose/html/play/img/old/fullscreen.gif similarity index 100% rename from var/mongoose/html/img/vlc/fullscreen.gif rename to var/mongoose/html/play/img/old/fullscreen.gif diff --git a/var/mongoose/html/img/vlc/fullscreen2.gif b/var/mongoose/html/play/img/old/fullscreen2.gif similarity index 100% rename from var/mongoose/html/img/vlc/fullscreen2.gif rename to var/mongoose/html/play/img/old/fullscreen2.gif diff --git a/var/mongoose/html/img/vlc/idle2.gif b/var/mongoose/html/play/img/old/idle2.gif similarity index 100% rename from var/mongoose/html/img/vlc/idle2.gif rename to var/mongoose/html/play/img/old/idle2.gif diff --git a/var/mongoose/html/img/vlc/increase_bg.gif b/var/mongoose/html/play/img/old/increase_bg.gif similarity index 100% rename from var/mongoose/html/img/vlc/increase_bg.gif rename to var/mongoose/html/play/img/old/increase_bg.gif diff --git a/var/mongoose/html/img/vlc/increase_knob.gif b/var/mongoose/html/play/img/old/increase_knob.gif similarity index 100% rename from var/mongoose/html/img/vlc/increase_knob.gif rename to var/mongoose/html/play/img/old/increase_knob.gif diff --git a/var/mongoose/html/img/vlc/info.png b/var/mongoose/html/play/img/old/info.png similarity index 100% rename from var/mongoose/html/img/vlc/info.png rename to var/mongoose/html/play/img/old/info.png diff --git a/var/mongoose/html/img/vlc/moins.gif b/var/mongoose/html/play/img/old/moins.gif similarity index 100% rename from var/mongoose/html/img/vlc/moins.gif rename to var/mongoose/html/play/img/old/moins.gif diff --git a/var/mongoose/html/img/vlc/moins2.gif b/var/mongoose/html/play/img/old/moins2.gif similarity index 100% rename from var/mongoose/html/img/vlc/moins2.gif rename to var/mongoose/html/play/img/old/moins2.gif diff --git a/var/mongoose/html/img/vlc/options.png b/var/mongoose/html/play/img/old/options.png similarity index 100% rename from var/mongoose/html/img/vlc/options.png rename to var/mongoose/html/play/img/old/options.png diff --git a/var/mongoose/html/img/vlc/pause2.gif b/var/mongoose/html/play/img/old/pause2.gif similarity index 100% rename from var/mongoose/html/img/vlc/pause2.gif rename to var/mongoose/html/play/img/old/pause2.gif diff --git a/var/mongoose/html/img/vlc/play2.gif b/var/mongoose/html/play/img/old/play2.gif similarity index 100% rename from var/mongoose/html/img/vlc/play2.gif rename to var/mongoose/html/play/img/old/play2.gif diff --git a/var/mongoose/html/img/vlc/player_next.png b/var/mongoose/html/play/img/old/player_next.png similarity index 100% rename from var/mongoose/html/img/vlc/player_next.png rename to var/mongoose/html/play/img/old/player_next.png diff --git a/var/mongoose/html/img/vlc/player_pause.png b/var/mongoose/html/play/img/old/player_pause.png similarity index 100% rename from var/mongoose/html/img/vlc/player_pause.png rename to var/mongoose/html/play/img/old/player_pause.png diff --git a/var/mongoose/html/img/vlc/player_play.png b/var/mongoose/html/play/img/old/player_play.png similarity index 100% rename from var/mongoose/html/img/vlc/player_play.png rename to var/mongoose/html/play/img/old/player_play.png diff --git a/var/mongoose/html/img/vlc/player_prev.png b/var/mongoose/html/play/img/old/player_prev.png similarity index 100% rename from var/mongoose/html/img/vlc/player_prev.png rename to var/mongoose/html/play/img/old/player_prev.png diff --git a/var/mongoose/html/img/vlc/player_stop.png b/var/mongoose/html/play/img/old/player_stop.png similarity index 100% rename from var/mongoose/html/img/vlc/player_stop.png rename to var/mongoose/html/play/img/old/player_stop.png diff --git a/var/mongoose/html/img/vlc/plus.gif b/var/mongoose/html/play/img/old/plus.gif similarity index 100% rename from var/mongoose/html/img/vlc/plus.gif rename to var/mongoose/html/play/img/old/plus.gif diff --git a/var/mongoose/html/img/vlc/plus2.gif b/var/mongoose/html/play/img/old/plus2.gif similarity index 100% rename from var/mongoose/html/img/vlc/plus2.gif rename to var/mongoose/html/play/img/old/plus2.gif diff --git a/var/mongoose/html/play/img/old/rewind.png b/var/mongoose/html/play/img/old/rewind.png new file mode 100644 index 0000000..aa35b6b Binary files /dev/null and b/var/mongoose/html/play/img/old/rewind.png differ diff --git a/var/mongoose/html/img/vlc/slider_bg.gif b/var/mongoose/html/play/img/old/slider_bg.gif similarity index 100% rename from var/mongoose/html/img/vlc/slider_bg.gif rename to var/mongoose/html/play/img/old/slider_bg.gif diff --git a/var/mongoose/html/img/vlc/sound.png b/var/mongoose/html/play/img/old/sound.png similarity index 100% rename from var/mongoose/html/img/vlc/sound.png rename to var/mongoose/html/play/img/old/sound.png diff --git a/var/mongoose/html/img/vlc/sound_mute.png b/var/mongoose/html/play/img/old/sound_mute.png similarity index 100% rename from var/mongoose/html/img/vlc/sound_mute.png rename to var/mongoose/html/play/img/old/sound_mute.png diff --git a/var/mongoose/html/img/vlc/stop2.gif b/var/mongoose/html/play/img/old/stop2.gif similarity index 100% rename from var/mongoose/html/img/vlc/stop2.gif rename to var/mongoose/html/play/img/old/stop2.gif diff --git a/var/mongoose/html/play/img/old/subtitles.png b/var/mongoose/html/play/img/old/subtitles.png new file mode 100644 index 0000000..ffa5d35 Binary files /dev/null and b/var/mongoose/html/play/img/old/subtitles.png differ diff --git a/var/mongoose/html/img/vlc/uri.png b/var/mongoose/html/play/img/old/uri.png similarity index 100% rename from var/mongoose/html/img/vlc/uri.png rename to var/mongoose/html/play/img/old/uri.png diff --git a/var/mongoose/html/play/img/playlist.png b/var/mongoose/html/play/img/playlist.png new file mode 100644 index 0000000..b29db5e Binary files /dev/null and b/var/mongoose/html/play/img/playlist.png differ diff --git a/var/mongoose/html/play/img/playlistclick.png b/var/mongoose/html/play/img/playlistclick.png new file mode 100644 index 0000000..3aa5f31 Binary files /dev/null and b/var/mongoose/html/play/img/playlistclick.png differ diff --git a/var/mongoose/html/play/img/playlistpress.png b/var/mongoose/html/play/img/playlistpress.png new file mode 100644 index 0000000..ffa5d35 Binary files /dev/null and b/var/mongoose/html/play/img/playlistpress.png differ diff --git a/var/mongoose/html/play/img/seekarrownovideoleft.png b/var/mongoose/html/play/img/seekarrownovideoleft.png new file mode 100644 index 0000000..aa35b6b Binary files /dev/null and b/var/mongoose/html/play/img/seekarrownovideoleft.png differ diff --git a/var/mongoose/html/play/img/seekarrownovideoright.png b/var/mongoose/html/play/img/seekarrownovideoright.png new file mode 100644 index 0000000..3d78f90 Binary files /dev/null and b/var/mongoose/html/play/img/seekarrownovideoright.png differ diff --git a/var/mongoose/html/play/img/vlccontrolbar.png b/var/mongoose/html/play/img/vlccontrolbar.png new file mode 100644 index 0000000..3b21f69 Binary files /dev/null and b/var/mongoose/html/play/img/vlccontrolbar.png differ diff --git a/var/mongoose/html/play/img/vlcfullscreenbutton.png b/var/mongoose/html/play/img/vlcfullscreenbutton.png new file mode 100644 index 0000000..736acf4 Binary files /dev/null and b/var/mongoose/html/play/img/vlcfullscreenbutton.png differ diff --git a/var/mongoose/html/play/img/vlcfullscreenbuttonclick.png b/var/mongoose/html/play/img/vlcfullscreenbuttonclick.png new file mode 100644 index 0000000..6495719 Binary files /dev/null and b/var/mongoose/html/play/img/vlcfullscreenbuttonclick.png differ diff --git a/var/mongoose/html/play/img/vlcfullscreenbuttonfalse.png b/var/mongoose/html/play/img/vlcfullscreenbuttonfalse.png new file mode 100644 index 0000000..ae43441 Binary files /dev/null and b/var/mongoose/html/play/img/vlcfullscreenbuttonfalse.png differ diff --git a/var/mongoose/html/play/img/vlcfullscreenbuttonpress.png b/var/mongoose/html/play/img/vlcfullscreenbuttonpress.png new file mode 100644 index 0000000..62a1254 Binary files /dev/null and b/var/mongoose/html/play/img/vlcfullscreenbuttonpress.png differ diff --git a/var/mongoose/html/play/img/vlcnextbutton.png b/var/mongoose/html/play/img/vlcnextbutton.png new file mode 100644 index 0000000..c0002eb Binary files /dev/null and b/var/mongoose/html/play/img/vlcnextbutton.png differ diff --git a/var/mongoose/html/play/img/vlcnextbuttonclick.png b/var/mongoose/html/play/img/vlcnextbuttonclick.png new file mode 100644 index 0000000..3dfa25a Binary files /dev/null and b/var/mongoose/html/play/img/vlcnextbuttonclick.png differ diff --git a/var/mongoose/html/play/img/vlcnextbuttonpress.png b/var/mongoose/html/play/img/vlcnextbuttonpress.png new file mode 100644 index 0000000..32dcc86 Binary files /dev/null and b/var/mongoose/html/play/img/vlcnextbuttonpress.png differ diff --git a/var/mongoose/html/play/img/vlcpausebutton.png b/var/mongoose/html/play/img/vlcpausebutton.png new file mode 100644 index 0000000..7916e4f Binary files /dev/null and b/var/mongoose/html/play/img/vlcpausebutton.png differ diff --git a/var/mongoose/html/play/img/vlcpausebuttonclick.png b/var/mongoose/html/play/img/vlcpausebuttonclick.png new file mode 100644 index 0000000..672d353 Binary files /dev/null and b/var/mongoose/html/play/img/vlcpausebuttonclick.png differ diff --git a/var/mongoose/html/play/img/vlcpausebuttonpress.png b/var/mongoose/html/play/img/vlcpausebuttonpress.png new file mode 100644 index 0000000..2efaf27 Binary files /dev/null and b/var/mongoose/html/play/img/vlcpausebuttonpress.png differ diff --git a/var/mongoose/html/play/img/vlcplaybutton.png b/var/mongoose/html/play/img/vlcplaybutton.png new file mode 100644 index 0000000..6382f8d Binary files /dev/null and b/var/mongoose/html/play/img/vlcplaybutton.png differ diff --git a/var/mongoose/html/play/img/vlcplaybuttonclick.png b/var/mongoose/html/play/img/vlcplaybuttonclick.png new file mode 100644 index 0000000..c2cee42 Binary files /dev/null and b/var/mongoose/html/play/img/vlcplaybuttonclick.png differ diff --git a/var/mongoose/html/play/img/vlcplaybuttonpress.png b/var/mongoose/html/play/img/vlcplaybuttonpress.png new file mode 100644 index 0000000..2f09b76 Binary files /dev/null and b/var/mongoose/html/play/img/vlcplaybuttonpress.png differ diff --git a/var/mongoose/html/play/img/vlcpreviousbutton.png b/var/mongoose/html/play/img/vlcpreviousbutton.png new file mode 100644 index 0000000..87b9162 Binary files /dev/null and b/var/mongoose/html/play/img/vlcpreviousbutton.png differ diff --git a/var/mongoose/html/play/img/vlcpreviousbuttonclick.png b/var/mongoose/html/play/img/vlcpreviousbuttonclick.png new file mode 100644 index 0000000..41ac0f4 Binary files /dev/null and b/var/mongoose/html/play/img/vlcpreviousbuttonclick.png differ diff --git a/var/mongoose/html/play/img/vlcpreviousbuttonpress.png b/var/mongoose/html/play/img/vlcpreviousbuttonpress.png new file mode 100644 index 0000000..a13df4e Binary files /dev/null and b/var/mongoose/html/play/img/vlcpreviousbuttonpress.png differ diff --git a/var/mongoose/html/play/img/vlcstopbutton.png b/var/mongoose/html/play/img/vlcstopbutton.png new file mode 100644 index 0000000..e479fa1 Binary files /dev/null and b/var/mongoose/html/play/img/vlcstopbutton.png differ diff --git a/var/mongoose/html/play/img/vlcstopbuttonclick.png b/var/mongoose/html/play/img/vlcstopbuttonclick.png new file mode 100644 index 0000000..507a8db Binary files /dev/null and b/var/mongoose/html/play/img/vlcstopbuttonclick.png differ diff --git a/var/mongoose/html/play/img/vlcstopbuttonpress.png b/var/mongoose/html/play/img/vlcstopbuttonpress.png new file mode 100644 index 0000000..47c2ba3 Binary files /dev/null and b/var/mongoose/html/play/img/vlcstopbuttonpress.png differ diff --git a/var/mongoose/html/play/img/vlcvolumeindicator0.png b/var/mongoose/html/play/img/vlcvolumeindicator0.png new file mode 100644 index 0000000..dfb191d Binary files /dev/null and b/var/mongoose/html/play/img/vlcvolumeindicator0.png differ diff --git a/var/mongoose/html/play/img/vlcvolumeindicator1.png b/var/mongoose/html/play/img/vlcvolumeindicator1.png new file mode 100644 index 0000000..9838062 Binary files /dev/null and b/var/mongoose/html/play/img/vlcvolumeindicator1.png differ diff --git a/var/mongoose/html/play/img/vlcvolumeindicator2.png b/var/mongoose/html/play/img/vlcvolumeindicator2.png new file mode 100644 index 0000000..b38074c Binary files /dev/null and b/var/mongoose/html/play/img/vlcvolumeindicator2.png differ diff --git a/var/mongoose/html/play/img/vlcvolumeindicator3.png b/var/mongoose/html/play/img/vlcvolumeindicator3.png new file mode 100644 index 0000000..ca088dc Binary files /dev/null and b/var/mongoose/html/play/img/vlcvolumeindicator3.png differ diff --git a/var/mongoose/html/play/img/vlcvolumeindicatormute.png b/var/mongoose/html/play/img/vlcvolumeindicatormute.png new file mode 100644 index 0000000..c379a50 Binary files /dev/null and b/var/mongoose/html/play/img/vlcvolumeindicatormute.png differ diff --git a/var/mongoose/html/play/img/volumebar100.png b/var/mongoose/html/play/img/volumebar100.png new file mode 100644 index 0000000..a672ee6 Binary files /dev/null and b/var/mongoose/html/play/img/volumebar100.png differ diff --git a/var/mongoose/html/play/img/volumebar150.png b/var/mongoose/html/play/img/volumebar150.png new file mode 100644 index 0000000..8a6bbd9 Binary files /dev/null and b/var/mongoose/html/play/img/volumebar150.png differ diff --git a/var/mongoose/html/play/img/volumebar50.png b/var/mongoose/html/play/img/volumebar50.png new file mode 100644 index 0000000..e91f625 Binary files /dev/null and b/var/mongoose/html/play/img/volumebar50.png differ diff --git a/var/mongoose/html/play/img/volumebarfull.png b/var/mongoose/html/play/img/volumebarfull.png new file mode 100644 index 0000000..9f66fc9 Binary files /dev/null and b/var/mongoose/html/play/img/volumebarfull.png differ diff --git a/var/mongoose/html/play/img/volumebarmute.png b/var/mongoose/html/play/img/volumebarmute.png new file mode 100644 index 0000000..2966977 Binary files /dev/null and b/var/mongoose/html/play/img/volumebarmute.png differ diff --git a/var/mongoose/cgi-bin/browse/play.jim b/var/mongoose/html/play/play.jim similarity index 83% rename from var/mongoose/cgi-bin/browse/play.jim rename to var/mongoose/html/play/play.jim index f6e346d..08cf54e 100755 --- a/var/mongoose/cgi-bin/browse/play.jim +++ b/var/mongoose/html/play/play.jim @@ -29,11 +29,12 @@ if {![$ts flag "ODEncrypted"]} { puts " $url +[$ts duration 1] " puts { - - + +