bkruse: branch asterisknow r621 - in /branches/asterisknow: ./ config/ config...

asterisk-gui-commits at lists.digium.com asterisk-gui-commits at lists.digium.com
Fri Apr 6 14:52:31 MST 2007


Author: bkruse
Date: Fri Apr  6 16:52:30 2007
New Revision: 621

URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=621
Log:
Merged revisions 620 via svnmerge from
https://origsvn.digium.com/svn/asterisk-gui/trunk

........
r620 | bkruse | 2007-04-06 16:48:49 -0500 (Fri, 06 Apr 2007) | 1 line

Wow, The gui can graph CPU usage, just a proof of concept.....I will do more with this later (600 lines :X)
........


Added:
    branches/asterisknow/config/graphs/
      - copied from r620, trunk/config/graphs/
    branches/asterisknow/config/graphs.html
      - copied unchanged from r620, trunk/config/graphs.html
    branches/asterisknow/config/graphs/graph_cpu.svg
      - copied unchanged from r620, trunk/config/graphs/graph_cpu.svg
    branches/asterisknow/scripts/graphs.sh
      - copied unchanged from r620, trunk/scripts/graphs.sh
Modified:
    branches/asterisknow/   (props changed)
    branches/asterisknow/Makefile
    branches/asterisknow/config/cfgbasic.html
    branches/asterisknow/config/scripts/tooltip.js

Propchange: branches/asterisknow/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Fri Apr  6 16:52:30 2007
@@ -1,1 +1,1 @@
-/trunk:1-449,489-540,542-557,559,561-577,580-586,588-617
+/trunk:1-449,489-540,542-557,559,561-577,580-586,588-617,620

Modified: branches/asterisknow/Makefile
URL: http://svn.digium.com/view/asterisk-gui/branches/asterisknow/Makefile?view=diff&rev=621&r1=620&r2=621
==============================================================================
--- branches/asterisknow/Makefile (original)
+++ branches/asterisknow/Makefile Fri Apr  6 16:52:30 2007
@@ -198,6 +198,7 @@
 	mkdir -p $(CONFIGDIR)/stylesheets
 	mkdir -p $(CONFIGDIR)/bkps
 	mkdir -p $(CONFIGDIR)/setup
+	mkdir -p $(CONFIGDIR)/graphs
 	mkdir -p $(ASTETCDIR)/scripts
 	@for x in gui_configs/*; do \
 		echo "$$x  -->  $(ASTETCDIR)" ; \
@@ -226,6 +227,10 @@
 	@for x in config/*.html; do \
 		echo "$$x  -->  $(CONFIGDIR)" ; \
 		$(INSTALL) -m 644 $$x $(CONFIGDIR)/ ; \
+	done
+	@for x in config/graphs/*; do \
+		echo "$$x  -->  $(CONFIGDIR)/graphs" ; \
+		$(INSTALL) -m 644 $$x $(CONFIGDIR)/graphs ; \
 	done
 	@if [ -x /usr/sbin/asterisk-gui-post-install ]; then \
 		/usr/sbin/asterisk-gui-post-install $(DESTDIR) . ; \

Modified: branches/asterisknow/config/cfgbasic.html
URL: http://svn.digium.com/view/asterisk-gui/branches/asterisknow/config/cfgbasic.html?view=diff&rev=621&r1=620&r2=621
==============================================================================
--- branches/asterisknow/config/cfgbasic.html (original)
+++ branches/asterisknow/config/cfgbasic.html Fri Apr  6 16:52:30 2007
@@ -89,6 +89,8 @@
 		"Allows you to record custom voicemenus over a phone"),
 	
 	new PanelDef("status", "Active Channels", "accordion-icon.gif", "Monitor active channels."),
+
+	new PanelDef("graphs", "Graphs", "accordion-icon.gif", "View Graphs of your System Information."),
 
 	new PanelDef("sysinfo", "System Info", "accordion-icon.gif", "System Information."),
 

Modified: branches/asterisknow/config/scripts/tooltip.js
URL: http://svn.digium.com/view/asterisk-gui/branches/asterisknow/config/scripts/tooltip.js?view=diff&rev=621&r1=620&r2=621
==============================================================================
--- branches/asterisknow/config/scripts/tooltip.js (original)
+++ branches/asterisknow/config/scripts/tooltip.js Fri Apr  6 16:52:30 2007
@@ -29,6 +29,7 @@
 	tooltips['users'] .en[14] = "<B>3-Way Calling:</B>Check this option if the User or Phone should have 3-Way Calling capability."; //3-Way Calling:
 	tooltips['users'] .en[15] = "<B>Is Agent:</B> Check this option if this User or Phone is an Call Queue Member (Agent)"; //Is Agent:
 	tooltips['users'] .en[16] = "<B>VM Password:</B> Voicemail Password for this user, Ex: \"1234\"."; //Voicemail Password
+	tooltips['users'] .en[17] = "<B>Hints:</B> If checked the phone being called will be sent a \"hint\" to light up status lamps on SIP phones."; // Hint phone before being dialed.
 
 // Tooltips for Conferencing (meetme)
 	tooltips['meetme']= new Object;
@@ -247,3 +248,7 @@
 	tooltips['sysinfo'].en[1] = "<B>ifconfig:</B> Network devices information (ifconfig)";
 	tooltips['sysinfo'].en[2] = "<B>Resources:</B> Disk and Memory usage information";
 	tooltips['sysinfo'].en[3] = "<B>Logs:</B> Asterisk Log files";
+
+	tooltips['graph']= new Object;
+	tooltips['graph'].en = new Array;
+	tooltips['graph'].en[0] = "<B>CPU Usage:</B> Real-Time Updating Graph For CPU Usage";



More information about the asterisk-gui-commits mailing list