pari: branch 2.0 r4264 - in /branches/2.0/config: index.html js/index.js

SVN commits to the Asterisk-GUI project asterisk-gui-commits at lists.digium.com
Tue Dec 2 16:15:30 CST 2008


Author: pari
Date: Tue Dec  2 16:15:29 2008
New Revision: 4264

URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=4264
Log:

 if SFA modules are loaded - show the skype accounts configuration page



Modified:
    branches/2.0/config/index.html
    branches/2.0/config/js/index.js

Modified: branches/2.0/config/index.html
URL: http://svn.digium.com/view/asterisk-gui/branches/2.0/config/index.html?view=diff&rev=4264&r1=4263&r2=4264
==============================================================================
--- branches/2.0/config/index.html (original)
+++ branches/2.0/config/index.html Tue Dec  2 16:15:29 2008
@@ -182,6 +182,10 @@
 			<div class="ui-accordion-link">Google Talk</div>
 			<div class="ui-accordion-desc">Send or Receive calls from your buddies on Google Talk network</div>
 		</div>
+		<div page='skype.html' style='display:none'>
+			<div class="ui-accordion-link">Skype</div>
+			<div class="ui-accordion-desc">Send or Receive calls from your buddies on Skype network</div>
+		</div>
 		<div page='directory.html'>
 			<div class="ui-accordion-link">Directory</div>
 			<div class="ui-accordion-desc">Preferences for 'Dialing by Name Directory'</div>

Modified: branches/2.0/config/js/index.js
URL: http://svn.digium.com/view/asterisk-gui/branches/2.0/config/js/index.js?view=diff&rev=4264&r1=4263&r2=4264
==============================================================================
--- branches/2.0/config/js/index.js (original)
+++ branches/2.0/config/js/index.js Tue Dec  2 16:15:29 2008
@@ -434,6 +434,10 @@
 			if( modules_show.contains('codec_g729a') ){
 				miscFunctions.hide_panel('registerg729.html', 1);
 			}
+			if( modules_show.contains('res_skypeforasterisk') && modules_show.contains('chan_skype') ){
+				miscFunctions.hide_panel('skype.html', 1);
+			}
+
 		}, 2000);
 
 		if(sessionData.PLATFORM.isAA50 ){




More information about the asterisk-gui-commits mailing list