rbrindley: branch rbrindley/vmenus_revamp r4411 - /team/rbrindley/vmenus_reva...

SVN commits to the Asterisk-GUI project asterisk-gui-commits at lists.digium.com
Tue Jan 13 09:21:16 CST 2009


Author: rbrindley
Date: Tue Jan 13 09:21:16 2009
New Revision: 4411

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

- added the initial list of Actions into javascript


Modified:
    team/rbrindley/vmenus_revamp/config/menus2.html

Modified: team/rbrindley/vmenus_revamp/config/menus2.html
URL: http://svn.digium.com/svn-view/asterisk-gui/team/rbrindley/vmenus_revamp/config/menus2.html?view=diff&rev=4411&r1=4410&r2=4411
==============================================================================
--- team/rbrindley/vmenus_revamp/config/menus2.html (original)
+++ team/rbrindley/vmenus_revamp/config/menus2.html Tue Jan 13 09:21:16 2009
@@ -251,6 +251,87 @@
 <script type="text/javascript" src="js/jquery.ui.tabs.js"></script>
 <script type="text/javascript" src="js/menus2.js"></script>
 <script type="text/javascript">
+	var actions = new Array(
+		{ name: 'Answer', 
+			command: 'Answer()', 
+			desc: 'The Answer application is designed to signal to the caller that its destination has been reached.' },
+		{ name: 'Authenticate', 
+			command: 'Authenticate(1234)', 
+			desc: 'Authenticate is often used to verify that the caller acknowledges a certain key combination.' },
+		{ name: 'Background',
+			command: 'Background(file)',
+			desc: 'Play a file in the background.' }
+		{ name: 'Busy',
+			command: 'Busy()',
+			desc: 'Runs the Busy() command.', },
+		{ name: 'Congestion',
+			command: 'Congestion()',
+			desc: 'Runs the Congestion() command.', },
+		{ name: 'DigitTimeout',
+			command: 'DigitTimeout()',
+			desc: 'Runs the DigitTimeout() command.', },
+		{ name: 'DISA',
+			command: 'DISA()',
+			desc: 'Runs the DISA() command.', },
+		{ name: 'ResponseTimeout',
+			command: 'ResponseTimeout()',
+			desc: 'Runs the ResponseTimeout() command.', },
+		{ name: 'Macro',
+			command: 'Macro()',
+			desc: 'Runs the Macro() command.', },
+		{ name: 'Playback',
+			command: 'Playback()',
+			desc: 'Runs the Playback() command.', },
+		{ name: 'Ringing',
+			command: 'Ringing()',
+			desc: 'Runs the Ringing() command.', },
+		{ name: 'SetMusicOnHold',
+			command: 'SetMusicOnHold()',
+			desc: 'Runs the SetMusicOnHold() command.', },
+		{ name: 'SayAlpha',
+			command: 'SayAlpha()',
+			desc: 'Runs the SayAlpha() command.', },
+		{ name: 'SayDigits',
+			command: 'SayDigits()',
+			desc: 'Runs the SayDigits() command.', },
+		{ name: 'SayNumber',
+			command: 'SayNumber()',
+			desc: 'Runs the SayNumber() command.', },
+		{ name: 'Wait',
+			command: 'Wait()',
+			desc: 'Runs the Wait() command.', },
+		{ name: 'WaitExten',
+			command: 'WaitExten()',
+			desc: 'Runs the WaitExten() command.', },
+		{ name: 'toDestination',
+			command: 'toDestination()',
+			desc: 'Runs the toDestination() command.', },
+		{ name: 'toDestinationByCallerId',
+			command: 'toDestinationByCallerId()',
+			desc: 'Runs the toDestinationByCallerId() command.', },
+		{ name: 'setLanguage',
+			command: 'setLanguage()',
+			desc: 'Runs the setLanguage() command.', },
+		{ name: 'GotoDirecotry',
+			command: 'GotoDirecotry()',
+			desc: 'Runs the GotoDirecotry() command.', },
+		{ name: 'DialViaTrunk',
+			command: 'DialViaTrunk()',
+			desc: 'Runs the DialViaTrunk() command.', },
+		{ name: 'AGI',
+			command: 'AGI()',
+			desc: 'Runs the AGI() command.', },
+		{ name: 'UserEvent',
+			command: 'UserEvent()',
+			desc: 'Runs the UserEvent() command.', },
+		{ name: 'CheckOwnVoiceMail',
+			command: 'CheckOwnVoiceMail()',
+			desc: 'Runs the CheckOwnVoiceMail() command.', },
+		{ name: 'Hangup',
+			command: 'Hangup()',
+			desc: 'Runs the Hangup() command.', }
+	);
+
 	$(document).ready( function() {
 		$("#vmenus_edit_tabs").tabs({
 			navClass: 'ui-tabs-nav-side',




More information about the asterisk-gui-commits mailing list