Commit 3bef3e14 authored by Antoine Cellerier's avatar Antoine Cellerier

all: handle VLM broadcast and vod elements.

 todo: - seeking on broadcast elements
       - schedules
       - file(or textbox) load / save. might need some changes to the VLM
         core in order to export commands to a string (and not to a file)
       
parent 32178135
......@@ -40,6 +40,8 @@ sout and vlmelements .
<input type="text" id="vlm_command" size="60" />
<input type="button" value="Send" onclick="vlm_send();" />
<br />
<span id="vlm_error"></span>
<br />
<button id="btn_broadcast" onclick="hide_vlm_add();show('vlm_add_broadcast');update_vlm_add_broadcast();" onmouseover="button_over(this);" onmouseout="button_out(this);">
Broadcast
</button>
......@@ -99,19 +101,19 @@ sout and vlmelements .
<div class="title">
Broadcast Elements
</div>
<div class="vlm_broadcast_list"></div>
<div id="vlm_broadcast_list" class="list"></div>
</div>
<div id="vlm_vod" class="dialog" >
<div class="title">
Video on Demand Elements
</div>
<div class="vlm_vod_list"></div>
<div id="vlm_vod_list" class="list"></div>
</div>
<div id="vlm_schedule" class="dialog" >
<div class="title">
Schedule Elements
</div>
<div class="vlm_schedule_list"></div>
<div id="vlm_schedule_list" class="list"></div>
</div>
This diff is collapsed.
......@@ -96,11 +96,14 @@ div.controls button {
background-color: #fff;
}
ul#list, ul#list ul {
list-style-type: none;
padding-top: 0px;
margin-top: 0px;
padding-left: 1em;
div.list {
padding: 1em;
}
div.list_element {
padding-bottom: 0.3em;
}
div.list_element ul {
margin: 0px;
}
div.pl_node {
......
......@@ -35,7 +35,7 @@
</head>
<body onload=";">
<body onload="vlm_get_elements();">
<vlc id="rpn" param1="page vlm store" />
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment