diff --git a/server.html b/server.html
index f2e7b816..a99d1a27 100644
--- a/server.html
+++ b/server.html
@@ -881,7 +881,7 @@ td
var forcesave = $('
').attr('id', 'forcesave');
forcesave.append(
- $('
').text('Click the button below to force a settings save. This will permanently save all changes to the config file.')
+ $('
').text('Click the button below to force an immediate settings save. This differs from a regular save to memory and file save on exit by saving directly to file while operating. This may slow server processes for a short period of time.')
).append(
$('').click(function()
{
@@ -904,7 +904,7 @@ td
case 'protocols':
$table = $('');
- $table.html("Protocol Port ");
+ $table.html("Protocol Port Interface ");
$tbody = $('');
var tr, protocol;
@@ -919,6 +919,8 @@ td
tr.append( $('').text( protocol ) );
tr.append( $(' ').text( settings.settings.config.protocols[protocol].port ) );
+ tr.append( $(' ').text( '_' ) ); // interface
+
tr.append( $(' ').attr('class', 'center').append( $('').click(function()
{
if(confirmDelete('Are you sure you want to delete this protocol?') == true)
@@ -945,6 +947,9 @@ td
// val
$nprot.append( $('').append( $(' ').attr('type', 'number').attr('id', 'new-protocol-val') ) );
+ // interface
+ $nprot.append( $(' ').append( $(' ').attr('type', 'text').attr('id', 'new-protocol-interface') ) );
+
$nprot.append(
$(' ').attr('class', 'center').append(
$('').click(function()
@@ -1235,6 +1240,8 @@ td
var url = settings.settings.streams[streamname].channel.URL;
+ // TODO FIXME
+
$('#page').append( $('').text('This feature is not yet implemented.') );
$('#page').append( $('
').text('The URL for this stream is ').append( $('').attr('class', 'nocapitals').text(url) ) );