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 . ...@@ -40,6 +40,8 @@ sout and vlmelements .
<input type="text" id="vlm_command" size="60" /> <input type="text" id="vlm_command" size="60" />
<input type="button" value="Send" onclick="vlm_send();" /> <input type="button" value="Send" onclick="vlm_send();" />
<br /> <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);"> <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 Broadcast
</button> </button>
...@@ -99,19 +101,19 @@ sout and vlmelements . ...@@ -99,19 +101,19 @@ sout and vlmelements .
<div class="title"> <div class="title">
Broadcast Elements Broadcast Elements
</div> </div>
<div class="vlm_broadcast_list"></div> <div id="vlm_broadcast_list" class="list"></div>
</div> </div>
<div id="vlm_vod" class="dialog" > <div id="vlm_vod" class="dialog" >
<div class="title"> <div class="title">
Video on Demand Elements Video on Demand Elements
</div> </div>
<div class="vlm_vod_list"></div> <div id="vlm_vod_list" class="list"></div>
</div> </div>
<div id="vlm_schedule" class="dialog" > <div id="vlm_schedule" class="dialog" >
<div class="title"> <div class="title">
Schedule Elements Schedule Elements
</div> </div>
<div class="vlm_schedule_list"></div> <div id="vlm_schedule_list" class="list"></div>
</div> </div>
This diff is collapsed.
...@@ -96,11 +96,14 @@ div.controls button { ...@@ -96,11 +96,14 @@ div.controls button {
background-color: #fff; background-color: #fff;
} }
ul#list, ul#list ul { div.list {
list-style-type: none; padding: 1em;
padding-top: 0px; }
margin-top: 0px; div.list_element {
padding-left: 1em; padding-bottom: 0.3em;
}
div.list_element ul {
margin: 0px;
} }
div.pl_node { div.pl_node {
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
</head> </head>
<body onload=";"> <body onload="vlm_get_elements();">
<vlc id="rpn" param1="page vlm store" /> <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