rbrindley: branch 2.0 r4839 - /branches/2.0/config/js/
SVN commits to the Asterisk-GUI project
asterisk-gui-commits at lists.digium.com
Fri Jun 5 11:18:13 CDT 2009
Author: rbrindley
Date: Fri Jun 5 11:18:09 2009
New Revision: 4839
URL: http://svn.asterisk.org/svn-view/asterisk-gui?view=rev&rev=4839
Log:
- Names of BRI signalling for DAHDI were undefined.
(closes issue #15136)
Reported by: tzafrir
Patches:
bri_signalling.diff uploaded by tzafrir (license 46)
Modified:
branches/2.0/config/js/hardware.js
branches/2.0/config/js/hardware_dahdi.js
Modified: branches/2.0/config/js/hardware.js
URL: http://svn.asterisk.org/svn-view/asterisk-gui/branches/2.0/config/js/hardware.js?view=diff&rev=4839&r1=4838&r2=4839
==============================================================================
--- branches/2.0/config/js/hardware.js (original)
+++ branches/2.0/config/js/hardware.js Fri Jun 5 11:18:09 2009
@@ -271,7 +271,19 @@
ASTGUI.domActions.tr_addCell( newRow, {html: tmp , colspan :6, bgcolor : '#B0B9D0' , align : 'center' } );
}
- var singalling_defs = {pri_net: 'PRI - Net', pri_cpe: 'PRI - CPE', em: 'E & M',em_w: 'E & M -- Wink', featd:'E & M -- featd(DTMF)', fxo_ks:'FXOKS', fxo_ls:'FXOLS' };
+ var singalling_defs = {
+ pri_net: 'PRI - Net',
+ pri_cpe: 'PRI - CPE',
+ bri_net_ptmp: 'BRI PtP - Net',
+ bri_cpe_ptmp: 'BRI PtP - CPE',
+ bri_net: 'BRI PtP - Net',
+ bri_cpe: 'BRI PtP - CPE',
+ em: 'E & M',
+ em_w: 'E & M -- Wink',
+ featd:'E & M -- featd(DTMF)',
+ fxo_ks:'FXOKS',
+ fxo_ls:'FXOLS'
+ };
var sno = tbl.rows.length + 1;
var newRow = tbl.insertRow(-1);
Modified: branches/2.0/config/js/hardware_dahdi.js
URL: http://svn.asterisk.org/svn-view/asterisk-gui/branches/2.0/config/js/hardware_dahdi.js?view=diff&rev=4839&r1=4838&r2=4839
==============================================================================
--- branches/2.0/config/js/hardware_dahdi.js (original)
+++ branches/2.0/config/js/hardware_dahdi.js Fri Jun 5 11:18:09 2009
@@ -304,7 +304,19 @@
ASTGUI.domActions.tr_addCell( newRow, {html: tmp , colspan :6, bgcolor : '#B0B9D0' , align : 'center' } );
}
- var singalling_defs = {pri_net: 'PRI - Net', pri_cpe: 'PRI - CPE', em: 'E & M',em_w: 'E & M -- Wink', featd:'E & M -- featd(DTMF)', fxo_ks:'FXOKS', fxo_ls:'FXOLS' };
+ var singalling_defs = {
+ pri_net: 'PRI - Net',
+ pri_cpe: 'PRI - CPE',
+ bri_net_ptmp: 'BRI PtP - Net',
+ bri_cpe_ptmp: 'BRI PtP - CPE',
+ bri_net: 'BRI PtP - Net',
+ bri_cpe: 'BRI PtP - CPE',
+ em: 'E & M',
+ em_w: 'E & M -- Wink',
+ featd:'E & M -- featd(DTMF)',
+ fxo_ks:'FXOKS',
+ fxo_ls:'FXOLS'
+ };
var sno = tbl.rows.length + 1;
var newRow = tbl.insertRow(-1);
More information about the asterisk-gui-commits
mailing list