pari: trunk r78 - in /trunk/config: ./ scripts/ stylesheets/
asterisk-gui-commits at lists.digium.com
asterisk-gui-commits at lists.digium.com
Wed Oct 18 09:59:36 MST 2006
Author: pari
Date: Wed Oct 18 11:59:35 2006
New Revision: 78
URL: http://svn.digium.com/view/asterisk-gui?rev=78&view=rev
Log:
minor fixes to get GUI working in Opera :-)
Modified:
trunk/config/menus.html
trunk/config/numberplan.html
trunk/config/options.html
trunk/config/queues.html
trunk/config/scripts/astman.js
trunk/config/stylesheets/schwing.css
Modified: trunk/config/menus.html
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/menus.html?rev=78&r1=77&r2=78&view=diff
==============================================================================
--- trunk/config/menus.html (original)
+++ trunk/config/menus.html Wed Oct 18 11:59:35 2006
@@ -206,7 +206,7 @@
onFailure: function(t) {
$('status_message').style.display='none';
alert("Config Error: " + t.status + ": " + t.statusText);
- },
+ }
};
var uri = "";
var action_string = "";
@@ -315,7 +315,7 @@
onFailure: function(t) {
$('status_message').style.display='none';
alert("Config Error: " + t.status + ": " + t.statusText);
- },
+ }
};
var uri = "" ;
var p =0 ;
@@ -473,7 +473,7 @@
},
onFailure: function(t) {
alert("Config Error: " + t.status + ": " + t.statusText);
- },
+ }
};
var uri = "";
@@ -508,7 +508,7 @@
onFailure: function(t) {
$('status_message').style.display='none';
alert("Config Error: " + t.status + ": " + t.statusText);
- },
+ }
};
var uri = "";
uri += build_action('delete', 0, $('vmenus').value,"exten", "", $('steps').value);
Modified: trunk/config/numberplan.html
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/numberplan.html?rev=78&r1=77&r2=78&view=diff
==============================================================================
--- trunk/config/numberplan.html (original)
+++ trunk/config/numberplan.html Wed Oct 18 11:59:35 2006
@@ -411,7 +411,7 @@
},
onFailure: function(t) {
alert("Config Error: " + t.status + ": " + t.statusText);
- },
+ }
};
sela = $('extensions').options[a].selected;
Modified: trunk/config/options.html
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/options.html?rev=78&r1=77&r2=78&view=diff
==============================================================================
--- trunk/config/options.html (original)
+++ trunk/config/options.html Wed Oct 18 11:59:35 2006
@@ -55,17 +55,17 @@
return;
}
-}
+};
options.logoffs = function(msgs) {
$('status').innerHTML = msgs[0].headers['message'];
return;
-}
+};
options.updated_logoffs = function(msgs) {
$('status').innerHTML = "Password Updated Successfully!! Please Relogin";
return;
-}
+};
function askfor_updatepassword(){
parent.astmanEngine.sendRequest('action=logoff', options.logoffs);
@@ -77,7 +77,7 @@
var opt = {
method: 'get',
asynchronous: true,
- onComplete: showResponse,
+ onComplete: showResponse
};
opt.parameters ="action=updateconfig&reload=yes&srcfilename=manager.conf&dstfilename=manager.conf&Action-000000=update&Cat-000000=admin&Var-000000=secret&Value-000000="+ encodeURIComponent($('newpass').value );
var tmp = new Ajax.Request("../../rawman", opt);
@@ -100,7 +100,7 @@
onFailure: function(t) {
$('status_message').style.display='none';
alert("Config Error: " + t.status + ": " + t.statusText);
- },
+ }
};
opt.parameters ="action=updateconfig&reload=yes&srcfilename=manager.conf&dstfilename=manager.conf&Action-000000=update&Cat-000000=general&Var-000000=httptimeout&Value-000000="+ encodeURIComponent($('httptimeout').value);
var tmp = new Ajax.Request("../../rawman", opt);
@@ -119,7 +119,7 @@
},
onFailure: function(t) {
alert("Config Error: " + t.status + ": " + t.statusText);
- },
+ }
};
opt.parameters ="action=updateconfig&reload=yes&srcfilename=http.conf&dstfilename=http.conf&Action-000000=update&Cat-000000=general&Var-000000=bindport&Value-000000="+ encodeURIComponent($('bindport').value) + "&Action-000001=update&Cat-000001=general&Var-000001=bindaddr&Value-000001=" + encodeURIComponent($('bindaddr').value );
var tmp = new Ajax.Request("../../rawman", opt);
Modified: trunk/config/queues.html
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/queues.html?rev=78&r1=77&r2=78&view=diff
==============================================================================
--- trunk/config/queues.html (original)
+++ trunk/config/queues.html Wed Oct 18 11:59:35 2006
@@ -70,7 +70,7 @@
onFailure: function(t) {
alert("Config Error: " + t.status + ": " + t.statusText);
return false;
- },
+ }
};
uri0 = build_action('update', 0, specialcontext ,'exten', b+',1,Queue(${EXTEN})', a+',1,Queue(${EXTEN})' );
opt0.parameters="action=updateconfig&reload=yes&srcfilename=" + encodeURIComponent("extensions.conf") + "&dstfilename=" + encodeURIComponent("extensions.conf") + uri0;
@@ -89,7 +89,7 @@
onFailure: function(t) {
alert("Config Error: " + t.status + ": " + t.statusText);
return false;
- },
+ }
};
uri0 = build_action('append', 0, specialcontext ,'exten', a+',1,Queue(${EXTEN})');
opt0.parameters="action=updateconfig&reload=yes&srcfilename=" + encodeURIComponent("extensions.conf") + "&dstfilename=" + encodeURIComponent("extensions.conf") + uri0;
@@ -133,7 +133,7 @@
onFailure: function(t) {
$('status_message').style.display='none';
alert("Config Error: " + t.status + ": " + t.statusText);
- },
+ }
};
// before going any further check whether there is another entry with this name
Modified: trunk/config/scripts/astman.js
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/scripts/astman.js?rev=78&r1=77&r2=78&view=diff
==============================================================================
--- trunk/config/scripts/astman.js (original)
+++ trunk/config/scripts/astman.js Wed Oct 18 11:59:35 2006
@@ -83,7 +83,7 @@
}
}
combo_selectdiv.style.display = "none";
- }
+ };
combo_selectbox.onkeypress= function(event) {
if( event.keyCode == ENTER ){
combo_text.value = combo_selectbox.value;
Modified: trunk/config/stylesheets/schwing.css
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/stylesheets/schwing.css?rev=78&r1=77&r2=78&view=diff
==============================================================================
--- trunk/config/stylesheets/schwing.css (original)
+++ trunk/config/stylesheets/schwing.css Wed Oct 18 11:59:35 2006
@@ -1,12 +1,12 @@
.mainscreenTitleBar {
- font-size : 12px;
- padding : 4px 6px 4px 6px;
- border-style : solid none solid none;
- border-top-color : #BDC7E7;
- border-bottom-color : #182052;
- border-width : 1px 0px 1px 0px;
- background-color : #ef8700;
- color : #ffffff;
+ font-size : 12px;
+ padding : 4px 6px 4px 6px;
+ border-style : solid none solid none;
+ border-top-color : #BDC7E7;
+ border-bottom-color : #182052;
+ border-width : 1px 0px 1px 0px;
+ background-color : #ef8700;
+ color : #ffffff;
}
.mainscreenTitleBarHover {
@@ -16,13 +16,13 @@
}
.mainscreenContentBox {
- font-size : 11px;
+ font-size : 10px;
border : 0px;
padding : 0px 8px 0px 8px;
}
.mainscreenBorderBox {
- font-size : 11px;
+ font-size : 10px;
border : 1px solid #1f669b;
border-top-width : 0px;
border-left-width : 0px;
@@ -40,7 +40,7 @@
}
.statusbar {
- font-size : 11px;
+ font-size : 10px;
border : 1px solid #1f669b;
padding : 0px 8px 0px 8px;
background-color : #ffff00;
@@ -81,18 +81,4 @@
.light {
color : #717171;
}
-
-
-#dhtmltooltip{
- position: absolute;
- width: 220px;
- border: 1px solid black;
- padding: 2px;
- background-color: lightyellow;
- visibility: hidden;
- z-index: 100;
- /*Remove below line to remove shadow. Below line should always appear last within this CSS*/
- filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135);
-}
-
-/* end of - From astman.css */
+/* end of - From astman.css */
More information about the asterisk-gui-commits
mailing list