piece-unity / package.xml
100644 1689 lines (1424 sloc) 77.074 kb
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.7.2" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0
http://pear.php.net/dtd/tasks-1.0.xsd
http://pear.php.net/dtd/package-2.0
http://pear.php.net/dtd/package-2.0.xsd">
 <name>Piece_Unity</name>
 <channel>pear.piece-framework.com</channel>
 <summary>A Web application framework</summary>
 <description>Piece_Unity is a Web application framework.
 
Piece_Unity allows stateful programming without thinking about sessions by storing and restoring states with a technology known as continuation server. It also provides high security and eases the burden of implementing security measures for applications by application flow control.</description>
 <lead>
  <name>KUBO Atsuhiro</name>
  <user>iteman</user>
  <email>kubo@iteman.jp</email>
  <active>yes</active>
 </lead>
 <date>2009-03-10</date>
 <time>18:45:45</time>
 <version>
  <release>1.7.1</release>
  <api>1.5.0</api>
 </version>
 <stability>
  <release>stable</release>
  <api>stable</api>
 </stability>
 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
 <notes>A new release of Piece_Unity is now available. If you have used Piece_Unity 1.7.0, you *must* upgrade to this version.
 
What&apos;s New in Piece_Unity 1.7.1
 
 * A defect fix: A blocker defect has been fixed so that an application cannot be continue if the requested URI contains query variables. (See Ticket #291) And also since Piece_Unity_Component_Authentication 1.1.2 has a related defect, Upgrade to the upcoming version 1.1.3 if you have used it.</notes>
 <contents>
  <dir baseinstalldir="/" name="/">
   <dir name="data">
    <dir name="js">
     <file name="ahah.js" role="data">
      <tasks:replace from="@package_version@" to="version" type="package-info" />
     </file>
    </dir> <!-- /data/js -->
    <file name="piece-unity-config.yaml" role="data">
     <tasks:replace from="@package_version@" to="version" type="package-info" />
    </file>
    <file name="piece-unity.yaml" role="data">
     <tasks:replace from="@package_version@" to="version" type="package-info" />
    </file>
   </dir> <!-- /data -->
   <dir name="docs">
    <file name="LICENSE" role="doc">
     <tasks:replace from="@package_version@" to="version" type="package-info" />
    </file>
   </dir> <!-- /docs -->
   <dir name="Piece">
    <dir name="Unity">
     <dir name="Config">
      <file name="Factory.php" role="php">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
     </dir> <!-- /Piece/Unity/Config -->
     <dir name="Plugin">
      <dir name="Configurator">
       <dir name="EnvHandler">
        <file name="PieceFlow.php" role="php">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
        <file name="PieceRight.php" role="php">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
       </dir> <!-- /Piece/Unity/Plugin/Configurator/EnvHandler -->
       <file name="AppRoot.php" role="php">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="Env.php" role="php">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="Event.php" role="php">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="Plugin.php" role="php">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="Proxy.php" role="php">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="Request.php" role="php">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="Validation.php" role="php">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
      </dir> <!-- /Piece/Unity/Plugin/Configurator -->
      <dir name="Dispatcher">
       <file name="Continuation.php" role="php">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="Simple.php" role="php">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
      </dir> <!-- /Piece/Unity/Plugin/Dispatcher -->
      <dir name="Interceptor">
       <file name="Session.php" role="php">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="SessionStart.php" role="php">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
      </dir> <!-- /Piece/Unity/Plugin/Interceptor -->
      <dir name="Renderer">
       <dir name="HTML">
        <file name="CompatibilityTests.php" role="php">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
       </dir> <!-- /Piece/Unity/Plugin/Renderer/HTML -->
       <file name="HTML.php" role="php">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="PHP.php" role="php">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="Raw.php" role="php">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="Redirection.php" role="php">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
      </dir> <!-- /Piece/Unity/Plugin/Renderer -->
      <file name="Common.php" role="php">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
      <file name="ConfiguratorChain.php" role="php">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
      <file name="Controller.php" role="php">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
      <file name="Factory.php" role="php">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
      <file name="InterceptorChain.php" role="php">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
      <file name="OutputBufferStack.php" role="php">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
      <file name="Root.php" role="php">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
      <file name="View.php" role="php">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
      <file name="ViewSchemeHandler.php" role="php">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
     </dir> <!-- /Piece/Unity/Plugin -->
     <dir name="Service">
      <dir name="Rendering">
       <file name="PHP.php" role="php">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
      </dir> <!-- /Piece/Unity/Service/Rendering -->
      <file name="Continuation.php" role="php">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
      <file name="FlowAction.php" role="php">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
     </dir> <!-- /Piece/Unity/Service -->
     <dir name="Session">
      <file name="Preload.php" role="php">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
     </dir> <!-- /Piece/Unity/Session -->
     <file name="ClassLoader.php" role="php">
      <tasks:replace from="@package_version@" to="version" type="package-info" />
     </file>
     <file name="Config.php" role="php">
      <tasks:replace from="@package_version@" to="version" type="package-info" />
     </file>
     <file name="Context.php" role="php">
      <tasks:replace from="@package_version@" to="version" type="package-info" />
     </file>
     <file name="Env.php" role="php">
      <tasks:replace from="@package_version@" to="version" type="package-info" />
     </file>
     <file name="Error.php" role="php">
      <tasks:replace from="@package_version@" to="version" type="package-info" />
     </file>
     <file name="HTTPStatus.php" role="php">
      <tasks:replace from="@package_version@" to="version" type="package-info" />
     </file>
     <file name="Request.php" role="php">
      <tasks:replace from="@package_version@" to="version" type="package-info" />
     </file>
     <file name="Session.php" role="php">
      <tasks:replace from="@package_version@" to="version" type="package-info" />
     </file>
     <file name="URI.php" role="php">
      <tasks:replace from="@package_version@" to="version" type="package-info" />
     </file>
     <file name="URL.php" role="php">
      <tasks:replace from="@package_version@" to="version" type="package-info" />
     </file>
     <file name="Validation.php" role="php">
      <tasks:replace from="@package_version@" to="version" type="package-info" />
     </file>
     <file name="ViewElement.php" role="php">
      <tasks:replace from="@package_version@" to="version" type="package-info" />
     </file>
    </dir> <!-- /Piece/Unity -->
    <file name="Unity.php" role="php">
     <tasks:replace from="@package_version@" to="version" type="package-info" />
    </file>
   </dir> <!-- /Piece -->
   <dir name="tests">
    <dir name="Piece">
     <dir name="Unity">
      <dir name="Config">
       <dir name="FactoryTestCase">
        <dir name="CacheIDsShouldBeUniqueInOneCacheDirectory1">
         <file name="piece-unity-config.yaml" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
        </dir> <!-- /tests/Piece/Unity/Config/FactoryTestCase/CacheIDsShouldBeUniqueInOneCacheDirectory1 -->
        <dir name="CacheIDsShouldBeUniqueInOneCacheDirectory2">
         <file name="piece-unity-config.yaml" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
        </dir> <!-- /tests/Piece/Unity/Config/FactoryTestCase/CacheIDsShouldBeUniqueInOneCacheDirectory2 -->
        <file name="piece-unity-config.yaml" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
       </dir> <!-- /tests/Piece/Unity/Config/FactoryTestCase -->
       <file name="FactoryTestCase.php" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
      </dir> <!-- /tests/Piece/Unity/Config -->
      <dir name="Plugin">
       <dir name="CommonTestCase">
        <dir name="CommonTestCaseAlias">
         <file name="Baz.php" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
         <file name="ExceptionShouldBeRaisedWhenUndefinedConfigurationPointIsUsed.php" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
         <file name="ExceptionShouldBeRaisedWhenUndefinedExtensionPointIsUsed.php" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
         <file name="ExceptionShouldBeRaisedWhenUndefinedExtensionPointIsUsedInConfiguration.php" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
         <file name="Foo.php" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
         <file name="Qux.php" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
        </dir> <!-- /tests/Piece/Unity/Plugin/CommonTestCase/CommonTestCaseAlias -->
        <file name="CannotGetConfigurationWithPluginPrefixBaz.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
        <file name="CannotGetConfigurationWithPluginPrefixFoo.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
        <file name="CannotGetConfigurationWithPluginPrefixQux.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
       </dir> <!-- /tests/Piece/Unity/Plugin/CommonTestCase -->
       <dir name="Configurator">
        <dir name="PluginTestCase">
         <dir name="PluginTestCaseAlias">
          <file name="Bar.php" role="test">
           <tasks:replace from="@package_version@" to="version" type="package-info" />
          </file>
          <file name="Foo.php" role="test">
           <tasks:replace from="@package_version@" to="version" type="package-info" />
          </file>
         </dir> <!-- /tests/Piece/Unity/Plugin/Configurator/PluginTestCase/PluginTestCaseAlias -->
        </dir> <!-- /tests/Piece/Unity/Plugin/Configurator/PluginTestCase -->
        <dir name="ValidationTestCase">
         <dir name="ValidationTestCaseAlias">
          <file name="HelloWorld.php" role="test">
           <tasks:replace from="@package_version@" to="version" type="package-info" />
          </file>
          <file name="LowerCase.php" role="test">
           <tasks:replace from="@package_version@" to="version" type="package-info" />
          </file>
         </dir> <!-- /tests/Piece/Unity/Plugin/Configurator/ValidationTestCase/ValidationTestCaseAlias -->
         <file name="Authentication.yaml" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
        </dir> <!-- /tests/Piece/Unity/Plugin/Configurator/ValidationTestCase -->
        <file name="AppRootTestCase.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
        <file name="EnvTestCase.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
        <file name="EventTestCase.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
        <file name="PluginTestCase.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
        <file name="ProxyTestCase.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
        <file name="RequestTestCase.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
        <file name="ValidationTestCase.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
       </dir> <!-- /tests/Piece/Unity/Plugin/Configurator -->
       <dir name="ConfiguratorChainTestCase">
        <file name="FirstConfigurator.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
        <file name="SecondConfigurator.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
       </dir> <!-- /tests/Piece/Unity/Plugin/ConfiguratorChainTestCase -->
       <dir name="ControllerTestCase">
        <file name="ControllerTestCaseSpecifyingArbitraryViewInActionShouldWorkAction.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
       </dir> <!-- /tests/Piece/Unity/Plugin/ControllerTestCase -->
       <dir name="Dispatcher">
        <dir name="ContinuationTestCase">
         <dir name="Entry">
          <file name="New.flow" role="test">
           <tasks:replace from="@package_version@" to="version" type="package-info" />
          </file>
          <file name="NewAction.php" role="test">
           <tasks:replace from="@package_version@" to="version" type="package-info" />
          </file>
         </dir> <!-- /tests/Piece/Unity/Plugin/Dispatcher/ContinuationTestCase/Entry -->
         <dir name="Exceptions">
          <file name="PassThrough.flow" role="test">
           <tasks:replace from="@package_version@" to="version" type="package-info" />
          </file>
          <file name="PassThroughAction.php" role="test">
           <tasks:replace from="@package_version@" to="version" type="package-info" />
          </file>
         </dir> <!-- /tests/Piece/Unity/Plugin/Dispatcher/ContinuationTestCase/Exceptions -->
         <file name="AnyExceptionsExceptPieceFlow.yaml" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
         <file name="AnyExceptionsExceptPieceFlowAction.php" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
         <file name="ContinuationValidation.yaml" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
         <file name="ContinuationValidationAction.php" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
         <file name="Counter.php" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
         <file name="Counter.yaml" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
         <file name="CounterAction.php" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
         <file name="FlowExecutionExpired.yaml" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
         <file name="Validation.yaml" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
        </dir> <!-- /tests/Piece/Unity/Plugin/Dispatcher/ContinuationTestCase -->
        <dir name="SimpleTestCase">
         <file name="ActionShouldBeAbleToReturnViewStringAction.php" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
         <file name="SimpleExampleAction.php" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
         <file name="SimpleValidationAction.php" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
         <file name="Validation.yaml" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
        </dir> <!-- /tests/Piece/Unity/Plugin/Dispatcher/SimpleTestCase -->
        <file name="ContinuationTestCase.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
        <file name="SimpleTestCase.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
       </dir> <!-- /tests/Piece/Unity/Plugin/Dispatcher -->
       <dir name="FactoryTestCase">
        <dir name="FactoryTestCaseAlias">
         <dir name="FactoryTestCase">
          <file name="Foo.php" role="test">
           <tasks:replace from="@package_version@" to="version" type="package-info" />
          </file>
         </dir> <!-- /tests/Piece/Unity/Plugin/FactoryTestCase/FactoryTestCaseAlias/FactoryTestCase -->
         <file name="Bar.php" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
         <file name="Foo.php" role="test">
          <tasks:replace from="@package_version@" to="version" type="package-info" />
         </file>
        </dir> <!-- /tests/Piece/Unity/Plugin/FactoryTestCase/FactoryTestCaseAlias -->
        <dir name="Piece">
         <dir name="Unity">
          <dir name="Plugin">
           <dir name="FactoryTestCase">
            <file name="Bar.php" role="test">
             <tasks:replace from="@package_version@" to="version" type="package-info" />
            </file>
            <file name="Foo.php" role="test">
             <tasks:replace from="@package_version@" to="version" type="package-info" />
            </file>
            <file name="Invalid.php" role="test">
             <tasks:replace from="@package_version@" to="version" type="package-info" />
            </file>
           </dir> <!-- /tests/Piece/Unity/Plugin/FactoryTestCase/Piece/Unity/Plugin/FactoryTestCase -->
          </dir> <!-- /tests/Piece/Unity/Plugin/FactoryTestCase/Piece/Unity/Plugin -->
         </dir> <!-- /tests/Piece/Unity/Plugin/FactoryTestCase/Piece/Unity -->
        </dir> <!-- /tests/Piece/Unity/Plugin/FactoryTestCase/Piece -->
        <file name="Bar.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
       </dir> <!-- /tests/Piece/Unity/Plugin/FactoryTestCase -->
       <dir name="Interceptor">
        <file name="First.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
        <file name="Second.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
        <file name="SessionTestCase.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
       </dir> <!-- /tests/Piece/Unity/Plugin/Interceptor -->
       <dir name="OutputFilter">
        <file name="First.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
        <file name="Second.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
       </dir> <!-- /tests/Piece/Unity/Plugin/OutputFilter -->
       <dir name="Renderer">
        <dir name="PHPTestCase">
         <dir name="actions">
          <file name="PHPExampleAction.php" role="test">
           <tasks:replace from="@package_version@" to="version" type="package-info" />
          </file>
         </dir> <!-- /tests/Piece/Unity/Plugin/Renderer/PHPTestCase/actions -->
         <dir name="Piece">
          <dir name="Unity">
           <dir name="Plugin">
            <dir name="HTMLComponent">
             <file name="Example.php" role="test">
              <tasks:replace from="@package_version@" to="version" type="package-info" />
             </file>
            </dir> <!-- /tests/Piece/Unity/Plugin/Renderer/PHPTestCase/Piece/Unity/Plugin/HTMLComponent -->
           </dir> <!-- /tests/Piece/Unity/Plugin/Renderer/PHPTestCase/Piece/Unity/Plugin -->
          </dir> <!-- /tests/Piece/Unity/Plugin/Renderer/PHPTestCase/Piece/Unity -->
         </dir> <!-- /tests/Piece/Unity/Plugin/Renderer/PHPTestCase/Piece -->
         <dir name="templates">
          <dir name="Content">
           <file name="PHPExample.php" role="test">
            <tasks:replace from="@package_version@" to="version" type="package-info" />
           </file>
           <file name="PHPHTMLComponent.php" role="test">
            <tasks:replace from="@package_version@" to="version" type="package-info" />
           </file>
           <file name="PHPKeepingReference.php" role="test">
            <tasks:replace from="@package_version@" to="version" type="package-info" />
           </file>
           <file name="PHPLayoutContent.php" role="test">
            <tasks:replace from="@package_version@" to="version" type="package-info" />
           </file>
          </dir> <!-- /tests/Piece/Unity/Plugin/Renderer/PHPTestCase/templates/Content -->
          <dir name="Fallback">
           <file name="Fallback.php" role="test">
            <tasks:replace from="@package_version@" to="version" type="package-info" />
           </file>
          </dir> <!-- /tests/Piece/Unity/Plugin/Renderer/PHPTestCase/templates/Fallback -->
          <dir name="Foo">
           <dir name="Bar">
            <file name="Baz.php" role="test">
             <tasks:replace from="@package_version@" to="version" type="package-info" />
            </file>
           </dir> <!-- /tests/Piece/Unity/Plugin/Renderer/PHPTestCase/templates/Foo/Bar -->
          </dir> <!-- /tests/Piece/Unity/Plugin/Renderer/PHPTestCase/templates/Foo -->
          <dir name="Layout">
           <file name="PHPLayout.php" role="test">
            <tasks:replace from="@package_version@" to="version" type="package-info" />
           </file>
          </dir> <!-- /tests/Piece/Unity/Plugin/Renderer/PHPTestCase/templates/Layout -->
         </dir> <!-- /tests/Piece/Unity/Plugin/Renderer/PHPTestCase/templates -->
        </dir> <!-- /tests/Piece/Unity/Plugin/Renderer/PHPTestCase -->
        <file name="PHPTestCase.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
        <file name="RedirectionTestCase.php" role="test">
         <tasks:replace from="@package_version@" to="version" type="package-info" />
        </file>
       </dir> <!-- /tests/Piece/Unity/Plugin/Renderer -->
       <file name="CommonTestCase.php" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="ConfiguratorChainTestCase.php" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="ControllerTestCase.php" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="FactoryTestCase.php" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="InterceptorChainTestCase.php" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="OutputBufferStackTestCase.php" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="RelativePathVulnerability.php" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="RelativePathVulnerabilityAction.php" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="ViewSchemeHandlerTestCase.php" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="ViewTestCase.php" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
      </dir> <!-- /tests/Piece/Unity/Plugin -->
      <dir name="SessionTestCase">
       <file name="AutoloadClass.php" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="Foo.php" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="Loader.php" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
      </dir> <!-- /tests/Piece/Unity/SessionTestCase -->
      <dir name="ValidationTestCase">
       <dir name="Piece">
        <dir name="Right">
         <dir name="Validator">
          <file name="PayloadTest.php" role="test">
           <tasks:replace from="@package_version@" to="version" type="package-info" />
          </file>
         </dir> <!-- /tests/Piece/Unity/ValidationTestCase/Piece/Right/Validator -->
        </dir> <!-- /tests/Piece/Unity/ValidationTestCase/Piece/Right -->
       </dir> <!-- /tests/Piece/Unity/ValidationTestCase/Piece -->
       <file name="Authentication.yaml" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="Common.yaml" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="MergeValidationSetShouldMergeConfigurationFileIntoConfiguration1.yaml" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="MergeValidationSetShouldMergeConfigurationFileIntoConfiguration2.yaml" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="MergeValidationSetShouldMergeConfigurationFileIntoConfiguration3.yaml" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
       <file name="TemplateShouldBeUsedIfFileIsSetAndBasedOnElementIsSpecified.yaml" role="test">
        <tasks:replace from="@package_version@" to="version" type="package-info" />
       </file>
      </dir> <!-- /tests/Piece/Unity/ValidationTestCase -->
      <file name="ConfigTestCase.php" role="test">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
      <file name="ContextTestCase.php" role="test">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
      <file name="HTTPStatusTestCase.php" role="test">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
      <file name="RequestTestCase.php" role="test">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
      <file name="SessionTestCase.php" role="test">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
      <file name="URITestCase.php" role="test">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
      <file name="URLTestCase.php" role="test">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
      <file name="ValidationTestCase.php" role="test">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
      <file name="ViewElementTestCase.php" role="test">
       <tasks:replace from="@package_version@" to="version" type="package-info" />
      </file>
     </dir> <!-- /tests/Piece/Unity -->
     <file name="UnityTestCase.php" role="test">
      <tasks:replace from="@package_version@" to="version" type="package-info" />
     </file>
    </dir> <!-- /tests/Piece -->
    <file name="prepare.php" role="test">
     <tasks:replace from="@package_version@" to="version" type="package-info" />
    </file>
   </dir> <!-- /tests -->
  </dir> <!-- / -->
 </contents>
 <dependencies>
  <required>
   <php>
    <min>4.3.3</min>
   </php>
   <pearinstaller>
    <min>1.4.3</min>
   </pearinstaller>
   <package>
    <name>Piece_Flow</name>
    <channel>pear.piece-framework.com</channel>
    <min>1.16.0</min>
   </package>
   <package>
    <name>Cache_Lite</name>
    <channel>pear.php.net</channel>
    <min>1.7.0</min>
   </package>
   <package>
    <name>PEAR</name>
    <channel>pear.php.net</channel>
    <min>1.4.3</min>
   </package>
   <package>
    <name>Net_URL</name>
    <channel>pear.php.net</channel>
    <min>1.0.14</min>
   </package>
   <package>
    <name>Piece_Right</name>
    <channel>pear.piece-framework.com</channel>
    <min>1.10.0</min>
   </package>
  </required>
 </dependencies>
 <phprelease />
 <changelog>
  <release>
   <version>
    <release>1.7.1</release>
    <api>1.5.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2009-03-10</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>A new release of Piece_Unity is now available. If you have used Piece_Unity 1.7.0, you *must* upgrade to this version.
 
What&apos;s New in Piece_Unity 1.7.1
 
 * A defect fix: A blocker defect has been fixed so that an application cannot be continue if the requested URI contains query variables. (See Ticket #291) And also since Piece_Unity_Component_Authentication 1.1.2 has a related defect, Upgrade to the upcoming version 1.1.3 if you have used it.</notes>
  </release>
  <release>
   <version>
    <release>1.7.0</release>
    <api>1.5.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2009-03-05</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>A new release of Piece_Unity is now available.
 
What&apos;s New in Piece_Unity 1.7.0
 
 * Two defect fixes: A defect has been fixed that caused a URI scheme for redirection to be &quot;http&quot; on SSL by non-standard port. And another defect has been fixed.
 * Some improvements: A method setConfigurationCallback() has been added to set the callback for createRuntime(), and the behavior of createRuntime() has been changed so as to call the callback by setConfigurationCallback() if the callback by the argument is not given. And there are a few more improvements.
 
Backward Compatibility
 
 * Redirection to internal URIs: When redirecting to a internal URI, the scheme of the given URI (http/https) is always kept.
 * Piece_Unity_Component_Authentication: Piece_Unity_Component_Authentication 1.1.1 or less does not work properly with Piece_Unity 1.7.0. Upgrade to the upcoming version 1.1.2.
 
See the following release notes for details.
 
Enhancements
============
 
- Added a method setConfigurationCallback() to set the callback for createRuntime(). (Piece_Unity)
- Changed the behavior of createRuntime() so as to call the callback by setConfigurationCallback() if the callback by the argument is not given. (Piece_Unity)
- Changed the behavior of getURI() so that the given URI scheme is kept by the argument &quot;pass&quot;. Also the Renderer_Redirection plug-in always use &quot;pass&quot;. (Piece_Unity_URI)
- Added isSecure() to check whether the current connection is secure or not. (Piece_Unity_Context)
- Replaced $_SERVER[&apos;SCRIPT_NAME&apos;] with $_SERVER[&apos;REQUEST_URI&apos;] for URI mappings by mod_rewrite. (Ticket #287)
 
Defect Fixes
============
 
- Fixed a defect so that the proxy path was included twice in the URI by Piece_Unity_Service_Continuation::createURI(). (Piece_Unity_URI)
- Fixed a defect that caused a URI scheme for redirection to be &quot;http&quot; on SSL by non-standard port. (Ticket #288)</notes>
  </release>
  <release>
   <version>
    <release>1.6.2</release>
    <api>1.5.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2008-09-29</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>A new release of Piece_Unity is now available.
 
What&apos;s New in Piece_Unity 1.6.2
 
 * A defect fix: A defect has been fixed so as to not be able to access the session attributes by the $_attributes property.</notes>
  </release>
  <release>
   <version>
    <release>1.6.1</release>
    <api>1.5.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2008-09-14</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>A new release of Piece_Unity is now available.
 
What&apos;s New in Piece_Unity 1.6.1
 
 * Session expiration: Piece_Unity 1.6.1 supports session expiration by new plug-in &quot;Interceptor_Session&quot;. the Interceptor_Session plug-in is the successor to the Interceptor_SessionStart plug-in, and the Interceptor_SessionStart plug-in is marked as deprecated. And also the default value of the &quot;interceptors&quot; extension point in the InterceptorChain plug-in has been changed to the Interceptor_Session plug-in.</notes>
  </release>
  <release>
   <version>
    <release>1.5.0</release>
    <api>1.5.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2008-09-03</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>A new release of Piece_Unity is now available.
 
What&apos;s New in Piece_Unity 1.5.0
 
 * HTML component system: The Renderer_HTML plug-in allows you to deploy any ready-to-use HTML components as view elements using &quot;components&quot; extension point.
 * View Scheme: &quot;View Scheme&quot; is a feature that the appropriate renderer is automatically determined by the scheme part in the current view string such like &quot;http:&quot;, &quot;json:&quot;, &quot;html:&quot;, etc.
 * Raw Rendering support: This allows you to print any contents directly in an action such like file downloading without a dummy HTML view. If you use this, set &quot;raw:&quot; to the view.
 * Improved error handling: The behavior of internal error handling has been changed so as to handle only own and &quot;exception&quot; level errors.
 
Backward Compatibility
 
 * Piece_Unity_Component_Smarty: Piece_Unity_Component_Smarty 1.1.0 or less does not work properly with Piece_Unity 1.5.0. Upgrade to the upcoming version 1.2.0.
 * PEAR_ErrorStack: Piece_Unity 1.5.0 does not work properly with PEAR_ErrorStack::staticPushCallback(). Use PEAR_ErrorStack::setDefaultCallback() instead.
 
See the following release notes for details.
 
Enhancements
============
 
- Added support for Raw Rendering which does nothing. (View plug-in)
- Added Piece_Unity_Service_Rendering_PHP as a rendering service.
- Added an extension point &quot;components&quot; to deploy HTML components before it is required. (Renderer_HTML plug-in)
- Added a feature named &quot;View Scheme&quot; that the appropriate renderer is automatically determined by the view scheme in the current view string such like &quot;http:&quot;, &quot;json:&quot;, &quot;html:&quot;, etc. (Ticket #105) (View plug-in, ViewSchemeHandler plug-in)
- Added createRuntime() to create a Piece_Unity object and invokes a given callback for any configuration. (Ticket #99) (Piece_Unity)
- Changed code so that a plug-in directory is always converted to absolute path. (Piece_Unity_Plugin_Factory)
- Changed the behavior of the Piece_Unity_URL class to always return the backend URI if redirection is enabled. (Ticket #102) (Piece_Unity_URL, Renderer_Redirection plug-in)
- Changed the behavior of internal error handling so as to handle only own and &quot;exception&quot; level errors.
- Added removeProxyPath() to remove the proxy path from a given URI Path. (Piece_Unity_Context)
- Added Piece_Unity_HTTPStatus. (Ticket #113)
- Added sendHTTPStatus() to send a HTTP status line like &quot;HTTP/1.1 404 Not Found&quot;. (Piece_Unity_Context)
- Added Piece_Unity_Service_Continuation::createURI() to create a Piece_Unity_URI object based on the active flow execution or a given flow ID. (Ticket #110)
- Changed code so as to use &quot;URI&quot; instead of &quot;URL&quot;. (Ticket #119)
- Marked pushPHPError() as deprecated. (Piece_Unity_Error)
- Added configure() to configure the runtime after object instantiation. (Piece_Unity)
- Changed the behavior of initialize() so that $context-&gt;getAppRootPath() to be added to the beginning of a given URI if the URI is internal and not starting with http(s). (Piece_Unity_URI)
- Changed the behavior of GC fallback so as to set true to the session variable &quot;_flowExecutionExpired&quot;. (Dispatcher_Continuation plug-in)
- Changed the behavior of GC fallback so as to send HTTP status 302 Found. (Dispatcher_Continuation plug-in)
 
Defect Fixes
============
 
- Fixed a defect that a fatal error to be raised if session is not used. (Ticket #118) (Piece_Unity_Session)</notes>
  </release>
  <release>
   <version>
    <release>1.4.0</release>
    <api>0.7.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2007-11-25</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>A new release of Piece_Unity is now available.
 
What&apos;s New in Piece_Unity 1.4.0
 
 * Full flow name as view prefix: A feature so that the full flow name can be used as the view prefix by turning on &quot;useFullFlowNameAsViewPrefix&quot;. (default: on) If you want to keep backward compatibility with Piece_Unity 1.3.0/1.3.1 configurations, set false to &quot;useFullFlowNameAsViewPrefix&quot;. For example, if there is a view &quot;Baz&quot;, the final view of &quot;Baz&quot; by different flow names and states of &quot;useFullFlowNameAsViewPrefix&quot; as follows:
 
+-----------+-----------+-------------+
| flow name | off/1.3.x | on |
+-----------+-----------+-------------+
| Foo | Baz | Foo_Baz |
+-----------+-----------+-------------+
| Foo_Bar | Foo_Baz | Foo_Bar_Baz |
+-----------+-----------+-------------+</notes>
  </release>
  <release>
   <version>
    <release>1.3.1</release>
    <api>0.7.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2007-11-21</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>A new release of Piece_Unity is now available.
 
What&apos;s New in Piece_Unity 1.3.1
 
 * A Defect Fix: A defect that flowMappings does not work with reverse proxy has been fixed.</notes>
  </release>
  <release>
   <version>
    <release>1.3.0</release>
    <api>0.7.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2007-11-18</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>A new release of Piece_Unity is now available.
 
What&apos;s New in Piece_Unity 1.3.0
 
 * New configuration system for mapping urls to flows: A new configuration system for mapping urls to flows using a directory where flow definition files exist and an extension of flow definition files has been supported. And it supports layered structure for flow definition files, actions, and html views by using underscores in flow names as directory separators.
 * Layered structure support for less configuration: As mentioned above, the new configuration system for mapping urls to flows supports layered structure. And also the validation sysytem supports layered structure for validation definition files by using underscores in validation set names as directory separators.
 * Validation Template: Validation Template allows users to use a validation set as a template for another validation set.
 
See the following release notes for details.
 
Enhancements
============
 
Kernel:
 
- Added mergeValidationSet() which can be used to merge a validation set into the Piece_Right_Config object for the current validation. (Ticket #83) (Piece_Unity_Validation)
- Added a feature which allows users to use a validation set as a template for another validation set. (Piece_Unity_Validation)
- Added support for layered structure by using underscores in validation set names as directory separators. (Piece_Unity_Validation)
- Changed factory() so as to use the given cache directory as is. (Ticket #90) (Piece_Unity_Config_Factory)
 
Plug-ins:
 
- Changed code so as to use the value of &quot;templateDirectory&quot; instead if &quot;layoutDirectory&quot; is not given when using layout. (Renderer_PHP)
- Changed code so as to set the value to &quot;templateDirectory&quot; only if &quot;fallbackDirectory&quot; is given when using fallback. (Renderer_PHP)
- Added a feature which allows users to use a validation set as a template for another validation set. (Configurator_Validation)
- Added support for layered structure by using underscores in validation set names as directory separators. (Configurator_Validation)
- Added support for new configuration system using a directory where flow definition files exist and an extension of flow definition files. (Ticket #85) (Dispatcher_Continuation)
 
Defect Fixes
============
 
Plug-ins:
 
- Fixed a defect that caused any exceptions except Piece_Flow to not be thrown. (Ticket #88) (Dispatcher_Continuation)</notes>
  </release>
  <release>
   <version>
    <release>1.2.0</release>
    <api>0.7.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2007-10-05</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>A new release of Piece_Unity is now available.
 
What&apos;s New in Piece_Unity 1.2.0
 
 * Enhanced Dispatcher_Simple plug-in: Two configuration points &quot;useDefaultEvent&quot; and &quot;defaultEventName&quot; have been added. These provide a feature so that the default event is used if the event is an empty string or NULL. And a feature which allows users to return a view string from an action has been added.
 * A few Defect Fixes: A defect that caused the same cache to be used if the relative paths of the configuration files are same even though the absolute paths of the files are different has been fixed. And also two defects in Renderer_PHP plug-in have been fixed.
 
See the following release notes for details.
 
Enhancements
============
 
Kernel:
 
- Changed getURL() so as to return without replacing the host and port if the URL is external. (Piece_Unity_URL)
 
Plug-ins:
 
- Added a feature so that users can overwrite the view returned from the dispatcher with an arbitrary view in an action. (Controller)
- Changed code so as to use the new interfaces for the continuation server. (Dispatcher_Continuation)
- Added two configuration points &quot;useDefaultEvent&quot; and &quot;defaultEventName&quot;. These provide a feature so that the default event is used if the event is an empty string or NULL. (Ticket #80) (Dispatcher_Simple)
- Added a feature which allows users to return a view string from an action. (Ticket #86) (Dispatcher_Simple)
 
Defect Fixes
============
 
Kernel:
 
- Fixed the defect that caused the same cache to be used if the relative paths of the configuration files are same even though the absolute paths of the files are different. (Piece_Unity_Config_Factory)
 
Plug-ins:
 
- Fixed the defect that caused $file to be tainted if the Piece_Unity_ViewElement object has &quot;file&quot; attribute. (Renderer_PHP)
- Fixed the defect that caused $viewElement to be tainted if the Piece_Unity_ViewElement object has &quot;viewElement&quot; attribute. (Renderer_PHP)</notes>
  </release>
  <release>
   <version>
    <release>1.1.0</release>
    <api>0.7.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2007-08-26</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>A new release of Piece_Unity is now available.
 
What&apos;s New in Piece_Unity 1.1.0
 
 * Two client interfaces for dynamic configuration: Piece_Unity::setConfiguration() and Piece_Unity::setExtension() can be used for dynamic configuration in entry points and actions.
 * A client interface to get all field names in a form: Piece_Unity_Validation::getFieldNames() can be used to get all field names corresponding to the given validation set and a Piece_Right_Config object.
 * Environment settings: The configuration file is always read when the current environment is not production.
 * Garbage Collection: The garbage collection can be used for sweeping expired flow executions. The target of the garbage collection is only non-exclusive flow executions.
 
See the following release notes for details.
 
Enhancements
============
 
Kernel:
 
- Added setConfiguration()/setExtension() for client use. (Piece_Unity)
- Updated an exception to be raised when an undefined extension point or configuration point is used in the current configuration. (Piece_Unity_Plugin_Common, Piece_Unity_Config)
- Added error handling after instantiating a plug-in. (Piece_Unity_Plugin_Factory)
- Added getFieldNames() to get all field names corresponding to the given validation set and a Piece_Right_Config object. (Piece_Unity_Validation)
- Updated code so that the configuration file is always read when the current environment is not production. (Ticket #75) (Piece_Unity_Env, Piece_Unity_Config_Factory)
 
Services:
 
- Added clear() to clear all properties for the next use. (Piece_Unity_Service_FlowAction)
 
Plug-ins:
 
- Added support for garbage collection for expired flow executions. (Dispatcher_Continuation)
- Added missing error handling. (Dispatcher_Continuation)
- Added an extension point &quot;envHandlers&quot; which can be used to set whether the current environment is production or not to arbitrary components. (Configurator_Env, Configurator_EnvHandler_PieceFlow, Configurator_EnvHandler_PieceRight)</notes>
  </release>
  <release>
   <version>
    <release>1.0.0</release>
    <api>0.7.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2007-07-18</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>This is the first stable release of Piece_Unity.
 
What&apos;s New in Piece_Unity 1.0.0
 
 * Components: A component is a package that consists of plug-ins, services, GUI elements (HTML templates, images, scripts, etc.), flow definition files, action classes, and entry points, etc.. Many plug-ins are extracted as each Piece_Unity_Component_Xxx package. See the following release notes for details.
 * Services: A service is one or more classes that provides useful operations for client use.
 * The Piece_Unity_Service_FlowAction class: The Piece_Unity_Service_FlowAction class can be used as the base class for Piece_Flow actions.
 
See the following release notes for details.
 
Enhancements
============
 
Plug-ins:
 
- Added error handling. (Interceptor_SessionStart)
- Moved the process of preloading Dispatcher_Continuation plug-in from Configurator_Plugin to Interceptor_SessionStart.
- A improvement for restoring action instances in session. (Dispatcher_Continuation, Interceptor_SessionStart, Piece_Unity_Session_Preload)
- Changed the error type on all Piece_Unity_Error::pushError() calls from &quot;warning&quot; to &quot;exception&quot;. (ConfiguratorChain, InterceptorChain, OutputBufferStack)
- Moved the following plug-ins to components/. These plug-ins will be packaged as each Piece_Unity_Component_Xxx package.
  * Interceptor_Authentication
  * OutputFilter_ContentLength
  * Renderer_Flexy
  * Renderer_JSON
  * OutputFilter_JapaneseZ2H
  * KernelConfigurator (obsoleted)
  * Interceptor_NullByteAttackPreventation
  * Configurator_PieceORM
  * Interceptor_ProxyBasePath (obsoleted)
  * Renderer_Smarty
 
Services:
 
- Added the base class for Piece_Flow actions. (Piece_Unity_Service_FlowAction)
 
Kernel:
 
- Changed factory() to throw an exception if the configuration directory or the configuration file not found. (Ticket #66) (Piece_Unity_Config_Factory)
- Added a class loader. (Piece_Unity_ClassLoader)
- Updated an exception to be raised when an undefined extension point is used. (Ticket #72) (Piece_Unity_Plugin_Common)
- Updated getResults() so that a Piece_Right_Results object can be get by a validation set name. (Ticket #70) (Piece_Unity_Validation)
- Improved error handling so as to recognize the place where the exception is raised. (Piece_Unity_Plugin_Common)
- Added hasResults() to check whether or not the Piece_Right_Results object of the given validation set or the latest validation exists. (Piece_Unity_Validation)</notes>
  </release>
  <release>
   <version>
    <release>0.13.0</release>
    <api>0.7.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2007-07-15</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>A new release of Piece_Unity is now available.
 
What&apos;s New in Piece_Unity 0.13.0</notes>
  </release>
  <release>
   <version>
    <release>0.12.0</release>
    <api>0.7.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2007-05-27</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>A new release of Piece_Unity is now available.
 
What&apos;s New in Piece_Unity 0.12.0
 
 * Configurator_AppRoot plug-in: A plug-in for setting the directory and the URL path that form the top of the document tree of an application visible from the web.
 * Configurator_PieceORM plug-in: A plug-in for Piece_ORM.
 * Several defect fixes: A defect in fallback view rendering has been fixed. And also a defect in Plug-in Aliases has been fixed. And other defects have been fixed.
 
See the following release notes for details.
 
Enhancements
============
 
Plug-ins:
 
- Added the plugins_dir configuration point. (Renderer_Smarty)
- Updated &quot;Self Notation&quot; so as to set true to the configuration point &quot;addFlowExecutionTicket&quot; of Renderer_Redirection plug-in. (View)
- Added &quot;Configurator_PieceORM&quot; plug-in for Piece_ORM.
- Added &quot;Configurator_Proxy&quot; plug-in for proxy.
- Changed the default value for the configuration point &quot;configurator&quot; from &quot;KernelConfigurator&quot; to &quot;ConfiguratorChain&quot;. (Root)
- Added &quot;Configurator_AppRoot&quot; plug-in for setting the directory and the URL path that form the top of the document tree of an application visible from the web. (Ticket #56)
- Removed the configuration point &quot;importSessionIDFromRequest&quot;. (Interceptor_SessionStart)
 
Kernel:
 
- Updated pushPEARError() so that the params field in the repackage array contains &quot;userinfo&quot; and &quot;debuginfo&quot; fields, which contains each of the return values from getUserInfo() and getDebugInfo(). (Piece_Unity_Error)
- Updated the constructor so as to receive a prefix for determining the plug-in name. (Piece_Unity_Plugin_Common)
- Changed the error type on all Piece_Unity_Error::pushError() calls from &quot;warning&quot; to &quot;exception&quot;. (Piece_Unity_URL)
- Added getRemoteAddr() for getting an IP address (or IP addresses) of the client making the request. (Piece_Unity_Context)
- Added _getExtension()/_getConfiguration(). (Piece_Unity_Plugin_Common)
  getExtension()/getConfiguration() are deprecated since Piece_Unity 0.12.0. (Ticket #54)
 
Example Applications:
 
- Changed the function for URI encoding from escape() to encodeURIcomponent(). (ahah.js)
- Replaced all &quot;__basePath&quot; with &quot;__appRootPath&quot;.
 
Defect Fixes
============
 
Plug-ins:
 
- Fixed a defect in fallback view rendering that caused a fallback view to be always rendered in spite of success in HTML rendering if one or more &quot;warning&quot; level errors raised before rendering. (Ticket #57)
 
Kernel:
 
- Fixed the problem that a plug-in with Plug-in Aliases cannot get the current configuration. (Ticket #53)
- Fixed the problem that the getExtension()/getConfiguration() cannot work with an empty prefix. (Piece_Unity_Plugin_Common)
 
Example Applications:
 
- Fixed the problem that all radio elements are transferred regardless of whether they are checked or not. (ahah.js)</notes>
  </release>
  <release>
   <version>
    <release>0.11.0</release>
    <api>0.7.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2007-02-19</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>Hi all,
 
A new release of Piece_Unity is now available.
 
This release includes a feature named &quot;Fallback View&quot; which can be used for rendering a fallback view if an error occured while rendering with a specified view, and a feature named &quot;Plug-in Aliases&quot; which can be used multiple aliases as the name of a plug-in class by setting multiple prefixes.
 
Also this release includes a new plug-in &quot;ConfiguratorChain&quot; so that it can invoke multiple configurators. In the release after next, &quot;ConfiguratorChain&quot; will become the default configurator instead of &quot;KernelConfigurator&quot;.
 
And also other enhancements and two fixes are included. See the following release notes for details.
 
## Enhancements ##
 
### Kernel ###
 
##### Piece_Unity_Plugin_Factory #####
 
- Added a feature named &quot;Plug-in Aliases&quot; so that this feature can be used multiple aliases as the name of a plug-in class by setting multiple prefixes. (Ticket #40)
 
##### Piece_Unity_URL #####
 
- Added removeQueryString() to remove a name/value pair from the query string.
 
### Plug-ins ###
 
##### Renderer_Flexy, Renderer_HTML, Renderer_PHP, Renderer_Smarty #####
 
- Added a feature named &quot;Fallback View&quot;. (Ticket #37)
  If an error occured while rendering with a specified view and useFallback is true, a fallback view will be rendered.
 
##### KernelConfigurator #####
 
- Added a configuration point &quot;pluginPrefixes&quot; for using &quot;Plug-in Aliases&quot;.
- Added two configuration point &quot;validationValidatorPrefixes&quot; and &quot;validationFilterPrefixes&quot; for using &quot;Validator Aliases&quot; and &quot;Filter Aliases&quot;. (Ticket #43)
 
##### Renderer_Redirection #####
 
- Added a feature so that __eventNameKey is replaced with the event name key. (Ticket #38)
 
##### View #####
 
- Added a feature named &quot;Self Notation&quot; for redirection to an entry point itself. (Ticket #39)
 
##### ConfiguratorChain, Configurator_Env, Configurator_Event, Configurator_Plugin, Configurator_Request, Configurator_Validation #####
 
- Added a new plug-in &quot;ConfiguratorChain&quot; so that it can invoke multiple configurators. (Ticket #45)
  In the release after next, &quot;ConfiguratorChain&quot; will become the default configurator instead of &quot;KernelConfigurator&quot;.
 
### Example Applications ###
 
- Changed so as to use of ConfigurationChain.
 
## Defect Fixes ##
 
### Kernel ###
 
##### Piece_Unity_URL #####
 
- Fixed the problem so that EZweb mobile phone cannot redirect with Renderer_Redirection plug-in. (Ticket #44)
 
### Plug-ins ###
 
##### Renderer_Redirection #####
 
- Fixed the problem that the renderer cannot redirect to HTTPS URL.</notes>
  </release>
  <release>
   <version>
    <release>0.10.0</release>
    <api>0.7.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2007-01-12</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>Hi all,
 
A new release of Piece_Unity is now available.
This release includes a nice feature for the layout system. It can turn off the use of the layout system by the HTTP Accept header. And also other enhancements are included.
 
See the following release notes for details.
 
## Enhancements ##
 
### Plug-ins ###
 
##### Renderer_HTML #####
 
- Added a new configuration point &apos;turnOffLayoutByHTTPAccept&apos; on Renderer_HTML.
  If this option is true, the useLayout option is turned off by the HTTP Accept header.
 
##### Dispatcher_Continuation #####
 
- Changed the default value of bindActionsWithFlowExecution to true.
 
##### Interceptor_SessionStart #####
 
- Added a feature to import a session ID from the request parameters when a new configuration point importSessionIDFromRequest is true. (Ticket #34)
 
### Example Applications ###
 
- Updated templates and javascripts of the sample application.</notes>
  </release>
  <release>
   <version>
    <release>0.9.0</release>
    <api>0.7.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2006-12-23</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>Hi all,
 
A new release of Piece_Unity is now available.
For Piece_Unity, this will be a big release because this release includes a very important feature named &quot;Action Continuation&quot; and several powerful enhancements as follows.
 
&quot;Action Continuation&quot; is a very important feature for developers. This feature allows developers to write stateful action code via the properties without using flow attributes. In fact it allows stateful programming without thinking sessions. This means that the programming be nearer natural continuation programming, although it is limited the scope in the action.
 
Interceptor_Authentication plug-in provides a smart and simple solution for authentication.
 
Renderer_Flexy, Renderer_Smarty, and Renderer_PHP plug-ins provide a simple and useful layout system to reuse shared html layout across multiple pages.
 
Renderer_JSON plug-in allows to output view elements as JSON.
 
Also the example applications was restructured with new features as follows. (Sorry there are no JSON examples yet.)
 
A. Registration Applications
 
   1. A registration application. *non-exclusive*
   2. A registration application. *exclusive*
   3. A registration application with AHAH. *exclusive*
 
B. Authentication
 
   1. An authentication service. *exclusive*
   2. A resource which is protected by the above authentication service. *non-exclusive*
 
These examples will be available on the web one of these days.
 
And also other enhancements are included.
 
See the following release notes for details.
 
## Enhancements ##
 
### Kernel ###
 
##### Piece_Unity_URL #####
 
- A utility which is used to create the appropriate absolute URL from a relative/absolute URL. (Ticket #4)
 
##### Piece_Unity_Request #####
 
- Added support for accessing $_FILES contents as each parameter to support validation of files and images. (Ticket #10)
 
##### Piece_Unity_Context #####
 
- Added support for image input type. (Ticket #18)
 
##### Piece_Unity_Validation #####
 
- Changed so as to handle a Piece_Right_Results object by reference. (Ticket #20)
- Updated validate() to set a Piece_Unity_Context object as a payload to Piece_Right. (Ticket #19)
 
##### Piece_Unity_Session_Preload #####
 
- A class *pre*loader for restoring objects in session.
 
##### Piece_Unity_Session #####
 
- Added a feature to preload for restoring objects.
 
##### Piece_Unity_Plugin_Factory #####
 
- Added clearInstances() to clear the plug-in instances.
 
##### Piece_Unity_Error #####
 
- Added a constant PIECE_UNITY_ERROR_UNEXPECTED_VALUE.
- Added a constant PIECE_UNITY_ERROR_INVALID_OPERATION.
 
### Plug-ins ###
 
##### Interceptor_Authentication #####
 
- An interceptor to control the access to protected resources on Piece_Unity applications.
 
##### Renderer_JSON #####
 
- A renderer to output view elements as JSON.
 
##### Controller #####
 
- Changed to skip dispatcher when context has already view contents.
 
##### View #####
 
- Added a feature to replace the current view with a view which is given by a new configuration point forcedView.
- Added a built-in view element __url which is a Piece_Unity_URL object.
 
##### KernelConfigurator #####
 
- Added to preload Dispatcher_Continuation plug-in for restoring action instances in session.
- Added a configuration point nonSSLableServers to make a list of non-SSLable servers.
 
##### Dispatcher_Continuation #####
 
- Added a feature to store the action instances as a flow attribute in a flow execution, and restore the action instances when continuing the flow execution.
- Removed the configuration point sessionKey.
- Added getContinuationSessionKey() to get the session key for a continuation object.
 
##### Renderer_HTML #####
 
- An abstract renderer which is used to render HTML.
 
##### Renderer_Flexy, Renderer_PHP, Renderer_Smarty #####
 
- Added a feature to reuse shared html layout across multiple pages. (Ticket #2)
 
##### Controller, Dispatcher_Continuation #####
 
- Updated to publish the Piece_Flow_Continuation object as a view element if it exists even though what the specified dispatcher is. And the flow execution ticket key and the flow name key have always been available as each view element. (Ticket #26)
 
##### Renderer_Redirection #####
 
- Removed getURL().
 
### Example Applications ###
 
- Restructured applications with new features.</notes>
  </release>
  <release>
   <version>
    <release>0.8.0</release>
    <api>0.7.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2006-10-17</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>This is the first release of Piece_Unity with the new PEAR Channel Server pear.piece-framework.com.
 
This release includes a few enhancements of the validation system. See the following release notes for details.
 
## Enhancements ##
 
### Kernel ###
 
##### Piece_Unity_Validation #####
- Added getResults() method for getting the Piece_Right_Results object of the latest validation.
- Added setting the Piece_Right_Results object to the current flow scope when the continuation server is running.
- Refactored validate() method using Piece_Right_Validation_Script class.
- Added addValidatorDirectory()/addFilterDirectory() methods.
 
### Plug-ins ###
 
##### KernelConfigurator #####
- Added Piece_Right_Results class to the array for autoloading.
- Added missing two configuration points validationValidatorDirectories and validationFilterDirectories, and their processes, which had existed in Interceptor_PieceRight plug-in.</notes>
  </release>
  <release>
   <version>
    <release>0.7.0</release>
    <api>0.7.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2006-09-16</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>This release includes built-in validation system with Piece_Right integration, and a few improvement of Renderer_Redirection plug-in. See the following release notes for details.
 
Note: Interceptor_PieceRight plug-in has been deprecated. It will be removed in the next release.
 
## Enhancements ##
 
### Kernel ###
 
##### Piece_Unity_Validation #####
- The validation class for Piece_Unity applications. This class is available from this release.
 
##### Piece_Unity_Context #####
- Added a new method getValidation() for getting the Piece_Unity_Validation object for the current request.
 
### Plug-ins ###
 
##### Renderer_Redirection #####
- Added support for redirections with direct access to backend servers when HTTPS protocol is given as a view string.
- Added support for redirections with other proxy servers.
- Changed the code so as to add session ID to the query string only if the URL is internal.
- Added a new configuration point addFlowExecutionTicket to add flow execution ticket to the query string.
 
##### KernelConfigurator #####
- Added two configuration points validationConfigDirectory and validationCacheDirectory for setting the configuration directory and the cache directory for validations.
 
### Example Applications ###
 
- Removed XML declarations.
- Changed the code so as to use built-in validation instead of Interceptor_PieceRight plug-in.</notes>
  </release>
  <release>
   <version>
    <release>0.6.0</release>
    <api>0.6.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2006-08-19</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>This release includes a lot of enhancements and a few defect fixes as follows:
 
## Enhancements ##
 
### Kernel ###
 
##### Piece_Unity_Context #####
- Added support for context attributes.
- Added setProxyPath() method for setting the proxy path if the application uses proxy servers.
- Added getProxyPath() method for getting the proxy path of the application.
- Added usingProxy() method for checking whether the application is accessed via reverse proxies.
- Added setContinuation()/getContinuation() methods for setting/getting the Piece_Flow_Continuation object for the current session.
 
##### Piece_Unity_Plugin_Common #####
- Added _initialize() method as a template method, and changed the code so as to call it in the constructor.
 
### Plug-ins ###
 
##### Interceptor_PieceRight #####
- An interceptor to set a Piece_Right object to the current application context.
 
##### OutputBufferStack #####
- Added support for PHP built-in functions.
 
##### Dispatcher_Simple #####
- Added error handling when include_once fail.
 
##### Interceptor_ProxyBasePath #####
- Changed the code so as to use Piece_Unity_Context::usingProxy() and Piece_Unity_Context::getProxyPath() methods instead of _useProxy() method and &apos;path&apos; configuration point.
- Removed _useProxy() method.
- Removed &apos;path&apos; configuration point.
 
##### KernelConfigurator #####
- Added &apos;proxyPath&apos; configuratin point for setting the proxy path of applications.
 
##### Renderer_Redirection #####
- A renderer which is used to redirect requests.
 
##### View #####
- Added the code to overwrite the extension &apos;renderer&apos; if the view string start with http(s)://.
 
##### Dispatcher_Continuation #####
- Added the code to set the Piece_Flow_Continuation object to the current context.
 
##### Interceptor_NullByteAttackPreventation #####
- An interceptor to prevent Null Byte Attack for applications.
 
##### OutputFilter_JapaneseZ2H #####
- An output filter which can be used to converts Japanese JIS X0208 kana to JIS X0201 kana.
 
## Example Applications ##
 
- Updated and improved the design.
- Removed the mailto: link to my e-mail address.
- Changed my e-mail address.
- Introduced form validation using Piece_Right.
- Adjusted to the new interface of Piece_Flow actions.
 
## Defect Fixes ##
 
### Kernel ###
 
##### Piece_Unity_Context #####
- Fixed the problem that an event is ignored when the event name includes the characters other than letters or numbers.
 
## Plug-ins ##
 
##### Dispatcher_Continuation #####
- Removed wrong error handling which disables the current callback.
 
##### OutputBufferStack #####
- Changed the code to prevent strange behaviour.</notes>
  </release>
  <release>
   <version>
    <release>0.5.0</release>
    <api>0.5.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2006-07-15</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>This release includes a lot of enhancements and fixing two problems as follows:
 
## Enhancements ##
 
### Kernel ###
 
##### Piece_Unity #####
- invoke(): Changed the return value to null.
 
##### Piece_Unity_Plugin_Common #####
- getExtension(): Changed code so as to immediately return when an extension is false or an array.
- Removed unused statements.
 
##### Piece_Unity_Context #####
- Added setBasePath() method for setting the base path of the current request.
- Added setScriptName() method for setting the script name of the current request.
- Renamed the method from getBaseURLPath() to getBasePath().
- Renamed the method from getBaseURL() to getScriptName().
 
### Plug-ins ###
 
##### Interceptor_ProxyBasePath #####
- An interceptor to adjust the base path and the script name of the current request which are held in the Piece_Unity_Context object. This interceptor is used and only works when your web servers are used as reverse proxies.
 
##### Interceptor_SessionStart #####
- An interceptor to start session automatically.
 
##### Root #####
- Removed code to start a session.
 
##### OutputBufferStack #####
- Changed code so as to immediately return when the extension is not an array.
- Added error handling.
 
##### InterceptorChain #####
- Changed the default value of &apos;interceptors&apos; extension point to the array which only includes &apos;Interceptor_SessionStart&apos; plug-in.
- Changed code so as to immediately return when the extension is not an array.
- Added error handling.
 
##### KernelConfigurator #####
- Added &apos;pluginDirectories&apos; configuration point for setting plug-in directories.
- Added error handling.
 
##### View #####
- Added the current session name and the current session id as view elements __sessionName and __sessionID.
 
## Example Applications ##
 
- Updated and improved.
- Changed the event names in the action states.
 
## Defect Fixes ##
 
### Kernel ###
 
##### Piece_Unity_Context #####
- Fixed the problem that slashes are replaced with backslashes.
- Fixed the problem where the base path and the script name include the starting slash with Apache 2.0.58 on Windows.</notes>
  </release>
  <release>
   <version>
    <release>0.4.0</release>
    <api>0.4.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2006-07-12</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>This release includes a lot of enhancements as follows:
 
## Enhancements ##
 
##### Piece_Unity #####
- Added properties $_configDirectory, $_cacheDirectory, and $_dynamicConfig to use after instantiation.
 
##### Piece_Unity_Config #####
- Removed methods setConfigurationDirectory(), setCacheDirectory(), getConfigurationDirectory(), getCacheDirectory(), getError(), isMergedExtensionPoint(), isMergedConfigurationPoint().
 
##### Piece_Unity_Error #####
- pushPHPError(): Added logic to return immediately with the current value of error_reporting() function.
 
##### Piece_Unity_Request #####
- Added support for importing the PATH_INFO string as parameters.
 
##### Piece_Unity_ViewElement #####
- Added getElement() method for getting elements.
- Added hasElement() method for checking whether the object has an element with a given name.
 
##### Root #####
- Added &apos;interceptor&apos; extension point.
- Added &apos;outputFilter&apos; extension point.
- Added &apos;controller&apos; extension point.
- Removed &apos;dispatcher&apos; and &apos;view&apos; extension points.
 
##### Controller #####
- A controller which delegates requests to appropriate dispatchers and fowards requests to the view handler.
 
##### InterceptorChain #####
- An interceptor which invokes all interceptors.
 
##### OutputBufferStack #####
- An output filter which turns output buffering on, and registers all output handlers.
 
##### OutputFilter_ContentLength #####
- An output filter which outputs Content-Legnth header.
 
##### Renderer_Smarty #####
- Changed error handling so as to be thrown any errors as exception except non-existing templates.</notes>
  </release>
  <release>
   <version>
    <release>0.3.0</release>
    <api>0.2.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2006-07-08</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>This release includes a few enhancements and fixing a problem as follows:
 
## Enhancements ##
 
##### Renderer_Flexy #####
- Added a configuration point &apos;debug&apos; to display debugging information.
- Changed error handling so as to be thrown any errors as &apos;exception&apos; except non-existing template.
 
## Example Applications ##
- Set the cache directory for Piece_Unity configurations and Piece_Flow flow definitions.
 
## Defect Fixes ##
 
- Fixed the problem that relative path cannot be used as the cache directory and action cirectory with Solaris.</notes>
  </release>
  <release>
   <version>
    <release>0.2.0</release>
    <api>0.2.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2006-07-06</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>The first beta release of Piece_Unity.</notes>
  </release>
  <release>
   <version>
    <release>0.1.0</release>
    <api>0.1.0</api>
   </version>
   <stability>
    <release>alpha</release>
    <api>alpha</api>
   </stability>
   <date>2006-06-21</date>
   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License (revised)</license>
   <notes>The first alpha release of Piece_Unity.</notes>
  </release>
 </changelog>
</package>