forked from CloCkWeRX/sdo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.xml
1217 lines (1216 loc) · 57.1 KB
/
package.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE package SYSTEM "http://pear.php.net/dtd/package-1.0">
<package version="1.0" packagerversion="1.6.0">
<name>SCA_SDO</name>
<summary>Service Component Architecture (SCA) and Service Data Objects (SDO) for PHP</summary>
<description>Service Data Objects (SDOs) enable PHP applications to work with data from different sources (typically a database query or an XML file) using a single interface. SCA for PHP allows a PHP programmer to write reusable components (classes) in PHP, which can be called either locally, or in a a variety of ways remotely (soap web services, xml-rpc, json-rpc, REST, etc), but always with the same interface.
</description>
<maintainers>
<maintainer>
<user>gcc</user>
<name>Graham Charters</name>
<email>[email protected]</email>
<role>lead</role>
</maintainer>
<maintainer>
<user>cem</user>
<name>Caroline Maynard</name>
<email>[email protected]</email>
<role>lead</role>
</maintainer>
<maintainer>
<user>mfp</user>
<name>Matthew Peters</name>
<email>[email protected]</email>
<role>lead</role>
</maintainer>
<maintainer>
<user>slaws</user>
<name>Simon Laws</name>
<email>[email protected]</email>
<role>lead</role>
</maintainer>
</maintainers>
<release>
<version>1.2.4</version>
<date>2008-03-03</date>
<license>Apache 2.0</license>
<state>stable</state>
<notes># The ability to control the operations on a service interface through a PHP interface
by specifying the PHP interface on the @service annotation - e.g. @service MyServiceInterface
# PECL bug 11997 - don't remove xsi:type (except on top level soap message or response)
# PECL bug 11996 - not showing LIBXML2 parse errors
# PECL bug 12193 - alphabetical order of namespaces causes failure
# PECL bug 12103 - saveString doesn't encode entities
# PECL bug 12443 - unable to access an XSD property containing a hyphen (-)
# PECL bug 13101 - Repeated nill elements of extended type cause "Parser found unknown element" exception
# Fix to add wsdl namespace prefix to <types> element in WSDL, without which it will not validate.
# Fix for Tuscany AccessViolation problem when serializing a DO
# Backward-compatible updates to SDO extension so that it will work with PHP 5.3
# Backward-compatible updates to SCA so that it will work with PHP 5.3.
# Fix for failures that occur when using the soap extension - see thread "SCA Webservice in WSDL mode"
# Substantial rework of the examples to illustrate more bindings - see examples/SCA/index.html
</notes>
<deps>
<dep type="php" rel="ge" version="5.1.0" optional="no"/>
<dep type="pkg" rel="not" optional="no">sdo</dep>
<dep type="ext" rel="not" optional="no">sdo_das_xml</dep>
</deps>
<filelist>
<dir name="SCA">
<dir name="Bindings">
<dir name="atom">
<file role="php" name="Atom1.0.xsd"/>
<file role="php" name="Proxy.php"/>
<file role="php" name="RequestTester.php"/>
<file role="php" name="SCA_AtomServer.php"/>
<file role="php" name="SCA_ServiceWrapperAtom.php"/>
<file role="php" name="ServiceRequestHandler.php"/>
<file role="php" name="xhtml1-strict.xsd"/>
<file role="php" name="xml.xsd"/>
</dir> <!-- /SCA/Bindings/atom -->
<dir name="ebaysoap">
<file role="php" name="Mapper.php"/>
<file role="php" name="Proxy.php"/>
</dir> <!-- /SCA/Bindings/ebaysoap -->
<dir name="jsonrpc">
<file role="php" name="Proxy.php"/>
<file role="php" name="RequestTester.php"/>
<file role="php" name="SCA_GenerateSmd.php"/>
<file role="php" name="SCA_JsonRpcClient.php"/>
<file role="php" name="SCA_JsonRpcServer.php"/>
<file role="php" name="SCA_ServiceWrapperJson.php"/>
<file role="php" name="ServiceDescriptionGenerator.php"/>
<file role="php" name="ServiceRequestHandler.php"/>
</dir> <!-- /SCA/Bindings/jsonrpc -->
<dir name="local">
<file role="php" name="Proxy.php"/>
</dir> <!-- /SCA/Bindings/local -->
<dir name="message">
<file role="php" name="Mapper.php"/>
<file role="php" name="MessageServiceDescription.xsd"/>
<file role="php" name="Proxy.php"/>
<file role="php" name="RequestTester.php"/>
<file role="php" name="SAM_Client.php"/>
<file role="php" name="ServiceDescriptionGenerator.php"/>
<file role="php" name="ServiceRequestHandler.php"/>
<file role="php" name="Wrapper.php"/>
</dir> <!-- /SCA/Bindings/message -->
<dir name="restresource">
<file role="php" name="Proxy.php"/>
<file role="php" name="README"/>
<file role="php" name="RequestTester.php"/>
<file role="php" name="ResourceTemplate.php"/>
<file role="php" name="Server.php"/>
<file role="php" name="ServiceRequestHandler.php"/>
<file role="php" name="Wrapper.php"/>
</dir> <!-- /SCA/Bindings/restresource -->
<dir name="restrpc">
<file role="php" name="Proxy.php"/>
<file role="php" name="README"/>
<file role="php" name="RequestTester.php"/>
<file role="php" name="Server.php"/>
<file role="php" name="ServiceRequestHandler.php"/>
<file role="php" name="Wrapper.php"/>
</dir> <!-- /SCA/Bindings/restrpc -->
<dir name="soap">
<dir name="soap">
<file role="php" name="2003-02-11.xsd"/>
</dir> <!-- /SCA/Bindings/soap/soap -->
<file role="php" name="2003-02-11.xsd"/>
<file role="php" name="Mapper.php"/>
<file role="php" name="Proxy.php"/>
<file role="php" name="RequestTester.php"/>
<file role="php" name="ServiceDescriptionGenerator.php"/>
<file role="php" name="ServiceRequestHandler.php"/>
<file role="php" name="Wrapper.php"/>
</dir> <!-- /SCA/Bindings/soap -->
<dir name="tuscany">
<file role="php" name="SCA_TuscanyProxy.php"/>
<file role="php" name="SCA_TuscanyWrapper.php"/>
</dir> <!-- /SCA/Bindings/tuscany -->
<dir name="xmlrpc">
<file role="php" name="Das.php"/>
<file role="php" name="Proxy.php"/>
<file role="php" name="RequestTester.php"/>
<file role="php" name="Server.php"/>
<file role="php" name="ServiceDescriptionGenerator.php"/>
<file role="php" name="ServiceRequestHandler.php"/>
<file role="php" name="Wrapper.php"/>
</dir> <!-- /SCA/Bindings/xmlrpc -->
</dir> <!-- /SCA/Bindings -->
<file role="php" name="CREDITS"/>
<file role="php" name="EXPERIMENTAL"/>
<file role="php" name="INSTALL"/>
<file role="php" name="README"/>
<file role="php" name="SCA.php"/>
<file role="php" name="SCA_AnnotationReader.php"/>
<file role="php" name="SCA_AnnotationRules.php"/>
<file role="php" name="SCA_BindingFactory.php"/>
<file role="php" name="SCA_CommentReader.php"/>
<file role="php" name="SCA_Exceptions.php"/>
<file role="php" name="SCA_Helper.php"/>
<file role="php" name="SCA_HttpHeaderCatcher.php"/>
<file role="php" name="SCA_LogFactory.php"/>
<file role="php" name="SCA_Logger.php"/>
<file role="php" name="SCA_LogInterface.php"/>
<file role="php" name="SCA_ReferenceType.php"/>
<file role="php" name="SCA_ServiceDescription.php"/>
</dir> <!-- /SCA -->
<dir name="/" baseinstalldir="SDO">
<dir name="commonj">
<dir name="sdo">
<file role="src" name="ChangedDataObjectList.h"/>
<file role="src" name="ChangedDataObjectListImpl.cpp"/>
<file role="src" name="ChangedDataObjectListImpl.h"/>
<file role="src" name="ChangeSummary.cpp"/>
<file role="src" name="ChangeSummary.h"/>
<file role="src" name="ChangeSummaryBuilder.cpp"/>
<file role="src" name="ChangeSummaryBuilder.h"/>
<file role="src" name="ChangeSummaryImpl.cpp"/>
<file role="src" name="ChangeSummaryImpl.h"/>
<file role="src" name="CopyHelper.cpp"/>
<file role="src" name="CopyHelper.h"/>
<file role="src" name="DASProperty.cpp"/>
<file role="src" name="DASProperty.h"/>
<file role="src" name="DASType.cpp"/>
<file role="src" name="DASType.h"/>
<file role="src" name="DASValue.cpp"/>
<file role="src" name="DASValue.h"/>
<file role="src" name="DASValues.cpp"/>
<file role="src" name="DASValues.h"/>
<file role="src" name="DataFactory.cpp"/>
<file role="src" name="DataFactory.h"/>
<file role="src" name="DataFactoryImpl.cpp"/>
<file role="src" name="DataFactoryImpl.h"/>
<file role="src" name="DataGraph.cpp"/>
<file role="src" name="DataGraph.h"/>
<file role="src" name="DataGraphImpl.cpp"/>
<file role="src" name="DataGraphImpl.h"/>
<file role="src" name="DataObject.cpp"/>
<file role="src" name="DataObject.h"/>
<file role="src" name="DataObjectImpl.cpp"/>
<file role="src" name="DataObjectImpl.h"/>
<file role="src" name="DataObjectInstance.cpp"/>
<file role="src" name="DataObjectInstance.h"/>
<file role="src" name="DataObjectList.cpp"/>
<file role="src" name="DataObjectList.h"/>
<file role="src" name="DataObjectListImpl.cpp"/>
<file role="src" name="DataObjectListImpl.h"/>
<file role="src" name="DataTypeInfo.cpp"/>
<file role="src" name="DataTypeInfo.h"/>
<file role="src" name="DefaultLogWriter.cpp"/>
<file role="src" name="DefaultLogWriter.h"/>
<file role="src" name="disable_warn.h"/>
<file role="src" name="EqualityHelper.cpp"/>
<file role="src" name="EqualityHelper.h"/>
<file role="src" name="export.h"/>
<file role="src" name="GroupDefinition.cpp"/>
<file role="src" name="GroupDefinition.h"/>
<file role="src" name="GroupEvent.cpp"/>
<file role="src" name="GroupEvent.h"/>
<file role="src" name="HelperProvider.cpp"/>
<file role="src" name="HelperProvider.h"/>
<file role="src" name="Logger.cpp"/>
<file role="src" name="Logger.h"/>
<file role="src" name="Logging.h"/>
<file role="src" name="LogWriter.cpp"/>
<file role="src" name="LogWriter.h"/>
<file role="src" name="ParserErrorSetter.cpp"/>
<file role="src" name="ParserErrorSetter.h"/>
<file role="src" name="Property.cpp"/>
<file role="src" name="Property.h"/>
<file role="src" name="PropertyDefinition.cpp"/>
<file role="src" name="PropertyDefinition.h"/>
<file role="src" name="PropertyDefinitionImpl.cpp"/>
<file role="src" name="PropertyDefinitionImpl.h"/>
<file role="src" name="PropertyImpl.cpp"/>
<file role="src" name="PropertyImpl.h"/>
<file role="src" name="PropertyList.cpp"/>
<file role="src" name="PropertyList.h"/>
<file role="src" name="PropertySetting.cpp"/>
<file role="src" name="PropertySetting.h"/>
<file role="src" name="RefCountingObject.cpp"/>
<file role="src" name="RefCountingObject.h"/>
<file role="src" name="RefCountingPointer.cpp"/>
<file role="src" name="RefCountingPointer.h"/>
<file role="src" name="SAX2Attribute.cpp"/>
<file role="src" name="SAX2Attribute.h"/>
<file role="src" name="SAX2Attributes.cpp"/>
<file role="src" name="SAX2Attributes.h"/>
<file role="src" name="SAX2Namespaces.cpp"/>
<file role="src" name="SAX2Namespaces.h"/>
<file role="src" name="SAX2Parser.cpp"/>
<file role="src" name="SAX2Parser.h"/>
<file role="src" name="SchemaInfo.cpp"/>
<file role="src" name="SchemaInfo.h"/>
<file role="src" name="SDO.h"/>
<file role="src" name="SdoCheck.cpp"/>
<file role="src" name="SdoCheck.h"/>
<file role="src" name="SDODataConverter.cpp"/>
<file role="src" name="SDODataConverter.h"/>
<file role="src" name="SDODate.cpp"/>
<file role="src" name="SDODate.h"/>
<file role="src" name="SdoRuntime.cpp"/>
<file role="src" name="SdoRuntime.h"/>
<file role="src" name="SDORuntimeException.cpp"/>
<file role="src" name="SDORuntimeException.h"/>
<file role="src" name="SDOSAX2Parser.cpp"/>
<file role="src" name="SDOSAX2Parser.h"/>
<file role="src" name="SDOSchemaSAX2Parser.cpp"/>
<file role="src" name="SDOSchemaSAX2Parser.h"/>
<file role="src" name="SDOSPI.h"/>
<file role="src" name="SDOString.h"/>
<file role="src" name="SDOUserMacros.h"/>
<file role="src" name="SDOUtils.cpp"/>
<file role="src" name="SDOUtils.h"/>
<file role="src" name="SDOValue.cpp"/>
<file role="src" name="SDOValue.h"/>
<file role="src" name="SDOXMLBufferWriter.cpp"/>
<file role="src" name="SDOXMLBufferWriter.h"/>
<file role="src" name="SDOXMLFileWriter.cpp"/>
<file role="src" name="SDOXMLFileWriter.h"/>
<file role="src" name="SDOXMLStreamWriter.cpp"/>
<file role="src" name="SDOXMLStreamWriter.h"/>
<file role="src" name="SDOXMLString.cpp"/>
<file role="src" name="SDOXMLString.h"/>
<file role="src" name="SDOXMLWriter.cpp"/>
<file role="src" name="SDOXMLWriter.h"/>
<file role="src" name="SDOXSDBufferWriter.cpp"/>
<file role="src" name="SDOXSDBufferWriter.h"/>
<file role="src" name="SDOXSDFileWriter.cpp"/>
<file role="src" name="SDOXSDFileWriter.h"/>
<file role="src" name="SDOXSDStreamWriter.cpp"/>
<file role="src" name="SDOXSDStreamWriter.h"/>
<file role="src" name="SDOXSDWriter.cpp"/>
<file role="src" name="SDOXSDWriter.h"/>
<file role="src" name="Sequence.cpp"/>
<file role="src" name="Sequence.h"/>
<file role="src" name="SequenceImpl.cpp"/>
<file role="src" name="SequenceImpl.h"/>
<file role="src" name="Setting.cpp"/>
<file role="src" name="Setting.h"/>
<file role="src" name="SettingList.cpp"/>
<file role="src" name="SettingList.h"/>
<file role="src" name="Type.cpp"/>
<file role="src" name="Type.h"/>
<file role="src" name="TypeDefinition.cpp"/>
<file role="src" name="TypeDefinition.h"/>
<file role="src" name="TypeDefinitionImpl.cpp"/>
<file role="src" name="TypeDefinitionImpl.h"/>
<file role="src" name="TypeDefinitions.cpp"/>
<file role="src" name="TypeDefinitions.h"/>
<file role="src" name="TypeDefinitionsImpl.cpp"/>
<file role="src" name="TypeDefinitionsImpl.h"/>
<file role="src" name="TypeImpl.cpp"/>
<file role="src" name="TypeImpl.h"/>
<file role="src" name="TypeList.cpp"/>
<file role="src" name="TypeList.h"/>
<file role="src" name="XMLDocument.cpp"/>
<file role="src" name="XMLDocument.h"/>
<file role="src" name="XMLDocumentImpl.cpp"/>
<file role="src" name="XMLDocumentImpl.h"/>
<file role="src" name="XMLHelper.cpp"/>
<file role="src" name="XMLHelper.h"/>
<file role="src" name="XMLHelperImpl.cpp"/>
<file role="src" name="XMLHelperImpl.h"/>
<file role="src" name="XMLQName.cpp"/>
<file role="src" name="XMLQName.h"/>
<file role="src" name="XpathHelper.cpp"/>
<file role="src" name="XpathHelper.h"/>
<file role="src" name="XSDHelper.cpp"/>
<file role="src" name="XSDHelper.h"/>
<file role="src" name="XSDHelperImpl.cpp"/>
<file role="src" name="XSDHelperImpl.h"/>
<file role="src" name="XSDPropertyInfo.cpp"/>
<file role="src" name="XSDPropertyInfo.h"/>
<file role="src" name="XSDTypeInfo.cpp"/>
<file role="src" name="XSDTypeInfo.h"/>
</dir> <!-- /commonj/sdo -->
</dir> <!-- /commonj -->
<dir name="DAS">
<dir name="Relational">
<file role="php" name="Action.php"/>
<file role="php" name="ContainmentReference.php"/>
<file role="php" name="ContainmentReferencesModel.php"/>
<file role="php" name="DatabaseHelper.php"/>
<file role="php" name="DatabaseModel.php"/>
<file role="php" name="DataObjectHelper.php"/>
<file role="php" name="DeleteAction.php"/>
<file role="php" name="Exception.php"/>
<file role="php" name="ForeignKey.php"/>
<file role="php" name="InsertAction.php"/>
<file role="php" name="KeyObjectMap.php"/>
<file role="php" name="NonContainmentReference.php"/>
<file role="php" name="ObjectModel.php"/>
<file role="php" name="PDOConstants.colon.inc.php"/>
<file role="php" name="PDOConstants.underscore.inc.php"/>
<file role="php" name="Plan.php"/>
<file role="php" name="PrimaryKey.php"/>
<file role="php" name="ReferencesModel.php"/>
<file role="php" name="SettingListHelper.php"/>
<file role="php" name="Table.php"/>
<file role="php" name="UpdateAction.php"/>
<file role="php" name="UpdateNonContainmentReferenceAction.php"/>
</dir> <!-- /DAS/Relational -->
<file role="php" name="Json.php"/>
<file role="php" name="Relational.php"/>
</dir> <!-- /DAS -->
<dir name="examples">
<dir name="DAS">
<dir name="Relational">
<file role="test" name="1c-C.php"/>
<file role="test" name="1c-CD.php"/>
<file role="test" name="1c-CRU.php"/>
<file role="test" name="1c-CRUCollisionD.php"/>
<file role="test" name="1c-CRUD.php"/>
<file role="test" name="1c-CRUDDuffSQL.php"/>
<file role="test" name="1c-DCsamePK.php"/>
<file role="test" name="1c-R.php"/>
<file role="test" name="1c-RA.php"/>
<file role="test" name="1c-RD.php"/>
<file role="test" name="1c-RU.php"/>
<file role="test" name="1c-RUnull.php"/>
<file role="test" name="1c-RUunsetPrimitive.php"/>
<file role="test" name="1cd-C.php"/>
<file role="test" name="1cd-CRUD.php"/>
<file role="test" name="1cd-CRUDnull.php"/>
<file role="test" name="1cd-RA.php"/>
<file role="test" name="1cde-C.php"/>
<file role="test" name="1cde-CRU.php"/>
<file role="test" name="1cde-CRUD.php"/>
<file role="test" name="1cde-CRUDdetach.php"/>
<file role="test" name="1cde-CRUDnull.php"/>
<file role="test" name="1cde-R.php"/>
<file role="test" name="1e-CRUD.php"/>
<file role="test" name="companydb_db2.sql"/>
<file role="test" name="companydb_mysql.sql"/>
<file role="test" name="company_metadata.inc.php-dist"/>
<file role="test" name="mc-C.php"/>
<file role="test" name="mc-R.php"/>
<file role="test" name="mc-RD.php"/>
<file role="test" name="mc-RU.php"/>
<file role="test" name="README"/>
<file role="test" name="runAllScenarios.php"/>
</dir> <!-- /examples/DAS/Relational -->
<dir name="XML">
<file role="test" name="animalTypes.xsd"/>
<file role="test" name="Example1.php"/>
<file role="test" name="Example2.php"/>
<file role="test" name="Example3.php"/>
<file role="test" name="Example4.php"/>
<file role="test" name="Example5.php"/>
<file role="test" name="Example6.php"/>
<file role="test" name="jungle.xsd"/>
<file role="test" name="letter.xml"/>
<file role="test" name="letter.xsd"/>
</dir> <!-- /examples/DAS/XML -->
<file role="test" name="index.html"/>
</dir> <!-- /examples/DAS -->
<dir name="SCA">
<dir name="atom">
<file role="test" name="Atom1.0.xsd"/>
<file role="test" name="Contact.php"/>
<file role="test" name="ContactFeed.php"/>
<file role="test" name="ContactFeedConsumer.php"/>
<file role="test" name="ContactFile.php"/>
<file role="test" name="contacts.xsd"/>
<file role="test" name="db_config.inc.php"/>
<file role="test" name="test_contact.php"/>
<file role="test" name="test_contact_feed.php"/>
<file role="test" name="xhtml1-strict.xsd"/>
<file role="test" name="xml.xsd"/>
</dir> <!-- /examples/SCA/atom -->
<dir name="ebaysoap">
<file role="test" name="eBayClient.php"/>
<file role="test" name="eBayClient2.php"/>
<file role="test" name="eBayConsumer.php"/>
</dir> <!-- /examples/SCA/ebaysoap -->
<dir name="emailcontact">
<file role="test" name="ContactEmailService.php"/>
<file role="test" name="contacts.sql"/>
<file role="test" name="contacts.xsd"/>
<file role="test" name="ContactService.php"/>
<file role="test" name="ContactService.smd"/>
<file role="test" name="db_config.inc.php"/>
<file role="test" name="EmailClient.php"/>
<file role="test" name="EmailService.php"/>
<file role="test" name="EmailService.wsdl"/>
<file role="test" name="email_form.html"/>
</dir> <!-- /examples/SCA/emailcontact -->
<dir name="emailsimple">
<file role="test" name="EmailClient.php"/>
<file role="test" name="EmailService.php"/>
<file role="test" name="EmailService.wsdl"/>
<file role="test" name="email_form.html"/>
</dir> <!-- /examples/SCA/emailsimple -->
<dir name="emailsimpleref">
<file role="test" name="ContactEmailService.php"/>
<file role="test" name="EmailClient.php"/>
<file role="test" name="EmailService.php"/>
<file role="test" name="EmailService.wsdl"/>
<file role="test" name="email_form.html"/>
</dir> <!-- /examples/SCA/emailsimpleref -->
<dir name="eServiceStore">
<dir name="EventLogService">
<file role="test" name="EventLogService.php"/>
<file role="test" name="event_log_service.wsdl"/>
</dir> <!-- /examples/SCA/eServiceStore/EventLogService -->
<dir name="OrderProcessingService">
<file role="test" name="OrderProcessingService.php"/>
</dir> <!-- /examples/SCA/eServiceStore/OrderProcessingService -->
<dir name="PaymentService">
<file role="test" name="PaymentService.php"/>
<file role="test" name="PaymentService.wsdl"/>
<file role="test" name="payment_service.wsdl"/>
</dir> <!-- /examples/SCA/eServiceStore/PaymentService -->
<dir name="Schema">
<file role="test" name="Cart.xsd"/>
<file role="test" name="Customer.xsd"/>
<file role="test" name="Event.xsd"/>
<file role="test" name="Order.xsd"/>
</dir> <!-- /examples/SCA/eServiceStore/Schema -->
<dir name="shop">
<dir name="Catalog">
<file role="test" name="catalog.php"/>
<file role="test" name="Catalog.xml"/>
<file role="test" name="Catalog.xsd"/>
<file role="test" name="create_catalog.php"/>
</dir> <!-- /examples/SCA/eServiceStore/shop/Catalog -->
<file role="test" name="checkout.php"/>
<file role="test" name="customer.php"/>
<file role="test" name="display_cart.php"/>
<file role="test" name="display_events.php"/>
<file role="test" name="order_status.php"/>
<file role="test" name="santa.jpg"/>
<file role="test" name="santa2.jpg"/>
<file role="test" name="submit_order.php"/>
<file role="test" name="table.php"/>
<file role="test" name="test_submit_and_check_order.php"/>
<file role="test" name="view_cart.php"/>
<file role="test" name="view_product.php"/>
<file role="test" name="welcome.php"/>
</dir> <!-- /examples/SCA/eServiceStore/shop -->
<dir name="tests">
<file role="test" name="catalog_test.php"/>
<file role="test" name="customer_test.php"/>
<file role="test" name="event_test.php"/>
<file role="test" name="order_test.php"/>
<file role="test" name="print_model.php"/>
</dir> <!-- /examples/SCA/eServiceStore/tests -->
<dir name="warehouse">
<file role="test" name="display_orders.php"/>
<file role="test" name="order_details.php"/>
<file role="test" name="table.php"/>
<file role="test" name="test_dispatch_order.php"/>
<file role="test" name="test_warehouse.php"/>
<file role="test" name="warehouse.php"/>
</dir> <!-- /examples/SCA/eServiceStore/warehouse -->
<dir name="WarehouseService">
<file role="test" name="WarehouseDatabase.php"/>
<file role="test" name="WarehouseService.php"/>
<file role="test" name="warehouse_service.wsdl"/>
</dir> <!-- /examples/SCA/eServiceStore/WarehouseService -->
<file role="test" name="make_clean.php"/>
</dir> <!-- /examples/SCA/eServiceStore -->
<dir name="helloworldphp">
<file role="test" name="greeting.php"/>
<file role="test" name="helloworld.html"/>
<file role="test" name="helloworld.php"/>
<file role="test" name="reversing.php"/>
</dir> <!-- /examples/SCA/helloworldphp -->
<dir name="helloworldscajsonrpc">
<dir name="wsdl">
<file role="test" name="Greeting.wsdl"/>
<file role="test" name="Reversing.wsdl"/>
</dir> <!-- /examples/SCA/helloworldscajsonrpc/wsdl -->
<file role="test" name="Greeting.php"/>
<file role="test" name="Greeting.xsd"/>
<file role="test" name="Hello.xsd"/>
<file role="test" name="helloworld.php"/>
<file role="test" name="helloworldjsonrpc.html"/>
<file role="test" name="helloworldrest.html"/>
<file role="test" name="Reversing.php"/>
</dir> <!-- /examples/SCA/helloworldscajsonrpc -->
<dir name="helloworldscalocalreference">
<file role="test" name="Greeting.php"/>
<file role="test" name="helloworld.html"/>
<file role="test" name="HelloWorld.php"/>
<file role="test" name="Reversing.php"/>
</dir> <!-- /examples/SCA/helloworldscalocalreference -->
<dir name="helloworldscalocalservice">
<file role="test" name="Greeting.php"/>
<file role="test" name="helloworld.html"/>
<file role="test" name="helloworld.php"/>
<file role="test" name="Reversing.php"/>
</dir> <!-- /examples/SCA/helloworldscalocalservice -->
<dir name="helloworldscawsreference">
<dir name="wsdl">
<file role="test" name="Greeting.wsdl"/>
<file role="test" name="Reversing.wsdl"/>
</dir> <!-- /examples/SCA/helloworldscawsreference/wsdl -->
<file role="test" name="Greeting.php"/>
<file role="test" name="helloworld.html"/>
<file role="test" name="HelloWorld.php"/>
<file role="test" name="Reversing.php"/>
</dir> <!-- /examples/SCA/helloworldscawsreference -->
<dir name="helloworldscawsservice">
<dir name="wsdl">
<file role="test" name="Greeting.wsdl"/>
<file role="test" name="Reversing.wsdl"/>
</dir> <!-- /examples/SCA/helloworldscawsservice/wsdl -->
<file role="test" name="Greeting.php"/>
<file role="test" name="helloworld.html"/>
<file role="test" name="helloworld.php"/>
<file role="test" name="Reversing.php"/>
</dir> <!-- /examples/SCA/helloworldscawsservice -->
<dir name="JsonRpc">
<file role="test" name="email.xsd"/>
<file role="test" name="emailresponse.xsd"/>
<file role="test" name="emailresponselist.xsd"/>
<file role="test" name="EmailService.php"/>
<file role="test" name="HelloService.php"/>
<file role="test" name="LocalService.php"/>
<file role="test" name="MailApplicationClient.php"/>
<file role="test" name="MailApplicationService.php"/>
<file role="test" name="WebService.php"/>
</dir> <!-- /examples/SCA/JsonRpc -->
<dir name="Local">
<dir name="SCAComponentCallingLocalSCAComponent">
<file role="test" name="HelloClient.php"/>
<file role="test" name="HelloService.php"/>
<file role="test" name="SurnameService.php"/>
</dir> <!-- /examples/SCA/Local/SCAComponentCallingLocalSCAComponent -->
<dir name="ScriptCallingLocalSCAComponent">
<file role="test" name="HelloClient.php"/>
<file role="test" name="HelloService.php"/>
</dir> <!-- /examples/SCA/Local/ScriptCallingLocalSCAComponent -->
</dir> <!-- /examples/SCA/Local -->
<dir name="RestResource">
<file role="test" name="Orders.html"/>
<file role="test" name="Orders.php"/>
<file role="test" name="Orders.xml"/>
<file role="test" name="Orders.xsd"/>
<file role="test" name="OrdersClient.html"/>
<file role="test" name="OrdersClient.php"/>
<file role="test" name="README"/>
</dir> <!-- /examples/SCA/RestResource -->
<dir name="Soap">
<dir name="SCAComponentCallingRemoteSCAComponent">
<file role="test" name="HelloClient.php"/>
<file role="test" name="HelloService.php"/>
<file role="test" name="SurnameService.php"/>
</dir> <!-- /examples/SCA/Soap/SCAComponentCallingRemoteSCAComponent -->
<dir name="SCAComponentUsingDataStructures">
<file role="test" name="BatchService.php"/>
<file role="test" name="HelloClient.php"/>
<file role="test" name="names.xsd"/>
</dir> <!-- /examples/SCA/Soap/SCAComponentUsingDataStructures -->
<dir name="ScriptCallingRemoteSCAComponent">
<file role="test" name="HelloClient.php"/>
<file role="test" name="HelloService.php"/>
</dir> <!-- /examples/SCA/Soap/ScriptCallingRemoteSCAComponent -->
</dir> <!-- /examples/SCA/Soap -->
<dir name="XmlRpc">
<file role="test" name="BadExchangeException.php"/>
<file role="test" name="BadTickerException.php"/>
<file role="test" name="ExchangeRate.php"/>
<file role="test" name="HelloClient.php"/>
<file role="test" name="HelloService.php"/>
<file role="test" name="StockQuote.php"/>
<file role="test" name="StockQuoteService.php"/>
<file role="test" name="SurnameService.php"/>
<file role="test" name="TestClient.php"/>
</dir> <!-- /examples/SCA/XmlRpc -->
<file role="test" name="index.html"/>
<file role="test" name="phpinfo.php"/>
</dir> <!-- /examples/SCA -->
<dir name="SDO">
<dir name="contacts">
<file role="test" name="confirm.php"/>
<file role="test" name="contactdb_mysql.sql"/>
<file role="test" name="contacts_config.inc.php"/>
<file role="test" name="contacts_data.inc.php"/>
<file role="test" name="contacts_schema.inc.php"/>
<file role="test" name="db_config.inc.php"/>
<file role="test" name="edit.php"/>
<file role="test" name="welcome.php"/>
</dir> <!-- /examples/SDO/contacts -->
<dir name="jungle">
<file role="test" name="animalTypes.xsd"/>
<file role="test" name="jungle.xsd"/>
<file role="test" name="populate_jungle.php"/>
</dir> <!-- /examples/SDO/jungle -->
<dir name="letter">
<file role="test" name="letter.xml"/>
<file role="test" name="letter.xsd"/>
<file role="test" name="show_letter.php"/>
</dir> <!-- /examples/SDO/letter -->
<dir name="sdo-api">
<file role="test" name="contacts.xml"/>
<file role="test" name="contacts.xsd"/>
<file role="test" name="sdo_api.php"/>
</dir> <!-- /examples/SDO/sdo-api -->
<file role="test" name="index.html"/>
</dir> <!-- /examples/SDO -->
<file role="test" name="index.html"/>
</dir> <!-- /examples -->
<dir name="tests">
<dir name="DAS">
<dir name="Json">
<dir name="phpunit">
<file role="test" name="EmailResponse.xsd"/>
<file role="test" name="EmailResponseList.xsd"/>
<file role="test" name="JsonDASTest.php"/>
<file role="test" name="MailApplicationService.smd"/>
<file role="test" name="Portfolio.xsd"/>
<file role="test" name="Response.smd"/>
<file role="test" name="Response.xsd"/>
<file role="test" name="SchemaFree.xsd"/>
</dir> <!-- /tests/DAS/Json/phpunit -->
</dir> <!-- /tests/DAS/Json -->
<dir name="Relational">
<dir name="phpunit">
<file role="test" name="TestContainmentReference.php"/>
<file role="test" name="TestDatabaseModel.php"/>
<file role="test" name="TestDataObjectHelper.php"/>
<file role="test" name="TestDeleteAction.php"/>
<file role="test" name="TestForeignKey.php"/>
<file role="test" name="TestInsertAction.php"/>
<file role="test" name="TestObjectModel.php"/>
<file role="test" name="TestPlan.php"/>
<file role="test" name="TestReferencesModel.php"/>
<file role="test" name="TestRelational.php"/>
<file role="test" name="TestSuite.php"/>
<file role="test" name="TestTable.php"/>
<file role="test" name="TestUpdateAction.php"/>
<file role="test" name="ZDERunner.php"/>
</dir> <!-- /tests/DAS/Relational/phpunit -->
</dir> <!-- /tests/DAS/Relational -->
<dir name="XML">
<dir name="phpt">
<file role="test" name="bug12103.phpt"/>
<file role="test" name="bug12443.phpt"/>
</dir> <!-- /tests/DAS/XML/phpt -->
<dir name="phpunit">
<dir name="abstractComplexType">
<file role="test" name="abstract.xsd"/>
</dir> <!-- /tests/DAS/XML/phpunit/abstractComplexType -->
<dir name="anyElement">
<file role="test" name="animalTypes.xsd"/>
<file role="test" name="jungle.xsd"/>
</dir> <!-- /tests/DAS/XML/phpunit/anyElement -->
<dir name="cdata">
<file role="test" name="cdata-in.xml"/>
<file role="test" name="cdata.xsd"/>
</dir> <!-- /tests/DAS/XML/phpunit/cdata -->
<dir name="extendedComplexType">
<file role="test" name="person.xml"/>
<file role="test" name="person.xsd"/>
</dir> <!-- /tests/DAS/XML/phpunit/extendedComplexType -->
<dir name="missingType">
<file role="test" name="company_missing_type.xsd"/>
</dir> <!-- /tests/DAS/XML/phpunit/missingType -->
<dir name="nillable">
<file role="test" name="company_with_nillable_SN.xml"/>
<file role="test" name="company_with_nillable_SN.xsd"/>
</dir> <!-- /tests/DAS/XML/phpunit/nillable -->
<dir name="parseErrors">
<file role="test" name="parse_errors.xml"/>
<file role="test" name="parse_errors.xsd"/>
</dir> <!-- /tests/DAS/XML/phpunit/parseErrors -->
<dir name="restrictedComplexType">
<file role="test" name="name.xml"/>
<file role="test" name="name.xsd"/>
</dir> <!-- /tests/DAS/XML/phpunit/restrictedComplexType -->
<file role="test" name="company.xml"/>
<file role="test" name="company.xsd"/>
<file role="test" name="SDOWSDLProcessingTest.php"/>
<file role="test" name="XMLDASTest.php"/>
</dir> <!-- /tests/DAS/XML/phpunit -->
</dir> <!-- /tests/DAS/XML -->
</dir> <!-- /tests/DAS -->
<dir name="SCA">
<dir name="phpt">
<file role="test" name="001.phpt"/>
<file role="test" name="002.phpt"/>
<file role="test" name="003.phpt"/>
<file role="test" name="004.phpt"/>
<file role="test" name="bug8428.phpt"/>
<file role="test" name="bug13090.phpt"/>
<file role="test" name="Component.php"/>
<file role="test" name="Component.wsdl"/>
<file role="test" name="person.xsd"/>
</dir> <!-- /tests/SCA/phpt -->
<dir name="phpunit">
<dir name="AnnotationTests">
<file role="test" name="AnnotationTestClasses.php"/>
<file role="test" name="BindingAnnotationTest.php"/>
<file role="test" name="ParamAnnotationTest.php"/>
<file role="test" name="PublicMethodsTest.php"/>
<file role="test" name="ReferenceAnnotationTest.php"/>
<file role="test" name="ReturnAnnotationTest.php"/>
<file role="test" name="ServiceAnnotationTest.php"/>
<file role="test" name="TypesAnnotationTest.php"/>
</dir> <!-- /tests/SCA/phpunit/AnnotationTests -->
<dir name="AtomServer">
<file role="test" name="AtomInputFile.txt"/>
<file role="test" name="AtomInputFile2.txt"/>
<file role="test" name="AtomInputFile3.txt"/>
<file role="test" name="ComponentCreate.php"/>
<file role="test" name="ComponentCreate2.php"/>
<file role="test" name="ComponentCreate3.php"/>
<file role="test" name="ComponentCreateLinkFormat.php"/>
<file role="test" name="ComponentCreateLocation.php"/>
<file role="test" name="ComponentCreateResponse.php"/>
<file role="test" name="ComponentDeleteReturnTrueResponse.php"/>
<file role="test" name="ComponentEnumerateFeedFormat.php"/>
<file role="test" name="ComponentEnumerateResponse.php"/>
<file role="test" name="ComponentNoCreateMethod.php"/>
<file role="test" name="ComponentRetrieveResponse.php"/>
<file role="test" name="ComponentUpdateEmptyResponse.php"/>
<file role="test" name="ComponentUpdateReturnTrueResponse.php"/>
<file role="test" name="ComponentUpdateSimpleReturnResponse.php"/>
<file role="test" name="EmptyRequestBody.txt"/>
<file role="test" name="SCA_AtomServerTest.php"/>
</dir> <!-- /tests/SCA/phpunit/AtomServer -->
<dir name="eBaySoap">
<dir name="config">
<file role="test" name="bad_appid.ini"/>
<file role="test" name="bad_authcert.ini"/>
<file role="test" name="bad_authtoken.ini"/>
<file role="test" name="bad_devid.ini"/>
<file role="test" name="bad_location.ini"/>
<file role="test" name="bad_routing.ini"/>
<file role="test" name="bad_siteid.ini"/>
<file role="test" name="bad_version.ini"/>
<file role="test" name="good.ini"/>
</dir> <!-- /tests/SCA/phpunit/eBaySoap/config -->
<file role="test" name="bogus.wsdl"/>
<file role="test" name="eBayConsumer.php"/>
<file role="test" name="eBaySoapTest.php"/>
</dir> <!-- /tests/SCA/phpunit/eBaySoap -->
<dir name="GetService">
<file role="test" name="PathsTest.php"/>
</dir> <!-- /tests/SCA/phpunit/GetService -->
<dir name="JsonRpc">
<file role="test" name="email.xsd"/>
<file role="test" name="emailresponse.xsd"/>
<file role="test" name="emailresponselist.xsd"/>
<file role="test" name="EmailService.php"/>
<file role="test" name="EmailService.request"/>
<file role="test" name="EmailService.response"/>
<file role="test" name="EmailService.smd"/>
<file role="test" name="HelloService.php"/>
<file role="test" name="HelloService.smd"/>
<file role="test" name="JsonRpcTest.php"/>
<file role="test" name="TestService.php"/>
<file role="test" name="TestService.request"/>
<file role="test" name="TestService.response"/>
<file role="test" name="TestService.smd"/>
</dir> <!-- /tests/SCA/phpunit/JsonRpc -->
<dir name="LocalProxy">
<file role="test" name="LocalProxyTestSDOReverser.php"/>
<file role="test" name="LocalProxyTestStringReverser.php"/>
<file role="test" name="person.xsd"/>
<file role="test" name="SCA_LocalProxyTest.php"/>
</dir> <!-- /tests/SCA/phpunit/LocalProxy -->
<dir name="LogTests">
<file role="test" name="SCALogFilterTest.php"/>
<file role="test" name="SCALoggerTest.php"/>
</dir> <!-- /tests/SCA/phpunit/LogTests -->
<dir name="MessageBinding">
<file role="test" name="MSTest.php"/>
<file role="test" name="MS_TestService.php"/>
<file role="test" name="MS_TestServiceSDO.php"/>
<file role="test" name="MS_TestServiceSDO.wsdl"/>
<file role="test" name="MS_TestServiceSDO_msd"/>
<file role="test" name="MS_TestServiceSDO_wsdl"/>
<file role="test" name="names.xsd"/>
<file role="test" name="names_xsd"/>
<file role="test" name="TestServiceCorrectMPD"/>
</dir> <!-- /tests/SCA/phpunit/MessageBinding -->
<dir name="RegressionTests">
<file role="test" name="Bug11774Test.php"/>
<file role="test" name="Bug12193Test.php"/>
<file role="test" name="SCA_RegressionTestSuite.php"/>
<file role="test" name="Tuscany1566Test.php"/>
</dir> <!-- /tests/SCA/phpunit/RegressionTests -->
<dir name="RestResource">
<file role="test" name="enumerate.response"/>
<file role="test" name="Orders.php"/>
<file role="test" name="Orders.xml"/>
<file role="test" name="Orders.xsd"/>
<file role="test" name="RestResourceTest.php"/>
<file role="test" name="retrieve.response"/>
</dir> <!-- /tests/SCA/phpunit/RestResource -->
<dir name="RestRpc">
<file role="test" name="Hello.xsd"/>
<file role="test" name="RestRpcTest.php"/>
<file role="test" name="RestRpcTestService.php"/>
<file role="test" name="RestRpcTestService.response"/>
</dir> <!-- /tests/SCA/phpunit/RestRpc -->
<dir name="SCA">
<file role="test" name="person.xsd"/>
<file role="test" name="SCATest.php"/>
<file role="test" name="SCATestService.php"/>
</dir> <!-- /tests/SCA/phpunit/SCA -->
<dir name="SoapBinding">
<file role="test" name="Class5.php"/>
<file role="test" name="HandlerTest.php"/>
<file role="test" name="MapperTest.php"/>
<file role="test" name="ProxyTest.php"/>
<file role="test" name="WSDLTest.php"/>
</dir> <!-- /tests/SCA/phpunit/SoapBinding -->
<dir name="TabsAndSpaces">
<file role="test" name="SCA_TabsAndSpacesTest.php"/>
<file role="test" name="TabsAndSpaces.php"/>
</dir> <!-- /tests/SCA/phpunit/TabsAndSpaces -->
<dir name="TargetTests">
<dir name="downone">
<file role="test" name="hello4.php"/>
</dir> <!-- /tests/SCA/phpunit/TargetTests/downone -->
<file role="test" name="hello.php"/>
<file role="test" name="hello2.php"/>
<file role="test" name="hello3.php"/>
<file role="test" name="SCA_TargetTest.php"/>
</dir> <!-- /tests/SCA/phpunit/TargetTests -->
<dir name="XmlRpc">
<file role="test" name="XmlRpcTest.php"/>
</dir> <!-- /tests/SCA/phpunit/XmlRpc -->
<file role="test" name="run.bat"/>
<file role="test" name="runv.bat"/>
<file role="test" name="TestService.smd"/>
<file role="test" name="TestSuite.php"/>
<file role="test" name="ZDERunner.php"/>
</dir> <!-- /tests/SCA/phpunit -->
</dir> <!-- /tests/SCA -->
<dir name="SDO">
<dir name="phpt">
<file role="test" name="001.phpt"/>
<file role="test" name="002.phpt"/>
<file role="test" name="003.phpt"/>
<file role="test" name="005.phpt"/>
<file role="test" name="006.phpt"/>
<file role="test" name="007.phpt"/>
<file role="test" name="008.phpt"/>
<file role="test" name="bug8694.phpt"/>
<file role="test" name="bug9243.phpt"/>
<file role="test" name="bug9487.phpt"/>
<file role="test" name="bug9867.phpt"/>
<file role="test" name="bug9991.phpt"/>
<file role="test" name="bug10049.phpt"/>
<file role="test" name="bug10842.phpt"/>
<file role="test" name="company.xml"/>
<file role="test" name="company.xsd"/>
<file role="test" name="test.inc"/>
</dir> <!-- /tests/SDO/phpt -->
<dir name="phpunit">
<file role="test" name="SDOAPITest.php"/>
</dir> <!-- /tests/SDO/phpunit -->
</dir> <!-- /tests/SDO -->
<file role="test" name="AllTests.php"/>
<file role="test" name="AllTestsSetup.php"/>
<file role="test" name="run.bat"/>
<file role="test" name="runreport.bat"/>
<file role="test" name="runv.bat"/>
<file role="test" name="TestService.smd"/>
<file role="test" name="TestSuite.php"/>
</dir> <!-- /tests -->
<file role="src" name="CLA"/>
<file role="src" name="config.m4"/>
<file role="src" name="config.w32"/>
<file role="src" name="CREDITS"/>
<file role="src" name="INSTALL"/>
<file role="src" name="php_sdo.h"/>
<file role="src" name="php_sdo_das_xml.h"/>
<file role="src" name="php_sdo_das_xml_int.h"/>
<file role="src" name="php_sdo_int.h"/>
<file role="src" name="README"/>
<file role="src" name="runalltests.bat"/>
<file role="src" name="runalltests.sh"/>
<file role="src" name="sdo.cpp"/>
<file role="src" name="SDO_CPPException.cpp"/>
<file role="src" name="SDO_DAS_ChangeSummary.cpp"/>
<file role="src" name="SDO_DAS_DataFactory.cpp"/>
<file role="src" name="SDO_DAS_Setting.cpp"/>
<file role="src" name="SDO_DAS_XML.cpp"/>
<file role="src" name="SDO_DAS_XML_Document.cpp"/>
<file role="src" name="SDO_DataObject.cpp"/>
<file role="src" name="SDO_Exception.cpp"/>
<file role="src" name="SDO_List.cpp"/>
<file role="src" name="SDO_Model_Property.cpp"/>
<file role="src" name="SDO_Model_ReflectionDataObject.cpp"/>
<file role="src" name="SDO_Model_Type.cpp"/>
<file role="src" name="SDO_Sequence.cpp"/>
<file role="src" name="sdo_utils.cpp"/>
<file role="src" name="xmldas_utils.cpp"/>
</dir> <!-- / -->
</filelist>
</release>
<changelog>
<release>
<version>0.5.0</version>
<date>2005-07-22</date>
<license>Apache 2.0</license>
<state>beta</state>
<notes>This is the first release of SDO for PHP. It contains the core SDO extension and two Data Access Services: an XML DAS written in C and a Relational DAS to work with relational databases, which is written in PHP and uses PDO. The SDO extension requires a recent version of PHP 5.1. It has been tested on both 5.1.0b2 and 5.1.0b3. The core SDO extension and XML DAS work with 5.1.0b2. The Relational DAS requires PHP 5.1.0b3.
</notes>
</release>
<release>
<version>0.5.1</version>
<date>2005-08-08</date>
<license>Apache 2.0</license>
<state>beta</state>
<notes>Now includes support for DB2 on both Windows and Linux as well as MySQL.
Added some tests for the XML DAS.
</notes>
</release>
<release>
<version>0.5.2</version>
<date>2005-10-06</date>
<license>Apache 2.0</license>
<state>beta</state>
<notes>This release fixes a number of bugs:
- The XML DAS now throws a more meaningful exception when the xsd or xml file is not found
- The interface to SDO_DAS_DataFactory::addPropertyToType has changed and the previous interface is deprecated
- The interface to SDO_DAS_DataFactory::addProperty now supports the setting of default values
- The unit tests for the XML DAS have been added to
- The Relational DAS adapts to whether PDO constants are using old-style PDO_* or new-style PDO::*
- The Relational DAS contains a workaround for a problem with PDO_Statement::RowCount and ODBC driver
- Some SDO_DAS_ChangeSummary* constants, which were probably only used by the Relational DAS, have been changed
</notes>
</release>
<release>
<version>0.6.0</version>
<date>2005-10-19</date>
<license>Apache 2.0</license>
<state>beta</state>
<notes>This release adds a small number of new features:
- The Relational DAS now supports nulls: an SQL NULL in the database is represented as a PHP null in the data object and vice versa
- The important SDO classes all support toString()
- The SDO_DataObject class now supports clone()
</notes>
</release>
<release>
<version>0.6.1</version>
<date>2005-11-21</date>
<license>Apache 2.0</license>
<state>beta</state>
<notes>Improved reporting of Schema and XML parse errors (libxml2 errors surfaced in an XML Data Access Service SDO_DAS_XML_ParserException).