aboutsummaryrefslogtreecommitdiff
path: root/www/apache20/pkg-plist
blob: 939f893282062ed52fd4cba0249b92469c17d1b0 (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
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
@comment $FreeBSD$
@unexec if cmp -s %D/etc/apache2/highperformance.conf %D/etc/apache2/highperformance-std.conf; then rm -f %D/etc/apache2/highperformance.conf; fi
etc/apache2/highperformance-std.conf
@exec [ -f %B/highperformance.conf ] || cp %B/%f %B/highperformance.conf
@unexec if cmp -s %D/etc/apache2/httpd.conf %D/etc/apache2/httpd-std.conf; then rm -f %D/etc/apache2/httpd.conf; fi
etc/apache2/httpd-std.conf
@exec [ -f %B/httpd.conf ] || cp %B/%f %B/httpd.conf
@unexec if cmp -s %D/etc/apache2/magic %D/etc/apache2/magic-dist; then rm -f %D/etc/apache2/magic; fi
etc/apache2/magic-dist
@exec [ -f %B/magic ] || cp %B/%f %B/magic
@unexec if cmp -s %D/etc/apache2/mime.types %D/etc/apache2/mime.types-dist; then rm -f %D/etc/apache2/mime.types; fi
etc/apache2/mime.types-dist
@exec [ -f %B/mime.types ] || cp %B/%f %B/mime.types
@unexec if cmp -s %D/etc/apache2/ssl.conf %D/etc/apache2/ssl-std.conf; then rm -f %D/etc/apache2/ssl.conf; fi
etc/apache2/ssl-std.conf
@exec [ -f %B/ssl.conf ] || cp %B/%f %B/ssl.conf
etc/rc.d/apache2.sh
include/apache2/ap_compat.h
include/apache2/ap_config.h
include/apache2/ap_config_auto.h
include/apache2/ap_config_layout.h
include/apache2/ap_listen.h
include/apache2/ap_mmn.h
include/apache2/ap_mpm.h
include/apache2/ap_provider.h
include/apache2/ap_regkey.h
include/apache2/ap_release.h
%%PORTS_APR%%include/apache2/apr.h
%%PORTS_APR%%include/apache2/apr_allocator.h
%%PORTS_APR%%include/apache2/apr_anylock.h
%%PORTS_APR%%include/apache2/apr_atomic.h
%%PORTS_APR%%include/apache2/apr_base64.h
%%PORTS_APR%%include/apache2/apr_buckets.h
%%PORTS_APR%%include/apache2/apr_compat.h
%%PORTS_APR%%include/apache2/apr_date.h
%%PORTS_APR%%include/apache2/apr_dbm.h
%%PORTS_APR%%include/apache2/apr_dso.h
%%PORTS_APR%%include/apache2/apr_env.h
%%PORTS_APR%%include/apache2/apr_errno.h
%%PORTS_APR%%include/apache2/apr_file_info.h
%%PORTS_APR%%include/apache2/apr_file_io.h
%%PORTS_APR%%include/apache2/apr_fnmatch.h
%%PORTS_APR%%include/apache2/apr_general.h
%%PORTS_APR%%include/apache2/apr_getopt.h
%%PORTS_APR%%include/apache2/apr_global_mutex.h
%%PORTS_APR%%include/apache2/apr_hash.h
%%PORTS_APR%%include/apache2/apr_hooks.h
%%PORTS_APR%%include/apache2/apr_inherit.h
%%PORTS_APR%%include/apache2/apr_ldap.h
%%PORTS_APR%%include/apache2/apr_ldap_url.h
%%PORTS_APR%%include/apache2/apr_lib.h
%%PORTS_APR%%include/apache2/apr_md4.h
%%PORTS_APR%%include/apache2/apr_md5.h
%%PORTS_APR%%include/apache2/apr_mmap.h
%%PORTS_APR%%include/apache2/apr_network_io.h
%%PORTS_APR%%include/apache2/apr_optional.h
%%PORTS_APR%%include/apache2/apr_optional_hooks.h
%%PORTS_APR%%include/apache2/apr_poll.h
%%PORTS_APR%%include/apache2/apr_pools.h
%%PORTS_APR%%include/apache2/apr_portable.h
%%PORTS_APR%%include/apache2/apr_proc_mutex.h
%%PORTS_APR%%include/apache2/apr_queue.h
%%PORTS_APR%%include/apache2/apr_reslist.h
%%PORTS_APR%%include/apache2/apr_ring.h
%%PORTS_APR%%include/apache2/apr_rmm.h
%%PORTS_APR%%include/apache2/apr_sdbm.h
%%PORTS_APR%%include/apache2/apr_sha1.h
%%PORTS_APR%%include/apache2/apr_shm.h
%%PORTS_APR%%include/apache2/apr_signal.h
%%PORTS_APR%%include/apache2/apr_strings.h
%%PORTS_APR%%include/apache2/apr_strmatch.h
%%PORTS_APR%%include/apache2/apr_support.h
%%PORTS_APR%%include/apache2/apr_tables.h
%%PORTS_APR%%include/apache2/apr_thread_cond.h
%%PORTS_APR%%include/apache2/apr_thread_mutex.h
%%PORTS_APR%%include/apache2/apr_thread_proc.h
%%PORTS_APR%%include/apache2/apr_thread_rwlock.h
%%PORTS_APR%%include/apache2/apr_time.h
%%PORTS_APR%%include/apache2/apr_uri.h
%%PORTS_APR%%include/apache2/apr_user.h
%%PORTS_APR%%include/apache2/apr_uuid.h
%%PORTS_APR%%include/apache2/apr_version.h
%%PORTS_APR%%include/apache2/apr_want.h
%%PORTS_APR%%include/apache2/apr_xlate.h
%%PORTS_APR%%include/apache2/apr_xml.h
%%PORTS_APR%%include/apache2/apu.h
%%PORTS_APR%%include/apache2/apu_compat.h
%%PORTS_APR%%include/apache2/apu_version.h
%%PORTS_APR%%include/apache2/apu_want.h
%%WORKER%%include/apache2/fdqueue.h
include/apache2/http_config.h
include/apache2/http_connection.h
include/apache2/http_core.h
include/apache2/http_log.h
include/apache2/http_main.h
include/apache2/http_protocol.h
include/apache2/http_request.h
include/apache2/http_vhost.h
include/apache2/httpd.h
include/apache2/mod_cgi.h
include/apache2/mod_core.h
include/apache2/mod_dav.h
include/apache2/mod_include.h
include/apache2/mod_log_config.h
include/apache2/mod_proxy.h
include/apache2/mod_ssl.h
include/apache2/mod_status.h
include/apache2/mpm.h
include/apache2/mpm_common.h
include/apache2/mpm_default.h
include/apache2/os.h
include/apache2/pcre.h
include/apache2/pcreposix.h
%%WORKER%%include/apache2/pod.h
include/apache2/rfc1413.h
include/apache2/scoreboard.h
include/apache2/ssl_expr.h
include/apache2/ssl_expr_parse.h
include/apache2/ssl_toolkit_compat.h
include/apache2/ssl_util_ssl.h
include/apache2/ssl_util_table.h
include/apache2/unixd.h
include/apache2/util_cfgtree.h
include/apache2/util_charset.h
include/apache2/util_ebcdic.h
include/apache2/util_filter.h
include/apache2/util_ldap.h
include/apache2/util_md5.h
include/apache2/util_script.h
include/apache2/util_time.h
include/apache2/util_xml.h
%%PORTS_APR%%lib/apache2/apr-config
%%PORTS_APR%%lib/apache2/apr.exp
%%PORTS_APR%%lib/apache2/aprutil.exp
%%PORTS_APR%%lib/apache2/apu-config
%%PORTS_APR%%lib/apache2/libapr-0.a
%%PORTS_APR%%lib/apache2/libapr-0.la
%%PORTS_APR%%lib/apache2/libapr-0.so
%%PORTS_APR%%lib/apache2/libapr-0.so.9
%%PORTS_APR%%lib/apache2/libaprutil-0.a
%%PORTS_APR%%lib/apache2/libaprutil-0.la
%%PORTS_APR%%lib/apache2/libaprutil-0.so
%%PORTS_APR%%lib/apache2/libaprutil-0.so.9
libexec/apache2/httpd.exp
%%MOD_ACCESS%%libexec/apache2/mod_access.so
%%MOD_ACTIONS%%libexec/apache2/mod_actions.so
%%MOD_ALIAS%%libexec/apache2/mod_alias.so
%%MOD_ASIS%%libexec/apache2/mod_asis.so
%%MOD_AUTH%%libexec/apache2/mod_auth.so
%%MOD_AUTH_ANON%%libexec/apache2/mod_auth_anon.so
%%MOD_AUTH_DBM%%libexec/apache2/mod_auth_dbm.so
%%MOD_AUTH_DIGEST%%libexec/apache2/mod_auth_digest.so
%%MOD_AUTH_LDAP%%libexec/apache2/mod_auth_ldap.so
%%MOD_AUTOINDEX%%libexec/apache2/mod_autoindex.so
%%MOD_BUCKETEER%%libexec/apache2/mod_bucketeer.so
%%MOD_CACHE%%libexec/apache2/mod_cache.so
%%MOD_CASE_FILTER%%libexec/apache2/mod_case_filter.so
%%MOD_CASE_FILTER_IN%%libexec/apache2/mod_case_filter_in.so
%%MOD_CERN_META%%libexec/apache2/mod_cern_meta.so
%%MOD_CGI%%libexec/apache2/mod_cgi.so
%%MOD_CGID%%libexec/apache2/mod_cgid.so
%%MOD_CHARSET_LITE%%libexec/apache2/mod_charset_lite.so
%%MOD_DAV%%libexec/apache2/mod_dav.so
%%MOD_DAV_FS%%libexec/apache2/mod_dav_fs.so
%%MOD_DEFLATE%%libexec/apache2/mod_deflate.so
%%MOD_DIR%%libexec/apache2/mod_dir.so
%%MOD_DISK_CACHE%%libexec/apache2/mod_disk_cache.so
%%MOD_ENV%%libexec/apache2/mod_env.so
%%MOD_EXPIRES%%libexec/apache2/mod_expires.so
%%MOD_EXT_FILTER%%libexec/apache2/mod_ext_filter.so
%%MOD_FILE_CACHE%%libexec/apache2/mod_file_cache.so
%%MOD_HEADERS%%libexec/apache2/mod_headers.so
%%MOD_IMAP%%libexec/apache2/mod_imap.so
%%MOD_INCLUDE%%libexec/apache2/mod_include.so
%%MOD_INFO%%libexec/apache2/mod_info.so
%%MOD_LDAP%%libexec/apache2/mod_ldap.so
%%MOD_LOG_CONFIG%%libexec/apache2/mod_log_config.so
%%MOD_LOGIO%%libexec/apache2/mod_logio.so
%%MOD_MEM_CACHE%%libexec/apache2/mod_mem_cache.so
%%MOD_MIME%%libexec/apache2/mod_mime.so
%%MOD_MIME_MAGIC%%libexec/apache2/mod_mime_magic.so
%%MOD_NEGOTIATION%%libexec/apache2/mod_negotiation.so
%%MOD_OPTIONAL_HOOK_EXPORT%%libexec/apache2/mod_optional_hook_export.so
%%MOD_OPTIONAL_HOOK_IMPORT%%libexec/apache2/mod_optional_hook_import.so
%%MOD_OPTIONAL_FN_IMPORT%%libexec/apache2/mod_optional_fn_import.so
%%MOD_OPTIONAL_FN_EXPORT%%libexec/apache2/mod_optional_fn_export.so
%%MOD_PROXY%%libexec/apache2/mod_proxy.so
%%MOD_PROXY_CONNECT%%libexec/apache2/mod_proxy_connect.so
%%MOD_PROXY_FTP%%libexec/apache2/mod_proxy_ftp.so
%%MOD_PROXY_HTTP%%libexec/apache2/mod_proxy_http.so
%%MOD_REWRITE%%libexec/apache2/mod_rewrite.so
%%MOD_SETENVIF%%libexec/apache2/mod_setenvif.so
%%MOD_SPELING%%libexec/apache2/mod_speling.so
%%MOD_SSL%%libexec/apache2/mod_ssl.so
%%MOD_STATUS%%libexec/apache2/mod_status.so
%%MOD_SUEXEC%%libexec/apache2/mod_suexec.so
%%MOD_UNIQUE_ID%%libexec/apache2/mod_unique_id.so
%%MOD_USERDIR%%libexec/apache2/mod_userdir.so
%%MOD_USERTRACK%%libexec/apache2/mod_usertrack.so
%%MOD_VHOST_ALIAS%%libexec/apache2/mod_vhost_alias.so
sbin/ab
sbin/apachectl
sbin/apxs
sbin/checkgid
sbin/dbmmanage
sbin/envvars
sbin/envvars-std
sbin/htdbm
sbin/htdigest
sbin/htpasswd
sbin/httpd
sbin/logresolve
sbin/rotatelogs
%%MOD_SUEXEC%%sbin/suexec
%%PORTS_APR%%share/apache2/build/apr_rules.mk
share/apache2/build/config_vars.mk
share/apache2/build/config.nice
share/apache2/build/instdso.sh
share/apache2/build/library.mk
%%PORTS_APR%%share/apache2/build/libtool
share/apache2/build/ltlib.mk
share/apache2/build/program.mk
share/apache2/build/rules.mk
share/apache2/build/special.mk
%%PORTDOCS%%%%DOCSDIR%%/LICENSE
%%PORTDOCS%%%%DOCSDIR%%/bind.html
%%PORTDOCS%%%%DOCSDIR%%/bind.html.en
%%PORTDOCS%%%%DOCSDIR%%/bind.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/bind.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/bind.xml
%%PORTDOCS%%%%DOCSDIR%%/bind.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/bind.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/bind.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/cgi_path.html
%%PORTDOCS%%%%DOCSDIR%%/cgi_path.html.en
%%PORTDOCS%%%%DOCSDIR%%/cgi_path.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/cgi_path.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/cgi_path.xml
%%PORTDOCS%%%%DOCSDIR%%/cgi_path.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/cgi_path.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/cgi_path.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/configuring.html
%%PORTDOCS%%%%DOCSDIR%%/configuring.html.en
%%PORTDOCS%%%%DOCSDIR%%/configuring.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/configuring.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/configuring.xml
%%PORTDOCS%%%%DOCSDIR%%/configuring.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/configuring.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/configuring.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/content-negotiation.html
%%PORTDOCS%%%%DOCSDIR%%/content-negotiation.html.en
%%PORTDOCS%%%%DOCSDIR%%/content-negotiation.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/content-negotiation.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/content-negotiation.xml
%%PORTDOCS%%%%DOCSDIR%%/content-negotiation.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/content-negotiation.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/content-negotiation.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/custom-error.html
%%PORTDOCS%%%%DOCSDIR%%/custom-error.html.en
%%PORTDOCS%%%%DOCSDIR%%/custom-error.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/custom-error.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/custom-error.xml
%%PORTDOCS%%%%DOCSDIR%%/custom-error.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/custom-error.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/custom-error.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/developer/API.html
%%PORTDOCS%%%%DOCSDIR%%/developer/API.html.en
%%PORTDOCS%%%%DOCSDIR%%/developer/API.xml
%%PORTDOCS%%%%DOCSDIR%%/developer/API.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/developer/debugging.html
%%PORTDOCS%%%%DOCSDIR%%/developer/debugging.html.en
%%PORTDOCS%%%%DOCSDIR%%/developer/debugging.xml
%%PORTDOCS%%%%DOCSDIR%%/developer/debugging.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/developer/documenting.html
%%PORTDOCS%%%%DOCSDIR%%/developer/documenting.html.en
%%PORTDOCS%%%%DOCSDIR%%/developer/documenting.xml
%%PORTDOCS%%%%DOCSDIR%%/developer/documenting.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/developer/filters.html
%%PORTDOCS%%%%DOCSDIR%%/developer/filters.html.en
%%PORTDOCS%%%%DOCSDIR%%/developer/filters.xml
%%PORTDOCS%%%%DOCSDIR%%/developer/filters.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/developer/hooks.html
%%PORTDOCS%%%%DOCSDIR%%/developer/hooks.html.en
%%PORTDOCS%%%%DOCSDIR%%/developer/hooks.xml
%%PORTDOCS%%%%DOCSDIR%%/developer/hooks.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/developer/index.html
%%PORTDOCS%%%%DOCSDIR%%/developer/index.html.en
%%PORTDOCS%%%%DOCSDIR%%/developer/index.xml
%%PORTDOCS%%%%DOCSDIR%%/developer/index.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/developer/modules.html
%%PORTDOCS%%%%DOCSDIR%%/developer/modules.html.en
%%PORTDOCS%%%%DOCSDIR%%/developer/modules.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/developer/modules.xml
%%PORTDOCS%%%%DOCSDIR%%/developer/modules.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/developer/request.html
%%PORTDOCS%%%%DOCSDIR%%/developer/request.html.en
%%PORTDOCS%%%%DOCSDIR%%/developer/request.xml
%%PORTDOCS%%%%DOCSDIR%%/developer/request.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/developer/thread_safety.html
%%PORTDOCS%%%%DOCSDIR%%/developer/thread_safety.html.en
%%PORTDOCS%%%%DOCSDIR%%/developer/thread_safety.xml
%%PORTDOCS%%%%DOCSDIR%%/developer/thread_safety.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.html
%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.html.en
%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.xml
%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/dns-caveats.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/dso.html
%%PORTDOCS%%%%DOCSDIR%%/dso.html.en
%%PORTDOCS%%%%DOCSDIR%%/dso.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/dso.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/dso.xml
%%PORTDOCS%%%%DOCSDIR%%/dso.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/dso.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/dso.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/env.html
%%PORTDOCS%%%%DOCSDIR%%/env.html.en
%%PORTDOCS%%%%DOCSDIR%%/env.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/env.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/env.xml
%%PORTDOCS%%%%DOCSDIR%%/env.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/env.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/env.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/faq/all_in_one.html
%%PORTDOCS%%%%DOCSDIR%%/faq/all_in_one.html.en
%%PORTDOCS%%%%DOCSDIR%%/faq/all_in_one.xml
%%PORTDOCS%%%%DOCSDIR%%/faq/all_in_one.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/faq/categories.xml
%%PORTDOCS%%%%DOCSDIR%%/faq/error.html
%%PORTDOCS%%%%DOCSDIR%%/faq/error.html.en
%%PORTDOCS%%%%DOCSDIR%%/faq/error.xml
%%PORTDOCS%%%%DOCSDIR%%/faq/error.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/faq/index.html
%%PORTDOCS%%%%DOCSDIR%%/faq/index.html.en
%%PORTDOCS%%%%DOCSDIR%%/faq/index.xml
%%PORTDOCS%%%%DOCSDIR%%/faq/index.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/faq/support.html
%%PORTDOCS%%%%DOCSDIR%%/faq/support.html.en
%%PORTDOCS%%%%DOCSDIR%%/faq/support.xml
%%PORTDOCS%%%%DOCSDIR%%/faq/support.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/filter.html
%%PORTDOCS%%%%DOCSDIR%%/filter.html.en
%%PORTDOCS%%%%DOCSDIR%%/filter.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/filter.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/filter.html.ru.koi8-r
%%PORTDOCS%%%%DOCSDIR%%/filter.xml
%%PORTDOCS%%%%DOCSDIR%%/filter.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/filter.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/filter.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/filter.xml.ru
%%PORTDOCS%%%%DOCSDIR%%/glossary.html
%%PORTDOCS%%%%DOCSDIR%%/glossary.html.en
%%PORTDOCS%%%%DOCSDIR%%/glossary.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/glossary.xml
%%PORTDOCS%%%%DOCSDIR%%/glossary.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/glossary.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/handler.html
%%PORTDOCS%%%%DOCSDIR%%/handler.html.en
%%PORTDOCS%%%%DOCSDIR%%/handler.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/handler.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/handler.html.ru.koi8-r
%%PORTDOCS%%%%DOCSDIR%%/handler.xml
%%PORTDOCS%%%%DOCSDIR%%/handler.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/handler.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/handler.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/handler.xml.ru
%%PORTDOCS%%%%DOCSDIR%%/howto/auth.html
%%PORTDOCS%%%%DOCSDIR%%/howto/auth.html.en
%%PORTDOCS%%%%DOCSDIR%%/howto/auth.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/howto/auth.xml
%%PORTDOCS%%%%DOCSDIR%%/howto/auth.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/howto/cgi.html
%%PORTDOCS%%%%DOCSDIR%%/howto/cgi.html.en
%%PORTDOCS%%%%DOCSDIR%%/howto/cgi.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/howto/cgi.xml
%%PORTDOCS%%%%DOCSDIR%%/howto/cgi.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/howto/cgi.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/howto/htaccess.html
%%PORTDOCS%%%%DOCSDIR%%/howto/htaccess.html.en
%%PORTDOCS%%%%DOCSDIR%%/howto/htaccess.xml
%%PORTDOCS%%%%DOCSDIR%%/howto/htaccess.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/howto/index.html
%%PORTDOCS%%%%DOCSDIR%%/howto/index.html.en
%%PORTDOCS%%%%DOCSDIR%%/howto/index.xml
%%PORTDOCS%%%%DOCSDIR%%/howto/index.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/howto/public_html.html
%%PORTDOCS%%%%DOCSDIR%%/howto/public_html.html.en
%%PORTDOCS%%%%DOCSDIR%%/howto/public_html.xml
%%PORTDOCS%%%%DOCSDIR%%/howto/public_html.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/howto/ssi.html
%%PORTDOCS%%%%DOCSDIR%%/howto/ssi.html.en
%%PORTDOCS%%%%DOCSDIR%%/howto/ssi.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/howto/ssi.xml
%%PORTDOCS%%%%DOCSDIR%%/howto/ssi.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/howto/ssi.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/images/apache_header.gif
%%PORTDOCS%%%%DOCSDIR%%/images/custom_errordocs.gif
%%PORTDOCS%%%%DOCSDIR%%/images/down.gif
%%PORTDOCS%%%%DOCSDIR%%/images/favicon.ico
%%PORTDOCS%%%%DOCSDIR%%/images/feather.gif
%%PORTDOCS%%%%DOCSDIR%%/images/home.gif
%%PORTDOCS%%%%DOCSDIR%%/images/index.gif
%%PORTDOCS%%%%DOCSDIR%%/images/left.gif
%%PORTDOCS%%%%DOCSDIR%%/images/mod_rewrite_fig1.gif
%%PORTDOCS%%%%DOCSDIR%%/images/mod_rewrite_fig2.gif
%%PORTDOCS%%%%DOCSDIR%%/images/pixel.gif
%%PORTDOCS%%%%DOCSDIR%%/images/right.gif
%%PORTDOCS%%%%DOCSDIR%%/images/sub.gif
%%PORTDOCS%%%%DOCSDIR%%/images/up.gif
%%PORTDOCS%%%%DOCSDIR%%/index.html
%%PORTDOCS%%%%DOCSDIR%%/index.html.de
%%PORTDOCS%%%%DOCSDIR%%/index.html.en
%%PORTDOCS%%%%DOCSDIR%%/index.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/index.xml
%%PORTDOCS%%%%DOCSDIR%%/index.xml.de
%%PORTDOCS%%%%DOCSDIR%%/index.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/index.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/index.html.ru.koi8-r
%%PORTDOCS%%%%DOCSDIR%%/index.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/index.xml.ru
%%PORTDOCS%%%%DOCSDIR%%/install.html
%%PORTDOCS%%%%DOCSDIR%%/install.html.de
%%PORTDOCS%%%%DOCSDIR%%/install.html.en
%%PORTDOCS%%%%DOCSDIR%%/install.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/install.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/install.html.ru.koi8-r
%%PORTDOCS%%%%DOCSDIR%%/install.xml
%%PORTDOCS%%%%DOCSDIR%%/install.xml.de
%%PORTDOCS%%%%DOCSDIR%%/install.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/install.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/install.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/install.xml.ru
%%PORTDOCS%%%%DOCSDIR%%/invoking.html
%%PORTDOCS%%%%DOCSDIR%%/invoking.html.de
%%PORTDOCS%%%%DOCSDIR%%/invoking.html.en
%%PORTDOCS%%%%DOCSDIR%%/invoking.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/invoking.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/invoking.html.ru.koi8-r
%%PORTDOCS%%%%DOCSDIR%%/invoking.xml
%%PORTDOCS%%%%DOCSDIR%%/invoking.xml.de
%%PORTDOCS%%%%DOCSDIR%%/invoking.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/invoking.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/invoking.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/invoking.xml.ru
%%PORTDOCS%%%%DOCSDIR%%/license.html
%%PORTDOCS%%%%DOCSDIR%%/license.html.en
%%PORTDOCS%%%%DOCSDIR%%/license.xml
%%PORTDOCS%%%%DOCSDIR%%/license.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/logs.html
%%PORTDOCS%%%%DOCSDIR%%/logs.html.en
%%PORTDOCS%%%%DOCSDIR%%/logs.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/logs.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/logs.xml
%%PORTDOCS%%%%DOCSDIR%%/logs.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/logs.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/logs.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/misc/custom_errordocs.html
%%PORTDOCS%%%%DOCSDIR%%/misc/custom_errordocs.html.en
%%PORTDOCS%%%%DOCSDIR%%/misc/custom_errordocs.xml
%%PORTDOCS%%%%DOCSDIR%%/misc/custom_errordocs.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/misc/descriptors.html
%%PORTDOCS%%%%DOCSDIR%%/misc/descriptors.html.en
%%PORTDOCS%%%%DOCSDIR%%/misc/descriptors.xml
%%PORTDOCS%%%%DOCSDIR%%/misc/descriptors.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/misc/fin_wait_2.html
%%PORTDOCS%%%%DOCSDIR%%/misc/fin_wait_2.html.en
%%PORTDOCS%%%%DOCSDIR%%/misc/fin_wait_2.xml
%%PORTDOCS%%%%DOCSDIR%%/misc/fin_wait_2.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/misc/index.html
%%PORTDOCS%%%%DOCSDIR%%/misc/index.html.en
%%PORTDOCS%%%%DOCSDIR%%/misc/index.xml
%%PORTDOCS%%%%DOCSDIR%%/misc/index.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/misc/known_client_problems.html
%%PORTDOCS%%%%DOCSDIR%%/misc/known_client_problems.html.en
%%PORTDOCS%%%%DOCSDIR%%/misc/known_client_problems.xml
%%PORTDOCS%%%%DOCSDIR%%/misc/known_client_problems.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/misc/perf-tuning.html
%%PORTDOCS%%%%DOCSDIR%%/misc/perf-tuning.html.en
%%PORTDOCS%%%%DOCSDIR%%/misc/perf-tuning.xml
%%PORTDOCS%%%%DOCSDIR%%/misc/perf-tuning.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/misc/relevant_standards.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/misc/relevant_standards.xml
%%PORTDOCS%%%%DOCSDIR%%/misc/relevant_standards.html
%%PORTDOCS%%%%DOCSDIR%%/misc/relevant_standards.html.en
%%PORTDOCS%%%%DOCSDIR%%/misc/rewriteguide.html
%%PORTDOCS%%%%DOCSDIR%%/misc/rewriteguide.html.en
%%PORTDOCS%%%%DOCSDIR%%/misc/rewriteguide.xml
%%PORTDOCS%%%%DOCSDIR%%/misc/rewriteguide.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/misc/security_tips.html
%%PORTDOCS%%%%DOCSDIR%%/misc/security_tips.html.en
%%PORTDOCS%%%%DOCSDIR%%/misc/security_tips.xml
%%PORTDOCS%%%%DOCSDIR%%/misc/security_tips.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/misc/tutorials.html
%%PORTDOCS%%%%DOCSDIR%%/misc/tutorials.html.en
%%PORTDOCS%%%%DOCSDIR%%/misc/tutorials.xml
%%PORTDOCS%%%%DOCSDIR%%/misc/tutorials.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/allmodules.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/allmodules.xml.de
%%PORTDOCS%%%%DOCSDIR%%/mod/allmodules.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/allmodules.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/allmodules.xml.ru
%%PORTDOCS%%%%DOCSDIR%%/mod/beos.html
%%PORTDOCS%%%%DOCSDIR%%/mod/beos.html.de
%%PORTDOCS%%%%DOCSDIR%%/mod/beos.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/beos.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/beos.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/beos.xml.de
%%PORTDOCS%%%%DOCSDIR%%/mod/beos.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/beos.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/core.html
%%PORTDOCS%%%%DOCSDIR%%/mod/core.html.de
%%PORTDOCS%%%%DOCSDIR%%/mod/core.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/core.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/core.xml.de
%%PORTDOCS%%%%DOCSDIR%%/mod/core.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.html
%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/directive-dict.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/directives.html
%%PORTDOCS%%%%DOCSDIR%%/mod/directives.html.de
%%PORTDOCS%%%%DOCSDIR%%/mod/directives.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/directives.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/directives.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/directives.html.ru.koi8-r
%%PORTDOCS%%%%DOCSDIR%%/mod/directives.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/directives.xml.de
%%PORTDOCS%%%%DOCSDIR%%/mod/directives.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/directives.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/directives.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/directives.xml.ru
%%PORTDOCS%%%%DOCSDIR%%/mod/index.html
%%PORTDOCS%%%%DOCSDIR%%/mod/index.html.de
%%PORTDOCS%%%%DOCSDIR%%/mod/index.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/index.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/index.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/index.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/index.xml.de
%%PORTDOCS%%%%DOCSDIR%%/mod/index.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/index.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/index.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/leader.html
%%PORTDOCS%%%%DOCSDIR%%/mod/leader.html.de
%%PORTDOCS%%%%DOCSDIR%%/mod/leader.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/leader.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/leader.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/leader.xml.de
%%PORTDOCS%%%%DOCSDIR%%/mod/leader.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/leader.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_access.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_access.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_access.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_access.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_access.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_access.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_actions.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_actions.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_actions.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_actions.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_actions.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_actions.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_actions.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_actions.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_alias.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_alias.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_alias.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_alias.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_alias.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_alias.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_asis.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_asis.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_asis.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_asis.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_asis.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_asis.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_asis.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_asis.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_anon.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_anon.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_anon.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_anon.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_dbm.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_dbm.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_dbm.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_dbm.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_digest.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_digest.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_digest.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_digest.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_ldap.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_ldap.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_ldap.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_auth_ldap.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_autoindex.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_autoindex.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_autoindex.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_autoindex.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_autoindex.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_autoindex.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_autoindex.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_autoindex.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cache.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cache.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cache.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cache.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cache.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cache.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cern_meta.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cern_meta.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cern_meta.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cern_meta.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cern_meta.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cern_meta.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgi.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgi.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgi.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgi.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgi.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgi.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgi.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgi.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgid.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgid.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgid.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgid.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgid.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_cgid.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_charset_lite.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_charset_lite.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_charset_lite.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_charset_lite.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_charset_lite.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_charset_lite.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav_fs.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav_fs.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav_fs.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav_fs.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav_fs.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav_fs.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav_fs.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dav_fs.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_deflate.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_deflate.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_deflate.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_deflate.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_deflate.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_deflate.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_deflate.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_deflate.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dir.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dir.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dir.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dir.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dir.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dir.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dir.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_dir.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_disk_cache.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_disk_cache.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_disk_cache.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_disk_cache.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_disk_cache.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_disk_cache.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_echo.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_echo.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_echo.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_echo.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_echo.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_echo.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_echo.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_echo.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_env.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_env.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_env.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_env.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_env.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_env.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_env.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_env.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_example.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_example.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_example.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_example.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_expires.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_expires.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_expires.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_expires.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ext_filter.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ext_filter.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ext_filter.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ext_filter.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_file_cache.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_file_cache.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_file_cache.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_file_cache.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_headers.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_headers.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_headers.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_headers.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_imap.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_imap.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_imap.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_imap.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_include.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_include.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_include.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_include.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_include.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_include.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_info.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_info.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_info.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_info.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_info.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_info.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_isapi.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_isapi.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_isapi.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_isapi.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ldap.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ldap.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ldap.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ldap.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_log_config.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_log_config.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_log_config.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_log_config.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_logio.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_logio.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_logio.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_logio.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mem_cache.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mem_cache.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mem_cache.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mem_cache.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime_magic.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime_magic.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime_magic.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_mime_magic.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_negotiation.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_negotiation.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_negotiation.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_negotiation.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_negotiation.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_negotiation.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_nw_ssl.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_nw_ssl.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_nw_ssl.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_nw_ssl.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_connect.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_connect.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_connect.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_connect.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_ftp.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_ftp.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_ftp.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_ftp.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_http.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_http.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_http.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_proxy_http.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_rewrite.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_rewrite.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_rewrite.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_rewrite.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_setenvif.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_setenvif.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_setenvif.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_setenvif.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_setenvif.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_setenvif.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_so.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_so.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_so.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_so.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_so.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_so.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_speling.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_speling.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_speling.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_speling.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_speling.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_speling.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ssl.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ssl.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ssl.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_ssl.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_status.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_status.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_status.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_status.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_suexec.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_suexec.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_suexec.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_suexec.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_suexec.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_suexec.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_unique_id.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_unique_id.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_unique_id.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_unique_id.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_unique_id.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_unique_id.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_userdir.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_userdir.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_userdir.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_userdir.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_userdir.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_userdir.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_usertrack.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_usertrack.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_usertrack.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_usertrack.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_vhost_alias.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_vhost_alias.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_vhost_alias.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mod_vhost_alias.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/module-dict.html
%%PORTDOCS%%%%DOCSDIR%%/mod/module-dict.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/module-dict.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/module-dict.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/module-dict.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/module-dict.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_common.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_common.html.de
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_common.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_common.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_common.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_common.xml.de
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_common.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_common.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_netware.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_netware.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_netware.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_netware.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_winnt.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_winnt.html.de
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_winnt.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_winnt.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_winnt.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_winnt.xml.de
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_winnt.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/mpm_winnt.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/mpmt_os2.html
%%PORTDOCS%%%%DOCSDIR%%/mod/mpmt_os2.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/mpmt_os2.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/mpmt_os2.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/perchild.html
%%PORTDOCS%%%%DOCSDIR%%/mod/perchild.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/perchild.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/perchild.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/prefork.html
%%PORTDOCS%%%%DOCSDIR%%/mod/prefork.html.de
%%PORTDOCS%%%%DOCSDIR%%/mod/prefork.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/prefork.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/prefork.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/prefork.xml.de
%%PORTDOCS%%%%DOCSDIR%%/mod/prefork.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/prefork.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.html
%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.html.de
%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.html.ru.koi8-r
%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.xml.de
%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/quickreference.xml.ru
%%PORTDOCS%%%%DOCSDIR%%/mod/threadpool.html
%%PORTDOCS%%%%DOCSDIR%%/mod/threadpool.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/threadpool.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/threadpool.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mod/worker.html
%%PORTDOCS%%%%DOCSDIR%%/mod/worker.html.de
%%PORTDOCS%%%%DOCSDIR%%/mod/worker.html.en
%%PORTDOCS%%%%DOCSDIR%%/mod/worker.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mod/worker.xml
%%PORTDOCS%%%%DOCSDIR%%/mod/worker.xml.de
%%PORTDOCS%%%%DOCSDIR%%/mod/worker.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mod/worker.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mpm.html
%%PORTDOCS%%%%DOCSDIR%%/mpm.html.en
%%PORTDOCS%%%%DOCSDIR%%/mpm.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/mpm.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/mpm.html.ru.koi8-r
%%PORTDOCS%%%%DOCSDIR%%/mpm.xml
%%PORTDOCS%%%%DOCSDIR%%/mpm.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/mpm.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/mpm.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/mpm.xml.ru
%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.html
%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.html.de
%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.html.en
%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.html.fr
%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.html.ru.koi8-r
%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.xml
%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.xml.de
%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/new_features_2_0.xml.ru
%%PORTDOCS%%%%DOCSDIR%%/platform/ebcdic.html
%%PORTDOCS%%%%DOCSDIR%%/platform/ebcdic.html.en
%%PORTDOCS%%%%DOCSDIR%%/platform/ebcdic.xml
%%PORTDOCS%%%%DOCSDIR%%/platform/ebcdic.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/platform/index.html
%%PORTDOCS%%%%DOCSDIR%%/platform/index.html.en
%%PORTDOCS%%%%DOCSDIR%%/platform/index.xml
%%PORTDOCS%%%%DOCSDIR%%/platform/index.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/platform/netware.html
%%PORTDOCS%%%%DOCSDIR%%/platform/netware.html.en
%%PORTDOCS%%%%DOCSDIR%%/platform/netware.xml
%%PORTDOCS%%%%DOCSDIR%%/platform/netware.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/platform/perf-hp.html
%%PORTDOCS%%%%DOCSDIR%%/platform/perf-hp.html.en
%%PORTDOCS%%%%DOCSDIR%%/platform/perf-hp.xml
%%PORTDOCS%%%%DOCSDIR%%/platform/perf-hp.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/platform/win_compiling.html
%%PORTDOCS%%%%DOCSDIR%%/platform/win_compiling.html.en
%%PORTDOCS%%%%DOCSDIR%%/platform/win_compiling.xml
%%PORTDOCS%%%%DOCSDIR%%/platform/win_compiling.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/platform/windows.html
%%PORTDOCS%%%%DOCSDIR%%/platform/windows.html.en
%%PORTDOCS%%%%DOCSDIR%%/platform/windows.xml
%%PORTDOCS%%%%DOCSDIR%%/platform/windows.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/programs/ab.html
%%PORTDOCS%%%%DOCSDIR%%/programs/ab.html.en
%%PORTDOCS%%%%DOCSDIR%%/programs/ab.xml
%%PORTDOCS%%%%DOCSDIR%%/programs/ab.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/programs/apachectl.html
%%PORTDOCS%%%%DOCSDIR%%/programs/apachectl.html.en
%%PORTDOCS%%%%DOCSDIR%%/programs/apachectl.xml
%%PORTDOCS%%%%DOCSDIR%%/programs/apachectl.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/programs/apxs.html
%%PORTDOCS%%%%DOCSDIR%%/programs/apxs.html.en
%%PORTDOCS%%%%DOCSDIR%%/programs/apxs.xml
%%PORTDOCS%%%%DOCSDIR%%/programs/apxs.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/programs/configure.html
%%PORTDOCS%%%%DOCSDIR%%/programs/configure.html.en
%%PORTDOCS%%%%DOCSDIR%%/programs/configure.xml
%%PORTDOCS%%%%DOCSDIR%%/programs/configure.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/programs/dbmmanage.html
%%PORTDOCS%%%%DOCSDIR%%/programs/dbmmanage.html.en
%%PORTDOCS%%%%DOCSDIR%%/programs/dbmmanage.xml
%%PORTDOCS%%%%DOCSDIR%%/programs/dbmmanage.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/programs/htdigest.html
%%PORTDOCS%%%%DOCSDIR%%/programs/htdigest.html.en
%%PORTDOCS%%%%DOCSDIR%%/programs/htdigest.xml
%%PORTDOCS%%%%DOCSDIR%%/programs/htdigest.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/programs/htpasswd.html
%%PORTDOCS%%%%DOCSDIR%%/programs/htpasswd.html.en
%%PORTDOCS%%%%DOCSDIR%%/programs/htpasswd.xml
%%PORTDOCS%%%%DOCSDIR%%/programs/htpasswd.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/programs/httpd.html
%%PORTDOCS%%%%DOCSDIR%%/programs/httpd.html.en
%%PORTDOCS%%%%DOCSDIR%%/programs/httpd.xml
%%PORTDOCS%%%%DOCSDIR%%/programs/httpd.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/programs/index.html
%%PORTDOCS%%%%DOCSDIR%%/programs/index.html.en
%%PORTDOCS%%%%DOCSDIR%%/programs/index.html.ru.koi8-r
%%PORTDOCS%%%%DOCSDIR%%/programs/index.xml
%%PORTDOCS%%%%DOCSDIR%%/programs/index.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/programs/index.xml.ru
%%PORTDOCS%%%%DOCSDIR%%/programs/logresolve.html
%%PORTDOCS%%%%DOCSDIR%%/programs/logresolve.html.en
%%PORTDOCS%%%%DOCSDIR%%/programs/logresolve.xml
%%PORTDOCS%%%%DOCSDIR%%/programs/logresolve.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/programs/other.html
%%PORTDOCS%%%%DOCSDIR%%/programs/other.html.en
%%PORTDOCS%%%%DOCSDIR%%/programs/other.xml
%%PORTDOCS%%%%DOCSDIR%%/programs/other.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/programs/rotatelogs.html
%%PORTDOCS%%%%DOCSDIR%%/programs/rotatelogs.html.en
%%PORTDOCS%%%%DOCSDIR%%/programs/rotatelogs.xml
%%PORTDOCS%%%%DOCSDIR%%/programs/rotatelogs.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/programs/suexec.html
%%PORTDOCS%%%%DOCSDIR%%/programs/suexec.html.en
%%PORTDOCS%%%%DOCSDIR%%/programs/suexec.xml
%%PORTDOCS%%%%DOCSDIR%%/programs/suexec.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/sections.html
%%PORTDOCS%%%%DOCSDIR%%/sections.html.en
%%PORTDOCS%%%%DOCSDIR%%/sections.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/sections.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/sections.xml
%%PORTDOCS%%%%DOCSDIR%%/sections.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/sections.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/sections.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/server-wide.html
%%PORTDOCS%%%%DOCSDIR%%/server-wide.html.en
%%PORTDOCS%%%%DOCSDIR%%/server-wide.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/server-wide.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/server-wide.xml
%%PORTDOCS%%%%DOCSDIR%%/server-wide.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/server-wide.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/server-wide.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/sitemap.html
%%PORTDOCS%%%%DOCSDIR%%/sitemap.html.de
%%PORTDOCS%%%%DOCSDIR%%/sitemap.html.en
%%PORTDOCS%%%%DOCSDIR%%/sitemap.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/sitemap.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/sitemap.xml
%%PORTDOCS%%%%DOCSDIR%%/sitemap.xml.de
%%PORTDOCS%%%%DOCSDIR%%/sitemap.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/sitemap.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/sitemap.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/ssl/index.html
%%PORTDOCS%%%%DOCSDIR%%/ssl/index.html.en
%%PORTDOCS%%%%DOCSDIR%%/ssl/index.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/ssl/index.xml
%%PORTDOCS%%%%DOCSDIR%%/ssl/index.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/ssl/index.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_compat.html
%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_compat.html.en
%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_compat.xml
%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_compat.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_faq.html
%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_faq.html.en
%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_faq.xml
%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_faq.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_howto.html
%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_howto.html.en
%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_howto.xml
%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_howto.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_intro.html
%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_intro.html.en
%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_intro.xml
%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_intro.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_intro_fig1.gif
%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_intro_fig2.gif
%%PORTDOCS%%%%DOCSDIR%%/ssl/ssl_intro_fig3.gif
%%PORTDOCS%%%%DOCSDIR%%/stopping.html
%%PORTDOCS%%%%DOCSDIR%%/stopping.html.de
%%PORTDOCS%%%%DOCSDIR%%/stopping.html.en
%%PORTDOCS%%%%DOCSDIR%%/stopping.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/stopping.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/stopping.html.ru.koi8-r
%%PORTDOCS%%%%DOCSDIR%%/stopping.xml
%%PORTDOCS%%%%DOCSDIR%%/stopping.xml.de
%%PORTDOCS%%%%DOCSDIR%%/stopping.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/stopping.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/stopping.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/stopping.xml.ru
%%PORTDOCS%%%%DOCSDIR%%/style/build.properties
%%PORTDOCS%%%%DOCSDIR%%/style/chm/chm.de.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/chm/chm.en.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/chm/chm.ja.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/chm/chm.ko.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/chm/chm.zh-cn.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhc.de.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhc.en.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhc.ja.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhc.ko.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhc.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhc.zh-cn.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhp.de.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhp.en.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhp.ja.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhp.ko.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhp.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/chm/hhp.zh-cn.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/common.dtd
%%PORTDOCS%%%%DOCSDIR%%/style/css/manual-chm.css
%%PORTDOCS%%%%DOCSDIR%%/style/css/manual-loose-100pc.css
%%PORTDOCS%%%%DOCSDIR%%/style/css/manual-print.css
%%PORTDOCS%%%%DOCSDIR%%/style/css/manual-zip-100pc.css
%%PORTDOCS%%%%DOCSDIR%%/style/css/manual-zip.css
%%PORTDOCS%%%%DOCSDIR%%/style/css/manual.css
%%PORTDOCS%%%%DOCSDIR%%/style/faq.dtd
%%PORTDOCS%%%%DOCSDIR%%/style/lang/de.xml
%%PORTDOCS%%%%DOCSDIR%%/style/lang/en.xml
%%PORTDOCS%%%%DOCSDIR%%/style/lang/ja.xml
%%PORTDOCS%%%%DOCSDIR%%/style/lang/ko.xml
%%PORTDOCS%%%%DOCSDIR%%/style/lang/ru.xml
%%PORTDOCS%%%%DOCSDIR%%/style/lang/sv.xml
%%PORTDOCS%%%%DOCSDIR%%/style/latex/atbeginend.sty
%%PORTDOCS%%%%DOCSDIR%%/style/latex/common.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/latex/directiveindex.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/latex/faq.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/latex/html.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/latex/latex.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/latex/manualpage.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/latex/moduleindex.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/latex/quickreference.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/latex/synopsis.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/man/man.en.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/man/manpage.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/manual.de.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/manual.en.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/manual.fr.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/manual.ja.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/manual.ko.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/manual.pt-br.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/manual.ru.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/manual.sv.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/manual.zh-cn.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/manualpage.dtd
%%PORTDOCS%%%%DOCSDIR%%/style/modulesynopsis.dtd
%%PORTDOCS%%%%DOCSDIR%%/style/sitemap.dtd
%%PORTDOCS%%%%DOCSDIR%%/style/w3c/xhtml-lat1.ent
%%PORTDOCS%%%%DOCSDIR%%/style/w3c/xhtml-special.ent
%%PORTDOCS%%%%DOCSDIR%%/style/w3c/xhtml-symbol.ent
%%PORTDOCS%%%%DOCSDIR%%/style/w3c/xhtml1-strict.dtd
%%PORTDOCS%%%%DOCSDIR%%/style/w3c/xhtml1-transitional.dtd
%%PORTDOCS%%%%DOCSDIR%%/style/xsl/common.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/xsl/directiveindex.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/xsl/faq.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/xsl/indexpage.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/xsl/manualpage.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/xsl/moduleindex.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/xsl/quickreference.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/xsl/sitemap.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/xsl/synopsis.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/xsl/typemap.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/xsl/util/lf.xml
%%PORTDOCS%%%%DOCSDIR%%/style/xsl/util/li-end.xml
%%PORTDOCS%%%%DOCSDIR%%/style/xsl/util/li-start.xml
%%PORTDOCS%%%%DOCSDIR%%/style/xsl/util/modtrans.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/xsl/util/nbsp.xml
%%PORTDOCS%%%%DOCSDIR%%/style/xsl/util/tab.xml
%%PORTDOCS%%%%DOCSDIR%%/style/xsl/util/ul-end.xml
%%PORTDOCS%%%%DOCSDIR%%/style/xsl/util/ul-start.xml
%%PORTDOCS%%%%DOCSDIR%%/style/zip/zip.en.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/zip/zip.de.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/zip/zip.ja.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/zip/zip.ko.xsl
%%PORTDOCS%%%%DOCSDIR%%/style/zip/zip.ru.xsl
%%PORTDOCS%%%%DOCSDIR%%/suexec.html
%%PORTDOCS%%%%DOCSDIR%%/suexec.html.en
%%PORTDOCS%%%%DOCSDIR%%/suexec.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/suexec.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/suexec.xml
%%PORTDOCS%%%%DOCSDIR%%/suexec.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/suexec.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/suexec.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/upgrading.html
%%PORTDOCS%%%%DOCSDIR%%/upgrading.html.de
%%PORTDOCS%%%%DOCSDIR%%/upgrading.html.en
%%PORTDOCS%%%%DOCSDIR%%/upgrading.html.fr
%%PORTDOCS%%%%DOCSDIR%%/upgrading.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/upgrading.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/upgrading.html.ru.koi8-r
%%PORTDOCS%%%%DOCSDIR%%/upgrading.xml
%%PORTDOCS%%%%DOCSDIR%%/upgrading.xml.de
%%PORTDOCS%%%%DOCSDIR%%/upgrading.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/upgrading.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/upgrading.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/upgrading.xml.ru
%%PORTDOCS%%%%DOCSDIR%%/urlmapping.html
%%PORTDOCS%%%%DOCSDIR%%/urlmapping.html.en
%%PORTDOCS%%%%DOCSDIR%%/urlmapping.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/urlmapping.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/urlmapping.xml
%%PORTDOCS%%%%DOCSDIR%%/urlmapping.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/urlmapping.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/urlmapping.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/vhosts/details.html
%%PORTDOCS%%%%DOCSDIR%%/vhosts/details.html.en
%%PORTDOCS%%%%DOCSDIR%%/vhosts/details.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/vhosts/details.xml
%%PORTDOCS%%%%DOCSDIR%%/vhosts/details.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/vhosts/details.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/vhosts/examples.html
%%PORTDOCS%%%%DOCSDIR%%/vhosts/examples.html.en
%%PORTDOCS%%%%DOCSDIR%%/vhosts/examples.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/vhosts/examples.xml
%%PORTDOCS%%%%DOCSDIR%%/vhosts/examples.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/vhosts/examples.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/vhosts/fd-limits.html
%%PORTDOCS%%%%DOCSDIR%%/vhosts/fd-limits.html.en
%%PORTDOCS%%%%DOCSDIR%%/vhosts/fd-limits.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/vhosts/fd-limits.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/vhosts/fd-limits.xml
%%PORTDOCS%%%%DOCSDIR%%/vhosts/fd-limits.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/vhosts/fd-limits.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/vhosts/fd-limits.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.html
%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.html.de
%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.html.en
%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.html.ru.koi8-r
%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.xml
%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.xml.de
%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/vhosts/index.xml.ru
%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.xml.ja
%%PORTDOCS%%%%DOCSDIR%%/vhosts/ip-based.html
%%PORTDOCS%%%%DOCSDIR%%/vhosts/ip-based.html.en
%%PORTDOCS%%%%DOCSDIR%%/vhosts/ip-based.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/vhosts/ip-based.xml
%%PORTDOCS%%%%DOCSDIR%%/vhosts/ip-based.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/vhosts/ip-based.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/vhosts/mass.html
%%PORTDOCS%%%%DOCSDIR%%/vhosts/mass.html.en
%%PORTDOCS%%%%DOCSDIR%%/vhosts/mass.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/vhosts/mass.xml
%%PORTDOCS%%%%DOCSDIR%%/vhosts/mass.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/vhosts/mass.xml.meta
%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.html
%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.html.de
%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.html.en
%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.html.ja.jis
%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.html.ko.euc-kr
%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.xml
%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.xml.de
%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.xml.ko
%%PORTDOCS%%%%DOCSDIR%%/vhosts/name-based.xml.meta
@exec mkdir -p %D/www
%%CGI%%@unexec if [ -L %D/www/cgi-bin ]; then rm -f %D/www/cgi-bin; fi
%%CGI%%@exec [ ! -d %D/www/cgi-bin ] && ln -fs %D/www/cgi-bin-dist %D/www/cgi-bin
%%CGI%%www/cgi-bin-dist/printenv
%%CGI%%www/cgi-bin-dist/test-cgi
%%WWWDATA%%@unexec if [ -L %D/www/data ]; then rm -f %D/www/data; fi
%%WWWDATA%%@exec [ ! -d %D/www/data ] && ln -fs %D/www/data-dist %D/www/data
%%WWWDATA%%www/data-dist/apache_pb.gif
%%WWWDATA%%www/data-dist/apache_pb.png
%%WWWDATA%%www/data-dist/apache_pb2.gif
%%WWWDATA%%www/data-dist/apache_pb2.png
%%WWWDATA%%www/data-dist/apache_pb2_ani.gif
%%WWWDATA%%www/data-dist/index.html.ca
%%WWWDATA%%www/data-dist/index.html.cz.iso8859-2
%%WWWDATA%%www/data-dist/index.html.de
%%WWWDATA%%www/data-dist/index.html.dk
%%WWWDATA%%www/data-dist/index.html.ee
%%WWWDATA%%www/data-dist/index.html.el
%%WWWDATA%%www/data-dist/index.html.en
%%WWWDATA%%www/data-dist/index.html.es
%%WWWDATA%%www/data-dist/index.html.et
%%WWWDATA%%www/data-dist/index.html.fr
%%WWWDATA%%www/data-dist/index.html.he.iso8859-8
%%WWWDATA%%www/data-dist/index.html.hr.iso8859-2
%%WWWDATA%%www/data-dist/index.html.it
%%WWWDATA%%www/data-dist/index.html.ja.iso2022-jp
%%WWWDATA%%www/data-dist/index.html.ko.euc-kr
%%WWWDATA%%www/data-dist/index.html.lb.utf8
%%WWWDATA%%www/data-dist/index.html.nl
%%WWWDATA%%www/data-dist/index.html.nn
%%WWWDATA%%www/data-dist/index.html.no
%%WWWDATA%%www/data-dist/index.html.po.iso8859-2
%%WWWDATA%%www/data-dist/index.html.pt
%%WWWDATA%%www/data-dist/index.html.pt-br
%%WWWDATA%%www/data-dist/index.html.ru.cp-1251
%%WWWDATA%%www/data-dist/index.html.ru.cp866
%%WWWDATA%%www/data-dist/index.html.ru.iso-ru
%%WWWDATA%%www/data-dist/index.html.ru.koi8-r
%%WWWDATA%%www/data-dist/index.html.ru.utf8
%%WWWDATA%%www/data-dist/index.html.sv
%%WWWDATA%%www/data-dist/index.html.var
%%WWWDATA%%www/data-dist/index.html.zh-cn.gb2312
%%WWWDATA%%www/data-dist/index.html.zh-tw.big5
%%ERROR%%@unexec if [ -L %D/www/error ]; then rm -f %D/www/error; fi
%%ERROR%%@exec [ ! -d %D/www/error ] && ln -fs %D/www/error-dist %D/www/error
%%ERROR%%www/error-dist/HTTP_BAD_GATEWAY.html.var
%%ERROR%%www/error-dist/HTTP_BAD_REQUEST.html.var
%%ERROR%%www/error-dist/HTTP_FORBIDDEN.html.var
%%ERROR%%www/error-dist/HTTP_GONE.html.var
%%ERROR%%www/error-dist/HTTP_INTERNAL_SERVER_ERROR.html.var
%%ERROR%%www/error-dist/HTTP_LENGTH_REQUIRED.html.var
%%ERROR%%www/error-dist/HTTP_METHOD_NOT_ALLOWED.html.var
%%ERROR%%www/error-dist/HTTP_NOT_ACCEPTABLE.html.var
%%ERROR%%www/error-dist/HTTP_NOT_FOUND.html.var
%%ERROR%%www/error-dist/HTTP_NOT_IMPLEMENTED.html.var
%%ERROR%%www/error-dist/HTTP_PRECONDITION_FAILED.html.var
%%ERROR%%www/error-dist/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
%%ERROR%%www/error-dist/HTTP_REQUEST_TIME_OUT.html.var
%%ERROR%%www/error-dist/HTTP_REQUEST_URI_TOO_LARGE.html.var
%%ERROR%%www/error-dist/HTTP_SERVICE_UNAVAILABLE.html.var
%%ERROR%%www/error-dist/HTTP_UNAUTHORIZED.html.var
%%ERROR%%www/error-dist/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var
%%ERROR%%www/error-dist/HTTP_VARIANT_ALSO_VARIES.html.var
%%ERROR%%www/error-dist/README
%%ERROR%%www/error-dist/contact.html.var
%%ERROR%%www/error-dist/include/bottom.html
%%ERROR%%www/error-dist/include/spacer.html
%%ERROR%%www/error-dist/include/top.html
%%ICONS%%@unexec if [ -L %D/www/icons ]; then rm -f %D/www/icons; fi
%%ICONS%%@exec [ ! -d %D/www/icons ] && ln -fs %D/www/icons-dist %D/www/icons
%%ICONS%%www/icons-dist/README
%%ICONS%%www/icons-dist/a.gif
%%ICONS%%www/icons-dist/a.png
%%ICONS%%www/icons-dist/alert.black.gif
%%ICONS%%www/icons-dist/alert.black.png
%%ICONS%%www/icons-dist/alert.red.gif
%%ICONS%%www/icons-dist/alert.red.png
%%ICONS%%www/icons-dist/apache_pb.gif
%%ICONS%%www/icons-dist/apache_pb.png
%%ICONS%%www/icons-dist/apache_pb2.gif
%%ICONS%%www/icons-dist/apache_pb2.png
%%ICONS%%www/icons-dist/apache_pb2_ani.gif
%%ICONS%%www/icons-dist/back.gif
%%ICONS%%www/icons-dist/back.png
%%ICONS%%www/icons-dist/ball.gray.gif
%%ICONS%%www/icons-dist/ball.gray.png
%%ICONS%%www/icons-dist/ball.red.gif
%%ICONS%%www/icons-dist/ball.red.png
%%ICONS%%www/icons-dist/binary.gif
%%ICONS%%www/icons-dist/binary.png
%%ICONS%%www/icons-dist/binhex.gif
%%ICONS%%www/icons-dist/binhex.png
%%ICONS%%www/icons-dist/blank.gif
%%ICONS%%www/icons-dist/blank.png
%%ICONS%%www/icons-dist/bomb.gif
%%ICONS%%www/icons-dist/bomb.png
%%ICONS%%www/icons-dist/box1.gif
%%ICONS%%www/icons-dist/box1.png
%%ICONS%%www/icons-dist/box2.gif
%%ICONS%%www/icons-dist/box2.png
%%ICONS%%www/icons-dist/broken.gif
%%ICONS%%www/icons-dist/broken.png
%%ICONS%%www/icons-dist/burst.gif
%%ICONS%%www/icons-dist/burst.png
%%ICONS%%www/icons-dist/c.gif
%%ICONS%%www/icons-dist/c.png
%%ICONS%%www/icons-dist/comp.blue.gif
%%ICONS%%www/icons-dist/comp.blue.png
%%ICONS%%www/icons-dist/comp.gray.gif
%%ICONS%%www/icons-dist/comp.gray.png
%%ICONS%%www/icons-dist/compressed.gif
%%ICONS%%www/icons-dist/compressed.png
%%ICONS%%www/icons-dist/continued.gif
%%ICONS%%www/icons-dist/continued.png
%%ICONS%%www/icons-dist/dir.gif
%%ICONS%%www/icons-dist/dir.png
%%ICONS%%www/icons-dist/diskimg.gif
%%ICONS%%www/icons-dist/diskimg.png
%%ICONS%%www/icons-dist/down.gif
%%ICONS%%www/icons-dist/down.png
%%ICONS%%www/icons-dist/dvi.gif
%%ICONS%%www/icons-dist/dvi.png
%%ICONS%%www/icons-dist/f.gif
%%ICONS%%www/icons-dist/f.png
%%ICONS%%www/icons-dist/folder.gif
%%ICONS%%www/icons-dist/folder.open.gif
%%ICONS%%www/icons-dist/folder.open.png
%%ICONS%%www/icons-dist/folder.png
%%ICONS%%www/icons-dist/folder.sec.gif
%%ICONS%%www/icons-dist/folder.sec.png
%%ICONS%%www/icons-dist/forward.gif
%%ICONS%%www/icons-dist/forward.png
%%ICONS%%www/icons-dist/freebsd.gif
%%ICONS%%www/icons-dist/generic.gif
%%ICONS%%www/icons-dist/generic.png
%%ICONS%%www/icons-dist/generic.red.gif
%%ICONS%%www/icons-dist/generic.red.png
%%ICONS%%www/icons-dist/generic.sec.gif
%%ICONS%%www/icons-dist/generic.sec.png
%%ICONS%%www/icons-dist/hand.right.gif
%%ICONS%%www/icons-dist/hand.right.png
%%ICONS%%www/icons-dist/hand.up.gif
%%ICONS%%www/icons-dist/hand.up.png
%%ICONS%%www/icons-dist/icon.sheet.gif
%%ICONS%%www/icons-dist/icon.sheet.png
%%ICONS%%www/icons-dist/image1.gif
%%ICONS%%www/icons-dist/image1.png
%%ICONS%%www/icons-dist/image2.gif
%%ICONS%%www/icons-dist/image2.png
%%ICONS%%www/icons-dist/image3.gif
%%ICONS%%www/icons-dist/image3.png
%%ICONS%%www/icons-dist/index.gif
%%ICONS%%www/icons-dist/index.png
%%ICONS%%www/icons-dist/layout.gif
%%ICONS%%www/icons-dist/layout.png
%%ICONS%%www/icons-dist/left.gif
%%ICONS%%www/icons-dist/left.png
%%ICONS%%www/icons-dist/link.gif
%%ICONS%%www/icons-dist/link.png
%%ICONS%%www/icons-dist/movie.gif
%%ICONS%%www/icons-dist/movie.png
%%ICONS%%www/icons-dist/p.gif
%%ICONS%%www/icons-dist/p.png
%%ICONS%%www/icons-dist/patch.gif
%%ICONS%%www/icons-dist/patch.png
%%ICONS%%www/icons-dist/pdf.gif
%%ICONS%%www/icons-dist/pdf.png
%%ICONS%%www/icons-dist/pie0.gif
%%ICONS%%www/icons-dist/pie0.png
%%ICONS%%www/icons-dist/pie1.gif
%%ICONS%%www/icons-dist/pie1.png
%%ICONS%%www/icons-dist/pie2.gif
%%ICONS%%www/icons-dist/pie2.png
%%ICONS%%www/icons-dist/pie3.gif
%%ICONS%%www/icons-dist/pie3.png
%%ICONS%%www/icons-dist/pie4.gif
%%ICONS%%www/icons-dist/pie4.png
%%ICONS%%www/icons-dist/pie5.gif
%%ICONS%%www/icons-dist/pie5.png
%%ICONS%%www/icons-dist/pie6.gif
%%ICONS%%www/icons-dist/pie6.png
%%ICONS%%www/icons-dist/pie7.gif
%%ICONS%%www/icons-dist/pie7.png
%%ICONS%%www/icons-dist/pie8.gif
%%ICONS%%www/icons-dist/pie8.png
%%ICONS%%www/icons-dist/portal.gif
%%ICONS%%www/icons-dist/portal.png
%%ICONS%%www/icons-dist/ps.gif
%%ICONS%%www/icons-dist/ps.png
%%ICONS%%www/icons-dist/quill.gif
%%ICONS%%www/icons-dist/quill.png
%%ICONS%%www/icons-dist/right.gif
%%ICONS%%www/icons-dist/right.png
%%ICONS%%www/icons-dist/screw1.gif
%%ICONS%%www/icons-dist/screw1.png
%%ICONS%%www/icons-dist/screw2.gif
%%ICONS%%www/icons-dist/screw2.png
%%ICONS%%www/icons-dist/script.gif
%%ICONS%%www/icons-dist/script.png
%%ICONS%%www/icons-dist/small/README.txt
%%ICONS%%www/icons-dist/small/back.gif
%%ICONS%%www/icons-dist/small/back.png
%%ICONS%%www/icons-dist/small/binary.gif
%%ICONS%%www/icons-dist/small/binary.png
%%ICONS%%www/icons-dist/small/binhex.gif
%%ICONS%%www/icons-dist/small/binhex.png
%%ICONS%%www/icons-dist/small/blank.gif
%%ICONS%%www/icons-dist/small/blank.png
%%ICONS%%www/icons-dist/small/broken.gif
%%ICONS%%www/icons-dist/small/broken.png
%%ICONS%%www/icons-dist/small/burst.gif
%%ICONS%%www/icons-dist/small/burst.png
%%ICONS%%www/icons-dist/small/comp1.gif
%%ICONS%%www/icons-dist/small/comp1.png
%%ICONS%%www/icons-dist/small/comp2.gif
%%ICONS%%www/icons-dist/small/comp2.png
%%ICONS%%www/icons-dist/small/compressed.gif
%%ICONS%%www/icons-dist/small/compressed.png
%%ICONS%%www/icons-dist/small/continued.gif
%%ICONS%%www/icons-dist/small/continued.png
%%ICONS%%www/icons-dist/small/dir.gif
%%ICONS%%www/icons-dist/small/dir.png
%%ICONS%%www/icons-dist/small/dir2.gif
%%ICONS%%www/icons-dist/small/dir2.png
%%ICONS%%www/icons-dist/small/doc.gif
%%ICONS%%www/icons-dist/small/doc.png
%%ICONS%%www/icons-dist/small/forward.gif
%%ICONS%%www/icons-dist/small/forward.png
%%ICONS%%www/icons-dist/small/generic.gif
%%ICONS%%www/icons-dist/small/generic.png
%%ICONS%%www/icons-dist/small/generic2.gif
%%ICONS%%www/icons-dist/small/generic2.png
%%ICONS%%www/icons-dist/small/generic3.gif
%%ICONS%%www/icons-dist/small/generic3.png
%%ICONS%%www/icons-dist/small/image.gif
%%ICONS%%www/icons-dist/small/image.png
%%ICONS%%www/icons-dist/small/image2.gif
%%ICONS%%www/icons-dist/small/image2.png
%%ICONS%%www/icons-dist/small/index.gif
%%ICONS%%www/icons-dist/small/index.png
%%ICONS%%www/icons-dist/small/key.gif
%%ICONS%%www/icons-dist/small/key.png
%%ICONS%%www/icons-dist/small/movie.gif
%%ICONS%%www/icons-dist/small/movie.png
%%ICONS%%www/icons-dist/small/patch.gif
%%ICONS%%www/icons-dist/small/patch.png
%%ICONS%%www/icons-dist/small/ps.gif
%%ICONS%%www/icons-dist/small/ps.png
%%ICONS%%www/icons-dist/small/rainbow.gif
%%ICONS%%www/icons-dist/small/rainbow.png
%%ICONS%%www/icons-dist/small/sound.gif
%%ICONS%%www/icons-dist/small/sound.png
%%ICONS%%www/icons-dist/small/sound2.gif
%%ICONS%%www/icons-dist/small/sound2.png
%%ICONS%%www/icons-dist/small/tar.gif
%%ICONS%%www/icons-dist/small/tar.png
%%ICONS%%www/icons-dist/small/text.gif
%%ICONS%%www/icons-dist/small/text.png
%%ICONS%%www/icons-dist/small/transfer.gif
%%ICONS%%www/icons-dist/small/transfer.png
%%ICONS%%www/icons-dist/small/unknown.gif
%%ICONS%%www/icons-dist/small/unknown.png
%%ICONS%%www/icons-dist/small/uu.gif
%%ICONS%%www/icons-dist/small/uu.png
%%ICONS%%www/icons-dist/sound1.gif
%%ICONS%%www/icons-dist/sound1.png
%%ICONS%%www/icons-dist/sound2.gif
%%ICONS%%www/icons-dist/sound2.png
%%ICONS%%www/icons-dist/sphere1.gif
%%ICONS%%www/icons-dist/sphere1.png
%%ICONS%%www/icons-dist/sphere2.gif
%%ICONS%%www/icons-dist/sphere2.png
%%ICONS%%www/icons-dist/tar.gif
%%ICONS%%www/icons-dist/tar.png
%%ICONS%%www/icons-dist/tex.gif
%%ICONS%%www/icons-dist/tex.png
%%ICONS%%www/icons-dist/text.gif
%%ICONS%%www/icons-dist/text.png
%%ICONS%%www/icons-dist/transfer.gif
%%ICONS%%www/icons-dist/transfer.png
%%ICONS%%www/icons-dist/unknown.gif
%%ICONS%%www/icons-dist/unknown.png
%%ICONS%%www/icons-dist/up.gif
%%ICONS%%www/icons-dist/up.png
%%ICONS%%www/icons-dist/uu.gif
%%ICONS%%www/icons-dist/uu.png
%%ICONS%%www/icons-dist/uuencoded.gif
%%ICONS%%www/icons-dist/uuencoded.png
%%ICONS%%www/icons-dist/world1.gif
%%ICONS%%www/icons-dist/world1.png
%%ICONS%%www/icons-dist/world2.gif
%%ICONS%%www/icons-dist/world2.png
%%ICONS%%@dirrm www/icons-dist/small
%%ICONS%%@dirrm www/icons-dist
%%ERROR%%@dirrm www/error-dist/include
%%ERROR%%@dirrm www/error-dist
%%WWWDATA%%@dirrm www/data-dist
%%CGI%%@dirrm www/cgi-bin-dist
@unexec rmdir %D/www 2> /dev/null || true
%%PORTDOCS%%@dirrm %%DOCSDIR%%/vhosts
%%PORTDOCS%%@dirrm %%DOCSDIR%%/style/zip
%%PORTDOCS%%@dirrm %%DOCSDIR%%/style/xsl/util
%%PORTDOCS%%@dirrm %%DOCSDIR%%/style/xsl
%%PORTDOCS%%@dirrm %%DOCSDIR%%/style/w3c
%%PORTDOCS%%@dirrm %%DOCSDIR%%/style/man
%%PORTDOCS%%@dirrm %%DOCSDIR%%/style/latex
%%PORTDOCS%%@dirrm %%DOCSDIR%%/style/lang
%%PORTDOCS%%@dirrm %%DOCSDIR%%/style/css
%%PORTDOCS%%@dirrm %%DOCSDIR%%/style/chm
%%PORTDOCS%%@dirrm %%DOCSDIR%%/style
%%PORTDOCS%%@dirrm %%DOCSDIR%%/ssl
%%PORTDOCS%%@dirrm %%DOCSDIR%%/programs
%%PORTDOCS%%@dirrm %%DOCSDIR%%/platform
%%PORTDOCS%%@dirrm %%DOCSDIR%%/mod
%%PORTDOCS%%@dirrm %%DOCSDIR%%/misc
%%PORTDOCS%%@dirrm %%DOCSDIR%%/images
%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto
%%PORTDOCS%%@dirrm %%DOCSDIR%%/faq
%%PORTDOCS%%@dirrm %%DOCSDIR%%/developer
%%PORTDOCS%%@dirrm %%DOCSDIR%%
@dirrm share/apache2/build
@dirrm share/apache2
@dirrm libexec/apache2
%%PORTS_APR%%@dirrm lib/apache2
@dirrm include/apache2
@unexec rmdir %D/etc/apache2 2> /dev/null || echo "===> If you plan to do not reinstall apache2, you can safely remove %D/etc/apache2."