Changeset 4538
- Timestamp:
- 07/26/07 17:12:27 (5 years ago)
- Files:
-
- modules/branches/2.3/asterisk-cli/module.xml (modified) (2 diffs)
- modules/branches/2.3/asterisk-cli/page.cli.php (modified) (1 diff)
- modules/branches/2.3/backup/bin/dumpastdb.php (modified) (1 diff)
- modules/branches/2.3/backup/bin/restoreastdb.php (modified) (1 diff)
- modules/branches/2.3/backup/module.xml (modified) (2 diffs)
- modules/branches/2.3/blacklist/module.xml (modified) (2 diffs)
- modules/branches/2.3/blacklist/page.blacklist.php (modified) (1 diff)
- modules/branches/2.3/core/XML_Unserializer.php (modified) (1 diff)
- modules/branches/2.3/gabcast/module.xml (modified) (2 diffs)
- modules/branches/2.3/gabcast/page.gabcast.php (modified) (1 diff)
- modules/branches/2.3/irc/functions.inc.php (modified) (1 diff)
- modules/branches/2.3/irc/module.xml (modified) (1 diff)
- modules/branches/2.3/irc/page.irc.php (modified) (1 diff)
- modules/branches/2.3/logfiles/asterisk-full-log.php (modified) (1 diff)
- modules/branches/2.3/logfiles/module.xml (modified) (1 diff)
- modules/branches/2.3/music/install.php (modified) (1 diff)
- modules/branches/2.3/music/module.xml (modified) (2 diffs)
- modules/branches/2.3/phonebook/module.xml (modified) (2 diffs)
- modules/branches/2.3/phonebook/page.phonebook.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.3/asterisk-cli/module.xml
r4080 r4538 2 2 <rawname>asterisk-cli</rawname> 3 3 <name>Asterisk CLI</name> 4 <version>1. 0</version>4 <version>1.1.1</version> 5 5 <type>tool</type> 6 6 <category>System Administration</category> … … 15 15 <md5sum>af3c22f41599762122e075ac734b1612</md5sum> 16 16 <changelog> 17 *1.1* Fixed display on systems with colored asterisk console, fixes ticket:2006 18 *1.0* Fixed security issue, first release in 2.2 19 *0.001* Original Release 17 *1.1.1* #2070 fix proper use of script tags 18 *1.1* #2006 Fixed display on systems with colored asterisk console 19 *1.0* Fixed security issue, first release in 2.2 20 *0.001* Original Release 20 21 </changelog> 21 22 </module> modules/branches/2.3/asterisk-cli/page.cli.php
r4080 r4538 36 36 <tr> 37 37 <td class="label" align="right"><?php echo _("Command:")?></td> 38 <td class="type"><input name="txtCommand" type="text" size="70" value="<? =htmlspecialchars($txtCommand);?>"></td>38 <td class="type"><input name="txtCommand" type="text" size="70" value="<?php=htmlspecialchars($txtCommand);?>"></td> 39 39 </tr> 40 40 modules/branches/2.3/backup/bin/dumpastdb.php
r3467 r4538 1 1 #!/usr/bin/env php 2 <? 2 <?php 3 3 // No use outputting anything, as env forces php headers to appear. Sigh. 4 4 modules/branches/2.3/backup/bin/restoreastdb.php
r3467 r4538 1 1 #!/usr/bin/env php 2 <? 2 <?php 3 3 // No use outputting anything, as env forces php headers to appear. Sigh. 4 4 modules/branches/2.3/backup/module.xml
r4237 r4538 2 2 <rawname>backup</rawname> 3 3 <name>Backup & Restore</name> 4 <version>2.1.4. 2</version>4 <version>2.1.4.3</version> 5 5 <type>tool</type> 6 6 <category>System Administration</category> … … 12 12 </depends> 13 13 <changelog> 14 *2.1.4.2* #1866 removed some hard coded paths 15 *2.1.4.1* changed freePBX to FreePBX 16 *2.1.4* modified install script to create table if NOT EXISTS to avoid errors 17 *2.1.3* #1992: move create/remove schema for Backup into module away from core 18 *2.1.2* Add ability to scp backups to a server, add optional provisioning directory that can be backed up (no restore ability) 19 *2.1.1* Remove core_users2astdb and core_devices2astdb, it isn't needed and corrupts resotred ampuser info 20 *2.1* Actually, really, restore ASTDB now. Finally. Also add redirect_standard to avoid problems with TRBoE. 21 *2.0.4* Add he_IL translation 22 *2.0.3* don't have BLKVM and FM astdb trees, which shouldn't be left around anyhow 23 *2.0.2* fixed restore ALL to get it to actually work 24 *2.0.1* supplied defaults and fixed bug is weekdays schedule_functions.php - #1279 25 *2.0* Now backs up and restores astdb, which was causing problems with phone configurations. 26 *1.2* Potential fix for restore issues, clean up some warnings 14 *2.1.4.3* #2070 fix proper use of script tags 15 *2.1.4.2* #1866 removed some hard coded paths 16 *2.1.4.1* changed freePBX to FreePBX 17 *2.1.4* modified install script to create table if NOT EXISTS to avoid errors 18 *2.1.3* #1992: move create/remove schema for Backup into module away from core 19 *2.1.2* Add ability to scp backups to a server, add optional provisioning directory that can be backed up (no restore ability) 20 *2.1.1* Remove core_users2astdb and core_devices2astdb, it isn't needed and corrupts resotred ampuser info 21 *2.1* Actually, really, restore ASTDB now. Finally. Also add redirect_standard to avoid problems with TRBoE. 22 *2.0.4* Add he_IL translation 23 *2.0.3* don't have BLKVM and FM astdb trees, which shouldn't be left around anyhow 24 *2.0.2* fixed restore ALL to get it to actually work 25 *2.0.1* supplied defaults and fixed bug is weekdays schedule_functions.php - #1279 26 *2.0* Now backs up and restores astdb, which was causing problems with phone configurations. 27 *1.2* Potential fix for restore issues, clean up some warnings 27 28 </changelog> 28 29 <location>release/2.3/backup-2.1.4.2.tgz</location> modules/branches/2.3/blacklist/module.xml
r4391 r4538 2 2 <rawname>blacklist</rawname> 3 3 <name>Blacklist</name> 4 <version>1.1.3 </version>4 <version>1.1.3.1</version> 5 5 <type>setup</type> 6 6 <category>CID & Number Management</category> … … 9 9 </menuitems> 10 10 <changelog> 11 *1.1.3* #2061 fixed to work with Asterisk 1.4 (wait for confirmation of 1) 12 *1.1.2* #1638 remove duplicate of zapateller instruction 13 *1.1.1* Add he_IL translation 14 *1.1* First 2.2 release. Fix minor warnings. 11 *1.1.3.1* #2070 fix proper use of script tags 12 *1.1.3* #2061 fixed to work with Asterisk 1.4 (wait for confirmation of 1) 13 *1.1.2* #1638 remove duplicate of zapateller instruction 14 *1.1.1* Add he_IL translation 15 *1.1* First 2.2 release. Fix minor warnings. 15 16 </changelog> 16 17 <location>release/2.3/blacklist-1.1.3.tgz</location> modules/branches/2.3/blacklist/page.blacklist.php
r3204 r4538 64 64 65 65 <tr> 66 <td><b><? =_("Number")?></b></td>66 <td><b><?php_("Number")?></b></td> 67 67 <td> </td> 68 68 <td> </td> modules/branches/2.3/core/XML_Unserializer.php
r2070 r4538 1 <? PHP1 <?php 2 2 /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ 3 3 modules/branches/2.3/gabcast/module.xml
r4046 r4538 2 2 <rawname>gabcast</rawname> 3 3 <name>Gabcast</name> 4 <version>1.2. 4</version>4 <version>1.2.5</version> 5 5 <type>tool</type> 6 6 <category>Third Party Addon</category> … … 9 9 </menuitems> 10 10 <changelog> 11 *1.2.5* #2070 fix proper use of script tags 11 12 *1.2.4* changed ${CALLERID(number)} to ${AMPUSER} to accomodate CID number masquerading 12 13 *1.2.3* Add he_IL translation modules/branches/2.3/gabcast/page.gabcast.php
r3204 r4538 79 79 <?php echo gabcast_player();?> 80 80 </div> 81 <? 81 <?php 82 82 } 83 83 modules/branches/2.3/irc/functions.inc.php
r2865 r4538 1 <? 1 <?php 2 2 // Try to determine the distro and kernel of the current machine 3 3 function irc_getversioninfo() { modules/branches/2.3/irc/module.xml
r3598 r4538 2 2 <rawname>irc</rawname> 3 3 <name>Online Support</name> 4 <version>1.1.1 </version>4 <version>1.1.1.1</version> 5 5 <type>tool</type> 6 6 <category>Support</category> 7 7 <description>This module lets you connect to the IRC network where developers and other users chat. You can chat to the developers live, if you have problems</description> 8 8 <changelog> 9 *1.1.1.1* #2070 fix proper use of script tags 9 10 *1.1.1* Add he_IL translation 10 11 *1.1* First release for 2.2, changed the window so it pops-out of the normal web page modules/branches/2.3/irc/page.irc.php
r2953 r4538 173 173 switchLinks(document); 174 174 </script> 175 <? 175 <?php 176 176 // Do IRC stuff 177 177 break; modules/branches/2.3/logfiles/asterisk-full-log.php
r1778 r4538 10 10 <hr> 11 11 <br> 12 <? 12 <?php 13 13 echo system ('tail --line=2000 /var/log/asterisk/full | sed -e "s/$/<br>/"'); 14 14 ?> modules/branches/2.3/logfiles/module.xml
r2773 r4538 2 2 <rawname>logfiles</rawname> 3 3 <name>Asterisk Logfiles</name> 4 <version>1.0.1</version> 4 <version>1.0.2</version> 5 <changelog> 6 *1.0.2* #2070 fix proper use of script tags 5 7 <type>tool</type> 6 8 <category>Support</category> modules/branches/2.3/music/install.php
r3470 r4538 1 <? 1 <?php 2 2 global $asterisk_conf; 3 3 require_once("modules/music/functions.inc.php"); modules/branches/2.3/music/module.xml
r4188 r4538 2 2 <rawname>music</rawname> 3 3 <name>Music on Hold</name> 4 <version>1.5.1. 1</version>4 <version>1.5.1.2</version> 5 5 <candisable>no</candisable> 6 6 <type>setup</type> … … 8 8 <description>Uploading and management of sound files (wav, mp3) to be used for on-hold music.</description> 9 9 <changelog> 10 *1.5.1.1* added candisable = no for module admin 11 *1.5.1* Added a 'none' category that results in silence played 12 *1.5* Fixed upload bug, #1646 could not upload files 13 *1.4.2* List wav files 14 *1.4.1* Add redirect_standard() call to avoid #1616 15 *1.4* Fix an issue of a new install not having a working MOH until they visit the page. 16 *1.3.2* Add he_IL translation 17 *1.3.1* Changed name to Music on Hold (from On Hold Music) 18 *1.3* Bumped version to assist upgraders from the 2.1 tree. No other changes. 19 *1.2* First release for FreePBX 2.2 - Fixed compatibility issue with new UI 10 *1.5.1.2* #2070 fix proper use of script tags 11 *1.5.1.1* added candisable = no for module admin 12 *1.5.1* Added a 'none' category that results in silence played 13 *1.5* Fixed upload bug, #1646 could not upload files 14 *1.4.2* List wav files 15 *1.4.1* Add redirect_standard() call to avoid #1616 16 *1.4* Fix an issue of a new install not having a working MOH until they visit the page. 17 *1.3.2* Add he_IL translation 18 *1.3.1* Changed name to Music on Hold (from On Hold Music) 19 *1.3* Bumped version to assist upgraders from the 2.1 tree. No other changes. 20 *1.2* First release for FreePBX 2.2 - Fixed compatibility issue with new UI 20 21 </changelog> 21 22 <menuitems> modules/branches/2.3/phonebook/module.xml
r4209 r4538 2 2 <rawname>phonebook</rawname> 3 3 <name>Phonebook</name> 4 <version>1.1.5. 2</version>4 <version>1.1.5.3</version> 5 5 <description>Provides a phonebook for FreePBX, it can be used as base for Caller ID Lookup and Speed Dial</description> 6 6 <type>tool</type> … … 13 13 <info>http://freepbx.org/wiki/AsteriskPhonebook</info> 14 14 <changelog> 15 *1.1.5.3* #2070 fix proper use of script tags 15 16 *1.1.5.2* bumping to remove checksum error 16 17 *1.1.5.1* changed freePBX to FreePBX modules/branches/2.3/phonebook/page.phonebook.php
r3201 r4538 99 99 <table cellpadding="5" width="100%"> 100 100 101 <form autocomplete="off" name="delete" action="<?php $_SERVER['PHP_SELF'] ?>" method="post" onsubmit="return confirm('<? echo _("Are you sure you want to empty your phonebook ?")?>');">102 <? #onsubmit="return edit_onsubmit();"?>101 <form autocomplete="off" name="delete" action="<?php $_SERVER['PHP_SELF'] ?>" method="post" onsubmit="return confirm('<?php echo _("Are you sure you want to empty your phonebook ?")?>');"> 102 <?php#onsubmit="return edit_onsubmit();"?> 103 103 <input type="hidden" name="action" value="empty"> 104 104 … … 108 108 109 109 <tr> 110 <td><b><? =_("Number")?></b></td>111 <td><b><? =_("Name")?></b></td>112 <td><b><? =_("Speed dial")?></b></td>110 <td><b><?php=_("Number")?></b></td> 111 <td><b><?php=_("Name")?></b></td> 112 <td><b><?php=_("Speed dial")?></b></td> 113 113 <td> </td> 114 114 <td> </td> … … 137 137 </table> 138 138 139 <? 139 <?php 140 140 } 141 141 ?>
