[Pkg-voip-commits] r3506 - in freepbx/modules-2.2: . modules/freepbx-module-phpagiconf/debian/patches

Diego Iastrubni elcuco-guest at alioth.debian.org
Tue May 1 13:19:55 UTC 2007


Author: elcuco-guest
Date: 2007-05-01 13:19:54 +0000 (Tue, 01 May 2007)
New Revision: 3506

Added:
   freepbx/modules-2.2/modules/freepbx-module-phpagiconf/debian/patches/fix-phpagiconf-creation.dpatch
Modified:
   freepbx/modules-2.2/modules-2.2.xml
   freepbx/modules-2.2/modules/freepbx-module-phpagiconf/debian/patches/00list
   freepbx/modules-2.2/modules/freepbx-module-phpagiconf/debian/patches/debian-paths.dpatch
   freepbx/modules-2.2/modules/freepbx-module-phpagiconf/debian/patches/sqlite3-support.dpatch
Log:
update the phpagiconf, and fix various thinhs
in the last update i forgot to commit modules-2.2.xml



Modified: freepbx/modules-2.2/modules/freepbx-module-phpagiconf/debian/patches/00list
===================================================================
--- freepbx/modules-2.2/modules/freepbx-module-phpagiconf/debian/patches/00list	2007-04-30 23:17:05 UTC (rev 3505)
+++ freepbx/modules-2.2/modules/freepbx-module-phpagiconf/debian/patches/00list	2007-05-01 13:19:54 UTC (rev 3506)
@@ -1,3 +1,4 @@
 sqlite3-support
 debian-paths
 
+fix-phpagiconf-creation

Modified: freepbx/modules-2.2/modules/freepbx-module-phpagiconf/debian/patches/debian-paths.dpatch
===================================================================
--- freepbx/modules-2.2/modules/freepbx-module-phpagiconf/debian/patches/debian-paths.dpatch	2007-04-30 23:17:05 UTC (rev 3505)
+++ freepbx/modules-2.2/modules/freepbx-module-phpagiconf/debian/patches/debian-paths.dpatch	2007-05-01 13:19:54 UTC (rev 3506)
@@ -1,25 +1,12 @@
 #! /bin/sh /usr/share/dpatch/dpatch-run
 ## debian-paths.dpatch by Diego Iastrubni <diego.iastrubni at xorcom.com>
 ##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: No description.
+## DP: Fix default path's to match the ones used in Debian
 
 @DPATCH@
-diff -urNad freepbx-module-phpagiconf~/functions.inc.php freepbx-module-phpagiconf/functions.inc.php
---- freepbx-module-phpagiconf~/functions.inc.php	2007-04-22 18:31:31.000000000 +0300
-+++ freepbx-module-phpagiconf/functions.inc.php	2007-04-22 18:31:31.000000000 +0300
-@@ -3,7 +3,7 @@
- function phpagiconf_gen_conf() {
- 	global $active_modules;
- 
--	$file = "/tmp/phpagi_".rand().".conf";
-+	$file = "/etc/asterisk/phpagi_".rand().".conf";
- 	$data = phpagiconf_get();
- 	$content = "[phpagi]\n";
- 	$content .= "debug=".($data['debug']?'true':'false')."\n";
 diff -urNad freepbx-module-phpagiconf~/page.phpagiconf.php freepbx-module-phpagiconf/page.phpagiconf.php
 --- freepbx-module-phpagiconf~/page.phpagiconf.php	2007-04-02 11:21:33.000000000 +0300
-+++ freepbx-module-phpagiconf/page.phpagiconf.php	2007-04-22 18:31:31.000000000 +0300
++++ freepbx-module-phpagiconf/page.phpagiconf.php	2007-04-23 13:25:54.000000000 +0300
 @@ -23,10 +23,10 @@
  $asman_server = isset($_REQUEST['asman_server'])?$_REQUEST['asman_server']:'localhost';
  $asman_port = isset($_REQUEST['asman_port'])?$_REQUEST['asman_port']:'5038';

Added: freepbx/modules-2.2/modules/freepbx-module-phpagiconf/debian/patches/fix-phpagiconf-creation.dpatch
===================================================================
--- freepbx/modules-2.2/modules/freepbx-module-phpagiconf/debian/patches/fix-phpagiconf-creation.dpatch	2007-04-30 23:17:05 UTC (rev 3505)
+++ freepbx/modules-2.2/modules/freepbx-module-phpagiconf/debian/patches/fix-phpagiconf-creation.dpatch	2007-05-01 13:19:54 UTC (rev 3506)
@@ -0,0 +1,19 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## fix-phpagiconf-creation.dpatch by Diego Iastrubni <diego.iastrubni at xorcom.com>
+##
+## DP: Create tmp files on the same dir, as moving them across filesystems might
+## DP: not work. Closes upstream: http://www.freepbx.org/trac/ticket/1910
+
+ at DPATCH@
+diff -urNad freepbx-module-phpagiconf~/functions.inc.php freepbx-module-phpagiconf/functions.inc.php
+--- freepbx-module-phpagiconf~/functions.inc.php	2007-04-02 11:21:33.000000000 +0300
++++ freepbx-module-phpagiconf/functions.inc.php	2007-04-23 13:27:15.000000000 +0300
+@@ -3,7 +3,7 @@
+ function phpagiconf_gen_conf() {
+ 	global $active_modules;
+ 
+-	$file = "/tmp/phpagi_".rand().".conf";
++	$file = "/etc/asterisk/phpagi_".rand().".conf";
+ 	$data = phpagiconf_get();
+ 	$content = "[phpagi]\n";
+ 	$content .= "debug=".($data['debug']?'true':'false')."\n";


Property changes on: freepbx/modules-2.2/modules/freepbx-module-phpagiconf/debian/patches/fix-phpagiconf-creation.dpatch
___________________________________________________________________
Name: svn:executable
   + *

Modified: freepbx/modules-2.2/modules/freepbx-module-phpagiconf/debian/patches/sqlite3-support.dpatch
===================================================================
--- freepbx/modules-2.2/modules/freepbx-module-phpagiconf/debian/patches/sqlite3-support.dpatch	2007-04-30 23:17:05 UTC (rev 3505)
+++ freepbx/modules-2.2/modules/freepbx-module-phpagiconf/debian/patches/sqlite3-support.dpatch	2007-05-01 13:19:54 UTC (rev 3506)
@@ -6,7 +6,7 @@
 @DPATCH@
 diff -urNad freepbx-module-phpagiconf~/functions.inc.php freepbx-module-phpagiconf/functions.inc.php
 --- freepbx-module-phpagiconf~/functions.inc.php	2007-04-02 11:21:33.000000000 +0300
-+++ freepbx-module-phpagiconf/functions.inc.php	2007-04-23 12:41:50.000000000 +0300
++++ freepbx-module-phpagiconf/functions.inc.php	2007-04-23 13:25:44.000000000 +0300
 @@ -52,7 +52,13 @@
  	} else {
  		$asmanager = array ($amp_conf['AMPDBUSER'], $amp_conf['AMPDBPASS']);
@@ -24,7 +24,7 @@
  ?>
 diff -urNad freepbx-module-phpagiconf~/install.php freepbx-module-phpagiconf/install.php
 --- freepbx-module-phpagiconf~/install.php	1970-01-01 02:00:00.000000000 +0200
-+++ freepbx-module-phpagiconf/install.php	2007-04-23 12:41:18.000000000 +0300
++++ freepbx-module-phpagiconf/install.php	2007-04-23 13:25:44.000000000 +0300
 @@ -0,0 +1,32 @@
 +<?php
 +

Modified: freepbx/modules-2.2/modules-2.2.xml
===================================================================
--- freepbx/modules-2.2/modules-2.2.xml	2007-04-30 23:17:05 UTC (rev 3505)
+++ freepbx/modules-2.2/modules-2.2.xml	2007-05-01 13:19:54 UTC (rev 3506)
@@ -54,24 +54,25 @@
 <module>
 	<rawname>voicemail</rawname>
 	<name>Voicemail</name>
-	<version>1.6.1</version>
+	<version>1.6.2</version>
 	<changelog>
-           *1.6.1* Bump version to fix existing extensions with disabled voicemail #1697
-           *1.6* Re-Fix 1.5.2, bump version for 2.2rc2 release.
-	    *1.5.3* Fix for vm Javascript sanity checks only working in DevAndUser mode.
-	    *1.5.2* Fix vm not appearing in DeviceAndUser mode
-           *1.5.1* Fix for MWI not working
-	    *1.5* Fix issue with vm options not being saved on creation of extension
-	    *1.4.2* Change category to Basic
-	    *1.4.1* Fixed radio button defaults to 'no' from false so they work
-	    *1.4* First release for 2.2. Fix inability to create voicemail box
+		*1.6.2* Remove hardcoded paths to voicemail.conf
+		*1.6.1* Bump version to fix existing extensions with disabled voicemail #1697
+		*1.6* Re-Fix 1.5.2, bump version for 2.2rc2 release.
+		*1.5.3* Fix for vm Javascript sanity checks only working in DevAndUser mode.
+		*1.5.2* Fix vm not appearing in DeviceAndUser mode
+		*1.5.1* Fix for MWI not working
+		*1.5* Fix issue with vm options not being saved on creation of extension
+		*1.4.2* Change category to Basic
+		*1.4.1* Fixed radio button defaults to 'no' from false so they work
+		*1.4* First release for 2.2. Fix inability to create voicemail box
 	</changelog>
 	<description>This module allows you to configure Voicemail for a user or extension</description>
 	<type>setup</type>
 	<category>Basic</category>
-	<location>release/2.2/voicemail-1.6.1.tgz</location>
+	<location>release/2.2/voicemail-1.6.2.tgz</location>
 	<info>http://aussievoip.com.au/wiki/freePBX-Features</info>
-	<md5sum>68cd0c181f06fc2fef13392663321172</md5sum>
+	<md5sum>3d82ce1ce1cd38a0b65dc11b5eb65d3a</md5sum>
 </module>
 <module>
 	<rawname>callwaiting</rawname>
@@ -272,13 +273,14 @@
 <module>
 	<rawname>ivr</rawname>
 	<name>IVR</name>
-	<version>2.5.13</version>
+	<version>2.5.13.1</version>
 	<type>setup</type>
 	<category>Inbound Call Control</category>
 	<description>
 		Creates Digital Receptionist (aka Auto-Attendant, aka Interactive Voice Response) menus. These can be used to send callers to different locations (eg, "Press 1 for sales") and/or allow direct-dialing of extension numbers. 
 	</description>
 	<changelog>
+		*2.5.13.1* make sure t ext getting put in (for some reason it wasn't always, this shoudl fix it)
 		*2.5.13* #1871 't' extension not being created by default fixed
 		*2.5.12* skip the answer/wait(1) if channel is already answered
 		*2.5.11* Allow option for IVR to loop back to itself without corrupting the return-to-ivr to the parent
@@ -297,9 +299,9 @@
 	<menuitems>
 		<ivr>IVR</ivr>
 	</menuitems>
-	<location>release/2.2/ivr-2.5.13.tgz</location>
+	<location>release/2.2/ivr-2.5.13.1.tgz</location>
 	<info>http://aussievoip.com.au/wiki/freePBX-IVR</info>
-	<md5sum>82c7a9e136c6230a4a6bfb773c93cd8b</md5sum>
+	<md5sum>f98bc8dece6b5144becd86b313047b00</md5sum>
 </module>
 <module>
 	<rawname>phpagiconf</rawname>
@@ -809,7 +811,7 @@
 <module>
 	<rawname>parking</rawname>
 	<name>Parking Lot</name>
-	<version>2.1</version>
+	<version>2.1.1</version>
 	<type>setup</type>
 	<category>Internal Options &amp; Configuration</category>
 	<description>Manages parking lot extensions and other options.
@@ -819,11 +821,12 @@
 		<parking>Parking Lot</parking>
 	</menuitems>
 	<changelog>
+		*2.1.1* fix pseudo hardcoded path issue (hardcoded form missing global)
 		*2.1* Remove settings on uninstall bug #1597
 		*2.0.2* Add he_IL translation
 	</changelog>
-	<location>release/2.2/parking-2.1.tgz</location>
+	<location>release/2.2/parking-2.1.1.tgz</location>
 	<info>http://aussievoip.com.au/wiki/freePBX-ParkingLot</info>
-	<md5sum>1c2ca325423c117580381a5ec4773d19</md5sum>
+	<md5sum>aa572fa3c7dd5e7ec67a23bb8d1df29d</md5sum>
 </module>
 </xml>




More information about the Pkg-voip-commits mailing list