pari: branch asterisknow r2197 -	/branches/asterisknow/config/digital.html
    SVN commits to the Asterisk-GUI project 
    asterisk-gui-commits at lists.digium.com
       
    Wed Jan 23 20:40:05 CST 2008
    
    
  
Author: pari
Date: Wed Jan 23 20:40:04 2008
New Revision: 2197
URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=2197
Log:
Fix for : Span numbering can confuse the user
Description: 
ztscan numbers the cards and spans with [x] this is the number that is assigned to the spans in the Service Providers tab. The problem is the spans 
show up as 1,2 in hardware configuration page.
Example
In ZTscan
TDM800p [1]
TE220p [2]
TE220p [3]
so, the spans will be numbered 2and 3 in the service providers tab but will show up as 1 and 2 in the setup hardware tab. 
Reported By: Sean Pimental
Modified:
    branches/asterisknow/config/digital.html
Change Statistics:
 0 files changed
Modified: branches/asterisknow/config/digital.html
URL: http://svn.digium.com/view/asterisk-gui/branches/asterisknow/config/digital.html?view=diff&rev=2197&r1=2196&r2=2197
==============================================================================
--- branches/asterisknow/config/digital.html (original)
+++ branches/asterisknow/config/digital.html Wed Jan 23 20:40:04 2008
@@ -329,7 +329,7 @@
 		newRow["span_value"] = span;
 
 		var newCell0 = newRow.insertCell(0);
-		newCell0.innerHTML = SPANS[span]['description'] + "  ";
+		newCell0.innerHTML = SPANS[span]['description'] + " (span "+ span +")  ";
 		newCell0.align = "center";
 	
 		var newCell1 = newRow.insertCell(1);
    
    
More information about the asterisk-gui-commits
mailing list