rbrindley: branch rbrindley/astman_revamp r4538 - /team/rbrindley/astman_reva...
SVN commits to the Asterisk-GUI project
asterisk-gui-commits at lists.digium.com
Mon Mar 2 14:41:27 CST 2009
Author: rbrindley
Date: Mon Mar 2 14:41:24 2009
New Revision: 4538
URL: http://svn.digium.com/svn-view/asterisk-gui?view=rev&rev=4538
Log:
- added the pbx object and its initial members
- also implementing a very basic doxygen commenting system
Modified:
team/rbrindley/astman_revamp/config/js/pbx2.js
Modified: team/rbrindley/astman_revamp/config/js/pbx2.js
URL: http://svn.digium.com/svn-view/asterisk-gui/team/rbrindley/astman_revamp/config/js/pbx2.js?view=diff&rev=4538&r1=4537&r2=4538
==============================================================================
--- team/rbrindley/astman_revamp/config/js/pbx2.js (original)
+++ team/rbrindley/astman_revamp/config/js/pbx2.js Mon Mar 2 14:41:24 2009
@@ -18,3 +18,78 @@
* at the top of the source tree.
*
*/
+
+/**
+ * The main config class.
+ * This class contains all the objects of Asterisk that can be configured by the GUI.
+ */
+var pbx = {
+ /**
+ * Incoming Calling Rules object.
+ */
+ calling_rules_inc: {},
+ /**
+ * Outgoing Calling Rules object.
+ */
+ calling_rules_out: {},
+ /**
+ * Conferences object.
+ */
+ conferences: {},
+ /**
+ * Dial Plans object.
+ */
+ dial_plans: {},
+ /**
+ * Directory object.
+ */
+ directory: {},
+ /**
+ * Features object.
+ */
+ features: {},
+ /**
+ * Hardware object.
+ */
+ hardware: {},
+ /**
+ * Music On Hold object.
+ */
+ moh: {},
+ /**
+ * Paging object.
+ */
+ paging: {},
+ /**
+ * Queues object.
+ */
+ queues: {},
+ /**
+ * Ring Groups object.
+ */
+ ring_groups: {},
+ /**
+ * Time Interval object.
+ */
+ time_intervals: {},
+ /**
+ * Trunks object.
+ */
+ trunks: {},
+ /**
+ * Users object.
+ */
+ users: {},
+ /**
+ * VoiceMail Groups object.
+ */
+ vm_groups: {},
+ /**
+ * Voicemail object.
+ */
+ voicemail: {},
+ /**
+ * Voice Menus object.
+ */
+ voice_menus: {}
+};
More information about the asterisk-gui-commits
mailing list