bkruse: branch asterisknow r1749 - /branches/asterisknow/config/digital.html

SVN commits to the Asterisk-GUI project asterisk-gui-commits at lists.digium.com
Fri Oct 26 16:55:08 CDT 2007


Author: bkruse
Date: Fri Oct 26 16:55:07 2007
New Revision: 1749

URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=1749
Log:
check for null lbo and unconfigured channel and set them accordingly

Modified:
    branches/asterisknow/config/digital.html

Modified: branches/asterisknow/config/digital.html
URL: http://svn.digium.com/view/asterisk-gui/branches/asterisknow/config/digital.html?view=diff&rev=1749&r1=1748&r2=1749
==============================================================================
--- branches/asterisknow/config/digital.html (original)
+++ branches/asterisknow/config/digital.html Fri Oct 26 16:55:07 2007
@@ -366,6 +366,12 @@
 						SPANS[l]['definedchans'] = 1; // default value
 						q += Number(n[l][k]);
 					}
+					if( k == 'lbo' ) {
+						if(n[l][k] == "(null)") { SPANS[l]['lbo'] = 0; }
+					}
+					if( k == 'fac' ) {
+						if(n[l][k] == "CAS/ ???") { SPANS[l]['fac'] = "UNCONFIGURED"; }
+					}
 				}}
 			}}
 			loadConfigFiles.checkHardwareChanges();




More information about the asterisk-gui-commits mailing list