aboutsummaryrefslogtreecommitdiff
path: root/www/apache-forrest/pkg-plist
blob: d68aa41eab54186136d44813e979d7d8d2db227f (plain) (blame)
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
@comment $FreeBSD$
bin/forrest
%%DATADIR%%/bin/forrest
%%DATADIR%%/build/xml-forrest.jar
%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/build.xml
%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/output.xmap
%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/group-logo.gif
%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/usemap.gif
%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/project.svg
%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/project-logo.gif
%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/group.svg
%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/icon.png
%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/favicon.ico
%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/tabs.xml
%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/index.xml
%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/site.xml
%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/skinconf.xml
%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/forrest.properties
%%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/status.xml
%%DATADIR%%/build/plugins/catalog.xcat
%%DATADIR%%/etc/cocoon_upgrade/upgrade_cocoon_jars.sh
%%DATADIR%%/etc/cocoon_upgrade/README.txt
%%DATADIR%%/etc/cocoon_upgrade/blocks.properties
%%DATADIR%%/etc/cocoon_upgrade/build.properties
%%DATADIR%%/etc/cocoon_upgrade/build.xml
%%DATADIR%%/etc/cocoon_upgrade/local.blocks.properties
%%DATADIR%%/etc/cocoon_upgrade/local.build.properties
%%DATADIR%%/etc/cocoon_upgrade/upgrade-cocoon-xconf.xsl
%%DATADIR%%/etc/README.txt
%%DATADIR%%/etc/RELEASE-NOTES-0.7.txt
%%DATADIR%%/etc/RELEASE_PROCESS.txt
%%DATADIR%%/etc/announcement-0.7.txt
%%DATADIR%%/etc/docs-review.txt
%%DATADIR%%/etc/new-skinconf-forrest-site.xml
%%DATADIR%%/etc/publishing_our_site.txt
%%DATADIR%%/etc/relicense-jars.txt
%%DATADIR%%/etc/relicense-tree.txt
%%DATADIR%%/etc/relicense.txt
%%DATADIR%%/lib/core/avalon-framework-api-4.1.5.jar
%%DATADIR%%/lib/core/avalon-framework-impl-4.1.5.jar
%%DATADIR%%/lib/core/batik-all-1.5.1.jar
%%DATADIR%%/lib/core/castor-0.9.6-xml.jar
%%DATADIR%%/lib/core/chaperon-20040205.jar
%%DATADIR%%/lib/core/cocoon-2.2.0-dev-r125082.jar
%%DATADIR%%/lib/core/cocoon-asciiart-block-2.2.0-dev-r125082.jar
%%DATADIR%%/lib/core/cocoon-batik-block-2.2.0-dev-r125082.jar
%%DATADIR%%/lib/core/cocoon-chaperon-block-2.2.0-dev-r125082.jar
%%DATADIR%%/lib/core/cocoon-fop-block-2.2.0-dev-r125082.jar
%%DATADIR%%/lib/core/cocoon-html-block-2.2.0-dev-r125082.jar
%%DATADIR%%/lib/core/ehcache-1.1.jar
%%DATADIR%%/lib/core/cocoon-linkrewriter-block-2.2.0-dev-r125082.jar
%%DATADIR%%/lib/core/cocoon-lucene-block-2.2.0-dev-r125082.jar
%%DATADIR%%/lib/core/cocoon-profiler-block-2.2.0-dev-r125082.jar
%%DATADIR%%/lib/core/cocoon-xsp-block-2.2.0-dev-r125082.jar
%%DATADIR%%/lib/core/commons-cli-1.0.jar
%%DATADIR%%/lib/core/commons-collections-3.1.jar
%%DATADIR%%/lib/core/commons-httpclient-2.0.2.jar
%%DATADIR%%/lib/core/commons-jci-r159148.jar
%%DATADIR%%/lib/core/commons-jexl-1.0.jar
%%DATADIR%%/lib/core/commons-jxpath-20030909.jar
%%DATADIR%%/lib/core/commons-lang-2.0-20041007T2305.jar
%%DATADIR%%/lib/core/commons-logging-1.0.4.jar
%%DATADIR%%/lib/core/excalibur-i18n-1.1.jar
%%DATADIR%%/lib/core/excalibur-instrument-1.0.jar
%%DATADIR%%/lib/core/excalibur-io-1.1.jar
%%DATADIR%%/lib/core/excalibur-logger-1.1.jar
%%DATADIR%%/lib/core/excalibur-naming-1.0.jar
%%DATADIR%%/lib/core/excalibur-pool-api-2.0.0.jar
%%DATADIR%%/lib/core/excalibur-pool-impl-2.0.0.jar
%%DATADIR%%/lib/core/excalibur-pool-instrumented-2.0.0.jar
%%DATADIR%%/lib/core/excalibur-sourceresolve-1.1.jar
%%DATADIR%%/lib/core/excalibur-store-1.0.jar
%%DATADIR%%/lib/core/excalibur-xmlutil-1.0.jar
%%DATADIR%%/lib/core/fop-0.20.5.jar
%%DATADIR%%/lib/core/jcs-1.2.5-dev-20050313.jar
%%DATADIR%%/lib/core/jing-20030619.jar
%%DATADIR%%/lib/core/jtidy-04aug2000r7-dev.jar
%%DATADIR%%/lib/core/log4j-1.2.9.jar
%%DATADIR%%/lib/core/logkit-1.2.2.jar
%%DATADIR%%/lib/core/lucene-1.4.3.jar
%%DATADIR%%/lib/core/nekopull-0.2.4.jar
%%DATADIR%%/lib/core/oreilly.codepolicy.txt
%%DATADIR%%/lib/core/oreilly.permission.txt
%%DATADIR%%/lib/core/rhino-1.6R1.jar
%%DATADIR%%/lib/core/util.concurrent-1.3.4.jar
%%DATADIR%%/lib/core/w3c-dtd-license.txt
%%DATADIR%%/lib/core/xml-commons-resolver-1.1.jar
%%DATADIR%%/lib/core/xmlbeans-1.0.3.jar
%%DATADIR%%/lib/endorsed/jakarta-bcel-20040329.jar
%%DATADIR%%/lib/endorsed/jakarta-regexp-1.3.jar
%%DATADIR%%/lib/endorsed/xalan-2.6.1-dev-20041008T0304.jar
%%DATADIR%%/lib/endorsed/xercesImpl-2.6.2.jar
%%DATADIR%%/lib/endorsed/xml-apis.jar
%%DATADIR%%/lib/optional/README.txt
%%DATADIR%%/main/fresh-site/src/documentation/classes/CatalogManager.properties
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/images/group-logo.gif
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/images/group.svg
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/images/icon.png
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/images/project-logo.gif
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/images/project.svg
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/images/usemap.gif
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/subdir/book-sample.xml
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/subdir/hello.zip
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/subdir/index.xml
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/ascii-art.xml
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/cocoon-pyramid.aart
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/custom.xml
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/customSchema.xml
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/document-v13.xml
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/embedded_html.html
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/faq.xml
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/hello-v10.dtd
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/helloAgain.pdf
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/index.xml
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/linking.xml
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/sample.xml
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/static.xml
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/usemap.xml
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/hello.pdf
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/index.xml
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/site.xml
%%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/tabs.xml
%%DATADIR%%/main/fresh-site/src/documentation/content/test1.html
%%DATADIR%%/main/fresh-site/src/documentation/resources/schema/catalog.xcat
%%DATADIR%%/main/fresh-site/src/documentation/resources/schema/hello-v10.dtd
%%DATADIR%%/main/fresh-site/src/documentation/resources/stylesheets/hello2document.xsl
%%DATADIR%%/main/fresh-site/src/documentation/translations/langcode.xml
%%DATADIR%%/main/fresh-site/src/documentation/translations/languages_en.xml
%%DATADIR%%/main/fresh-site/src/documentation/translations/languages_es.xml
%%DATADIR%%/main/fresh-site/src/documentation/translations/menu.xml
%%DATADIR%%/main/fresh-site/src/documentation/translations/menu_af.xml
%%DATADIR%%/main/fresh-site/src/documentation/translations/menu_de.xml
%%DATADIR%%/main/fresh-site/src/documentation/translations/menu_es.xml
%%DATADIR%%/main/fresh-site/src/documentation/translations/menu_it.xml
%%DATADIR%%/main/fresh-site/src/documentation/translations/menu_no.xml
%%DATADIR%%/main/fresh-site/src/documentation/translations/menu_ru.xml
%%DATADIR%%/main/fresh-site/src/documentation/translations/menu_sk.xml
%%DATADIR%%/main/fresh-site/src/documentation/translations/tabs.xml
%%DATADIR%%/main/fresh-site/src/documentation/translations/tabs_es.xml
%%DATADIR%%/main/fresh-site/src/documentation/README.txt
%%DATADIR%%/main/fresh-site/src/documentation/sitemap.xmap
%%DATADIR%%/main/fresh-site/src/documentation/skinconf.xml
%%DATADIR%%/main/fresh-site/forrest.properties
%%DATADIR%%/main/java/org/apache/cocoon/components/source/impl/ZipSource.java
%%DATADIR%%/main/java/org/apache/cocoon/components/source/impl/ZipSourceFactory.java
%%DATADIR%%/main/java/org/apache/forrest/conf/AntProperties.java
%%DATADIR%%/main/java/org/apache/forrest/conf/AntPropertiesModule.java
%%DATADIR%%/main/java/org/apache/forrest/conf/ForrestConfModule.java
%%DATADIR%%/main/java/org/apache/forrest/conf/ForrestConfUtils.java
%%DATADIR%%/main/java/org/apache/forrest/conf/SkinconfTransformer.java
%%DATADIR%%/main/java/org/apache/forrest/locationmap/lm/AbstractNode.java
%%DATADIR%%/main/java/org/apache/forrest/locationmap/lm/LocationMap.java
%%DATADIR%%/main/java/org/apache/forrest/locationmap/lm/LocationNode.java
%%DATADIR%%/main/java/org/apache/forrest/locationmap/lm/LocatorNode.java
%%DATADIR%%/main/java/org/apache/forrest/locationmap/lm/MatchNode.java
%%DATADIR%%/main/java/org/apache/forrest/locationmap/lm/SelectNode.java
%%DATADIR%%/main/java/org/apache/forrest/locationmap/AbstractWrappingModule.java
%%DATADIR%%/main/java/org/apache/forrest/locationmap/LocationMapModule.java
%%DATADIR%%/main/java/org/apache/forrest/locationmap/RegexpLocationMapMatcher.java
%%DATADIR%%/main/java/org/apache/forrest/locationmap/WildcardLocationMapHintMatcher.java
%%DATADIR%%/main/java/org/apache/forrest/locationmap/WildcardLocationMapMatcher.java
%%DATADIR%%/main/java/org/apache/forrest/log/ForrestLogTargetFactory.java
%%DATADIR%%/main/java/org/apache/forrest/sourceexists/SourceExistsSelector.java
%%DATADIR%%/main/java/org/apache/forrest/sourcetype/DocDeclRule.java
%%DATADIR%%/main/java/org/apache/forrest/sourcetype/DocumentElementRule.java
%%DATADIR%%/main/java/org/apache/forrest/sourcetype/ProcessingInstructionRule.java
%%DATADIR%%/main/java/org/apache/forrest/sourcetype/SourceInfo.java
%%DATADIR%%/main/java/org/apache/forrest/sourcetype/SourceType.java
%%DATADIR%%/main/java/org/apache/forrest/sourcetype/SourceTypeAction.java
%%DATADIR%%/main/java/org/apache/forrest/sourcetype/SourceTypeRule.java
%%DATADIR%%/main/java/org/apache/forrest/sourcetype/XmlSchemaRule.java
%%DATADIR%%/main/java/org/apache/forrest/util/IdGeneratorTransformer.java
%%DATADIR%%/main/java/org/apache/forrest/util/XPathTransformer.java
%%DATADIR%%/main/java/org/apache/forrest/xni/XNIConfigurableFileGenerator.java
%%DATADIR%%/main/targets/context.xml
%%DATADIR%%/main/targets/plugins.xml
%%DATADIR%%/main/targets/site.xml
%%DATADIR%%/main/targets/skins.xml
%%DATADIR%%/main/targets/validate.xml
%%DATADIR%%/main/targets/webapp.xml
%%DATADIR%%/main/tasks/org/apache/forrest/UncopiedFileSelector.java
%%DATADIR%%/main/var/catalogMountSnippet.xsl
%%DATADIR%%/main/var/echo-settings-message.txt
%%DATADIR%%/main/var/full.cvsignore
%%DATADIR%%/main/var/initial_catalog.xcat
%%DATADIR%%/main/var/initial_plugins_sitemap.xmap
%%DATADIR%%/main/var/pluginMountSnippet.xsl
%%DATADIR%%/main/var/pluginlist2echo.xsl
%%DATADIR%%/main/var/pluginlist2fetch.xsl
%%DATADIR%%/main/var/skin-not-found-message.txt
%%DATADIR%%/main/var/skinlist2echo.xsl
%%DATADIR%%/main/var/skinlist2fetch.xsl
%%DATADIR%%/main/var/template-project-created-message.txt
%%DATADIR%%/main/var/webapp-generated-message.txt
%%DATADIR%%/main/var/webapp-local-generated-message.txt
%%DATADIR%%/main/webapp/WEB-INF/classes/org/apache/cocoon/util/mime.types
%%DATADIR%%/main/webapp/WEB-INF/classes/log4j.properties
%%DATADIR%%/main/webapp/WEB-INF/xconf/forrest-core.xconf
%%DATADIR%%/main/webapp/WEB-INF/cli.xconf
%%DATADIR%%/main/webapp/WEB-INF/cocoon.xconf
%%DATADIR%%/main/webapp/WEB-INF/jtidy.properties
%%DATADIR%%/main/webapp/WEB-INF/logkit.xconf
%%DATADIR%%/main/webapp/WEB-INF/web.xml
%%DATADIR%%/main/webapp/resources/chaperon/grammars/link.xlex
%%DATADIR%%/main/webapp/resources/chaperon/stylesheets/pattern2link.xsl
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-amsa.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-amsb.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-amsc.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-amsn.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-amso.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-amsr.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-box.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-cyr1.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-cyr2.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-dia.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-grk1.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-grk2.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-grk3.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-grk4.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-lat1.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-lat2.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-num.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-pub.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent/iso-tech.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/calstblx.dtd
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/dbcentx.mod
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/dbgenent.mod
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/dbhierx.mod
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/dbnotnx.mod
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/dbpoolx.mod
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/docbookx.dtd
%%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/soextblx.dtd
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-amsa.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-amsb.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-amsc.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-amsn.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-amso.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-amsr.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-box.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-cyr1.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-cyr2.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-dia.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-grk1.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-grk2.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-grk3.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-grk4.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-lat1.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-lat2.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-num.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-pub.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent/iso-tech.ent
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ChangeLog
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/README
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/calstblx.dtd
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/catalog.xml
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/dbcentx.mod
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/dbgenent.mod
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/dbhierx.mod
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/dbnotnx.mod
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/dbpoolx.mod
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/docbook.cat
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/docbookx.dtd
%%DATADIR%%/main/webapp/resources/schema/docbook/4.2/soextblx.dtd
%%DATADIR%%/main/webapp/resources/schema/docbook/catalog
%%DATADIR%%/main/webapp/resources/schema/docbook/catalog.xcat
%%DATADIR%%/main/webapp/resources/schema/dtd/v10/README.txt
%%DATADIR%%/main/webapp/resources/schema/dtd/v10/changes-v10.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/v10/characters.ent
%%DATADIR%%/main/webapp/resources/schema/dtd/v10/document-v10.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/v10/faq-v10.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/v10/todo-v10.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/v20a/STATUS.txt
%%DATADIR%%/main/webapp/resources/schema/dtd/v20a/document-v20.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/v20a/document-v20.mod
%%DATADIR%%/main/webapp/resources/schema/dtd/v20a/faq-v20.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/v20a/faq-v20.mod
%%DATADIR%%/main/webapp/resources/schema/dtd/.htaccess
%%DATADIR%%/main/webapp/resources/schema/dtd/book-cocoon-v10.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/changes-v11.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/changes-v11.mod
%%DATADIR%%/main/webapp/resources/schema/dtd/changes-v12.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/changes-v13.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/changes-v20.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/changes-v20.mod
%%DATADIR%%/main/webapp/resources/schema/dtd/common-charents-v10.mod
%%DATADIR%%/main/webapp/resources/schema/dtd/common-elems-v10.mod
%%DATADIR%%/main/webapp/resources/schema/dtd/contributors-v10.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/document-v11.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/document-v11.mod
%%DATADIR%%/main/webapp/resources/schema/dtd/document-v12.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/document-v12.mod
%%DATADIR%%/main/webapp/resources/schema/dtd/document-v13.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/document-v13.mod
%%DATADIR%%/main/webapp/resources/schema/dtd/document-v20.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/document-v20.mod
%%DATADIR%%/main/webapp/resources/schema/dtd/faq-v11.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/faq-v11.mod
%%DATADIR%%/main/webapp/resources/schema/dtd/faq-v12.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/faq-v12.mod
%%DATADIR%%/main/webapp/resources/schema/dtd/faq-v13.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/faq-v20.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/faq-v20.mod
%%DATADIR%%/main/webapp/resources/schema/dtd/howto-v10.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/howto-v12.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/howto-v13.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/howto-v20.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/index.html
%%DATADIR%%/main/webapp/resources/schema/dtd/javadoc-v04draft.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/readme.txt
%%DATADIR%%/main/webapp/resources/schema/dtd/skinconfig-v06-1.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/skinconfig-v06-2.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/skinconfig-v06-3.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/skinconfig-v06.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/status-v13.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/skinconfig-v07-1.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/specification-v11.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/status-v13.mod
%%DATADIR%%/main/webapp/resources/schema/dtd/tab-cocoon-v10.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/tab-cocoon-v11.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/todo-v11.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/todo-v11.mod
%%DATADIR%%/main/webapp/resources/schema/dtd/todo-v12.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/todo-v13.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/todo-v20.dtd
%%DATADIR%%/main/webapp/resources/schema/dtd/todo-v20.mod
%%DATADIR%%/main/webapp/resources/schema/dtd/xgump-draft.dtd
%%DATADIR%%/main/webapp/resources/schema/entity/.htaccess
%%DATADIR%%/main/webapp/resources/schema/entity/ISOdia.pen
%%DATADIR%%/main/webapp/resources/schema/entity/ISOgrk1.pen
%%DATADIR%%/main/webapp/resources/schema/entity/ISOlat1.pen
%%DATADIR%%/main/webapp/resources/schema/entity/ISOnum.pen
%%DATADIR%%/main/webapp/resources/schema/entity/ISOpub.pen
%%DATADIR%%/main/webapp/resources/schema/entity/ISOtech.pen
%%DATADIR%%/main/webapp/resources/schema/entity/index.html
%%DATADIR%%/main/webapp/resources/schema/open-office/catalog
%%DATADIR%%/main/webapp/resources/schema/open-office/catalog.xcat
%%DATADIR%%/main/webapp/resources/schema/open-office/dummy.dtd
%%DATADIR%%/main/webapp/resources/schema/relaxng/unstable/any.rng
%%DATADIR%%/main/webapp/resources/schema/relaxng/unstable/any.rnx
%%DATADIR%%/main/webapp/resources/schema/relaxng/unstable/forrestbot.rng
%%DATADIR%%/main/webapp/resources/schema/relaxng/unstable/forrestbot.rnx
%%DATADIR%%/main/webapp/resources/schema/relaxng/README.txt
%%DATADIR%%/main/webapp/resources/schema/relaxng/book-v01.rng
%%DATADIR%%/main/webapp/resources/schema/relaxng/document-v20.mod.rng
%%DATADIR%%/main/webapp/resources/schema/relaxng/document-v20.rng
%%DATADIR%%/main/webapp/resources/schema/relaxng/sitemap-v06.rng
%%DATADIR%%/main/webapp/resources/schema/relaxng/skinconf.rnc
%%DATADIR%%/main/webapp/resources/schema/relaxng/xslt.rng
%%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0/sdbcent.mod
%%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0/sdbhier.mod
%%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0/sdbpool.mod
%%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0/sdocbook-custom.dtd
%%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0/sdocbook.css
%%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0/sdocbook.dtd
%%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0/sdocbookref-custom.dtd
%%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0/sdocbookref.dtd
%%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0/sinclist.mod
%%DATADIR%%/main/webapp/resources/schema/sdocbook/catalog
%%DATADIR%%/main/webapp/resources/schema/sdocbook/catalog.xcat
%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/README.txt
%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/catalog
%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/catalog.xcat
%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/svg-20000303-exchange.dtd
%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/svg-20000303-shared.dtd
%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/svg-20000303-stylable.dtd
%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/svg10.dtd
%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/w3c-license.txt
%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/xhtml-lat1.ent
%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/xhtml-special.ent
%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/xhtml-symbol.ent
%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/xhtml1-frameset.dtd
%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/xhtml1-strict.dtd
%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/xhtml1-transitional.dtd
%%DATADIR%%/main/webapp/resources/schema/w3c-dtd/xhtml1.dcl
%%DATADIR%%/main/webapp/resources/schema/README.txt
%%DATADIR%%/main/webapp/resources/schema/catalog
%%DATADIR%%/main/webapp/resources/schema/catalog.forrest
%%DATADIR%%/main/webapp/resources/schema/catalog.forrest.xcat
%%DATADIR%%/main/webapp/resources/schema/catalog.xcat
%%DATADIR%%/main/webapp/resources/stylesheets/aggregates/book2cinclude.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/aggregates/doc2doc-uniqueids.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/aggregates/docs2document.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/aggregates/relativize-split-linkmap.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/external/str.find-last.xslt
%%DATADIR%%/main/webapp/resources/stylesheets/search/book2cinclude-lucene.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/search/document2lucene.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/search/lucene-update2document.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/search/search2document.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/absolutize-linkmap.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/any2document.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/bookv10.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/changesv10tochangesv11.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/copyover.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/declare-broken-site-links.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/directory2book.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/directory2i18n.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/directory2revisions.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/docv10todocv11.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/docv20todocv12.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/docv20todocv13.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/dotdots.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/extract-svg.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/faq2document.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/faqv10tofaqv11.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/faqv20tofaqv12.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/faqv20tofaqv13.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/howto2document.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/html2document.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/html2htmlbody.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/i18n.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/linkmap2document.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/normalizehrefs.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/page2html.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/plugins2xdoc.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/profile2page.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/project2text.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/projectnavigation2site.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/relativize-linkmap.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/rss2document.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/rssissues2document.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/site2book.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/site2site-normalizetabs.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/site2site-selectnode.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/strip-doctype.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/text2document.xsl
%%DATADIR%%/main/webapp/resources/stylesheets/upgrade-skinconf.xsl
%%DATADIR%%/main/webapp/skins/common/css/forrest.css.xslt
%%DATADIR%%/main/webapp/skins/common/images/README.txt
%%DATADIR%%/main/webapp/skins/common/images/add.jpg
%%DATADIR%%/main/webapp/skins/common/images/built-with-forrest-button.png
%%DATADIR%%/main/webapp/skins/common/images/corner-imports.svg.xslt
%%DATADIR%%/main/webapp/skins/common/images/dc.svg.xslt
%%DATADIR%%/main/webapp/skins/common/images/external-link.gif
%%DATADIR%%/main/webapp/skins/common/images/fix.jpg
%%DATADIR%%/main/webapp/skins/common/images/forrest-credit-logo.png
%%DATADIR%%/main/webapp/skins/common/images/hack.jpg
%%DATADIR%%/main/webapp/skins/common/images/pdfdoc.gif
%%DATADIR%%/main/webapp/skins/common/images/poddoc.png
%%DATADIR%%/main/webapp/skins/common/images/poddoc.svg.xslt
%%DATADIR%%/main/webapp/skins/common/images/printer.gif
%%DATADIR%%/main/webapp/skins/common/images/rc.svg.xslt
%%DATADIR%%/main/webapp/skins/common/images/remove.jpg
%%DATADIR%%/main/webapp/skins/common/images/rss.png
%%DATADIR%%/main/webapp/skins/common/images/spacer.gif
%%DATADIR%%/main/webapp/skins/common/images/txtdoc.png
%%DATADIR%%/main/webapp/skins/common/images/txtdoc.svg.xslt
%%DATADIR%%/main/webapp/skins/common/images/update.jpg
%%DATADIR%%/main/webapp/skins/common/images/valid-html401.png
%%DATADIR%%/main/webapp/skins/common/images/vcss.png
%%DATADIR%%/main/webapp/skins/common/images/xmldoc.gif
%%DATADIR%%/main/webapp/skins/common/scripts/breadcrumbs-optimized.js
%%DATADIR%%/main/webapp/skins/common/scripts/breadcrumbs.js
%%DATADIR%%/main/webapp/skins/common/scripts/fontsize.js
%%DATADIR%%/main/webapp/skins/common/scripts/getBlank.js
%%DATADIR%%/main/webapp/skins/common/scripts/getMenu.js
%%DATADIR%%/main/webapp/skins/common/scripts/menu.js
%%DATADIR%%/main/webapp/skins/common/translations/CommonMessages_de.xml
%%DATADIR%%/main/webapp/skins/common/translations/CommonMessages_en_US.xml
%%DATADIR%%/main/webapp/skins/common/translations/CommonMessages_es.xml
%%DATADIR%%/main/webapp/skins/common/translations/CommonMessages_fr.xml
%%DATADIR%%/main/webapp/skins/common/xslt/fo/document2fo.xsl
%%DATADIR%%/main/webapp/skins/common/xslt/fo/footerinfo.xsl
%%DATADIR%%/main/webapp/skins/common/xslt/fo/pdfoutline.xsl
%%DATADIR%%/main/webapp/skins/common/xslt/html/book2menu.xsl
%%DATADIR%%/main/webapp/skins/common/xslt/html/document2html.xsl
%%DATADIR%%/main/webapp/skins/common/xslt/html/dotdots.xsl
%%DATADIR%%/main/webapp/skins/common/xslt/html/pathutils.xsl
%%DATADIR%%/main/webapp/skins/common/xslt/html/renderlogo.xsl
%%DATADIR%%/main/webapp/skins/common/xslt/html/site2xhtml.xsl
%%DATADIR%%/main/webapp/skins/common/xslt/html/split.xsl
%%DATADIR%%/main/webapp/skins/common/xslt/html/strip_namespaces.xsl
%%DATADIR%%/main/webapp/skins/common/xslt/html/tab2menu.xsl
%%DATADIR%%/main/webapp/skins/common/xslt/html/tabutils.xsl
%%DATADIR%%/main/webapp/skins/common/xslt/svg/document2svg.xsl
%%DATADIR%%/main/webapp/skins/common/skinconf.xsl
%%DATADIR%%/main/webapp/skins/corium/brainstorming.txt
%%DATADIR%%/main/webapp/skins/forrest-site/css/page.css
%%DATADIR%%/main/webapp/skins/forrest-site/images/chapter.gif
%%DATADIR%%/main/webapp/skins/forrest-site/images/chapter_open.gif
%%DATADIR%%/main/webapp/skins/forrest-site/images/current.gif
%%DATADIR%%/main/webapp/skins/forrest-site/images/doc.gif
%%DATADIR%%/main/webapp/skins/forrest-site/images/label.gif
%%DATADIR%%/main/webapp/skins/forrest-site/images/menu-left.gif
%%DATADIR%%/main/webapp/skins/forrest-site/images/menu-right.gif
%%DATADIR%%/main/webapp/skins/forrest-site/images/page.gif
%%DATADIR%%/main/webapp/skins/forrest-site/images/pdfdoc.gif
%%DATADIR%%/main/webapp/skins/forrest-site/images/printer.gif
%%DATADIR%%/main/webapp/skins/forrest-site/images/search-left.gif
%%DATADIR%%/main/webapp/skins/forrest-site/images/search-right.gif
%%DATADIR%%/main/webapp/skins/forrest-site/images/singlepage.gif
%%DATADIR%%/main/webapp/skins/forrest-site/images/spacer.gif
%%DATADIR%%/main/webapp/skins/forrest-site/images/tab-left.gif
%%DATADIR%%/main/webapp/skins/forrest-site/images/tab-right.gif
%%DATADIR%%/main/webapp/skins/forrest-site/images/tabSel-left.gif
%%DATADIR%%/main/webapp/skins/forrest-site/images/tabSel-right.gif
%%DATADIR%%/main/webapp/skins/forrest-site/images/xmldoc.gif
%%DATADIR%%/main/webapp/skins/forrest-site/xslt/fo/document2fo.xsl
%%DATADIR%%/main/webapp/skins/forrest-site/xslt/html/book2menu.xsl
%%DATADIR%%/main/webapp/skins/forrest-site/xslt/html/document2html.xsl
%%DATADIR%%/main/webapp/skins/forrest-site/xslt/html/site2xhtml.xsl
%%DATADIR%%/main/webapp/skins/forrest-site/xslt/html/tab2menu.xsl
%%DATADIR%%/main/webapp/skins/krysalis-site/css/forrest.css.xslt
%%DATADIR%%/main/webapp/skins/krysalis-site/css/page.css
%%DATADIR%%/main/webapp/skins/krysalis-site/images/chapter.gif
%%DATADIR%%/main/webapp/skins/krysalis-site/images/chapter_open.gif
%%DATADIR%%/main/webapp/skins/krysalis-site/images/current.gif
%%DATADIR%%/main/webapp/skins/krysalis-site/images/error.png
%%DATADIR%%/main/webapp/skins/krysalis-site/images/info.png
%%DATADIR%%/main/webapp/skins/krysalis-site/images/label.gif
%%DATADIR%%/main/webapp/skins/krysalis-site/images/page.gif
%%DATADIR%%/main/webapp/skins/krysalis-site/images/pdfdoc.gif
%%DATADIR%%/main/webapp/skins/krysalis-site/images/printer.gif
%%DATADIR%%/main/webapp/skins/krysalis-site/images/success.png
%%DATADIR%%/main/webapp/skins/krysalis-site/images/warning.png
%%DATADIR%%/main/webapp/skins/krysalis-site/images/xmldoc.gif
%%DATADIR%%/main/webapp/skins/krysalis-site/xslt/fo/document2fo.xsl
%%DATADIR%%/main/webapp/skins/krysalis-site/xslt/html/book2menu.xsl
%%DATADIR%%/main/webapp/skins/krysalis-site/xslt/html/document2html.xsl
%%DATADIR%%/main/webapp/skins/krysalis-site/xslt/html/site2xhtml.xsl
%%DATADIR%%/main/webapp/skins/krysalis-site/xslt/html/tab2menu.xsl
%%DATADIR%%/main/webapp/skins/krysalis-site/skinconf.xsl
%%DATADIR%%/main/webapp/skins/leather-dev/css/base-contracts.css
%%DATADIR%%/main/webapp/skins/leather-dev/css/basic.css
%%DATADIR%%/main/webapp/skins/leather-dev/css/branding.css
%%DATADIR%%/main/webapp/skins/leather-dev/css/navigation.css
%%DATADIR%%/main/webapp/skins/leather-dev/css/profiling.css.xslt
%%DATADIR%%/main/webapp/skins/leather-dev/images/chapter.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/chapter_open.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/current.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/doc.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/header-background-grad.png
%%DATADIR%%/main/webapp/skins/leather-dev/images/header-background.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/header-background.png
%%DATADIR%%/main/webapp/skins/leather-dev/images/header_white_line.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/label.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/page.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/pdfdoc.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/printer.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/search-left.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/search-right.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/sidebar_bg.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/singlepage.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/spacer.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/tab-left.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/tab-right.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/tl-off.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/tl-on.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/tr-off.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/tr-on.gif
%%DATADIR%%/main/webapp/skins/leather-dev/images/xmldoc.gif
%%DATADIR%%/main/webapp/skins/leather-dev/templates/default.fv
%%DATADIR%%/main/webapp/skins/leather-dev/xslt/fo/document2fo.xsl
%%DATADIR%%/main/webapp/skins/leather-dev/xslt/html/book2menu.xsl
%%DATADIR%%/main/webapp/skins/leather-dev/xslt/html/document2html.xsl
%%DATADIR%%/main/webapp/skins/leather-dev/xslt/html/site2xhtml.xsl
%%DATADIR%%/main/webapp/skins/leather-dev/xslt/html/tab2menu.xsl
%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/fct-bits/c-fontsize-fct.xml
%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/fct-bits/fct-bits.txt
%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/fct-bits/fct-bits.xsl
%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/fct-bits/pipeline.txt
%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/contract.xsl
%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/dir2contracts.xsl
%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/ft-leather.xml
%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/ft2xhtml.xsl
%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/site2xml.xsl
%%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/sitemap.xmap
%%DATADIR%%/main/webapp/skins/leather-dev/brainstorming.txt
%%DATADIR%%/main/webapp/skins/leather-dev/contracts.inicial.txt
%%DATADIR%%/main/webapp/skins/leather-dev/forrest-template.xml
%%DATADIR%%/main/webapp/skins/leather-dev/note.txt
%%DATADIR%%/main/webapp/skins/leather-dev/skinconf.xsl
%%DATADIR%%/main/webapp/skins/pelt/css/basic.css
%%DATADIR%%/main/webapp/skins/pelt/css/print.css
%%DATADIR%%/main/webapp/skins/pelt/css/profile.css.xslt
%%DATADIR%%/main/webapp/skins/pelt/css/screen.css
%%DATADIR%%/main/webapp/skins/pelt/images/chapter.gif
%%DATADIR%%/main/webapp/skins/pelt/images/chapter_open.gif
%%DATADIR%%/main/webapp/skins/pelt/images/current.gif
%%DATADIR%%/main/webapp/skins/pelt/images/error.png
%%DATADIR%%/main/webapp/skins/pelt/images/header_white_line.gif
%%DATADIR%%/main/webapp/skins/pelt/images/info.png
%%DATADIR%%/main/webapp/skins/pelt/images/instruction_arrow.png
%%DATADIR%%/main/webapp/skins/pelt/images/label.gif
%%DATADIR%%/main/webapp/skins/pelt/images/page.gif
%%DATADIR%%/main/webapp/skins/pelt/images/pdfdoc.gif
%%DATADIR%%/main/webapp/skins/pelt/images/printer.gif
%%DATADIR%%/main/webapp/skins/pelt/images/success.png
%%DATADIR%%/main/webapp/skins/pelt/images/warning.png
%%DATADIR%%/main/webapp/skins/pelt/images/xmldoc.gif
%%DATADIR%%/main/webapp/skins/pelt/xslt/fo/document2fo.xsl
%%DATADIR%%/main/webapp/skins/pelt/xslt/html/book2menu.xsl
%%DATADIR%%/main/webapp/skins/pelt/xslt/html/document2html.xsl
%%DATADIR%%/main/webapp/skins/pelt/xslt/html/site2xhtml.xsl
%%DATADIR%%/main/webapp/skins/pelt/xslt/html/tab2menu.xsl
%%DATADIR%%/main/webapp/skins/pelt/note.txt
%%DATADIR%%/main/webapp/skins/pelt/skinconf.xsl
%%DATADIR%%/main/webapp/skins/plain-dev/xslt/html/book2menu.xsl
%%DATADIR%%/main/webapp/skins/plain-dev/xslt/html/document2html.xsl
%%DATADIR%%/main/webapp/skins/plain-dev/xslt/html/site2xhtml.xsl
%%DATADIR%%/main/webapp/skins/plain-dev/xslt/html/tab2menu.xsl
%%DATADIR%%/main/webapp/skins/tigris/css/forrest.css.xslt
%%DATADIR%%/main/webapp/skins/tigris/css/inst.css
%%DATADIR%%/main/webapp/skins/tigris/css/ns4_only.css
%%DATADIR%%/main/webapp/skins/tigris/css/print.css
%%DATADIR%%/main/webapp/skins/tigris/css/quirks.css
%%DATADIR%%/main/webapp/skins/tigris/css/tigris.css
%%DATADIR%%/main/webapp/skins/tigris/images/corporate_logo.gif
%%DATADIR%%/main/webapp/skins/tigris/images/file.gif
%%DATADIR%%/main/webapp/skins/tigris/images/folder-closed.gif
%%DATADIR%%/main/webapp/skins/tigris/images/folder-open.gif
%%DATADIR%%/main/webapp/skins/tigris/images/help_logo.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_alert.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_alertsml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowfolder1_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowfolder2_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowfolderclosed1_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowfolderopen2_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowmembers1_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowmembers2_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowusergroups1_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowusergroups2_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowwaste1_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_arrowwaste2_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_confirmsml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_doc_lrg.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_doc_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_error_lrg.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_error_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_folder_lrg.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_folder_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_help_lrg.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_help_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_info_lrg.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_info_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_infosml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_members_lrg.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_members_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_sortdown.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_sortleft.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_sortright.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_sortup.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_success_lrg.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_success_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_usergroups_lrg.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_usergroups_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_warning_lrg.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_warning_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_waste_lrg.gif
%%DATADIR%%/main/webapp/skins/tigris/images/icon_waste_sml.gif
%%DATADIR%%/main/webapp/skins/tigris/images/nw_maj.gif
%%DATADIR%%/main/webapp/skins/tigris/images/nw_maj_hi.gif
%%DATADIR%%/main/webapp/skins/tigris/images/nw_maj_rond.gif
%%DATADIR%%/main/webapp/skins/tigris/images/nw_med.gif
%%DATADIR%%/main/webapp/skins/tigris/images/nw_med_hi.gif
%%DATADIR%%/main/webapp/skins/tigris/images/nw_med_rond.gif
%%DATADIR%%/main/webapp/skins/tigris/images/nw_min.gif
%%DATADIR%%/main/webapp/skins/tigris/images/nw_min_036.gif
%%DATADIR%%/main/webapp/skins/tigris/images/nw_min_hi.gif
%%DATADIR%%/main/webapp/skins/tigris/images/pdfdoc.gif
%%DATADIR%%/main/webapp/skins/tigris/images/poweredby_036.gif
%%DATADIR%%/main/webapp/skins/tigris/images/printer.gif
%%DATADIR%%/main/webapp/skins/tigris/images/product_logo.gif
%%DATADIR%%/main/webapp/skins/tigris/images/se_maj_rond.gif
%%DATADIR%%/main/webapp/skins/tigris/images/strich.gif
%%DATADIR%%/main/webapp/skins/tigris/images/sw_maj_rond.gif
%%DATADIR%%/main/webapp/skins/tigris/images/sw_med_rond.gif
%%DATADIR%%/main/webapp/skins/tigris/images/sw_min.gif
%%DATADIR%%/main/webapp/skins/tigris/images/xmldoc.gif
%%DATADIR%%/main/webapp/skins/tigris/scripts/tigris.js
%%DATADIR%%/main/webapp/skins/tigris/xslt/fo/document2fo.xsl
%%DATADIR%%/main/webapp/skins/tigris/xslt/html/book2menu.xsl
%%DATADIR%%/main/webapp/skins/tigris/xslt/html/document2html.xsl
%%DATADIR%%/main/webapp/skins/tigris/xslt/html/site2xhtml.xsl
%%DATADIR%%/main/webapp/skins/tigris/xslt/html/tab2menu.xsl
%%DATADIR%%/main/webapp/skins/tigris/README.txt
%%DATADIR%%/main/webapp/skins/tigris/skinconf.xsl
%%DATADIR%%/main/webapp/skins/README.txt
%%DATADIR%%/main/webapp/skins/new-skin-names.txt
%%DATADIR%%/main/webapp/aggregate.xmap
%%DATADIR%%/main/webapp/default-forrest.properties
%%DATADIR%%/main/webapp/faq.xmap
%%DATADIR%%/main/webapp/forrest.xmap
%%DATADIR%%/main/webapp/i18n.xmap
%%DATADIR%%/main/webapp/issues.xmap
%%DATADIR%%/main/webapp/jettyconf.xml
%%DATADIR%%/main/webapp/linkmap.xmap
%%DATADIR%%/main/webapp/menu.xmap
%%DATADIR%%/main/webapp/profiler.xmap
%%DATADIR%%/main/webapp/raw.xmap
%%DATADIR%%/main/webapp/resources.xmap
%%DATADIR%%/main/webapp/revisions.xmap
%%DATADIR%%/main/webapp/search.xmap
%%DATADIR%%/main/webapp/sitemap.xmap
%%DATADIR%%/main/webapp/tabs.xmap
%%DATADIR%%/main/build.sh
%%DATADIR%%/main/build.xml
%%DATADIR%%/main/forrest.antproxy.xml
%%DATADIR%%/main/forrest.build.xml
%%DATADIR%%/main/module.xml
%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/group-logo.gif
%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/group.svg
%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/icon.png
%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/project-logo.gif
%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/project.svg
%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images/usemap.gif
%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/favicon.ico
%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/index.xml
%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/site.xml
%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/tabs.xml
%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/skinconf.xml
%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/build.xml
%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/forrest.properties
%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/output.xmap
%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/status.xml
%%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/build/build.number
%%DATADIR%%/plugins/pluginTemplate/lib/readme.txt
%%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/images/group-logo.gif
%%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/images/group.svg
%%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/images/icon.png
%%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/images/project-logo.gif
%%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/images/project.svg
%%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/images/usemap.gif
%%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/index.xml
%%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/site.xml
%%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/tabs.xml
%%DATADIR%%/plugins/pluginTemplate/src/documentation/skinconf.xml
%%DATADIR%%/plugins/pluginTemplate/src/java/readme.txt
%%DATADIR%%/plugins/pluginTemplate/build.xml
%%DATADIR%%/plugins/pluginTemplate/forrest.properties
%%DATADIR%%/plugins/pluginTemplate/sitemap.xmap
%%DATADIR%%/plugins/pluginTemplate/status.xml
%%DATADIR%%/plugins/build.xml
%%DATADIR%%/plugins/plugins.xml
%%DATADIR%%/site-author/classes/CatalogManager.properties
%%DATADIR%%/site-author/conf/cli.xconf
%%DATADIR%%/site-author/content/skins/skins.xml
%%DATADIR%%/site-author/content/xdocs/TR/2004/WD-forrest10.html
%%DATADIR%%/site-author/content/xdocs/docs_0_60/howto/bugzilla-patch/my-images/bugzilla-screen.gif
%%DATADIR%%/site-author/content/xdocs/docs_0_60/howto/bugzilla-patch/book.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/howto/bugzilla-patch/howto-bugzilla-patch.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/howto/multi/howto-multi.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/howto/multi/revision-howto-multi-2003-09-14.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/howto/multi/revision-howto-multi-2003-09-15.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/howto/multi/revision-step1-2003-09-16.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/howto/multi/step1.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/howto/multi/step2.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/howto/multi/step3.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/howto/howto-asf-mirror.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/howto/howto-forrestbot.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/howto/howto-howto.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/howto/howto-pdf-tab.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/howto/index.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/build.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/cap.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/catalog.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/compliance.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/faq.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/forrest-contract.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/index.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/linking.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/oowriter.sxw
%%DATADIR%%/site-author/content/xdocs/docs_0_60/project-sitemap.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/searching.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/sitemap-ref.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/skin-package.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/skins.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/upgrading_06.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/validation.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_60/wiki-sample.cwiki
%%DATADIR%%/site-author/content/xdocs/docs_0_60/your-project.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/bugzilla-patch/my-images/bugzilla-screen.gif
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/bugzilla-patch/book.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/bugzilla-patch/howto-bugzilla-patch.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/cvs-ssh/book.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/cvs-ssh/howto-cvs-ssh.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/multi/howto-multi.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/multi/revision-howto-multi-2003-09-14.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/multi/revision-howto-multi-2003-09-15.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/multi/revision-step1-2003-09-16.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/multi/step1.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/multi/step2.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/multi/step3.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/forrest.xmap.html
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-asf-mirror.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-buildPlugin.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-corner-images.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-custom-html-source.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-editcss.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-forrest-from-maven.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-forrestbot.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-howto.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-pdf-tab.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-view-contracts.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-view-dsl.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/howto-view-install.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/index.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/project_sitemap.xmap.html
%%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/sitemap.xmap.html
%%DATADIR%%/site-author/content/xdocs/docs_0_70/images/snapshot-plain-dev.png
%%DATADIR%%/site-author/content/xdocs/docs_0_70/images/snapshot-view-viewHelper.png
%%DATADIR%%/site-author/content/xdocs/docs_0_70/build.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/cap.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/catalog.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/compliance.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/dreams.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/faq.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/forrest-contract.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/index.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/libre-intro.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/linking.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/primer.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/project-sitemap.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/searching.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/sitemap-ref.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/skin-package.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/skins.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/upgrading_07.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/validation.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/views.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_70/your-project.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_80/index.xml
%%DATADIR%%/site-author/content/xdocs/docs_0_80/upgrading_08.xml
%%DATADIR%%/site-author/content/xdocs/dtdx/document-v11.xml
%%DATADIR%%/site-author/content/xdocs/dtdx/document-v12.xml
%%DATADIR%%/site-author/content/xdocs/dtdx/document-v13.dtdx.pdf
%%DATADIR%%/site-author/content/xdocs/dtdx/document-v13.xml
%%DATADIR%%/site-author/content/xdocs/dtdx/document-v20.dtdx.pdf
%%DATADIR%%/site-author/content/xdocs/dtdx/document-v20.xml
%%DATADIR%%/site-author/content/xdocs/dtdx/dtd-docs.xml
%%DATADIR%%/site-author/content/xdocs/dtdx/faq-v13.dtdx.pdf
%%DATADIR%%/site-author/content/xdocs/dtdx/faq-v20.dtdx.pdf
%%DATADIR%%/site-author/content/xdocs/dtdx/howto-v13.dtdx.pdf
%%DATADIR%%/site-author/content/xdocs/dtdx/howto-v20.dtdx.pdf
%%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_70/pluginInfrastructure.xml
%%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_70/usingPlugins.xml
%%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_80/pluginInfrastructure.xml
%%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_80/usingPlugins.xml
%%DATADIR%%/site-author/content/xdocs/pluginDocs/index.xml
%%DATADIR%%/site-author/content/xdocs/tools/forrestbar.xml
%%DATADIR%%/site-author/content/xdocs/tools/forrestbar.xpi
%%DATADIR%%/site-author/content/xdocs/tools/forrestbot-web-interface.xml
%%DATADIR%%/site-author/content/xdocs/tools/forrestbot.xml
%%DATADIR%%/site-author/content/xdocs/tools/index.xml
%%DATADIR%%/site-author/content/xdocs/tools/xxe.xml
%%DATADIR%%/site-author/content/xdocs/trash/docs_0_50/index.xml
%%DATADIR%%/site-author/content/xdocs/trash/docs_0_50/upgrading_05.xml
%%DATADIR%%/site-author/content/xdocs/versions/index.xml
%%DATADIR%%/site-author/content/xdocs/contrib.xml
%%DATADIR%%/site-author/content/xdocs/events.xml
%%DATADIR%%/site-author/content/xdocs/favicon.ico
%%DATADIR%%/site-author/content/xdocs/flyer.xml
%%DATADIR%%/site-author/content/xdocs/guidelines.xml
%%DATADIR%%/site-author/content/xdocs/index.xml
%%DATADIR%%/site-author/content/xdocs/license.xml
%%DATADIR%%/site-author/content/xdocs/live-sites.xml
%%DATADIR%%/site-author/content/xdocs/mail-lists.xml
%%DATADIR%%/site-author/content/xdocs/mirrors.html
%%DATADIR%%/site-author/content/xdocs/proposal-asf-forrestbot.xml
%%DATADIR%%/site-author/content/xdocs/site.xml
%%DATADIR%%/site-author/content/xdocs/tabs.xml
%%DATADIR%%/site-author/content/xdocs/uri-namespace.xml
%%DATADIR%%/site-author/content/xdocs/versions.xml
%%DATADIR%%/site-author/content/xdocs/who.xml
%%DATADIR%%/site-author/content/.htaccess
%%DATADIR%%/site-author/content/mirrors.cgi
%%DATADIR%%/site-author/resources/images/apache-forrest-original.svg
%%DATADIR%%/site-author/resources/images/apache-forrest.png
%%DATADIR%%/site-author/resources/images/built-with-cocoon.gif
%%DATADIR%%/site-author/resources/images/dir-menu.png
%%DATADIR%%/site-author/resources/images/dir-menu2.png
%%DATADIR%%/site-author/resources/images/dir-menu3.png
%%DATADIR%%/site-author/resources/images/icon.png
%%DATADIR%%/site-author/resources/images/menu.png
%%DATADIR%%/site-author/resources/images/menu2.png
%%DATADIR%%/site-author/resources/images/menu3.png
%%DATADIR%%/site-author/resources/images/new-project.png
%%DATADIR%%/site-author/resources/images/page-areas.png
%%DATADIR%%/site-author/resources/images/project-logo.gif
%%DATADIR%%/site-author/resources/images/project-logo.png
%%DATADIR%%/site-author/resources/images/tabs.png
%%DATADIR%%/site-author/forrest.properties
%%DATADIR%%/site-author/publish.xml
%%DATADIR%%/site-author/sitemap.xmap
%%DATADIR%%/site-author/skinconf.xml
%%DATADIR%%/site-author/status.xml
%%DATADIR%%/tools/ant/bin/ant
%%DATADIR%%/tools/ant/bin/ant.cmd
%%DATADIR%%/tools/ant/bin/antRun
%%DATADIR%%/tools/ant/bin/antRun.pl
%%DATADIR%%/tools/ant/bin/antenv.cmd
%%DATADIR%%/tools/ant/bin/complete-ant-cmd.pl
%%DATADIR%%/tools/ant/bin/envset.cmd
%%DATADIR%%/tools/ant/bin/runant.pl
%%DATADIR%%/tools/ant/bin/runant.py
%%DATADIR%%/tools/ant/bin/runrc.cmd
%%DATADIR%%/tools/ant/lib/ant-apache-resolver.jar
%%DATADIR%%/tools/ant/lib/ant-contrib-1.0b2.jar
%%DATADIR%%/tools/ant/lib/ant-jsch.jar
%%DATADIR%%/tools/ant/lib/ant-launcher.jar
%%DATADIR%%/tools/ant/lib/ant-nodeps.jar
%%DATADIR%%/tools/ant/lib/ant-trax.jar
%%DATADIR%%/tools/ant/lib/ant-xalan2.jar
%%DATADIR%%/tools/ant/lib/ant.jar
%%DATADIR%%/tools/ant/lib/jsch-0.1.14.jar
%%DATADIR%%/tools/ant/lib/jsvn-0.9-dev.jar
%%DATADIR%%/tools/ant/lib/xml-commons-resolver-1.1.jar
%%DATADIR%%/tools/dtdconverters/README.txt
%%DATADIR%%/tools/dtdconverters/dtdx.dtd
%%DATADIR%%/tools/dtdconverters/dtdx2dtd.xsl
%%DATADIR%%/tools/eclipse/conf/log4j.xml
%%DATADIR%%/tools/eclipse/icons/build.png
%%DATADIR%%/tools/eclipse/icons/start.png
%%DATADIR%%/tools/eclipse/icons/stop.png
%%DATADIR%%/tools/eclipse/lib/log4j-1.2.9.jar
%%DATADIR%%/tools/eclipse/lib/log4j_LICENSE.txt
%%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/actions/Utilities.java
%%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/job/AntBuildListener.java
%%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/job/ForrestBuilder.java
%%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/job/ForrestJob.java
%%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/job/ForrestManager.java
%%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/job/ForrestRunner.java
%%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/job/ForrestStopper.java
%%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/popup/actions/BuildSite.java
%%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/popup/actions/StartForrest.java
%%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/popup/actions/StopForrest.java
%%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/preference/ForrestPreferences.java
%%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/wizards/NewProjectWizard.java
%%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/wizards/NewXDoc.java
%%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/wizards/NewXdocPage.java
%%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/ForrestPlugin.java
%%DATADIR%%/tools/eclipse/src/org/apache/forrest/template/new_xdoc.xml
%%DATADIR%%/tools/eclipse/src/org/apache/forrest/template/template_build.xml
%%DATADIR%%/tools/eclipse/.classpath
%%DATADIR%%/tools/eclipse/.project
%%DATADIR%%/tools/eclipse/build.properties
%%DATADIR%%/tools/eclipse/plugin.properties
%%DATADIR%%/tools/eclipse/plugin.xml
%%DATADIR%%/tools/eclipse/readme.txt
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/apache-down.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/apache.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/code-down.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/code.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/download-down.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/download.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/faq-down.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/faq.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/forrest-down.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/forrest.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/gump-down.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/gump.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/news-down.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/news.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/projects-down.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/projects.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/search-down.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/search.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/tools-down.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images/tools.png
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/contents.rdf
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/forrestbar.css
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/forrestbarOverlay.js
%%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/forrestbarOverlay.xul
%%DATADIR%%/tools/forrestbar/xpi/install.js
%%DATADIR%%/tools/forrestbar/build.xml
%%DATADIR%%/tools/forrestbot/core/cvs_add.sh
%%DATADIR%%/tools/forrestbot/core/build.xml
%%DATADIR%%/tools/forrestbot/core/deploy.xml
%%DATADIR%%/tools/forrestbot/core/emailtemplate.txt
%%DATADIR%%/tools/forrestbot/core/forrestbot.xml
%%DATADIR%%/tools/forrestbot/core/getsrc.xml
%%DATADIR%%/tools/forrestbot/core/notify.xml
%%DATADIR%%/tools/forrestbot/lib/ant-contrib-0.5.jar
%%DATADIR%%/tools/forrestbot/lib/jsvn-0.9-dev.jar
%%DATADIR%%/tools/forrestbot/webapp/lib/README.txt
%%DATADIR%%/tools/forrestbot/webapp/lib/oscore-2.2.2.jar
%%DATADIR%%/tools/forrestbot/webapp/lib/osuser-1.0-dev.jar
%%DATADIR%%/tools/forrestbot/webapp/lib/propertyset-1.2.jar
%%DATADIR%%/tools/forrestbot/webapp/src/conf/groups.xml
%%DATADIR%%/tools/forrestbot/webapp/src/conf/log4j.properties
%%DATADIR%%/tools/forrestbot/webapp/src/conf/osuser.xml
%%DATADIR%%/tools/forrestbot/webapp/src/conf/projects.xml
%%DATADIR%%/tools/forrestbot/webapp/src/conf/settings.properties
%%DATADIR%%/tools/forrestbot/webapp/src/conf/users.xml
%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/action/BaseAction.java
%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/action/ExecuteAction.java
%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/action/LogoutAction.java
%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/action/ViewLogBodyAction.java
%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/action/ViewLogFrameAction.java
%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/action/ViewLogHeaderAction.java
%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/action/ViewSummaryAction.java
%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/dto/ProjectDTO.java
%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/form/BaseDynaActionForm.java
%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/form/LoginForm.java
%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/util/Executor.java
%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/util/Project.java
%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/Config.java
%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/Constants.java
%%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/Resources.properties
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/WEB-INF/tld/struts-bean-el.tld
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/WEB-INF/tld/struts-html-el.tld
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/WEB-INF/tld/struts-logic-el.tld
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/WEB-INF/struts-config.xml
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/WEB-INF/struts-tiles.xml
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/WEB-INF/web.xml
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/common/footer.jsp
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/common/header.jsp
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/common/layout.jsp
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/common/simple.jsp
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/common/viewlog_frame.jsp
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/commandForm.jsp
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/execute.jsp
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/index.jsp
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/loginForm.jsp
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/logout.jsp
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/summary.jsp
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/viewlog_body.jsp
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/viewlog_header.jsp
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/welcome.html
%%DATADIR%%/tools/forrestbot/webapp/src/webapp/welcome.local.html
%%DATADIR%%/tools/forrestbot/webapp/.classpath
%%DATADIR%%/tools/forrestbot/webapp/.project
%%DATADIR%%/tools/forrestbot/webapp/maven.xml
%%DATADIR%%/tools/forrestbot/webapp/project.properties
%%DATADIR%%/tools/forrestbot/webapp/project.xml
%%DATADIR%%/tools/forrestbot/avalon-phoenix.xml
%%DATADIR%%/tools/forrestbot/avalon-site.xml
%%DATADIR%%/tools/forrestbot/cocoon-site.xml
%%DATADIR%%/tools/forrestbot/forrest-pelt.xml
%%DATADIR%%/tools/forrestbot/forrest-seed.xml
%%DATADIR%%/tools/forrestbot/forrest.xml
%%DATADIR%%/tools/forrestbot/incubator.xml
%%DATADIR%%/tools/forrestbot/sf-struts.xml
%%DATADIR%%/tools/forrestbot/ws-site.xml
%%DATADIR%%/tools/forrestbot/xml-fop.xml
%%DATADIR%%/tools/forrestbot/xml-site.xml
%%DATADIR%%/tools/forrestbot/xml-xindice.xml
%%DATADIR%%/tools/forrestbot/xml-xmlbeans.xml
%%DATADIR%%/tools/jetty/jetty-4.2.19.jar
%%DATADIR%%/tools/jetty/jetty-4.2.19.jar.license.html
%%DATADIR%%/tools/jetty/servlet-2.3.jar
%%DATADIR%%/tools/logos/etc/apache_pb.svg
%%DATADIR%%/tools/logos/etc/feather.svg
%%DATADIR%%/tools/logos/etc/ws-project-logo.jpg
%%DATADIR%%/tools/logos/resources/apache-feather.ico
%%DATADIR%%/tools/logos/resources/apache-icon.svg
%%DATADIR%%/tools/logos/templates/apache-httpd.svg
%%DATADIR%%/tools/logos/templates/apache-jakarta.svg
%%DATADIR%%/tools/logos/templates/apache-resource.svg
%%DATADIR%%/tools/logos/templates/apache.svg
%%DATADIR%%/tools/logos/batik-rasterizer.jar
%%DATADIR%%/tools/logos/build.xml
%%DATADIR%%/tools/logos/logopage.xsl
%%DATADIR%%/tools/logos/logos.xsl
%%DATADIR%%/tools/logos/projects.xml
%%DATADIR%%/tools/targets/maven.xml
%%DATADIR%%/tools/targets/patch.xml
%%DATADIR%%/tools/xxe/css/common.css
%%DATADIR%%/tools/xxe/css/document1x.css
%%DATADIR%%/tools/xxe/css/document2x.css
%%DATADIR%%/tools/xxe/icons/note.png
%%DATADIR%%/tools/xxe/icons/sub.png
%%DATADIR%%/tools/xxe/icons/sup.png
%%DATADIR%%/tools/xxe/template/document11.xml
%%DATADIR%%/tools/xxe/template/document12.xml
%%DATADIR%%/tools/xxe/template/document13.xml
%%DATADIR%%/tools/xxe/template/document20.xml
%%DATADIR%%/tools/xxe/README.txt
%%DATADIR%%/tools/xxe/build.xml
%%DATADIR%%/tools/xxe/common_config.xml
%%DATADIR%%/tools/xxe/document-v10.xxe
%%DATADIR%%/tools/xxe/document-v20.xxe
%%DATADIR%%/tools/xxe/toolBar.xml
%%DATADIR%%/whiteboard/plugins/build.xml
%%DATADIR%%/whiteboard/plugins/whiteboard-plugins.xml
%%DATADIR%%/README.txt
%%DATADIR%%/index.html
@dirrm %%DATADIR%%/bin
@dirrm %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images
@dirrm %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs
@dirrm %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content
@dirrm %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src/documentation
@dirrm %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/src
@dirrm %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf/resources
@dirrm %%DATADIR%%/build/plugins/org.apache.forrest.plugin.output.pdf
@dirrm %%DATADIR%%/build/plugins
@dirrm %%DATADIR%%/build
@dirrm %%DATADIR%%/etc/cocoon_upgrade
@dirrm %%DATADIR%%/etc
@dirrm %%DATADIR%%/lib/core
@dirrm %%DATADIR%%/lib/endorsed
@dirrm %%DATADIR%%/lib/optional
@dirrm %%DATADIR%%/lib
@dirrm %%DATADIR%%/main/fresh-site/src/documentation/classes
@dirrm %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/images
@dirrm %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples/subdir
@dirrm %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs/samples
@dirrm %%DATADIR%%/main/fresh-site/src/documentation/content/xdocs
@dirrm %%DATADIR%%/main/fresh-site/src/documentation/content
@dirrm %%DATADIR%%/main/fresh-site/src/documentation/resources/schema
@dirrm %%DATADIR%%/main/fresh-site/src/documentation/resources/stylesheets
@dirrm %%DATADIR%%/main/fresh-site/src/documentation/resources
@dirrm %%DATADIR%%/main/fresh-site/src/documentation/translations
@dirrm %%DATADIR%%/main/fresh-site/src/documentation
@dirrm %%DATADIR%%/main/fresh-site/src
@dirrm %%DATADIR%%/main/fresh-site
@dirrm %%DATADIR%%/main/java/org/apache/cocoon/components/source/impl
@dirrm %%DATADIR%%/main/java/org/apache/cocoon/components/source
@dirrm %%DATADIR%%/main/java/org/apache/cocoon/components
@dirrm %%DATADIR%%/main/java/org/apache/cocoon
@dirrm %%DATADIR%%/main/java/org/apache/forrest/conf
@dirrm %%DATADIR%%/main/java/org/apache/forrest/locationmap/lm
@dirrm %%DATADIR%%/main/java/org/apache/forrest/locationmap
@dirrm %%DATADIR%%/main/java/org/apache/forrest/log
@dirrm %%DATADIR%%/main/java/org/apache/forrest/sourceexists
@dirrm %%DATADIR%%/main/java/org/apache/forrest/sourcetype
@dirrm %%DATADIR%%/main/java/org/apache/forrest/util
@dirrm %%DATADIR%%/main/java/org/apache/forrest/xni
@dirrm %%DATADIR%%/main/java/org/apache/forrest
@dirrm %%DATADIR%%/main/java/org/apache
@dirrm %%DATADIR%%/main/java/org
@dirrm %%DATADIR%%/main/java
@dirrm %%DATADIR%%/main/targets
@dirrm %%DATADIR%%/main/tasks/org/apache/forrest
@dirrm %%DATADIR%%/main/tasks/org/apache
@dirrm %%DATADIR%%/main/tasks/org
@dirrm %%DATADIR%%/main/tasks
@dirrm %%DATADIR%%/main/var
@dirrm %%DATADIR%%/main/webapp/WEB-INF/classes/org/apache/cocoon/util
@dirrm %%DATADIR%%/main/webapp/WEB-INF/classes/org/apache/cocoon
@dirrm %%DATADIR%%/main/webapp/WEB-INF/classes/org/apache
@dirrm %%DATADIR%%/main/webapp/WEB-INF/classes/org
@dirrm %%DATADIR%%/main/webapp/WEB-INF/classes
@dirrm %%DATADIR%%/main/webapp/WEB-INF/xconf
@dirrm %%DATADIR%%/main/webapp/WEB-INF
@dirrm %%DATADIR%%/main/webapp/resources/chaperon/grammars
@dirrm %%DATADIR%%/main/webapp/resources/chaperon/stylesheets
@dirrm %%DATADIR%%/main/webapp/resources/chaperon
@dirrm %%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2/ent
@dirrm %%DATADIR%%/main/webapp/resources/schema/docbook/4.1.2
@dirrm %%DATADIR%%/main/webapp/resources/schema/docbook/4.2/ent
@dirrm %%DATADIR%%/main/webapp/resources/schema/docbook/4.2
@dirrm %%DATADIR%%/main/webapp/resources/schema/docbook
@dirrm %%DATADIR%%/main/webapp/resources/schema/dtd/v10
@dirrm %%DATADIR%%/main/webapp/resources/schema/dtd/v20a
@dirrm %%DATADIR%%/main/webapp/resources/schema/dtd
@dirrm %%DATADIR%%/main/webapp/resources/schema/entity
@dirrm %%DATADIR%%/main/webapp/resources/schema/open-office
@dirrm %%DATADIR%%/main/webapp/resources/schema/relaxng/unstable
@dirrm %%DATADIR%%/main/webapp/resources/schema/relaxng
@dirrm %%DATADIR%%/main/webapp/resources/schema/sdocbook/1.0
@dirrm %%DATADIR%%/main/webapp/resources/schema/sdocbook
@dirrm %%DATADIR%%/main/webapp/resources/schema/w3c-dtd
@dirrm %%DATADIR%%/main/webapp/resources/schema
@dirrm %%DATADIR%%/main/webapp/resources/stylesheets/aggregates
@dirrm %%DATADIR%%/main/webapp/resources/stylesheets/external
@dirrm %%DATADIR%%/main/webapp/resources/stylesheets/search
@dirrm %%DATADIR%%/main/webapp/resources/stylesheets
@dirrm %%DATADIR%%/main/webapp/resources
@dirrm %%DATADIR%%/main/webapp/skins/common/css
@dirrm %%DATADIR%%/main/webapp/skins/common/images
@dirrm %%DATADIR%%/main/webapp/skins/common/scripts
@dirrm %%DATADIR%%/main/webapp/skins/common/translations
@dirrm %%DATADIR%%/main/webapp/skins/common/xslt/fo
@dirrm %%DATADIR%%/main/webapp/skins/common/xslt/html
@dirrm %%DATADIR%%/main/webapp/skins/common/xslt/svg
@dirrm %%DATADIR%%/main/webapp/skins/common/xslt
@dirrm %%DATADIR%%/main/webapp/skins/common
@dirrm %%DATADIR%%/main/webapp/skins/corium
@dirrm %%DATADIR%%/main/webapp/skins/forrest-site/css
@dirrm %%DATADIR%%/main/webapp/skins/forrest-site/images
@dirrm %%DATADIR%%/main/webapp/skins/forrest-site/xslt/fo
@dirrm %%DATADIR%%/main/webapp/skins/forrest-site/xslt/html
@dirrm %%DATADIR%%/main/webapp/skins/forrest-site/xslt
@dirrm %%DATADIR%%/main/webapp/skins/forrest-site
@dirrm %%DATADIR%%/main/webapp/skins/krysalis-site/css
@dirrm %%DATADIR%%/main/webapp/skins/krysalis-site/images
@dirrm %%DATADIR%%/main/webapp/skins/krysalis-site/xslt/fo
@dirrm %%DATADIR%%/main/webapp/skins/krysalis-site/xslt/html
@dirrm %%DATADIR%%/main/webapp/skins/krysalis-site/xslt
@dirrm %%DATADIR%%/main/webapp/skins/krysalis-site
@dirrm %%DATADIR%%/main/webapp/skins/leather-dev/css
@dirrm %%DATADIR%%/main/webapp/skins/leather-dev/images
@dirrm %%DATADIR%%/main/webapp/skins/leather-dev/templates
@dirrm %%DATADIR%%/main/webapp/skins/leather-dev/xslt/fo
@dirrm %%DATADIR%%/main/webapp/skins/leather-dev/xslt/html
@dirrm %%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml/fct-bits
@dirrm %%DATADIR%%/main/webapp/skins/leather-dev/xslt/xml
@dirrm %%DATADIR%%/main/webapp/skins/leather-dev/xslt
@dirrm %%DATADIR%%/main/webapp/skins/leather-dev
@dirrm %%DATADIR%%/main/webapp/skins/pelt/css
@dirrm %%DATADIR%%/main/webapp/skins/pelt/images
@dirrm %%DATADIR%%/main/webapp/skins/pelt/xslt/fo
@dirrm %%DATADIR%%/main/webapp/skins/pelt/xslt/html
@dirrm %%DATADIR%%/main/webapp/skins/pelt/xslt
@dirrm %%DATADIR%%/main/webapp/skins/pelt
@dirrm %%DATADIR%%/main/webapp/skins/plain-dev/xslt/html
@dirrm %%DATADIR%%/main/webapp/skins/plain-dev/xslt
@dirrm %%DATADIR%%/main/webapp/skins/plain-dev
@dirrm %%DATADIR%%/main/webapp/skins/tigris/css
@dirrm %%DATADIR%%/main/webapp/skins/tigris/images
@dirrm %%DATADIR%%/main/webapp/skins/tigris/scripts
@dirrm %%DATADIR%%/main/webapp/skins/tigris/xslt/fo
@dirrm %%DATADIR%%/main/webapp/skins/tigris/xslt/html
@dirrm %%DATADIR%%/main/webapp/skins/tigris/xslt
@dirrm %%DATADIR%%/main/webapp/skins/tigris
@dirrm %%DATADIR%%/main/webapp/skins
@dirrm %%DATADIR%%/main/webapp
@dirrm %%DATADIR%%/main
@dirrm %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/resources
@dirrm %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs/images
@dirrm %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content/xdocs
@dirrm %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation/content
@dirrm %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src/documentation
@dirrm %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/src
@dirrm %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf/build
@dirrm %%DATADIR%%/plugins/org.apache.forrest.plugin.output.pdf
@dirrm %%DATADIR%%/plugins/pluginTemplate/lib
@dirrm %%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs/images
@dirrm %%DATADIR%%/plugins/pluginTemplate/src/documentation/content/xdocs
@dirrm %%DATADIR%%/plugins/pluginTemplate/src/documentation/content
@dirrm %%DATADIR%%/plugins/pluginTemplate/src/documentation
@dirrm %%DATADIR%%/plugins/pluginTemplate/src/java
@dirrm %%DATADIR%%/plugins/pluginTemplate/src
@dirrm %%DATADIR%%/plugins/pluginTemplate
@dirrm %%DATADIR%%/plugins
@dirrm %%DATADIR%%/site-author/classes
@dirrm %%DATADIR%%/site-author/conf
@dirrm %%DATADIR%%/site-author/content/skins
@dirrm %%DATADIR%%/site-author/content/xdocs/TR/2004
@dirrm %%DATADIR%%/site-author/content/xdocs/TR
@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_60/howto/bugzilla-patch/my-images
@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_60/howto/bugzilla-patch
@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_60/howto/multi
@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_60/howto
@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_60
@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/bugzilla-patch/my-images
@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/bugzilla-patch
@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/cvs-ssh
@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_70/howto/multi
@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_70/howto
@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_70/images
@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_70
@dirrm %%DATADIR%%/site-author/content/xdocs/docs_0_80
@dirrm %%DATADIR%%/site-author/content/xdocs/dtdx
@dirrm %%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_70
@dirrm %%DATADIR%%/site-author/content/xdocs/pluginDocs/plugins_0_80
@dirrm %%DATADIR%%/site-author/content/xdocs/pluginDocs
@dirrm %%DATADIR%%/site-author/content/xdocs/tools
@dirrm %%DATADIR%%/site-author/content/xdocs/trash/docs_0_50
@dirrm %%DATADIR%%/site-author/content/xdocs/trash
@dirrm %%DATADIR%%/site-author/content/xdocs/versions
@dirrm %%DATADIR%%/site-author/content/xdocs
@dirrm %%DATADIR%%/site-author/content
@dirrm %%DATADIR%%/site-author/resources/images
@dirrm %%DATADIR%%/site-author/resources
@dirrm %%DATADIR%%/site-author
@dirrm %%DATADIR%%/tools/ant/bin
@dirrm %%DATADIR%%/tools/ant/lib
@dirrm %%DATADIR%%/tools/ant
@dirrm %%DATADIR%%/tools/dtdconverters
@dirrm %%DATADIR%%/tools/eclipse/conf
@dirrm %%DATADIR%%/tools/eclipse/icons
@dirrm %%DATADIR%%/tools/eclipse/lib
@dirrm %%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/actions
@dirrm %%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/job
@dirrm %%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/popup/actions
@dirrm %%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/popup
@dirrm %%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/preference
@dirrm %%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse/wizards
@dirrm %%DATADIR%%/tools/eclipse/src/org/apache/forrest/eclipse
@dirrm %%DATADIR%%/tools/eclipse/src/org/apache/forrest/template
@dirrm %%DATADIR%%/tools/eclipse/src/org/apache/forrest
@dirrm %%DATADIR%%/tools/eclipse/src/org/apache
@dirrm %%DATADIR%%/tools/eclipse/src/org
@dirrm %%DATADIR%%/tools/eclipse/src
@dirrm %%DATADIR%%/tools/eclipse
@dirrm %%DATADIR%%/tools/forrestbar/xpi/content/forrestbar/images
@dirrm %%DATADIR%%/tools/forrestbar/xpi/content/forrestbar
@dirrm %%DATADIR%%/tools/forrestbar/xpi/content
@dirrm %%DATADIR%%/tools/forrestbar/xpi
@dirrm %%DATADIR%%/tools/forrestbar
@dirrm %%DATADIR%%/tools/forrestbot/core
@dirrm %%DATADIR%%/tools/forrestbot/lib
@dirrm %%DATADIR%%/tools/forrestbot/webapp/lib
@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/conf
@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/action
@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/dto
@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/form
@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp/util
@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot/webapp
@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest/forrestbot
@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache/forrest
@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java/org/apache
@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java/org
@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/java
@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/webapp/WEB-INF/tld
@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/webapp/WEB-INF
@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/webapp/common
@dirrm %%DATADIR%%/tools/forrestbot/webapp/src/webapp
@dirrm %%DATADIR%%/tools/forrestbot/webapp/src
@dirrm %%DATADIR%%/tools/forrestbot/webapp
@dirrm %%DATADIR%%/tools/forrestbot
@dirrm %%DATADIR%%/tools/jetty
@dirrm %%DATADIR%%/tools/logos/etc
@dirrm %%DATADIR%%/tools/logos/resources
@dirrm %%DATADIR%%/tools/logos/templates
@dirrm %%DATADIR%%/tools/logos
@dirrm %%DATADIR%%/tools/targets
@dirrm %%DATADIR%%/tools/xxe/css
@dirrm %%DATADIR%%/tools/xxe/icons
@dirrm %%DATADIR%%/tools/xxe/template
@dirrm %%DATADIR%%/tools/xxe
@dirrm %%DATADIR%%/tools
@dirrm %%DATADIR%%/whiteboard/plugins
@dirrm %%DATADIR%%/whiteboard
@dirrm %%DATADIR%%/