git-svn-id: https://svn.code.sf.net/p/freetel/code@529 01035d8c-6547-0410-b346-abe4f9...
authorhorse69 <horse69@01035d8c-6547-0410-b346-abe4f91aad63>
Sun, 3 Jun 2012 23:39:28 +0000 (23:39 +0000)
committerhorse69 <horse69@01035d8c-6547-0410-b346-abe4f91aad63>
Sun, 3 Jun 2012 23:39:28 +0000 (23:39 +0000)
mini-asterisk-gui2/faq.html
mini-asterisk-gui2/faq.js

index 7384f22a43970136963100edc8b7e3cc446bbf83..8cc78331e3b2afc6425853ba0cd157c3dd8913f9 100644 (file)
   <table align="center" width=800>
   <tr>
     <td><div id="menu"></div></td>
-    <td><div id="faq"></div></td>
+    <td><div id="faq"></div>
+
+    <h2>FAQ</h2>
+    <ol>
+
+       <li><strong>How do I set up my Phone system?</strong> 
+           <ol>
+           <li> Hover your mouse to get instructions (try the menu to the left).</li>
+           <li> Analog Ports are detected automatically.</li>
+           <li> Set up your <a href="network.html">Network</a>.</li>
+           <li> Add your <a href="ipphones.html">IP Phones</a>.</li>
+           <li> Configure your <a href="voiplines.html">Voip Line</a>.</li>
+           <li> The <a href="phones.html">Phone System</a> page gives you a 
+                summary of your phone system and tells you how to make calls 
+                (hover your mouse).</li>
+           </ol>
+       </li>
+
+       <li><strong>Where can I find out more about Mini Asterisk:</strong> The <a href="http://rowetel.com/ucasterisk/mini.html">Mini Asterisk Home Page</a>.
+
+       <li><strong>Where can I get Support:</strong> You can try the
+           <a href="https://lists.sourceforge.net/lists/listinfo/freetel-discuss">Free Telephony Project</a> Mailing List.
+
+       <li><strong>Answer a call on another ringing phone</strong>: If you
+           hear another phone ringing and want to answer the call on your
+           phone, just pick up your phone and dial *8.  Note an IP phone can
+           pick up a call on a ringing IP phone but not an Analog phone.  An
+           Analog pohone can pick up another ringing Analog phone but not an
+           IP phone.
+
+       <li><strong>Put a call on hold/transfer:</strong> On an IP Phone try
+           the recall or transfer button.  On an Analog Phone hold down the
+           hook button for 1 second then dial the new number.
+
+       <li><strong>Why another Asterisk GUI</strong> I had some specific
+           needs for a light weight, very easy to use GUI for
+           the <a href="http://www.rowetel.com/ucasterisk/ip04.html">IP0X</a>
+           line of products.  So I scratched the itch.  More
+           information <a href="http://www.rowetel.com/ucasterisk/mini.html#why">here</a>.
+
+    </ol>
+
+    <h2>Resources and Links</h2>
+    <ol>
+       <li>If you want to learn more about Asterisk a good on-line book is <a href="http://astbook.asteriskdocs.org">Asterisk - The Future of Telephony</a>
+    </ol>
+
+    </td>
   </tr>
 
   </table>
index 509ed147e6d15c56dac6cbe82faa2eb2984f59ee..762695c13fd7c1c0b63415444999f3a215a301e2 100644 (file)
@@ -19,26 +19,7 @@ function initialise() {
 
 
 function initialisePage() {
-    // 
-    
-    var icon = '<img src="tick.png" alt="Analog Phone OK" />';
-    var html = '';
-
-    html += '<table align="right" width=600>';
-
-    // print out info
-
-    html += '<tr><td colspan="3" align="left" valign="top"><h2>FAQ</h2></td></tr>';
-    html += '<tr><td colspan="2"><a href="http://rowetel.com/ucasterisk/mini.html">Mini Asterisk GUI2</a></td><td> </td><td>Revision XXX</td></tr>';
-    html += '<tr><td colspan="2">Brought to you by the</td><td> </td><td> <a href="http://rowetel.com/ucasterisk/index.html">Free Telephony Project</a></td></tr>';
-    // this image will only come up if internet connection is present
-    html += '<tr><td colspan="2"><a href="http://rowetel.com/ucasterisk/ip04.html"><img src="http://rowetel.com/images/ip04/ip04_case.jpg" border="0" /></a></td><td> </td><td></td></tr>';
-    html += '<tr><td>&nbsp</td></tr>';
  
-    html += '</table>';
-
-    document.getElementById("faq").innerHTML += html;
-
 }