pari: branch 2.0 r4020 - /branches/2.0/config/paging.html
SVN commits to the Asterisk-GUI project
asterisk-gui-commits at lists.digium.com
Tue Oct 28 16:12:19 CDT 2008
Author: pari
Date: Tue Oct 28 16:12:19 2008
New Revision: 4020
URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=4020
Log:
more progress on "AA50-2035 - Paging and Intercom"
Added:
branches/2.0/config/paging.html
Added: branches/2.0/config/paging.html
URL: http://svn.digium.com/view/asterisk-gui/branches/2.0/config/paging.html?view=auto&rev=4020
==============================================================================
--- branches/2.0/config/paging.html (added)
+++ branches/2.0/config/paging.html Tue Oct 28 16:12:19 2008
@@ -1,0 +1,133 @@
+<!--
+ * Asterisk-GUI - an Asterisk configuration interface
+ *
+ * Manage Paging/Intercom
+ *
+ * Copyright (C) 2008, Digium, Inc.
+ *
+ * Pari Nannapaneni <pari at digium.com>
+ *
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2. See the LICENSE file
+ * at the top of the source tree.
+ *
+-->
+<script src="js/jquery.js"></script>
+<script src="js/astman.js"></script>
+<link href="stylesheets/schwing.css" media="all" rel="Stylesheet" type="text/css" />
+<style type="text/css">
+
+ #table_pgoups_list {
+ border: 0px solid #666666;
+ margin-top: 8px;
+ padding : 1px;
+ width: 96%;
+ }
+
+ #table_pgoups_list {
+ border: 1px solid #666666;
+ margin-top: 5px;
+ margin-bottom:10px;
+ width: 96%;
+ text-align: center;
+ padding : 1px;
+ }
+ #table_pgoups_list tr.frow { background: #6b79a5; color: #CED7EF; }
+ #table_pgoups_list tr.frow td{ font-weight:bold; }
+ #table_pgoups_list tr td{ padding : 3px; }
+ #table_pgoups_list tr.even { background: #DFDFDF; }
+ #table_pgoups_list tr.odd{ background: #FFFFFF; }
+ #table_pgoups_list tr.even:hover, #table_pgoups_list tr.odd:hover {
+ background: #a8b6e5;
+ cursor: default;
+ }
+
+</style>
+<script>
+/*
+
+ [pagegroups] // ASTGUI.contexts.PageGroups
+ exten => 6051,1,Macro(pagingintercom|SIP/6000&SIP/6005&SIP/6007|qd)
+
+
+*/
+
+
+</script>
+<body bgcolor="EFEFEF">
+<div class="iframeTitleBar">
+ Paging & Intercom
+ <span style="cursor: pointer; cursor: hand;" onclick="window.location.reload();" > <img src="images/refresh.png" title=" Refresh " border=0 > </span>
+</div>
+
+<div class='lite_Heading'> Page/Intercom Groups </div>
+
+<div class='top_buttons' style='margin-top: -22px;'>
+ <span id='new' class='guiButtonNew' onclick='show_NewRingGroup_form();'>New Page/Intercom Group </span>
+</div>
+
+<table id='table_pageGroups_list' cellpadding=0 cellspacing=0 border=0 align=center></table>
+
+<div id="pagegroup_editdiv" STYLE="width:600;" class='dialog'>
+ <TABLE width="100%" cellpadding=0 cellspacing=0>
+ <TR class="dialog_title_tr">
+ <TD class="dialog_title" onmousedown="ASTGUI.startDrag(event);">
+ <span id="pagegroup_editdiv_title"></span>
+ </TD>
+ <TD class="dialog_title_X" onclick="ASTGUI.hideDrag(event);"> X </TD>
+ </TR>
+ </TABLE>
+ <table cellpadding=2 cellspacing=2 border=0 width="100%" align="center">
+ <tr> <td align=right valign=top>Extension for this Page/Intercom Group :</td>
+ <td colspan=2><input type=text id="text_pgExten" size=5 field_name='Extension for Page/Intercom Group' validation='numeric' required='yes'></td>
+ </tr>
+
+ <TR> <td align="right">Type : </td>
+ <td colspan=2>
+ <select id="select_pg_type" dfalt='2way' required='yes'>
+ <option value="2way">2-Way Intercom</option>
+ <option value="1way">1-Way Page</option>
+ </select>
+ </td>
+ </TR>
+
+ <tr> <td align=right>Play a beep : </td>
+ <td><input type=checkbox id="chk_pgrp_beep"></td>
+ </tr>
+
+ <tr> <td align=center valign=top>
+ <B>Page/Intercom Group Members</B>
+ </td>
+ <td width=50 align=center></td>
+ <td align=left valign=top>
+ <B>Available Users</B>
+ </td>
+ </tr>
+ <tr> <td align=right valign=top>
+ <select id="select_ringthesechannels" style="width: 240px" size=8></select>
+ </td>
+ <td width=80 align=center valign=top>
+ <span class='guiButton' id='button_addall_toringlist'>««</span><BR><BR>
+ <span class='guiButton' id='button_add_toringlist'>←</span><BR><BR>
+ <span class='guiButton' id='button_remove_fromringlist'>→</span><BR><BR>
+ <span class='guiButton' id='button_removeall_fromringlist'>»»</span>
+ </td>
+ <td align=left valign=top>
+ <select id="select_fromlistofchannels" style="width: 240px" size=8></select>
+ </td>
+ </tr>
+ <tr> <td align=center colspan=3>
+ <span class='guiButtonCancel' onclick='ASTGUI.hideDrag(event);'>Cancel</span>
+ <span class='guiButtonEdit' onclick='save_rg();'>Save</span>
+ </td>
+ </tr>
+ </table>
+</div>
+
+</body>
More information about the asterisk-gui-commits
mailing list