aboutsummaryrefslogtreecommitdiffstats
path: root/config/freeswitch/freeswitch_recordings_edit.tmp
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2014-09-26 09:03:41 -0300
committerRenato Botelho <garga@FreeBSD.org>2014-09-26 09:03:41 -0300
commit783721d42370b30de032d1a886506b69cf68f606 (patch)
tree2d1a2a8db832e1cc60db8ca3a5664787fe165abb /config/freeswitch/freeswitch_recordings_edit.tmp
parent770bae54ed3453f2ed1b0039211deb177d9f7e0c (diff)
downloadpfsense-packages-783721d42370b30de032d1a886506b69cf68f606.tar.gz
pfsense-packages-783721d42370b30de032d1a886506b69cf68f606.tar.bz2
pfsense-packages-783721d42370b30de032d1a886506b69cf68f606.zip
Remove anyterm (it has closed binaries and bash inside), and also removed unmaintained freeswitch and freeswitch-dev (port was removed from FreeBSD ports tree)
Diffstat (limited to 'config/freeswitch/freeswitch_recordings_edit.tmp')
-rw-r--r--config/freeswitch/freeswitch_recordings_edit.tmp172
1 files changed, 0 insertions, 172 deletions
diff --git a/config/freeswitch/freeswitch_recordings_edit.tmp b/config/freeswitch/freeswitch_recordings_edit.tmp
deleted file mode 100644
index e53c44fc..00000000
--- a/config/freeswitch/freeswitch_recordings_edit.tmp
+++ /dev/null
@@ -1,172 +0,0 @@
-<?php
-/* $Id$ */
-/*
- freeswitch_recordings_edit.php
- Copyright (C) 2008 Mark J Crane
- All rights reserved.
-
- FreeSWITCH (TM)
- http://www.freeswitch.org/
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are met:
-
- 1. Redistributions of source code must retain the above copyright notice,
- this list of conditions and the following disclaimer.
-
- 2. Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
-
- THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
- INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
- AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
- AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
- OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- POSSIBILITY OF SUCH DAMAGE.
-*/
-
-require("guiconfig.inc");
-require("/usr/local/pkg/freeswitch.inc");
-
-
-$a_recordings = &$config['installedpackages']['freeswitchrecordings']['config'];
-
-
-$id = $_GET['id'];
-if (isset($_POST['id'])) {
- $id = $_POST['id'];
-}
-
-if (isset($id) && $a_recordings[$id]) {
- $pconfig['filename'] = $a_recordings[$id]['filename'];
- $pconfig['recordingname'] = $a_recordings[$id]['recordingname'];
- $pconfig['recordingid'] = $a_recordings[$id]['recordingid'];
- $pconfig['descr'] = $a_recordings[$id]['descr'];
-}
-
-if ($_POST) {
-
- unset($input_errors);
- $pconfig = $_POST;
-
-
- if (!$input_errors) {
-
-
- $recordingent = array();
- $recordingent['recordingname'] = $_POST['recordingname'];
- $recordingent['descr'] = $_POST['descr'];
-
-
- if (isset($id) && $a_recordings[$id]) {
- //update
- if (strlen($_POST['recordingid']) > 0) {
- $recordingent['recordingid'] = $_POST['recordingid'];
- }
- else {
- $recordingent['recordingid'] = guid();
- }
-
- $recordingent['filename'] = $_POST['filename'];
-
- //if file name is not the same then rename the file
- if ($_POST['filename'] != $_POST['filename_orig']) {
- rename('/usr/local/freeswitch/recordings/'.$_POST['filename_orig'], '/usr/local/freeswitch/recordings/'.$_POST['filename']);
- }
- $a_recordings[$id] = $recordingent;
- }
- else {
- //add
- $recordingent['filename'] = $_POST['filename'];
- $a_recordings[] = $recordingent;
- }
-
- write_config();
-
- header("Location: freeswitch_recordings.php");
- exit;
- }
-}
-
-include("head.inc");
-
-?>
-
-<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
-<?php include("fbegin.inc"); ?>
-<p class="pgtitle">FreeSWITCH: Recordings: Edit</p>
-<?php if ($input_errors) print_input_errors($input_errors); ?>
-
-
-<div id="mainlevel">
-<table width="100%" border="0" cellpadding="0" cellspacing="0">
-<tr><td class="tabnavtbl">
-<?php
-
-display_top_tabs(build_menu());
-
-?>
-</td></tr>
-</table>
-<table width="100%" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td class="tabcont" >
- <br />
- <form action="freeswitch_recordings_edit.php" method="post" name="iform" id="iform">
- <table width="100%" border="0" cellpadding="6" cellspacing="0">
- <tr>
- <td width="22%" valign="top" class="vncellreq">Filename</td>
- <td width="78%" class="vtable">
- <input name="filename" type="text" class="formfld" id="filename" size="40" value="<?=htmlspecialchars($pconfig['filename']);?>">
- <br> <span class="vexpl">Name of the file<br>
- e.g. <em>example.wav</em></span></td>
- </tr>
- <tr>
- <td width="22%" valign="top" class="vncellreq">Recording Name</td>
- <td width="78%" class="vtable">
- <input name="recordingname" type="text" class="formfld" id="recordingname" size="40" value="<?=htmlspecialchars($pconfig['recordingname']);?>">
- <br> <span class="vexpl">Recording Name<br>
- e.g. <em>recordingx</em></span></td>
- </tr>
- <tr>
- <td width="22%" valign="top" class="vncell">Description</td>
- <td width="78%" class="vtable">
- <input name="descr" type="text" class="formfld" id="descr" size="40" value="<?=htmlspecialchars($pconfig['descr']);?>">
- <br> <span class="vexpl">You may enter a description here
- for your reference (not parsed).</span></td>
- </tr>
- <tr>
- <td width="22%" valign="top">&nbsp;</td>
- <td width="78%">
- <input name="Submit" type="submit" class="formbtn" value="Save"> <input class="formbtn" type="button" value="Cancel" onclick="history.back()">
- <?php if (isset($id) && $a_recordings[$id]): ?>
- <input name="filename_orig" type="hidden" value="<?=htmlspecialchars($pconfig['filename']);?>">
- <input name="id" type="hidden" value="<?=$id;?>">
- <input name="recordingid" type="hidden" value="<?=htmlspecialchars($pconfig['recordingid']);?>">
- <?php endif; ?>
- </td>
- </tr>
- </table>
- </form>
-
- <br>
- <br>
- <br>
- <br>
- <br>
- <br>
-
- </td>
- </tr>
-</table>
-
-</div>
-
-<?php include("fend.inc"); ?>
-</body>
-</html>