3 <title>Streaming Server VLC Settings</title>
4 <link rel="stylesheet" type="text/css" href="webif.css">
6 function submitSettings()
8 var parms = "webifPort=" + document.f1.webifPort.value + "&streamingPort=" + document.f1.streamingPort.value + "&vlcUser=" + document.f1.vlcUser.value + "&vlcPass=" + document.f1.vlcPass.value;
9 document.location = "/cgi-bin/setStreamingServerVLCSettings?" + parms;
10 setTimeout("window.close()", 500);
14 <body id="mainbody" style="padding: 10px; background-color: #F4F4F4;" onUnload="parent.window.opener.location.reload(true)">
15 <form name="f1" action="/cgi-bin/setStreamingServerSettings">
16 <table border="0" cellpadding="0" cellspacing="10">
19 <td>VLC Webif Port:</td>
21 <input name="webifPort" type="text" size="5" maxlength="5" value="#WEBIFPORT#" style="color: #000000">
25 <td>VLC Streaming Port:</td>
27 <input name="streamingPort" type="text" size="5" maxlength="5" value="#STREAMINGPORT#" style="color: #000000">
31 <td>VLC Admin Userid:</td>
33 <input name="vlcUser" type="text" value="#VLCUSER#" style="color: #000000">
37 <td>VLC Admin Password:</td>
39 <input name="vlcPass" type="text" value="#VLCPASS#" style="color: #000000">
43 <td colspan="2">#CHANGEBUTTON#</td>