]> git.pld-linux.org Git - packages/php-pear-SOAP_Interop.git/blame - php-pear-SOAP_Interop-path_fix.patch
- fix most of the paths in include/require calls
[packages/php-pear-SOAP_Interop.git] / php-pear-SOAP_Interop-path_fix.patch
CommitLineData
4f7c28ae
AG
1diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/index.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/index.php
2--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/index.php 2004-12-05 12:41:08.000000000 +0100
3+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/index.php 2004-12-05 12:57:14.205187416 +0100
4@@ -5,7 +5,7 @@
5 <title>PEAR SOAP Interop</title>
6 </head>
7 <?php
8-require_once 'registrationAndNotification.php';
9+require_once 'SOAP/Interop/registrationAndNotification.php';
10
11 $tests = array('Round 2 Base',
12 'Round 2 Group B',
13diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/interop_client.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/interop_client.php
14--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/interop_client.php 2004-12-05 12:41:08.000000000 +0100
15+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/interop_client.php 2004-12-05 12:56:46.983325768 +0100
16@@ -21,14 +21,14 @@
17 require_once 'DB.php'; // PEAR/DB
18 require_once 'SOAP/Client.php';
19
20-require_once 'config.php';
21-require_once 'interop_test_functions.php';
22-require_once 'interop_test.php';
23-require_once 'params_Round2Base.php';
24-require_once 'params_Round2GroupB.php';
25-require_once 'params_Round2GroupC.php';
26-require_once 'params_Round3GroupD.php';
27-require_once 'registrationAndNotification.php';
28+require_once 'SOAP/Interop/config.php';
29+require_once 'SOAP/Interop/interop_test_functions.php';
30+require_once 'SOAP/Interop/interop_test.php';
31+require_once 'SOAP/Interop/params_Round2Base.php';
32+require_once 'SOAP/Interop/params_Round2GroupB.php';
33+require_once 'SOAP/Interop/params_Round2GroupC.php';
34+require_once 'SOAP/Interop/params_Round3GroupD.php';
35+require_once 'SOAP/Interop/registrationAndNotification.php';
36
37 error_reporting(E_ALL ^ E_NOTICE);
38 $INTEROP_LOCAL_SERVER = false;
39diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/interop_client_results.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/interop_client_results.php
40--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/interop_client_results.php 2004-12-05 12:41:08.000000000 +0100
41+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/interop_client_results.php 2004-12-05 12:57:46.276311864 +0100
42@@ -21,7 +21,7 @@
43 //
44 // $Id$
45 //
46-require_once 'interop_client.php';
47+require_once 'SOAP/Interop/interop_client.php';
48 ?>
49 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
50
51diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/interop_client_run.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/interop_client_run.php
52--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/interop_client_run.php 2004-12-05 12:41:08.000000000 +0100
53+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/interop_client_run.php 2004-12-05 12:51:16.520563744 +0100
54@@ -28,7 +28,7 @@
55 error_reporting(E_ALL);
56
57 require 'Console/Getopt.php';
58-require_once 'interop_client.php';
59+require_once 'SOAP/Interop/interop_client.php';
60
61 #$SOAP_RAW_CONVERT = TRUE;
62 $INTEROP_LOCAL_SERVER = TRUE;// add local server to endpoints
63diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/interop_Round2Base.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/interop_Round2Base.php
64--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/interop_Round2Base.php 2004-12-05 12:41:08.000000000 +0100
65+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/interop_Round2Base.php 2004-12-05 12:57:59.291333280 +0100
66@@ -19,7 +19,7 @@
67 //
68 // $Id$
69 //
70-require_once 'params_classes.php';
71+require_once 'SOAP/Interop/params_classes.php';
72
73 function &generateFault($short, $long)
74 {
75diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/interop_Round2GroupB.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/interop_Round2GroupB.php
76--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/interop_Round2GroupB.php 2004-12-05 12:41:08.000000000 +0100
77+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/interop_Round2GroupB.php 2004-12-05 12:51:41.139821048 +0100
78@@ -19,7 +19,7 @@
79 //
80 // $Id$
81 //
82-require_once 'params_classes.php';
83+require_once 'SOAP/Interop/params_classes.php';
84
85 class SOAP_Interop_GroupB {
86 var $__dispatch_map = array();
87diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/params_Round2Base.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/params_Round2Base.php
88--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/params_Round2Base.php 2004-12-05 12:41:08.000000000 +0100
89+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/params_Round2Base.php 2004-12-05 12:55:43.523973056 +0100
90@@ -18,8 +18,8 @@
91 //
92 // $Id$
93 //
94-require_once 'params_values.php';
95-require_once 'interop_test.php';
96+require_once 'SOAP/Interop/params_values.php';
97+require_once 'SOAP/Interop/interop_test.php';
98 define('INTEROP_R2BASE','Round 2 Base');
99 //***********************************************************
100 // Base echoString
101diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/params_Round2GroupB.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/params_Round2GroupB.php
102--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/params_Round2GroupB.php 2004-12-05 12:41:08.000000000 +0100
103+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/params_Round2GroupB.php 2004-12-05 12:53:07.420704360 +0100
104@@ -18,8 +18,8 @@
105 //
106 // $Id$
107 //
108-require_once 'params_values.php';
109-require_once 'interop_test.php';
110+require_once 'SOAP/Interop/params_values.php';
111+require_once 'SOAP/Interop/interop_test.php';
112 define('INTEROP_R2GROUPB','Round 2 Group B');
113 //***********************************************************
114 // GroupB echoStructAsSimpleTypes
115diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/params_Round2GroupC.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/params_Round2GroupC.php
116--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/params_Round2GroupC.php 2004-12-05 12:41:08.000000000 +0100
117+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/params_Round2GroupC.php 2004-12-05 12:53:20.284748728 +0100
118@@ -18,8 +18,8 @@
119 //
120 // $Id$
121 //
122-require_once 'params_values.php';
123-require_once 'interop_test.php';
124+require_once 'SOAP/Interop/params_values.php';
125+require_once 'SOAP/Interop/interop_test.php';
126 define('INTEROP_R2GROUPC','Round 2 Group C');
127 //***********************************************************
128 // echoMeStringRequest php val tests
129diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/params_Round3GroupD.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/params_Round3GroupD.php
130--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/params_Round3GroupD.php 2004-12-05 12:41:08.000000000 +0100
131+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/params_Round3GroupD.php 2004-12-05 12:49:50.058707944 +0100
132@@ -18,8 +18,8 @@
133 //
134 // $Id$
135 //
136-require_once 'params_values.php';
137-require_once 'interop_test.php';
138+require_once 'SOAP/Interop/params_values.php';
139+require_once 'SOAP/Interop/interop_test.php';
140 define('INTEROP_R3D_COMPOUND1','Round 3 Group D Compound 1');
141 define('INTEROP_R3D_COMPOUND2','Round 3 Group D Compound 2');
142 define('INTEROP_R3D_DOCLIT','Round 3 Group D DocLit');
143diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/params_values.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/params_values.php
144--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/params_values.php 2004-12-05 12:41:08.000000000 +0100
145+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/params_values.php 2004-12-05 12:52:32.895952920 +0100
146@@ -19,7 +19,7 @@
147 // $Id$
148 //
149 require_once 'SOAP/Value.php';
150-require_once 'params_classes.php';
151+require_once 'SOAP/Interop/params_classes.php';
152
153 $soap_test_null = NULL;
154
155diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/registrationAndNotification.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/registrationAndNotification.php
156--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/registrationAndNotification.php 2004-12-05 12:41:08.000000000 +0100
157+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/registrationAndNotification.php 2004-12-05 12:58:09.057848544 +0100
158@@ -1,7 +1,7 @@
159 <?php
160 require_once 'DB.php'; // PEAR/DB
161 require_once 'SOAP/Client.php';
162-require_once 'config.php';
163+require_once 'SOAP/Interop/config.php';
164
165 class clientInfo {
166 var $name;
167diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round2Base.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round2Base.php
168--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round2Base.php 2004-12-05 12:41:08.000000000 +0100
169+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round2Base.php 2004-12-05 12:50:59.804105032 +0100
170@@ -20,7 +20,7 @@
171 // $Id$
172 //
173 require_once 'SOAP/Server.php';
174-require_once 'interop_Round2Base.php';
175+require_once 'SOAP/Interop/interop_Round2Base.php';
176
177 $base =& new SOAP_Interop_Base();
178 $server =& new SOAP_Server;
179diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round2GroupB.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round2GroupB.php
180--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round2GroupB.php 2004-12-05 12:41:08.000000000 +0100
181+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round2GroupB.php 2004-12-05 12:54:26.841630544 +0100
182@@ -20,7 +20,7 @@
183 // $Id$
184 //
185 require_once 'SOAP/Server.php';
186-require_once 'interop_Round2GroupB.php';
187+require_once 'SOAP/Interop/interop_Round2GroupB.php';
188
189 $groupb =& new SOAP_Interop_GroupB();
190 $server =& new SOAP_Server;
191diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round2GroupC.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round2GroupC.php
192--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round2GroupC.php 2004-12-05 12:41:08.000000000 +0100
193+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round2GroupC.php 2004-12-05 12:55:11.403856056 +0100
194@@ -19,8 +19,8 @@
195 // $Id$
196 //
197 require_once 'SOAP/Server.php';
198-require_once 'interop_Round2Base.php';
199-require_once 'interop_Round2GroupC.php';
200+require_once 'SOAP/Interop/interop_Round2Base.php';
201+require_once 'SOAP/Interop/interop_Round2GroupC.php';
202
203 $groupc_headers =& new SOAP_Interop_GroupC_Headers();
204 $base =& new SOAP_Interop_Base();
205diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round3GroupDCompound1.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round3GroupDCompound1.php
206--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round3GroupDCompound1.php 2004-12-05 12:41:08.000000000 +0100
207+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round3GroupDCompound1.php 2004-12-05 12:50:36.540641616 +0100
208@@ -19,7 +19,7 @@
209 // $Id$
210 //
211 require_once 'SOAP/Server.php';
212-require_once 'params_classes.php';
213+require_once 'SOAP/Interop/params_classes.php';
214
215 // http://www.whitemesa.com/r3/interop3.html
216 // http://www.whitemesa.com/r3/plan.html
217diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round3GroupDCompound2.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round3GroupDCompound2.php
218--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round3GroupDCompound2.php 2004-12-05 12:41:08.000000000 +0100
219+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round3GroupDCompound2.php 2004-12-05 12:50:44.158483528 +0100
220@@ -19,7 +19,7 @@
221 // $Id$
222 //
223 require_once 'SOAP/Server.php';
224-require_once 'params_classes.php';
225+require_once 'SOAP/Interop/params_classes.php';
226
227 // http://www.whitemesa.com/r3/interop3.html
228 // http://www.whitemesa.com/r3/plan.html
229diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round3GroupDDocLitParams.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round3GroupDDocLitParams.php
230--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round3GroupDDocLitParams.php 2004-12-05 12:41:08.000000000 +0100
231+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round3GroupDDocLitParams.php 2004-12-05 12:57:29.794817432 +0100
232@@ -19,7 +19,7 @@
233 // $Id$
234 //
235 require_once 'SOAP/Server.php';
236-require_once 'params_classes.php';
237+require_once 'SOAP/Interop/params_classes.php';
238
239 // http://www.whitemesa.com/r3/interop3.html
240 // http://www.whitemesa.com/r3/plan.html
241diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round3GroupDDocLit.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round3GroupDDocLit.php
242--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round3GroupDDocLit.php 2004-12-05 12:41:08.000000000 +0100
243+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round3GroupDDocLit.php 2004-12-05 12:50:13.993069368 +0100
244@@ -19,7 +19,7 @@
245 // $Id$
246 //
247 require_once 'SOAP/Server.php';
248-require_once 'params_classes.php';
249+require_once 'SOAP/Interop/params_classes.php';
250
251 // http://www.whitemesa.com/r3/interop3.html
252 // http://www.whitemesa.com/r3/plan.html
253diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round3GroupDEmptySA.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round3GroupDEmptySA.php
254--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round3GroupDEmptySA.php 2004-12-05 12:41:08.000000000 +0100
255+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round3GroupDEmptySA.php 2004-12-05 12:48:26.719377448 +0100
256@@ -19,7 +19,7 @@
257 // $Id$
258 //
259 require_once 'SOAP/Server.php';
260-require_once 'interop_Round3GroupD.php';
261+require_once 'SOAP/Interop/interop_Round3GroupD.php';
262
263 // http://www.whitemesa.com/r3/interop3.html
264 // http://www.whitemesa.com/r3/plan.html
265diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round3GroupDImport1.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round3GroupDImport1.php
266--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round3GroupDImport1.php 2004-12-05 12:41:08.000000000 +0100
267+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round3GroupDImport1.php 2004-12-05 12:53:45.187962864 +0100
268@@ -19,7 +19,7 @@
269 // $Id$
270 //
271 require_once 'SOAP/Server.php';
272-require_once 'params_classes.php';
273+require_once 'SOAP/Interop/params_classes.php';
274
275 // http://www.whitemesa.com/r3/interop3.html
276 // http://www.whitemesa.com/r3/plan.html
277diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round3GroupDImport2.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round3GroupDImport2.php
278--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round3GroupDImport2.php 2004-12-05 12:41:08.000000000 +0100
279+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round3GroupDImport2.php 2004-12-05 12:53:56.593229000 +0100
280@@ -19,7 +19,7 @@
281 // $Id$
282 //
283 require_once 'SOAP/Server.php';
284-require_once 'params_classes.php';
285+require_once 'SOAP/Interop/params_classes.php';
286
287 // http://www.whitemesa.com/r3/interop3.html
288 // http://www.whitemesa.com/r3/plan.html
289diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round3GroupDImport3.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round3GroupDImport3.php
290--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round3GroupDImport3.php 2004-12-05 12:41:08.000000000 +0100
291+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round3GroupDImport3.php 2004-12-05 12:54:05.066940800 +0100
292@@ -19,7 +19,7 @@
293 // $Id$
294 //
295 require_once 'SOAP/Server.php';
296-require_once 'params_classes.php';
297+require_once 'SOAP/Interop/params_classes.php';
298
299 // http://www.whitemesa.com/r3/interop3.html
300 // http://www.whitemesa.com/r3/plan.html
301diff -burN php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round3GroupDRpcEnc.php php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round3GroupDRpcEnc.php
302--- php-pear-SOAP_Interop-0.8.orig/SOAP_Interop-0.8/server_Round3GroupDRpcEnc.php 2004-12-05 12:41:08.000000000 +0100
303+++ php-pear-SOAP_Interop-0.8/SOAP_Interop-0.8/server_Round3GroupDRpcEnc.php 2004-12-05 12:54:49.206230608 +0100
304@@ -19,7 +19,7 @@
305 // $Id$
306 //
307 require_once 'SOAP/Server.php';
308-require_once 'params_classes.php';
309+require_once 'SOAP/Interop/params_classes.php';
310
311 // http://www.whitemesa.com/r3/interop3.html
312 // http://www.whitemesa.com/r3/plan.html
This page took 0.120104 seconds and 4 git commands to generate.