mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-24 22:25:56 -05:00
status page uses /xml-rpc?metod=config
First shot at it, nothing is editable and some conf fields are not updated at all.
This commit is contained in:
parent
267528f070
commit
3fd9f6d353
@ -8,12 +8,14 @@ adminroot_DATA = ftr.html linkOpaque.gif status.html aspl-license.txt \
|
||||
mt-daapd.css mt-daapd.png config.html index.html required.gif \
|
||||
gpl-license.html aspl-license.html thanks.html feedback.html \
|
||||
playlist.html playlist.js smart.html smart.js DAAPApplet-0.1.jar \
|
||||
smartpopup.html applet.html mt-daapd.js CREDITS status.js
|
||||
smartpopup.html applet.html mt-daapd.js CREDITS status.js \
|
||||
config.js
|
||||
|
||||
EXTRA_DIST = ftr.html linkOpaque.gif status.html aspl-license.txt \
|
||||
gpl-license.txt linkTransparent.gif config-update.html hdr.html \
|
||||
mt-daapd.css mt-daapd.png config.html index.html required.gif \
|
||||
gpl-license.html aspl-license.html thanks.html feedback.html \
|
||||
playlist.html playlist.js smart.html smart.js DAAPApplet-0.1.jar \
|
||||
smartpopup.html applet.html mt-daapd.js CREDITS status.js
|
||||
smartpopup.html applet.html mt-daapd.js CREDITS status.js \
|
||||
config.js
|
||||
|
||||
|
@ -1,105 +1,122 @@
|
||||
@include hdr.html@
|
||||
|
||||
<style type="text/css">
|
||||
label {
|
||||
float: left;
|
||||
width: 11em;
|
||||
font: icon;
|
||||
padding-top: .3em;
|
||||
padding-left: 1em;
|
||||
}
|
||||
input {
|
||||
font: icon;
|
||||
}
|
||||
select {
|
||||
font: icon;
|
||||
}
|
||||
</style>
|
||||
<h1>Configuration</h1>
|
||||
|
||||
<p class="description">
|
||||
Note that the following fields will only be editable if the
|
||||
<!-- Note that the following fields will only be editable if the
|
||||
configuration file itself is writable by the mt-daapd server. If you
|
||||
make changes to these settings, they will not be reflected in the
|
||||
running server. The server must be restarted for these values to
|
||||
take effect.</p>
|
||||
running server. The server must be restarted for these values to
|
||||
take effect.-->
|
||||
This is work in progress. no changes saved, some fields not updated, some not even in mt-daapd.conf</p>
|
||||
|
||||
<form method="post" action="/config-update.html">
|
||||
<table>
|
||||
<tr>
|
||||
<th>mt-daapd.conf</th>
|
||||
<th class="config"><input type="submit" name="SUBMIT" value="Submit"/></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="configname">Web Root</td>
|
||||
<td class="configdata"><input class="text" type="text" @READONLY@ name="WEB_ROOT" size="80" value="@WEB_ROOT@" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="configname">Playlist File</td>
|
||||
<td class="configdata"><input class="text" type="text" @READONLY@ name="PLAYLIST" size="80" value="@PLAYLIST@" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="configname">MP3 Directory</td>
|
||||
<td class="configdata"><input class="text" type="text" @READONLY@ name="MP3_DIR" size="80" value="@MP3_DIR@" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="configname">Database Directory</td>
|
||||
<td class="configdata"><input class="text" type="text" @READONLY@ name="DB_DIR" size="80" value="@DB_DIR@" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="configname">Compilation Directories</td>
|
||||
<td class="configdata"><input class="text" type="text" @READONLY@ name="COMPDIRS" size="80" value="@COMPDIRS@" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="configname">Logfile</td>
|
||||
<td class="configdata"><input class="text" type="text" @READONLY@ name="LOGFILE" size="80" value="@LOGFILE@" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="configname">Art Filename</td>
|
||||
<td class="configdata"><input class="text" type="text" @READONLY@ name="ART_FILENAME" size="80" value="@ART_FILENAME@" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="configname">Port</td>
|
||||
<td class="configdata"><input class="text" type="text" @READONLY@ name="PORT" value="@PORT@" />
|
||||
The port the server should run at; default is 3689.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="configname">Server Name</td>
|
||||
<td class="configdata"><input class="text" type="text" @READONLY@ name="SERVERNAME" value="@SERVERNAME@" />
|
||||
the name iTunes and other daap clients should see.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="configname">Run As</td>
|
||||
<td class="configdata"><input class="text" type="text" @READONLY@ name="RUNAS" value="@RUNAS@" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="configname">Admin Password</td>
|
||||
<td class="configdata"><input class="text" type="text" @READONLY@ name="ADMIN_PW" value="@ADMIN_PW@" />
|
||||
The password for this administration interface.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="configname">MP3 Password</td>
|
||||
<td class="configdata"><input class="text" type="text" @READONLY@ name="PASSWORD" value="@PASSWORD@" />
|
||||
The password clients need to access this server.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="configname">Extensions</td>
|
||||
<td class="configdata"><input class="text" type="text" @READONLY@ name="EXTENSIONS" value="@EXTENSIONS@" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="configname">Rescan Interval</td>
|
||||
<td class="configdata"><input class="text" type="text" @READONLY@ name="RESCAN_INTERVAL" value="@RESCAN_INTERVAL@" />
|
||||
How often should mt-daapd look for new files? In seconds.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="configname">Scan Type</td>
|
||||
<td class="configdata"><input class="text" type="text" @READONLY@ name="SCAN_TYPE" value="@SCAN_TYPE@" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="configname">Always Scan</td>
|
||||
<td class="configdata"><input class="text" type="text" @READONLY@ name="ALWAYS_SCAN" value="@ALWAYS_SCAN@" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="configname">Compress</td>
|
||||
<td class="configdata"><input class="text" type="text" @READONLY@ name="COMPRESS" value="@COMPRESS@" />
|
||||
Should browsing data be compressed on the way to the client?</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="configname">Process .m3u Files</td>
|
||||
<td class="configdata"><input class="text" type="text" @READONLY@ name="PROCESS_M3U" value="@PROCESS_M3U@" />
|
||||
Should m3u files be processed as playlists?</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="configname">Debug Level</td>
|
||||
<td class="configdata"><input class="text" type="text" @READONLY@ name="DEBUGLEVEL" value="@DEBUGLEVEL@" />
|
||||
Possible values are 0 to 9, 9 being the most detailed debug level.</td>
|
||||
</tr>
|
||||
</table>
|
||||
<form method="get" action="#">
|
||||
<div class="naviheader">Server</div>
|
||||
<div class="navibox">
|
||||
<span style="float: left; width: 11em; font:icon;padding-top: .3em; padding-left: 1em;">Config File</span>
|
||||
<span id="config_path"></span><br />
|
||||
<div style="clear: both;"></div>
|
||||
<label for="servername">Server Name</label>
|
||||
<input class="text" type="text" id="servername" value="" />
|
||||
the name iTunes and other daap clients should see.<br />
|
||||
<label for="web_root">Web Root</label>
|
||||
<input class="text" type="text" id="web_root" size="80" value="" /><br />
|
||||
<label for="port">Port</label>
|
||||
<input class="text" type="text" id="port" value="" />
|
||||
The port the server should run at; default is 3689.<br />
|
||||
<label for="logfile">Logfile</label>
|
||||
<input class="text" type="text" id="logfile" size="80" value="" /><br />
|
||||
<label for="runas">Run As</label>
|
||||
<input class="text" type="text" id="runas" value="" /><br />
|
||||
<label for="admin_pw">Admin Password</label>
|
||||
<input class="text" type="text" id="admin_pw" value="" />
|
||||
The password for this administration interface.<br />
|
||||
<label for="password">MP3 Password</label>
|
||||
<input class="text" type="text" id="password" value="" />
|
||||
The password clients need to access this server.<br />
|
||||
<label for="compress">Compress</label>
|
||||
<select id="compress" size="1">
|
||||
<option value="1">Yes</option>
|
||||
<option value="0" selected="selected">No</option>
|
||||
</select>
|
||||
Should browsing data be compressed on the way to the client?<br />
|
||||
<label for="debug">Debug Level</label>
|
||||
<select id="debug" size="1">
|
||||
<option value="0">0</option>
|
||||
<option value="1">1</option>
|
||||
<option value="2">2</option>
|
||||
<option value="3">3</option>
|
||||
<option value="4">4</option>
|
||||
<option value="5">5</option>
|
||||
<option value="6">6</option>
|
||||
<option value="7">7</option>
|
||||
<option value="8">8</option>
|
||||
<option value="9">9</option>
|
||||
</select>
|
||||
Possible values are 0 to 9, 9 being the most detailed debug level.<br />
|
||||
|
||||
</div>
|
||||
<div class="naviheader">Music Files</div>
|
||||
<div class="navibox">
|
||||
<label for="mp3_dir">MP3 Directory</label>
|
||||
<input class="text" type="text" id="mp3_dir" size="80" value="" /><br />
|
||||
<label for="extensions">Extensions</label>
|
||||
<input class="text" type="text" id="extensions" size="80" value="" /><br />
|
||||
<label for="playlist">Playlist File</label>
|
||||
<input class="text" type="text" id="playlist" size="80" value="" /><br />
|
||||
<label for="process_m3u">Process .m3u Files</label>
|
||||
<input class="text" type="text" id="process_m3u" value="" />
|
||||
Should m3u files be processed as playlists?<br />
|
||||
<label for="compdirs">Compilation Directories</label>
|
||||
<input class="text" type="text" id="compdirs" size="80" value="" /><br />
|
||||
<label for="art_filename">Art Filename</label>
|
||||
<input class="text" type="text" id="art_filename" size="80" value="" /><br />
|
||||
|
||||
</div>
|
||||
<div class="naviheader">Database</div>
|
||||
<div class="navibox">
|
||||
<label for="db_type">Database Type</label>
|
||||
<select id="db_type" size="1">
|
||||
<option value="sqlite">sqlite</option>
|
||||
<option value="sqlite3">sqlite3</option>
|
||||
</select><br />
|
||||
<label for="db_parms">Database Directory</label>
|
||||
<input class="text" type="text" id="db_parms" size="80" value="" /><br />
|
||||
|
||||
<label for="scan_type">Scan Type</label>
|
||||
<select id="scan_type" size="1">
|
||||
<option value="0">0 - Normal</option>
|
||||
<option value="1">1 - Aggressive</option>
|
||||
<option value="2">2 - Painfully aggressive</option>
|
||||
</select><br />
|
||||
<label for="rescan">Rescan Interval</label>
|
||||
<input class="text" type="text" id="rescan" value="" />
|
||||
How often should mt-daapd look for new files? In seconds.<br />
|
||||
<label for="always">Always Scan</label>
|
||||
<input class="text" type="text" id="always" value="" /><br />
|
||||
|
||||
</div>
|
||||
<div class="naviheader">Transcoding</div>
|
||||
<div class="navibox">
|
||||
<label for="ssc_prog">SSC prog</label>
|
||||
<input class="text" type="text" id="ssc_prog" size="80" value="" /><br />
|
||||
<label for="ssc_codectypes">SSC codec types</label>
|
||||
<input class="text" type="text" id="ssc_codectypes" size="80" value="" /><br />
|
||||
</div>
|
||||
</form>
|
||||
|
||||
@include ftr.html@
|
||||
|
72
admin-root/config.js
Normal file
72
admin-root/config.js
Normal file
@ -0,0 +1,72 @@
|
||||
Event.observe(window,'load',function (e) {Config.init();});
|
||||
|
||||
// Config isn't defined until after the Event.observe above
|
||||
// I could have put it below Config = ... but I want all window.load events
|
||||
// at the start of the file
|
||||
function init() {
|
||||
Config.init();
|
||||
}
|
||||
|
||||
var Config = {
|
||||
init: function () {
|
||||
new Ajax.Request('/xml-rpc?method=stats',{method: 'get',onComplete: Config.updateStatus});
|
||||
new Ajax.Request('/xml-rpc?method=config',{method: 'get',onComplete: Config.showConfig});
|
||||
},
|
||||
showConfig: function (request) {
|
||||
$A(request.responseXML.getElementsByTagName('general')[0].childNodes).each(function (el) {
|
||||
$(el.nodeName).value = Element.textContent(el);
|
||||
});
|
||||
},
|
||||
updateStatus: function (request) {
|
||||
$('config_path').appendChild(document.createTextNode(
|
||||
Element.textContent(request.responseXML.getElementsByTagName('config_path')[0])));
|
||||
}
|
||||
}
|
||||
Object.extend(Element, {
|
||||
removeChildren: function(element) {
|
||||
while(element.hasChildNodes()) {
|
||||
element.removeChild(element.firstChild);
|
||||
}
|
||||
},
|
||||
textContent: function(node) {
|
||||
if ((!node) || !node.hasChildNodes()) {
|
||||
// Empty text node
|
||||
return '';
|
||||
} else {
|
||||
if (node.textContent) {
|
||||
// W3C ?
|
||||
return node.textContent;
|
||||
} else if (node.text) {
|
||||
// IE
|
||||
return node.text;
|
||||
}
|
||||
}
|
||||
// We shouldn't end up here;
|
||||
return '';
|
||||
}
|
||||
});
|
||||
/* Detta script finns att hamta pa http://www.jojoxx.net och
|
||||
far anvandas fritt sa lange som dessa rader star kvar. */
|
||||
function DataDumper(obj,n,prefix){
|
||||
var str=""; prefix=(prefix)?prefix:""; n=(n)?n+1:1; var ind=""; for(var i=0;i<n;i++){ ind+=" "; }
|
||||
if(typeof(obj)=="string"){
|
||||
str+=ind+prefix+"String:\""+obj+"\"\n";
|
||||
} else if(typeof(obj)=="number"){
|
||||
str+=ind+prefix+"Number:"+obj+"\n";
|
||||
} else if(typeof(obj)=="function"){
|
||||
str+=ind+prefix+"Function:"+obj+"\n";
|
||||
} else if(typeof(obj) == 'boolean') {
|
||||
str+=ind+prefix+"Boolean:" + obj + "\n";
|
||||
} else {
|
||||
var type="Array";
|
||||
for(var i in obj){ type=(type=="Array"&&i==parseInt(i))?"Array":"Object"; }
|
||||
str+=ind+prefix+type+"[\n";
|
||||
if(type=="Array"){
|
||||
for(var i in obj){ str+=DataDumper(obj[i],n,i+"=>"); }
|
||||
} else {
|
||||
for(var i in obj){ str+=DataDumper(obj[i],n,i+"=>"); }
|
||||
}
|
||||
str+=ind+"]\n";
|
||||
}
|
||||
return str;
|
||||
}
|
@ -4,6 +4,9 @@
|
||||
<title>mt-daapd</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<link rel="stylesheet" type="text/css" href="mt-daapd.css" />
|
||||
@ispage config.html:<script type="text/javascript" src="lib-js/prototype.js"></script>:@
|
||||
@ispage config.html:<script type="text/javascript" src="lib-js/script.aculo.us/effects.js"></script>:@
|
||||
@ispage config.html:<script type="text/javascript" src="config.js"></script>:@
|
||||
@ispage status.html:<script type="text/javascript" src="lib-js/prototype.js"></script>:@
|
||||
@ispage status.html:<script type="text/javascript" src="lib-js/script.aculo.us/effects.js"></script>:@
|
||||
@ispage status.html:<script type="text/javascript" src="status.js"></script>:@
|
||||
|
@ -94,10 +94,6 @@ pre
|
||||
{ font-size: 120%;
|
||||
}
|
||||
|
||||
input.text
|
||||
{ border: 0px solid black;
|
||||
padding: 4px 0px 4px 0.5em;
|
||||
}
|
||||
|
||||
.feedbackfield
|
||||
{ border: 0px solid black;
|
||||
|
@ -93,6 +93,7 @@ Section "MainSection" SEC01
|
||||
File "..\..\admin-root\CREDITS"
|
||||
File "..\..\admin-root\config-update.html"
|
||||
File "..\..\admin-root\config.html"
|
||||
File "..\..\admin-root\config.js"
|
||||
File "..\..\admin-root\aspl-license.txt"
|
||||
File "..\..\admin-root\aspl-license.html"
|
||||
File "..\..\admin-root\applet.html"
|
||||
|
Loading…
Reference in New Issue
Block a user