bkruse: branch asterisknow r1732 - /branches/asterisknow/config/numberplan.html
SVN commits to the Asterisk-GUI project
asterisk-gui-commits at lists.digium.com
Wed Oct 24 16:21:48 CDT 2007
Author: bkruse
Date: Wed Oct 24 16:21:48 2007
New Revision: 1732
URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=1732
Log:
do not show fxo signalled spans in incoming and outgoing
calling rules because they will most likely be assigned
to users as their phone (hooked to a channelbank) in a real
world scenario
Modified:
branches/asterisknow/config/numberplan.html
Modified: branches/asterisknow/config/numberplan.html
URL: http://svn.digium.com/view/asterisk-gui/branches/asterisknow/config/numberplan.html?view=diff&rev=1732&r1=1731&r2=1732
==============================================================================
--- branches/asterisknow/config/numberplan.html (original)
+++ branches/asterisknow/config/numberplan.html Wed Oct 24 16:21:48 2007
@@ -551,6 +551,9 @@
function trunks_loaded(b){
var c = b ;
for( var d in c ){
+ if ( c.hasOwnProperty(d) && c[d]['context'] && (c[d]['context'] == asterisk_guiTDPrefix + d ) && c[d]['fxochannels'] ) {
+ continue;
+ }
if ( c.hasOwnProperty(d) && c[d]['context'] && (c[d]['context'] == asterisk_guiTDPrefix + d ) ) {
trunks_desc[d] = new Object();
trunks_desc[d].comment = (c[d]['trunkname']) ? unescape(c[d]['trunkname']) : d ;
More information about the asterisk-gui-commits
mailing list