From 5dcb9b290b941aa045382912ac1ce25093e5ce20 Mon Sep 17 00:00:00 2001 From: horse69 Date: Thu, 10 May 2012 07:09:54 +0000 Subject: [PATCH] a git-svn-id: https://svn.code.sf.net/p/freetel/code@412 01035d8c-6547-0410-b346-abe4f91aad63 --- mini-asterisk-gui2/faq.html | 29 +++++++++++++++++++++++ mini-asterisk-gui2/faq.js | 45 ++++++++++++++++++++++++++++++++++++ mini-asterisk-gui2/phones.js | 2 +- 3 files changed, 75 insertions(+), 1 deletion(-) create mode 100644 mini-asterisk-gui2/faq.html create mode 100644 mini-asterisk-gui2/faq.js diff --git a/mini-asterisk-gui2/faq.html b/mini-asterisk-gui2/faq.html new file mode 100644 index 00000000..7384f22a --- /dev/null +++ b/mini-asterisk-gui2/faq.html @@ -0,0 +1,29 @@ + + + + +FAQ + + + + + + + + + + + + + + + + + + + +
+ + diff --git a/mini-asterisk-gui2/faq.js b/mini-asterisk-gui2/faq.js new file mode 100644 index 00000000..509ed147 --- /dev/null +++ b/mini-asterisk-gui2/faq.js @@ -0,0 +1,45 @@ +/* + faq.js + Ian Roberts + May 10 2012 + + FAQ screen for Mini Asterisk GUI2. +*/ + +var update_time = 10; + + +// Called when we load page + +function initialise() { + mainMenu(); + + initialisePage(); +} + + +function initialisePage() { + // + + var icon = 'Analog Phone OK'; + var html = ''; + + html += ''; + + // print out info + + html += ''; + html += ''; + html += ''; + // this image will only come up if internet connection is present + html += ''; + html += ''; + + html += '

FAQ

Mini Asterisk GUI2 Revision XXX
Brought to you by the Free Telephony Project
 
'; + + document.getElementById("faq").innerHTML += html; + +} + + + diff --git a/mini-asterisk-gui2/phones.js b/mini-asterisk-gui2/phones.js index e2e29028..3c5cb418 100644 --- a/mini-asterisk-gui2/phones.js +++ b/mini-asterisk-gui2/phones.js @@ -31,7 +31,7 @@ function initialisePage() { // print out internet connection - html += '

Phone System

'; + html += '

Phone System (GUI2)

'; html += 'Internet Connection:
'; html += 'Phone System IP Address: '; html += ' '; -- 2.25.1