~ubuntu-branches/ubuntu/vivid/vlc/vivid

« back to all changes in this revision

Viewing changes to share/lua/http/dialogs/vlm

  • Committer: Package Import Robot
  • Author(s): Benjamin Drung
  • Date: 2012-02-13 01:34:02 UTC
  • mfrom: (1.1.44)
  • Revision ID: package-import@ubuntu.com-20120213013402-7utx6r7s9dg3r0pf
Tags: 2.0.0~unix-0ubuntu1
* New upstream release (Closes: #499381, #573064, #624027, LP: #455825,
  #573775, #695882, #705151, #708448, #738381, #743581, #747757, #817924,
  #931083).
* Remove dropped mozilla-plugin-vlc, vlc-plugin-ggi, and vlc-plugin-svgalib.
  The Mozilla browser plug-in is now provided by a separate source tarball.
* Add new plugins to and remove dropped plugins from vlc-nox.
* Add new and remove dropped build dependencies:
  + libbluray-dev (for Blu-ray support)
  + libresid-builder-dev
  + libsamplerate0-dev
  + libsidplay2-dev
  + lbspeexdsp-dev
  + libxcb-composite0-dev
  - libgtk2.0-dev
  - xulrunner-dev
* vlc-plugin-fluidsynth depends on fluid-soundfont-gm or
  musescore-soundfont-gm for having a sound font for playing MIDI files.
* Drop all patches (they were either backported or accepted by upstream).
* Update symbols for libvlc5.
* Install plugins.dat instead of running vlc-cache-gen in postinst.
* Update minimum version of build dependencies.
* Change Build-Dependency from libupnp3-dev to unversioned libupnp-dev.
  (Closes: #656831)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?vlc --[[
2
 
vim:syntax=html
3
 
<!--  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >
4
 
<  vlm: VLC media player web interface - VLM controler
5
 
< - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >
6
 
<  Copyright (C) 2005-2006 the VideoLAN team
7
 
<  $Id$
8
 
9
 
<  Authors: Antoine Cellerier <dionoea -at- videolan -dot- org>
10
 
11
 
<  This program is free software; you can redistribute it and/or modify
12
 
<  it under the terms of the GNU General Public License as published by
13
 
<  the Free Software Foundation; either version 2 of the License, or
14
 
<  (at your option) any later version.
15
 
16
 
<  This program is distributed in the hope that it will be useful,
17
 
<  but WITHOUT ANY WARRANTY; without even the implied warranty of
18
 
<  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
 
<  GNU General Public License for more details.
20
 
21
 
<  You should have received a copy of the GNU General Public License
22
 
<  along with this program; if not, write to the Free Software
23
 
<  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24
 
< - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
25
 
 
26
 
This dialog needs the following dialogs to be fully functional: input,
27
 
sout and vlmelements .
28
 
]]?>
29
 
 
30
 
<div id="vlm" class="dialog" >
31
 
  <div class="title">
32
 
    VLC media player - VLM interface
33
 
    <!--
34
 
    <button id="btn_toggle_text" onclick="toggle_btn_text();">
35
 
      <img src="images/help.png" alt="Help" />
36
 
      Help
37
 
    </button>
38
 
    -->
39
 
  </div>
40
 
  <div class="controls">
41
 
    <label for="vlm_command">VLM command:</label>
42
 
    <input type="text" id="vlm_command" size="60" onkeypress="if( event.keyCode == 13 ) vlm_send();" />
43
 
    <input type="button" value="Send" onclick="vlm_send();" />
44
 
    <br />
45
 
    <span id="vlm_error"></span>
46
 
    <br />
47
 
    <span id="vlm_helper_controls">
48
 
      <button id="btn_broadcast" onclick="hide_vlm_add();show('vlm_add_broadcast');update_vlm_add_broadcast();" onmouseover="button_over(this);" onmouseout="button_out(this);">
49
 
        Broadcast
50
 
      </button>
51
 
      <button id="btn_vod" onclick="hide_vlm_add();show('vlm_add_vod');update_vlm_add_vod();" onmouseover="button_over(this);" onmouseout="button_out(this);">
52
 
        Video on Demand
53
 
      </button>
54
 
      <button id="btn_schedule" onclick="hide_vlm_add();show('vlm_add_schedule');update_vlm_add_schedule();" onmouseover="button_over(this);" onmouseout="button_out(this);">
55
 
        Schedule
56
 
      </button>
57
 
      <button id="btn_other" onclick="hide_vlm_add();show('vlm_add_other');update_vlm_add_other();" onmouseover="button_over(this);" onmouseout="button_out(this);">
58
 
        Other
59
 
      </button>
60
 
    </span>
61
 
    <button id="btn_vlm_helper_toggle" onclick="toggle_show_vlm_helper();" onmouseover="button_over(this);" onmouseout="button_out(this);">
62
 
      Hide VLM helper
63
 
    </button>
64
 
  </div>
65
 
  <div id="vlm_helper" class="helper" >
66
 
    <div id="vlm_add_broadcast" style="display: block">
67
 
      New broadcast element
68
 
      <hr />
69
 
      <label for="vlm_broadcast_name">Name</label>
70
 
      <input type="text" id="vlm_broadcast_name" size="20" onchange="update_vlm_add_broadcast();" />
71
 
      <input type="checkbox" id="vlm_broadcast_enabled" onchange="update_vlm_add_broadcast();" />
72
 
      <label for="vlm_broadcast_enabled">Enable</label>
73
 
      <input type="checkbox" id="vlm_broadcast_loop" onchange="update_vlm_add_broadcast();" />
74
 
      <label for="vlm_broadcast_loop">Loop</label>
75
 
      <br/>
76
 
      <label for="vlm_broadcast_input">Input</label>
77
 
      <input type="text" id="vlm_broadcast_input" size="60" onblur="update_vlm_add_broadcast();" />
78
 
      <input type="button" value="Edit" onclick="vlm_input_edit('vlm_broadcast_input');" />
79
 
      <br/>
80
 
      <label for="vlm_broadcast_output">Output</label>
81
 
      <input type="text" id="vlm_broadcast_output" size="60" onblur="update_vlm_add_broadcast();" />
82
 
      <input type="button" value="Edit" onclick="vlm_output_edit('vlm_broadcast_output');" />
83
 
      <br/>
84
 
    </div>
85
 
    <div id="vlm_add_vod" style="display: none">
86
 
      New video on demand element
87
 
      <hr />
88
 
      <label for="vlm_vod_name">Name</label>
89
 
      <input type="text" id="vlm_vod_name" size="20" onchange="update_vlm_add_vod();" />
90
 
      <input type="checkbox" id="vlm_vod_enabled" onchange="update_vlm_add_vod();" />
91
 
      <label for="vlm_vod_enabled">Enable</label>
92
 
      <br/>
93
 
      <label for="vlm_vod_input">Input</label>
94
 
      <input type="text" id="vlm_vod_input" size="60" onblur="update_vlm_add_vod();" />
95
 
      <input type="button" value="Edit" onclick="vlm_input_edit('vlm_vod_input');" />
96
 
      <br/>
97
 
      <label for="vlm_vod_output">Output (leave empty unless you want to transcode)</label>
98
 
      <input type="text" id="vlm_vod_output" size="60" onblur="update_vlm_add_vod();" />
99
 
      <input type="button" value="Edit" onclick="vlm_output_edit('vlm_vod_output');" />
100
 
      <br/>
101
 
    </div>
102
 
    <div id="vlm_add_schedule" style="display: none">
103
 
      New schedule
104
 
      <hr />
105
 
      <label for="vlm_schedule_name">Name</label>
106
 
      <input type="text" id="vlm_schedule_name" size="20" onchange="update_vlm_add_schedule();" />
107
 
      <input type="checkbox" id="vlm_schedule_enabled" onchange="update_vlm_add_schedule();" />
108
 
      <label for="vlm_schedule_enabled">Enable</label>
109
 
      <br />
110
 
      Schedule date:
111
 
      <input type="checkbox" id="vlm_schedule_now" onchange="toggle_schedule_date();update_vlm_add_schedule();" />
112
 
      <label for="vlm_schedule_now">Now</label>
113
 
      <br/>
114
 
      <label for="vlm_schedule_year">Year:</label>
115
 
      <input type="text" id="vlm_schedule_year" value="1970" size="4" maxlength="4" onchange="update_vlm_add_schedule();" />
116
 
      <label for="vlm_schedule_month">Month:</label>
117
 
      <input type="text" id="vlm_schedule_month" value="01" size="2" maxlength="2" onchange="update_vlm_add_schedule();" />
118
 
      <label for="vlm_schedule_day">Day:</label>
119
 
      <input type="text" id="vlm_schedule_day" value="01" size="2" maxlength="2" onchange="update_vlm_add_schedule();" />
120
 
      <label for="vlm_schedule_hour">Hour:</label>
121
 
      <input type="text" id="vlm_schedule_hour" value="00" size="2" maxlength="2" onchange="update_vlm_add_schedule();" />
122
 
      <label for="vlm_schedule_minute">Minute:</label>
123
 
      <input type="text" id="vlm_schedule_minute" value="59" size="2" maxlength="2" onchange="update_vlm_add_schedule();" />
124
 
      <label for="vlm_schedule_second">Second:</label>
125
 
      <input type="text" id="vlm_schedule_second" value="59" size="2" maxlength="2" onchange="update_vlm_add_schedule();" />
126
 
      <br/>
127
 
      Schedule period:<br/>
128
 
      <input type="checkbox" id="vlm_schedule_repeat" onchange="toggle_schedule_repeat();update_vlm_add_schedule();" />
129
 
      <label for="vlm_schedule_repeat">Repeat</label>
130
 
      <br />
131
 
      <label for="vlm_schedule_period_year">Year:</label>
132
 
      <input type="text" id="vlm_schedule_period_year" value="0" size="4" disabled="disabled" onchange="update_vlm_add_schedule();" />
133
 
      <label for="vlm_schedule_period_month">Month:</label>
134
 
      <input type="text" id="vlm_schedule_period_month" value="0" size="2" disabled="disabled" onchange="update_vlm_add_schedule();" />
135
 
      <label for="vlm_schedule_period_day">Day:</label>
136
 
      <input type="text" id="vlm_schedule_period_day" value="0" size="2" disabled="disabled" onchange="update_vlm_add_schedule();" />
137
 
      <label for="vlm_schedule_period_hour">Hour:</label>
138
 
      <input type="text" id="vlm_schedule_period_hour" value="0" size="2" disabled="disabled" onchange="update_vlm_add_schedule();" />
139
 
      <label for="vlm_schedule_period_minute">Minute:</label>
140
 
      <input type="text" id="vlm_schedule_period_minute" value="0" size="4" disabled="disabled" onchange="update_vlm_add_schedule();" />
141
 
      <label for="vlm_schedule_period_second">Second:</label>
142
 
      <input type="text" id="vlm_schedule_period_second" value="0" size="4" disabled="disabled" onchange="update_vlm_add_schedule();" />
143
 
      <br />
144
 
      <label for="vlm_schedule_repeat_times">Number of repetitions (use 0 to repeat endlessly):</label>
145
 
      <input type="text" id="vlm_schedule_repeat_times" size="8" disabled="disabled" value="0" onchange="update_vlm_add_schedule();" />
146
 
    </div>
147
 
    <div id="vlm_add_other" style="display: none">
148
 
      <input type="button" id="btn_import" onclick="vlm_batch(document.getElementById('vlm_batch_text').value);" value="Send command batch" />
149
 
      <input type="button" id="btn_export" onclick="document.location.assign('vlm_export.html');" value="Export VLM commands (new page)" />
150
 
      <br/>
151
 
      <textarea cols="70" rows="20" id="vlm_batch_text">#paste your VLM commands here</textarea>
152
 
    </div>
153
 
  </div>
154
 
</div>
155
 
 
156
 
<div id="vlm_broadcast" class="dialog" >
157
 
  <div class="title">
158
 
    Broadcast Elements
159
 
    <button id="btn_refresh_broadcast" onclick="vlm_get_elements();" title="Refresh" >
160
 
      <img src="images/refresh.png" alt="Refresh" />
161
 
    </button>
162
 
  </div>
163
 
  <div id="vlm_broadcast_list" class="list"></div>
164
 
</div>
165
 
 
166
 
<div id="vlm_vod" class="dialog" >
167
 
  <div class="title">
168
 
    Video on Demand Elements
169
 
    <button id="btn_refresh_vod" onclick="vlm_get_elements();" title="Refresh" >
170
 
      <img src="images/refresh.png" alt="Refresh" />
171
 
    </button>
172
 
  </div>
173
 
  <div id="vlm_vod_list" class="list"></div>
174
 
</div>
175
 
 
176
 
<div id="vlm_schedule" class="dialog" >
177
 
  <div class="title">
178
 
    Schedule Elements
179
 
    <button id="btn_refresh_schedule" onclick="vlm_get_elements();" title="Refresh" >
180
 
      <img src="images/refresh.png" alt="Refresh" />
181
 
    </button>
182
 
  </div>
183
 
  <div id="vlm_schedule_list" class="list"></div>
184
 
</div>