blob: 48b20b3f5cc667b5f6834e61e6fe24acbeae611d (
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
|
%%WWWDIR%%/ChangeLog.archive.gz
%%WWWDIR%%/Version.php
%%WWWDIR%%/add_comment.php
%%WWWDIR%%/add_photos.php
%%WWWDIR%%/add_photos_frame.php
%%WWWDIR%%/add_photos_refresh.php
%%WWWDIR%%/admin-page.php
%%WWWDIR%%/administer_startpage.php
%%WWWDIR%%/album_permissions.php
%%WWWDIR%%/albums.php
%%WWWDIR%%/block-random.php
%%WWWDIR%%/captionator.php
%%WWWDIR%%/classes/Album.php
%%WWWDIR%%/classes/AlbumDB.php
%%WWWDIR%%/classes/AlbumItem.php
%%WWWDIR%%/classes/Colors.php
%%WWWDIR%%/classes/Comment.php
%%WWWDIR%%/classes/Database.php
%%WWWDIR%%/classes/EverybodyUser.php
%%WWWDIR%%/classes/HTML/table.php
%%WWWDIR%%/classes/HTML_Safe/Safe.php
%%WWWDIR%%/classes/Image.php
%%WWWDIR%%/classes/LoggedInUser.php
%%WWWDIR%%/classes/Logins.php
%%WWWDIR%%/classes/Mail/RFC822.php
%%WWWDIR%%/classes/Mail/htmlMimeMail.php
%%WWWDIR%%/classes/Mail/mimePart.php
%%WWWDIR%%/classes/Mail/smtp.php
%%WWWDIR%%/classes/NobodyUser.php
%%WWWDIR%%/classes/User.php
%%WWWDIR%%/classes/UserDB.php
%%WWWDIR%%/classes/XML_HTMLSax3/HTMLSax3.php
%%WWWDIR%%/classes/XML_HTMLSax3/HTMLSax3/Decorators.php
%%WWWDIR%%/classes/XML_HTMLSax3/HTMLSax3/Grammar.php
%%WWWDIR%%/classes/XML_HTMLSax3/HTMLSax3/States.php
%%WWWDIR%%/classes/XML_HTMLSax3/lgpl-3.0.txt
%%WWWDIR%%/classes/XML_HTMLSax3/license.txt
%%WWWDIR%%/classes/database/mysql/Database.php
%%WWWDIR%%/classes/gallery/User.php
%%WWWDIR%%/classes/gallery/UserDB.php
%%WWWDIR%%/classes/geeklog/User.php
%%WWWDIR%%/classes/geeklog/UserDB.php
%%WWWDIR%%/classes/mambo/User.php
%%WWWDIR%%/classes/mambo/UserDB.php
%%WWWDIR%%/classes/nsnnuke/AdminUser.php
%%WWWDIR%%/classes/nsnnuke/User.php
%%WWWDIR%%/classes/nsnnuke/UserDB.php
%%WWWDIR%%/classes/nuke5/AdminUser.php
%%WWWDIR%%/classes/nuke5/User.php
%%WWWDIR%%/classes/nuke5/UserDB.php
%%WWWDIR%%/classes/phpbb/User.php
%%WWWDIR%%/classes/phpbb/UserDB.php
%%WWWDIR%%/classes/postnuke/User.php
%%WWWDIR%%/classes/postnuke/UserDB.php
%%WWWDIR%%/classes/postnuke0.7.1/User.php
%%WWWDIR%%/classes/postnuke0.7.1/UserDB.php
%%WWWDIR%%/classes/remote/GalleryRemoteProperties.php
%%WWWDIR%%/configure.sh
%%WWWDIR%%/contrib/GeekLog/CREDITS
%%WWWDIR%%/contrib/joomla/HowTo.txt
%%WWWDIR%%/contrib/joomla/admin.gallery.html.php
%%WWWDIR%%/contrib/joomla/admin.gallery.php
%%WWWDIR%%/contrib/joomla/classes/mambo.php
%%WWWDIR%%/contrib/joomla/gallery.php
%%WWWDIR%%/contrib/joomla/gallery.xml
%%WWWDIR%%/contrib/joomla/images/logo-228x67.png
%%WWWDIR%%/contrib/joomla/includes/frontend.php
%%WWWDIR%%/contrib/joomla/toolbar.gallery.php
%%WWWDIR%%/contrib/mambo/HowTo.txt
%%WWWDIR%%/contrib/mambo/admin.gallery.html.php
%%WWWDIR%%/contrib/mambo/admin.gallery.php
%%WWWDIR%%/contrib/mambo/classes/mambo.php
%%WWWDIR%%/contrib/mambo/gallery.php
%%WWWDIR%%/contrib/mambo/gallery.xml
%%WWWDIR%%/contrib/mambo/images/logo-228x67.png
%%WWWDIR%%/contrib/mambo/includes/frontend.php
%%WWWDIR%%/contrib/mambo/toolbar.gallery.php
%%WWWDIR%%/contrib/phpBB2/CREDITS
%%WWWDIR%%/contrib/phpBB2/HowTo.txt
%%WWWDIR%%/contrib/phpBB2/modules.php
%%WWWDIR%%/contrib/phpBB2/phpBB2-manual_changes.txt
%%WWWDIR%%/contrib/phpnuke/block-Random_Image.php.sample
%%WWWDIR%%/contrib/phpnuke/modules.php.MOD
%%WWWDIR%%/contrib/phpnuke/modules.php.patch
%%WWWDIR%%/contrib/postnuke/readme.72x
%%WWWDIR%%/contrib/postnuke/readme.750
%%WWWDIR%%/copy_photo.php
%%WWWDIR%%/create_user.php
%%WWWDIR%%/css/base.css.default
%%WWWDIR%%/css/config.css.default
%%WWWDIR%%/css/embedded_style.css.default
%%WWWDIR%%/css/mooRainbow.css
%%WWWDIR%%/css/screen.css.default
%%WWWDIR%%/delete_album.php
%%WWWDIR%%/delete_photo.php
%%WWWDIR%%/delete_user.php
%%WWWDIR%%/do_command.php
%%WWWDIR%%/docs/context-help/login.php
%%WWWDIR%%/docs/context-help/register.php
%%WWWDIR%%/docs/context-help/search.php
%%WWWDIR%%/docs/context-help/slideshow.php
%%WWWDIR%%/docs/context-help/test.php
%%WWWDIR%%/docs/gallery1-admin.backup.html
%%WWWDIR%%/docs/gallery1-admin.basics.html
%%WWWDIR%%/docs/gallery1-admin.embedding.html
%%WWWDIR%%/docs/gallery1-admin.html
%%WWWDIR%%/docs/gallery1-admin.mirroring.html
%%WWWDIR%%/docs/gallery1-admin.offline.html
%%WWWDIR%%/docs/gallery1-admin.patching.html
%%WWWDIR%%/docs/gallery1-admin.securing.html
%%WWWDIR%%/docs/gallery1-admin.users.html
%%WWWDIR%%/docs/gallery1-devguide.functions.html
%%WWWDIR%%/docs/gallery1-devguide.html
%%WWWDIR%%/docs/gallery1-install.config-wizard.html
%%WWWDIR%%/docs/gallery1-install.credits.html
%%WWWDIR%%/docs/gallery1-install.faq.a.html
%%WWWDIR%%/docs/gallery1-install.faq.b.html
%%WWWDIR%%/docs/gallery1-install.faq.c.html
%%WWWDIR%%/docs/gallery1-install.faq.d.html
%%WWWDIR%%/docs/gallery1-install.faq.html
%%WWWDIR%%/docs/gallery1-install.features.html
%%WWWDIR%%/docs/gallery1-install.help.html
%%WWWDIR%%/docs/gallery1-install.html
%%WWWDIR%%/docs/gallery1-install.language-packs.html
%%WWWDIR%%/docs/gallery1-install.overview.html
%%WWWDIR%%/docs/gallery1-install.remote-applets.html
%%WWWDIR%%/docs/gallery1-install.required-programs.html
%%WWWDIR%%/docs/gallery1-install.requirements.html
%%WWWDIR%%/docs/gallery1-install.unix-ftp.html
%%WWWDIR%%/docs/gallery1-install.unix-shell.html
%%WWWDIR%%/docs/gallery1-install.upgrade.html
%%WWWDIR%%/docs/gallery1-install.windows-iis.html
%%WWWDIR%%/docs/gallery1-install.windows.html
%%WWWDIR%%/docs/gallery1-user.html
%%WWWDIR%%/docs/gallery1-user.import.html
%%WWWDIR%%/docs/gallery1-user.watermark.html
%%WWWDIR%%/docs/html.css
%%WWWDIR%%/docs/images/basic-auth.gif
%%WWWDIR%%/docs/images/diagnostics.gif
%%WWWDIR%%/docs/images/step2setup.gif
%%WWWDIR%%/docs/images/up-up.gif
%%WWWDIR%%/docs/images/up.gif
%%WWWDIR%%/docs/index.html
%%WWWDIR%%/docs/preface.html
%%WWWDIR%%/docs/pretty-html.css
%%WWWDIR%%/download.php
%%WWWDIR%%/ecard_form.php
%%WWWDIR%%/ecard_preview.php
%%WWWDIR%%/edit_appearance.php
%%WWWDIR%%/edit_caption.php
%%WWWDIR%%/edit_field.php
%%WWWDIR%%/edit_thumb.php
%%WWWDIR%%/edit_watermark.php
%%WWWDIR%%/extra_fields.php
%%WWWDIR%%/gallery_remote.php
%%WWWDIR%%/gallery_remote2.php
%%WWWDIR%%/help/blacklist.txt
%%WWWDIR%%/help/imagemap.php
%%WWWDIR%%/help/metadataOnUpload.php
%%WWWDIR%%/html/userData.inc
%%WWWDIR%%/html_wrap/album.footer.default
%%WWWDIR%%/html_wrap/album.header.default
%%WWWDIR%%/html_wrap/frames/README.php
%%WWWDIR%%/html_wrap/frames/deryk/BB.gif
%%WWWDIR%%/html_wrap/frames/deryk/BL.gif
%%WWWDIR%%/html_wrap/frames/deryk/BR.gif
%%WWWDIR%%/html_wrap/frames/deryk/LL.gif
%%WWWDIR%%/html_wrap/frames/deryk/RR.gif
%%WWWDIR%%/html_wrap/frames/deryk/TL.gif
%%WWWDIR%%/html_wrap/frames/deryk/TR.gif
%%WWWDIR%%/html_wrap/frames/deryk/TT.gif
%%WWWDIR%%/html_wrap/frames/deryk/frame.def
%%WWWDIR%%/html_wrap/frames/golden/BB.gif
%%WWWDIR%%/html_wrap/frames/golden/BL.gif
%%WWWDIR%%/html_wrap/frames/golden/BR.gif
%%WWWDIR%%/html_wrap/frames/golden/LL.gif
%%WWWDIR%%/html_wrap/frames/golden/RR.gif
%%WWWDIR%%/html_wrap/frames/golden/TL.gif
%%WWWDIR%%/html_wrap/frames/golden/TR.gif
%%WWWDIR%%/html_wrap/frames/golden/TT.gif
%%WWWDIR%%/html_wrap/frames/golden/frame.def
%%WWWDIR%%/html_wrap/frames/notebook/BB.gif
%%WWWDIR%%/html_wrap/frames/notebook/BL.gif
%%WWWDIR%%/html_wrap/frames/notebook/BR.gif
%%WWWDIR%%/html_wrap/frames/notebook/LL.gif
%%WWWDIR%%/html_wrap/frames/notebook/RR.gif
%%WWWDIR%%/html_wrap/frames/notebook/TL.gif
%%WWWDIR%%/html_wrap/frames/notebook/TR.gif
%%WWWDIR%%/html_wrap/frames/notebook/TT.gif
%%WWWDIR%%/html_wrap/frames/notebook/frame.def
%%WWWDIR%%/html_wrap/frames/polaroid/BB.gif
%%WWWDIR%%/html_wrap/frames/polaroid/BL.gif
%%WWWDIR%%/html_wrap/frames/polaroid/BR.gif
%%WWWDIR%%/html_wrap/frames/polaroid/LL.gif
%%WWWDIR%%/html_wrap/frames/polaroid/RR.gif
%%WWWDIR%%/html_wrap/frames/polaroid/TL.gif
%%WWWDIR%%/html_wrap/frames/polaroid/TR.gif
%%WWWDIR%%/html_wrap/frames/polaroid/TT.gif
%%WWWDIR%%/html_wrap/frames/polaroid/frame.def
%%WWWDIR%%/html_wrap/frames/polaroid/pixel_trans.gif
%%WWWDIR%%/html_wrap/frames/polaroids/BB.gif
%%WWWDIR%%/html_wrap/frames/polaroids/BL.gif
%%WWWDIR%%/html_wrap/frames/polaroids/BR.gif
%%WWWDIR%%/html_wrap/frames/polaroids/LL.gif
%%WWWDIR%%/html_wrap/frames/polaroids/RR.gif
%%WWWDIR%%/html_wrap/frames/polaroids/TL.gif
%%WWWDIR%%/html_wrap/frames/polaroids/TR.gif
%%WWWDIR%%/html_wrap/frames/polaroids/TT.gif
%%WWWDIR%%/html_wrap/frames/polaroids/frame.def
%%WWWDIR%%/html_wrap/frames/polaroids/pixel_trans.gif
%%WWWDIR%%/html_wrap/frames/postage_stamp/BB5.gif
%%WWWDIR%%/html_wrap/frames/postage_stamp/BL5.gif
%%WWWDIR%%/html_wrap/frames/postage_stamp/BR5.gif
%%WWWDIR%%/html_wrap/frames/postage_stamp/LL5.gif
%%WWWDIR%%/html_wrap/frames/postage_stamp/RR5.gif
%%WWWDIR%%/html_wrap/frames/postage_stamp/ReadMe.txt
%%WWWDIR%%/html_wrap/frames/postage_stamp/TL5.gif
%%WWWDIR%%/html_wrap/frames/postage_stamp/TR5.gif
%%WWWDIR%%/html_wrap/frames/postage_stamp/TT5.gif
%%WWWDIR%%/html_wrap/frames/postage_stamp/frame.def
%%WWWDIR%%/html_wrap/frames/postage_stamp/pixel_trans.gif
%%WWWDIR%%/html_wrap/frames/scrapbook/BB.gif
%%WWWDIR%%/html_wrap/frames/scrapbook/BBL.gif
%%WWWDIR%%/html_wrap/frames/scrapbook/BBR.gif
%%WWWDIR%%/html_wrap/frames/scrapbook/BL.gif
%%WWWDIR%%/html_wrap/frames/scrapbook/BR.gif
%%WWWDIR%%/html_wrap/frames/scrapbook/LL.gif
%%WWWDIR%%/html_wrap/frames/scrapbook/LLB.gif
%%WWWDIR%%/html_wrap/frames/scrapbook/LLT.gif
%%WWWDIR%%/html_wrap/frames/scrapbook/RR.gif
%%WWWDIR%%/html_wrap/frames/scrapbook/RRB.gif
%%WWWDIR%%/html_wrap/frames/scrapbook/RRT.gif
%%WWWDIR%%/html_wrap/frames/scrapbook/TL.gif
%%WWWDIR%%/html_wrap/frames/scrapbook/TR.gif
%%WWWDIR%%/html_wrap/frames/scrapbook/TT.gif
%%WWWDIR%%/html_wrap/frames/scrapbook/TTL.gif
%%WWWDIR%%/html_wrap/frames/scrapbook/TTR.gif
%%WWWDIR%%/html_wrap/frames/scrapbook/frame.def
%%WWWDIR%%/html_wrap/frames/scrapbook_small/BB.gif
%%WWWDIR%%/html_wrap/frames/scrapbook_small/BBL.gif
%%WWWDIR%%/html_wrap/frames/scrapbook_small/BBR.gif
%%WWWDIR%%/html_wrap/frames/scrapbook_small/BL.gif
%%WWWDIR%%/html_wrap/frames/scrapbook_small/BR.gif
%%WWWDIR%%/html_wrap/frames/scrapbook_small/LL.gif
%%WWWDIR%%/html_wrap/frames/scrapbook_small/LLB.gif
%%WWWDIR%%/html_wrap/frames/scrapbook_small/LLT.gif
%%WWWDIR%%/html_wrap/frames/scrapbook_small/RR.gif
%%WWWDIR%%/html_wrap/frames/scrapbook_small/RRB.gif
%%WWWDIR%%/html_wrap/frames/scrapbook_small/RRT.gif
%%WWWDIR%%/html_wrap/frames/scrapbook_small/TL.gif
%%WWWDIR%%/html_wrap/frames/scrapbook_small/TR.gif
%%WWWDIR%%/html_wrap/frames/scrapbook_small/TT.gif
%%WWWDIR%%/html_wrap/frames/scrapbook_small/TTL.gif
%%WWWDIR%%/html_wrap/frames/scrapbook_small/TTR.gif
%%WWWDIR%%/html_wrap/frames/scrapbook_small/frame.def
%%WWWDIR%%/html_wrap/frames/scrapbookshadow/BB.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadow/BBL.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadow/BBR.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadow/BL.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadow/BR.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadow/LL.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadow/LLB.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadow/LLT.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadow/RR.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadow/RRB.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadow/RRT.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadow/TL.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadow/TR.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadow/TT.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadow/TTL.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadow/TTR.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadow/frame.def
%%WWWDIR%%/html_wrap/frames/scrapbookshadowsmall/BB.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadowsmall/BBL.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadowsmall/BBR.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadowsmall/BL.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadowsmall/BR.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadowsmall/LL.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadowsmall/LLB.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadowsmall/LLT.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadowsmall/RR.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadowsmall/RRB.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadowsmall/RRT.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadowsmall/TL.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadowsmall/TR.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadowsmall/TT.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadowsmall/TTL.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadowsmall/TTR.gif
%%WWWDIR%%/html_wrap/frames/scrapbookshadowsmall/frame.def
%%WWWDIR%%/html_wrap/frames/shadows/BB.png
%%WWWDIR%%/html_wrap/frames/shadows/BBL.png
%%WWWDIR%%/html_wrap/frames/shadows/BR.png
%%WWWDIR%%/html_wrap/frames/shadows/RR.png
%%WWWDIR%%/html_wrap/frames/shadows/RRT.png
%%WWWDIR%%/html_wrap/frames/shadows/frame.def
%%WWWDIR%%/html_wrap/frames/shadows/pixel_trans.png
%%WWWDIR%%/html_wrap/frames/simple_book/BB.gif
%%WWWDIR%%/html_wrap/frames/simple_book/BL.gif
%%WWWDIR%%/html_wrap/frames/simple_book/BR.gif
%%WWWDIR%%/html_wrap/frames/simple_book/RR.gif
%%WWWDIR%%/html_wrap/frames/simple_book/TR.gif
%%WWWDIR%%/html_wrap/frames/simple_book/dot.gif
%%WWWDIR%%/html_wrap/frames/simple_book/frame.def
%%WWWDIR%%/html_wrap/frames/simple_book/pixel_trans.gif
%%WWWDIR%%/html_wrap/frames/wooden/BB.gif
%%WWWDIR%%/html_wrap/frames/wooden/BL.gif
%%WWWDIR%%/html_wrap/frames/wooden/BR.gif
%%WWWDIR%%/html_wrap/frames/wooden/LL.gif
%%WWWDIR%%/html_wrap/frames/wooden/RR.gif
%%WWWDIR%%/html_wrap/frames/wooden/TL.gif
%%WWWDIR%%/html_wrap/frames/wooden/TR.gif
%%WWWDIR%%/html_wrap/frames/wooden/TT.gif
%%WWWDIR%%/html_wrap/frames/wooden/frame.def
%%WWWDIR%%/html_wrap/gallery.footer.default
%%WWWDIR%%/html_wrap/gallery.header.default
%%WWWDIR%%/html_wrap/general.footer.default
%%WWWDIR%%/html_wrap/inline_albumthumb.footer.default
%%WWWDIR%%/html_wrap/inline_albumthumb.frame.default
%%WWWDIR%%/html_wrap/inline_albumthumb.header.default
%%WWWDIR%%/html_wrap/inline_gallerythumb.frame.default
%%WWWDIR%%/html_wrap/inline_imagewrap.inc
%%WWWDIR%%/html_wrap/inline_moviethumb.frame.default
%%WWWDIR%%/html_wrap/inline_photo.footer.default
%%WWWDIR%%/html_wrap/inline_photo.frame.default
%%WWWDIR%%/html_wrap/inline_photo.header.default
%%WWWDIR%%/html_wrap/inline_photothumb.frame.default
%%WWWDIR%%/html_wrap/photo.footer.default
%%WWWDIR%%/html_wrap/photo.header.default
%%WWWDIR%%/html_wrap/popup.footer.default
%%WWWDIR%%/html_wrap/slideshow.footer.default
%%WWWDIR%%/html_wrap/slideshow.header.default
%%WWWDIR%%/html_wrap/stats.header.default
%%WWWDIR%%/html_wrap/wrapper.footer.default
%%WWWDIR%%/html_wrap/wrapper.header.default
%%WWWDIR%%/imagemap.php
%%WWWDIR%%/images/BB1.gif
%%WWWDIR%%/images/BL1.gif
%%WWWDIR%%/images/BR1.gif
%%WWWDIR%%/images/LL1.gif
%%WWWDIR%%/images/RR1.gif
%%WWWDIR%%/images/TL1.gif
%%WWWDIR%%/images/TR1.gif
%%WWWDIR%%/images/TT1.gif
%%WWWDIR%%/images/admin_delete.gif
%%WWWDIR%%/images/admin_hide.gif
%%WWWDIR%%/images/admin_highlight.gif
%%WWWDIR%%/images/admin_move.gif
%%WWWDIR%%/images/admin_rotate.gif
%%WWWDIR%%/images/admin_unhide.gif
%%WWWDIR%%/images/albumthumb_BB.gif
%%WWWDIR%%/images/albumthumb_BL.gif
%%WWWDIR%%/images/albumthumb_BR.gif
%%WWWDIR%%/images/albumthumb_RR.gif
%%WWWDIR%%/images/albumthumb_TR.gif
%%WWWDIR%%/images/bar.gif
%%WWWDIR%%/images/collapse.gif
%%WWWDIR%%/images/colorpicker.png
%%WWWDIR%%/images/colorscale.png
%%WWWDIR%%/images/computer.gif
%%WWWDIR%%/images/donate.png
%%WWWDIR%%/images/ecard_images/00.gif
%%WWWDIR%%/images/ecard_images/01.gif
%%WWWDIR%%/images/ecard_images/02.gif
%%WWWDIR%%/images/ecard_images/03.gif
%%WWWDIR%%/images/ecard_images/04.gif
%%WWWDIR%%/images/ecard_images/05.gif
%%WWWDIR%%/images/ecard_images/06.gif
%%WWWDIR%%/images/ecard_images/07.gif
%%WWWDIR%%/images/ecard_images/08.gif
%%WWWDIR%%/images/ecard_images/09.gif
%%WWWDIR%%/images/ecard_images/10.gif
%%WWWDIR%%/images/ecard_images/11.gif
%%WWWDIR%%/images/ecard_images/12.gif
%%WWWDIR%%/images/ecard_images/13.gif
%%WWWDIR%%/images/ecard_images/14.gif
%%WWWDIR%%/images/ecard_images/15.gif
%%WWWDIR%%/images/ecard_images/16.gif
%%WWWDIR%%/images/ecard_images/17.gif
%%WWWDIR%%/images/ecard_images/18.gif
%%WWWDIR%%/images/ecard_images/19.gif
%%WWWDIR%%/images/ecard_images/20.gif
%%WWWDIR%%/images/ecard_images/21.gif
%%WWWDIR%%/images/ecard_images/22.gif
%%WWWDIR%%/images/ecard_images/23.gif
%%WWWDIR%%/images/ecard_images/24.gif
%%WWWDIR%%/images/ecard_images/25.gif
%%WWWDIR%%/images/ecard_images/26.gif
%%WWWDIR%%/images/ecard_images/27.gif
%%WWWDIR%%/images/ecard_images/eCards.gif
%%WWWDIR%%/images/ecard_images/ecards_eng.png
%%WWWDIR%%/images/ecard_images/icon_help.gif
%%WWWDIR%%/images/ecard_images/icon_square.gif
%%WWWDIR%%/images/ecard_images/leer.gif
%%WWWDIR%%/images/ecard_images/postcard.gif
%%WWWDIR%%/images/expand.gif
%%WWWDIR%%/images/favicon.ico
%%WWWDIR%%/images/g1-phpBB2-icon.png
%%WWWDIR%%/images/gallery-tag.png
%%WWWDIR%%/images/gallery1.gif
%%WWWDIR%%/images/green_trafficlight.gif
%%WWWDIR%%/images/icons/2downarrow.gif
%%WWWDIR%%/images/icons/camera.gif
%%WWWDIR%%/images/icons/cog.png
%%WWWDIR%%/images/icons/comments.png
%%WWWDIR%%/images/icons/compressed.gif
%%WWWDIR%%/images/icons/decrypted.gif
%%WWWDIR%%/images/icons/delete.gif
%%WWWDIR%%/images/icons/ecard.gif
%%WWWDIR%%/images/icons/editcopy.gif
%%WWWDIR%%/images/icons/exit.gif
%%WWWDIR%%/images/icons/folder_new.png
%%WWWDIR%%/images/icons/frame_query.gif
%%WWWDIR%%/images/icons/help.gif
%%WWWDIR%%/images/icons/history.gif
%%WWWDIR%%/images/icons/idea.gif
%%WWWDIR%%/images/icons/identity.gif
%%WWWDIR%%/images/icons/imageedit/flip.gif
%%WWWDIR%%/images/icons/imageedit/mirror.gif
%%WWWDIR%%/images/icons/imageedit/rotate-180.gif
%%WWWDIR%%/images/icons/imageedit/rotate-270.gif
%%WWWDIR%%/images/icons/imageedit/rotate-90.gif
%%WWWDIR%%/images/icons/info.gif
%%WWWDIR%%/images/icons/kcmfontinst.gif
%%WWWDIR%%/images/icons/kdf.gif
%%WWWDIR%%/images/icons/key.gif
%%WWWDIR%%/images/icons/locked.gif
%%WWWDIR%%/images/icons/login.gif
%%WWWDIR%%/images/icons/logout.gif
%%WWWDIR%%/images/icons/map.png
%%WWWDIR%%/images/icons/monitor.png
%%WWWDIR%%/images/icons/navigation/nav_dot.gif
%%WWWDIR%%/images/icons/navigation/nav_dot_left.gif
%%WWWDIR%%/images/icons/navigation/nav_dot_right.gif
%%WWWDIR%%/images/icons/navigation/nav_first.gif
%%WWWDIR%%/images/icons/navigation/nav_home.gif
%%WWWDIR%%/images/icons/navigation/nav_last.gif
%%WWWDIR%%/images/icons/navigation/nav_next.gif
%%WWWDIR%%/images/icons/navigation/nav_page.gif
%%WWWDIR%%/images/icons/navigation/nav_prev.gif
%%WWWDIR%%/images/icons/navigation/return_to.gif
%%WWWDIR%%/images/icons/no_idea.gif
%%WWWDIR%%/images/icons/notice/error.gif
%%WWWDIR%%/images/icons/notice/information.gif
%%WWWDIR%%/images/icons/notice/success.gif
%%WWWDIR%%/images/icons/notice/warning.gif
%%WWWDIR%%/images/icons/picture_edit.png
%%WWWDIR%%/images/icons/preferences.gif
%%WWWDIR%%/images/icons/register.gif
%%WWWDIR%%/images/icons/reload.gif
%%WWWDIR%%/images/icons/showcomment.gif
%%WWWDIR%%/images/icons/slideshow/1leftarrow.gif
%%WWWDIR%%/images/icons/slideshow/1rightarrow.gif
%%WWWDIR%%/images/icons/slideshow/play_stop.gif
%%WWWDIR%%/images/icons/tab_duplicate.gif
%%WWWDIR%%/images/icons/text_list_numbers.png
%%WWWDIR%%/images/icons/tree/join-left.gif
%%WWWDIR%%/images/icons/tree/join-right.gif
%%WWWDIR%%/images/icons/tree/joinbottom-left.gif
%%WWWDIR%%/images/icons/tree/joinbottom-right.gif
%%WWWDIR%%/images/icons/user_gray.gif
%%WWWDIR%%/images/icons/viewmag1.gif
%%WWWDIR%%/images/icons/window_fullscreen.gif
%%WWWDIR%%/images/icons/window_nofullscreen.gif
%%WWWDIR%%/images/icons/yast_kuser.gif
%%WWWDIR%%/images/icons/yast_sysadmin.gif
%%WWWDIR%%/images/icons/yast_sysadmin2.gif
%%WWWDIR%%/images/moorainbow/blank.gif
%%WWWDIR%%/images/moorainbow/moor_arrows.gif
%%WWWDIR%%/images/moorainbow/moor_boverlay.png
%%WWWDIR%%/images/moorainbow/moor_cursor.gif
%%WWWDIR%%/images/moorainbow/moor_slider.png
%%WWWDIR%%/images/moorainbow/moor_woverlay.png
%%WWWDIR%%/images/movie.thumb.jpg
%%WWWDIR%%/images/pixel_trans.gif
%%WWWDIR%%/images/red_trafficlight.gif
%%WWWDIR%%/images/simplex-bkg.gif
%%WWWDIR%%/images/tab_bottom.gif
%%WWWDIR%%/images/uploading.gif
%%WWWDIR%%/images/yellow_red_trafficlight.gif
%%WWWDIR%%/images/yellow_trafficlight.gif
%%WWWDIR%%/includes/add_photos/add_applet.cfg
%%WWWDIR%%/includes/add_photos/add_applet.inc
%%WWWDIR%%/includes/add_photos/add_applet_mini.cfg
%%WWWDIR%%/includes/add_photos/add_applet_mini.inc
%%WWWDIR%%/includes/add_photos/add_form.inc
%%WWWDIR%%/includes/add_photos/add_other.inc
%%WWWDIR%%/includes/add_photos/add_url.inc
%%WWWDIR%%/includes/add_photos/captionOptions.inc.php
%%WWWDIR%%/includes/comments/commentHandling.inc.php
%%WWWDIR%%/includes/definitions/albumProperties.php
%%WWWDIR%%/includes/definitions/mime.mapping.php
%%WWWDIR%%/includes/definitions/navIcons.php
%%WWWDIR%%/includes/definitions/services.php
%%WWWDIR%%/includes/ecard/templates/ecard_1.tpl
%%WWWDIR%%/includes/ecard/templates/error.htm
%%WWWDIR%%/includes/ecard/templates/leer.htm
%%WWWDIR%%/includes/errors/configure_help.php
%%WWWDIR%%/includes/errors/reconfigure.php
%%WWWDIR%%/includes/errors/unconfigured.php
%%WWWDIR%%/includes/slideshow/applet.cfg
%%WWWDIR%%/includes/slideshow/applet.inc
%%WWWDIR%%/includes/slideshow/high.inc
%%WWWDIR%%/includes/slideshow/low.inc
%%WWWDIR%%/includes/stats/stats.inc.php
%%WWWDIR%%/index.php
%%WWWDIR%%/init.php
%%WWWDIR%%/java/GalleryRemoteApplet.jar
%%WWWDIR%%/java/GalleryRemoteAppletMini.jar
%%WWWDIR%%/java/GalleryRemoteHTTPClient.jar
%%WWWDIR%%/java/ImageTools.jar
%%WWWDIR%%/java/applet_img.jar
%%WWWDIR%%/java/metadata-extractor-2.1.jar
%%WWWDIR%%/js/arrowkey_nav.js
%%WWWDIR%%/js/client_sniff.js
%%WWWDIR%%/js/fitToWindow.js.php
%%WWWDIR%%/js/imagemap.js
%%WWWDIR%%/js/jopen.js
%%WWWDIR%%/js/moorainbow/mooRainbow.js.php
%%WWWDIR%%/js/moorainbow/mootools.v1.11.js
%%WWWDIR%%/js/multifile.js.php
%%WWWDIR%%/js/number_conversions.js
%%WWWDIR%%/js/passwordStrengthMeter.js
%%WWWDIR%%/js/progressbar.js
%%WWWDIR%%/js/rgbcolor.js
%%WWWDIR%%/js/sectionTabs.js.php
%%WWWDIR%%/js/toggle.js.php
%%WWWDIR%%/js/wz/tip_balloon.js
%%WWWDIR%%/js/wz/tip_balloon/b.gif
%%WWWDIR%%/js/wz/tip_balloon/background.gif
%%WWWDIR%%/js/wz/tip_balloon/l.gif
%%WWWDIR%%/js/wz/tip_balloon/lb.gif
%%WWWDIR%%/js/wz/tip_balloon/lt.gif
%%WWWDIR%%/js/wz/tip_balloon/r.gif
%%WWWDIR%%/js/wz/tip_balloon/rb.gif
%%WWWDIR%%/js/wz/tip_balloon/rt.gif
%%WWWDIR%%/js/wz/tip_balloon/stemb.gif
%%WWWDIR%%/js/wz/tip_balloon/stemt.gif
%%WWWDIR%%/js/wz/tip_balloon/t.gif
%%WWWDIR%%/js/wz/wz_jsgraphics.js
%%WWWDIR%%/js/wz/wz_tooltip.js
%%WWWDIR%%/layout/adminbox.inc
%%WWWDIR%%/layout/breadcrumb.inc
%%WWWDIR%%/layout/commentbox.inc
%%WWWDIR%%/layout/commentboxbottom.inc
%%WWWDIR%%/layout/commentboxtop.inc
%%WWWDIR%%/layout/commentdraw.inc
%%WWWDIR%%/layout/navigator.inc
%%WWWDIR%%/layout/navmicro.inc
%%WWWDIR%%/layout/navphoto.inc
%%WWWDIR%%/layout/navtablebegin.inc
%%WWWDIR%%/layout/navtableend.inc
%%WWWDIR%%/layout/navtablemiddle.inc
%%WWWDIR%%/layout/searchdraw.inc
%%WWWDIR%%/layout/watermarkform.inc
%%WWWDIR%%/lib/album.php
%%WWWDIR%%/lib/albumItem.php
%%WWWDIR%%/lib/content.php
%%WWWDIR%%/lib/filesystem.php
%%WWWDIR%%/lib/filetypes.php
%%WWWDIR%%/lib/form.php
%%WWWDIR%%/lib/imageManipulation.php
%%WWWDIR%%/lib/lang.php
%%WWWDIR%%/lib/mail.php
%%WWWDIR%%/lib/messages.php
%%WWWDIR%%/lib/popup.php
%%WWWDIR%%/lib/progressbar.php
%%WWWDIR%%/lib/setup.php
%%WWWDIR%%/lib/stats.php
%%WWWDIR%%/lib/text.php
%%WWWDIR%%/lib/url.php
%%WWWDIR%%/lib/users.php
%%WWWDIR%%/lib/valchecks.php
%%WWWDIR%%/lib/voting.php
%%NLS%%%%WWWDIR%%/locale/af_ZA/LC_MESSAGES/af_ZA-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/af_ZA/LC_MESSAGES/af_ZA-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/af_ZA/LC_MESSAGES/af_ZA-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/af_ZA/af_ZA-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/af_ZA/af_ZA-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/af_ZA/af_ZA-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/af_ZA/af_ZA-nls.php
%%NLS%%%%WWWDIR%%/locale/af_ZA/flagimage/af_ZA.gif
%%NLS%%%%WWWDIR%%/locale/ar_EG/LC_MESSAGES/ar_EG-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/ar_EG/LC_MESSAGES/ar_EG-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/ar_EG/ar_EG-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/ar_EG/ar_EG-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/ar_EG/ar_EG-nls.php
%%NLS%%%%WWWDIR%%/locale/ar_EG/flagimage/ar_EG.gif
%%NLS%%%%WWWDIR%%/locale/bg_BG/LC_MESSAGES/bg_BG-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/bg_BG/LC_MESSAGES/bg_BG-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/bg_BG/LC_MESSAGES/bg_BG-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/bg_BG/bg_BG-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/bg_BG/bg_BG-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/bg_BG/bg_BG-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/bg_BG/bg_BG-nls.php
%%NLS%%%%WWWDIR%%/locale/bg_BG/flagimage/bg_BG.gif
%%NLS%%%%WWWDIR%%/locale/ca_ES/LC_MESSAGES/ca_ES-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/ca_ES/LC_MESSAGES/ca_ES-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/ca_ES/ca_ES-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/ca_ES/ca_ES-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/ca_ES/ca_ES-nls.php
%%NLS%%%%WWWDIR%%/locale/ca_ES/flagimage/ca_ES.gif
%%NLS%%%%WWWDIR%%/locale/cs_CZ.cp1250/LC_MESSAGES/cs_CZ.cp1250-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/cs_CZ.cp1250/LC_MESSAGES/cs_CZ.cp1250-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/cs_CZ.cp1250/cs_CZ.cp1250-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/cs_CZ.cp1250/cs_CZ.cp1250-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/cs_CZ.cp1250/cs_CZ.cp1250-nls.php
%%NLS%%%%WWWDIR%%/locale/cs_CZ.cp1250/flagimage/cs_CZ.cp1250.gif
%%NLS%%%%WWWDIR%%/locale/cs_CZ.iso-8859-2/LC_MESSAGES/cs_CZ.iso-8859-2-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/cs_CZ.iso-8859-2/LC_MESSAGES/cs_CZ.iso-8859-2-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/cs_CZ.iso-8859-2/LC_MESSAGES/cs_CZ.iso-8859-2-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/cs_CZ.iso-8859-2/cs_CZ.iso-8859-2-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/cs_CZ.iso-8859-2/cs_CZ.iso-8859-2-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/cs_CZ.iso-8859-2/cs_CZ.iso-8859-2-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/cs_CZ.iso-8859-2/cs_CZ.iso-8859-2-nls.php
%%NLS%%%%WWWDIR%%/locale/cs_CZ.iso-8859-2/flagimage/cs_CZ.iso-8859-2.gif
%%NLS%%%%WWWDIR%%/locale/da_DK/LC_MESSAGES/da_DK-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/da_DK/LC_MESSAGES/da_DK-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/da_DK/LC_MESSAGES/da_DK-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/da_DK/da_DK-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/da_DK/da_DK-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/da_DK/da_DK-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/da_DK/da_DK-nls.php
%%NLS%%%%WWWDIR%%/locale/da_DK/flagimage/da_DK.gif
%%NLS%%%%WWWDIR%%/locale/de_DE/LC_MESSAGES/de_DE-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/de_DE/LC_MESSAGES/de_DE-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/de_DE/LC_MESSAGES/de_DE-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/de_DE/de_DE-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/de_DE/de_DE-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/de_DE/de_DE-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/de_DE/de_DE-nls.php
%%NLS%%%%WWWDIR%%/locale/de_DE/flagimage/de_DE.gif
%%NLS%%%%WWWDIR%%/locale/en_GB/LC_MESSAGES/en_GB-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/en_GB/LC_MESSAGES/en_GB-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/en_GB/en_GB-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/en_GB/en_GB-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/en_GB/en_GB-nls.php
%%NLS%%%%WWWDIR%%/locale/en_GB/flagimage/en_GB.gif
%%NLS%%%%WWWDIR%%/locale/en_US/flagimage/en_US.gif
%%NLS%%%%WWWDIR%%/locale/es_ES/LC_MESSAGES/es_ES-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/es_ES/LC_MESSAGES/es_ES-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/es_ES/LC_MESSAGES/es_ES-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/es_ES/es_ES-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/es_ES/es_ES-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/es_ES/es_ES-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/es_ES/es_ES-nls.php
%%NLS%%%%WWWDIR%%/locale/es_ES/flagimage/es_ES.gif
%%NLS%%%%WWWDIR%%/locale/fi_FI/LC_MESSAGES/fi_FI-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/fi_FI/LC_MESSAGES/fi_FI-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/fi_FI/LC_MESSAGES/fi_FI-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/fi_FI/fi_FI-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/fi_FI/fi_FI-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/fi_FI/fi_FI-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/fi_FI/fi_FI-nls.php
%%NLS%%%%WWWDIR%%/locale/fi_FI/flagimage/fi_FI.gif
%%NLS%%%%WWWDIR%%/locale/fr_FR/LC_MESSAGES/fr_FR-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/fr_FR/LC_MESSAGES/fr_FR-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/fr_FR/LC_MESSAGES/fr_FR-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/fr_FR/flagimage/fr_FR.gif
%%NLS%%%%WWWDIR%%/locale/fr_FR/fr_FR-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/fr_FR/fr_FR-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/fr_FR/fr_FR-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/fr_FR/fr_FR-nls.php
%%NLS%%%%WWWDIR%%/locale/gl_ES/LC_MESSAGES/gl_ES-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/gl_ES/LC_MESSAGES/gl_ES-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/gl_ES/flagimage/gl_ES.gif
%%NLS%%%%WWWDIR%%/locale/gl_ES/gl_ES-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/gl_ES/gl_ES-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/gl_ES/gl_ES-nls.php
%%NLS%%%%WWWDIR%%/locale/hu_HU/LC_MESSAGES/hu_HU-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/hu_HU/LC_MESSAGES/hu_HU-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/hu_HU/flagimage/hu_HU.gif
%%NLS%%%%WWWDIR%%/locale/hu_HU/hu_HU-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/hu_HU/hu_HU-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/hu_HU/hu_HU-nls.php
%%NLS%%%%WWWDIR%%/locale/is_IS/LC_MESSAGES/is_IS-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/is_IS/LC_MESSAGES/is_IS-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/is_IS/LC_MESSAGES/is_IS-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/is_IS/flagimage/is_IS.gif
%%NLS%%%%WWWDIR%%/locale/is_IS/is_IS-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/is_IS/is_IS-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/is_IS/is_IS-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/is_IS/is_IS-nls.php
%%NLS%%%%WWWDIR%%/locale/it_IT/LC_MESSAGES/it_IT-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/it_IT/LC_MESSAGES/it_IT-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/it_IT/LC_MESSAGES/it_IT-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/it_IT/flagimage/it_IT.gif
%%NLS%%%%WWWDIR%%/locale/it_IT/it_IT-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/it_IT/it_IT-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/it_IT/it_IT-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/it_IT/it_IT-nls.php
%%NLS%%%%WWWDIR%%/locale/ja_JP.utf8/LC_MESSAGES/ja_JP.utf8-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/ja_JP.utf8/LC_MESSAGES/ja_JP.utf8-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/ja_JP.utf8/flagimage/ja_JP.utf8.gif
%%NLS%%%%WWWDIR%%/locale/ja_JP.utf8/ja_JP.utf8-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/ja_JP.utf8/ja_JP.utf8-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/ja_JP.utf8/ja_JP.utf8-nls.php
%%NLS%%%%WWWDIR%%/locale/ja_JP/LC_MESSAGES/ja_JP-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/ja_JP/LC_MESSAGES/ja_JP-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/ja_JP/LC_MESSAGES/ja_JP-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/ja_JP/flagimage/ja_JP.gif
%%NLS%%%%WWWDIR%%/locale/ja_JP/ja_JP-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/ja_JP/ja_JP-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/ja_JP/ja_JP-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/ja_JP/ja_JP-nls.php
%%NLS%%%%WWWDIR%%/locale/ko_KR/LC_MESSAGES/ko_KR-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/ko_KR/LC_MESSAGES/ko_KR-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/ko_KR/LC_MESSAGES/ko_KR-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/ko_KR/flagimage/ko_KR.gif
%%NLS%%%%WWWDIR%%/locale/ko_KR/ko_KR-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/ko_KR/ko_KR-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/ko_KR/ko_KR-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/ko_KR/ko_KR-nls.php
%%NLS%%%%WWWDIR%%/locale/lt_LT/LC_MESSAGES/lt_LT-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/lt_LT/LC_MESSAGES/lt_LT-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/lt_LT/flagimage/lt_LT.gif
%%NLS%%%%WWWDIR%%/locale/lt_LT/lt_LT-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/lt_LT/lt_LT-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/lt_LT/lt_LT-nls.php
%%NLS%%%%WWWDIR%%/locale/nl_NL/LC_MESSAGES/nl_NL-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/nl_NL/LC_MESSAGES/nl_NL-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/nl_NL/LC_MESSAGES/nl_NL-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/nl_NL/flagimage/nl_NL.gif
%%NLS%%%%WWWDIR%%/locale/nl_NL/nl_NL-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/nl_NL/nl_NL-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/nl_NL/nl_NL-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/nl_NL/nl_NL-nls.php
%%NLS%%%%WWWDIR%%/locale/no_NO/LC_MESSAGES/no_NO-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/no_NO/LC_MESSAGES/no_NO-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/no_NO/LC_MESSAGES/no_NO-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/no_NO/flagimage/no_NO.gif
%%NLS%%%%WWWDIR%%/locale/no_NO/no_NO-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/no_NO/no_NO-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/no_NO/no_NO-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/no_NO/no_NO-nls.php
%%NLS%%%%WWWDIR%%/locale/pl_PL/LC_MESSAGES/pl_PL-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/pl_PL/LC_MESSAGES/pl_PL-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/pl_PL/LC_MESSAGES/pl_PL-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/pl_PL/flagimage/pl_PL.gif
%%NLS%%%%WWWDIR%%/locale/pl_PL/pl_PL-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/pl_PL/pl_PL-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/pl_PL/pl_PL-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/pl_PL/pl_PL-nls.php
%%NLS%%%%WWWDIR%%/locale/pt_BR/LC_MESSAGES/pt_BR-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/pt_BR/LC_MESSAGES/pt_BR-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/pt_BR/LC_MESSAGES/pt_BR-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/pt_BR/flagimage/pt_BR.gif
%%NLS%%%%WWWDIR%%/locale/pt_BR/pt_BR-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/pt_BR/pt_BR-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/pt_BR/pt_BR-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/pt_BR/pt_BR-nls.php
%%NLS%%%%WWWDIR%%/locale/pt_PT/LC_MESSAGES/pt_PT-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/pt_PT/LC_MESSAGES/pt_PT-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/pt_PT/flagimage/pt_PT.gif
%%NLS%%%%WWWDIR%%/locale/pt_PT/pt_PT-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/pt_PT/pt_PT-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/pt_PT/pt_PT-nls.php
%%NLS%%%%WWWDIR%%/locale/ru_RU.cp1251/LC_MESSAGES/ru_RU.cp1251-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/ru_RU.cp1251/LC_MESSAGES/ru_RU.cp1251-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/ru_RU.cp1251/LC_MESSAGES/ru_RU.cp1251-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/ru_RU.cp1251/flagimage/ru_RU.cp1251.gif
%%NLS%%%%WWWDIR%%/locale/ru_RU.cp1251/ru_RU.cp1251-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/ru_RU.cp1251/ru_RU.cp1251-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/ru_RU.cp1251/ru_RU.cp1251-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/ru_RU.cp1251/ru_RU.cp1251-nls.php
%%NLS%%%%WWWDIR%%/locale/ru_RU.koi8r/LC_MESSAGES/ru_RU.koi8r-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/ru_RU.koi8r/LC_MESSAGES/ru_RU.koi8r-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/ru_RU.koi8r/flagimage/ru_RU.koi8r.gif
%%NLS%%%%WWWDIR%%/locale/ru_RU.koi8r/ru_RU.koi8r-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/ru_RU.koi8r/ru_RU.koi8r-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/ru_RU.koi8r/ru_RU.koi8r-nls.php
%%NLS%%%%WWWDIR%%/locale/sk_SK/LC_MESSAGES/sk_SK-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/sk_SK/LC_MESSAGES/sk_SK-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/sk_SK/flagimage/sk_SK.gif
%%NLS%%%%WWWDIR%%/locale/sk_SK/sk_SK-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/sk_SK/sk_SK-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/sk_SK/sk_SK-nls.php
%%NLS%%%%WWWDIR%%/locale/sl_SI/LC_MESSAGES/sl_SI-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/sl_SI/LC_MESSAGES/sl_SI-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/sl_SI/flagimage/sl_SI.gif
%%NLS%%%%WWWDIR%%/locale/sl_SI/sl_SI-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/sl_SI/sl_SI-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/sl_SI/sl_SI-nls.php
%%NLS%%%%WWWDIR%%/locale/sv_SE/LC_MESSAGES/sv_SE-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/sv_SE/LC_MESSAGES/sv_SE-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/sv_SE/LC_MESSAGES/sv_SE-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/sv_SE/flagimage/sv_SE.gif
%%NLS%%%%WWWDIR%%/locale/sv_SE/sv_SE-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/sv_SE/sv_SE-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/sv_SE/sv_SE-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/sv_SE/sv_SE-nls.php
%%NLS%%%%WWWDIR%%/locale/tr_TR/LC_MESSAGES/tr_TR-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/tr_TR/LC_MESSAGES/tr_TR-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/tr_TR/flagimage/tr_TR.gif
%%NLS%%%%WWWDIR%%/locale/tr_TR/tr_TR-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/tr_TR/tr_TR-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/tr_TR/tr_TR-nls.php
%%NLS%%%%WWWDIR%%/locale/vi_VN/LC_MESSAGES/vi_VN-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/vi_VN/LC_MESSAGES/vi_VN-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/vi_VN/flagimage/vi_VN.gif
%%NLS%%%%WWWDIR%%/locale/vi_VN/vi_VN-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/vi_VN/vi_VN-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/vi_VN/vi_VN-nls.php
%%NLS%%%%WWWDIR%%/locale/zh_HK.utf8/LC_MESSAGES/zh_HK.utf8-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/zh_HK.utf8/LC_MESSAGES/zh_HK.utf8-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/zh_HK.utf8/LC_MESSAGES/zh_HK.utf8-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/zh_HK.utf8/flagimage/zh_HK.gif
%%NLS%%%%WWWDIR%%/locale/zh_HK.utf8/zh_HK.utf8-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/zh_HK.utf8/zh_HK.utf8-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/zh_HK.utf8/zh_HK.utf8-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/zh_HK.utf8/zh_HK.utf8-nls.php
%%NLS%%%%WWWDIR%%/locale/zh_HK/LC_MESSAGES/zh_HK-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/zh_HK/LC_MESSAGES/zh_HK-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/zh_HK/LC_MESSAGES/zh_HK-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/zh_HK/flagimage/zh_TW.gif
%%NLS%%%%WWWDIR%%/locale/zh_HK/zh_HK-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/zh_HK/zh_HK-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/zh_HK/zh_HK-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/zh_HK/zh_HK-nls.php
%%NLS%%%%WWWDIR%%/locale/zh_TW.utf8/LC_MESSAGES/zh_TW.utf8-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/zh_TW.utf8/LC_MESSAGES/zh_TW.utf8-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/zh_TW.utf8/LC_MESSAGES/zh_TW.utf8-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/zh_TW.utf8/flagimage/zh_TW.utf8.gif
%%NLS%%%%WWWDIR%%/locale/zh_TW.utf8/zh_TW.utf8-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/zh_TW.utf8/zh_TW.utf8-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/zh_TW.utf8/zh_TW.utf8-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/zh_TW.utf8/zh_TW.utf8-nls.php
%%NLS%%%%WWWDIR%%/locale/zh_TW/LC_MESSAGES/zh_TW-gallery_common.mo
%%NLS%%%%WWWDIR%%/locale/zh_TW/LC_MESSAGES/zh_TW-gallery_config.mo
%%NLS%%%%WWWDIR%%/locale/zh_TW/LC_MESSAGES/zh_TW-gallery_core.mo
%%NLS%%%%WWWDIR%%/locale/zh_TW/flagimage/zh_TW.gif
%%NLS%%%%WWWDIR%%/locale/zh_TW/zh_TW-gallery_common.po
%%NLS%%%%WWWDIR%%/locale/zh_TW/zh_TW-gallery_config.po
%%NLS%%%%WWWDIR%%/locale/zh_TW/zh_TW-gallery_core.po
%%NLS%%%%WWWDIR%%/locale/zh_TW/zh_TW-nls.php
%%WWWDIR%%/login.php
%%WWWDIR%%/manage_users.php
%%WWWDIR%%/manifest.inc
%%WWWDIR%%/modify_user.php
%%WWWDIR%%/move_album.php
%%WWWDIR%%/move_photo.php
%%WWWDIR%%/multi_create_user.php
%%WWWDIR%%/new_password.php
%%WWWDIR%%/nls.php
%%WWWDIR%%/photo_owner.php
%%WWWDIR%%/platform/fs_unix.php
%%WWWDIR%%/platform/fs_win32.php
%%WWWDIR%%/po/CREDITS
%%WWWDIR%%/po/change_version.sh
%%WWWDIR%%/po/copyright-header.txt
%%WWWDIR%%/po/create_po_template.sh
%%WWWDIR%%/po/edit_changelog.sh
%%WWWDIR%%/po/filelist-common
%%WWWDIR%%/po/filelist-config
%%WWWDIR%%/po/filelist-core
%%WWWDIR%%/po/gallery-common.pot
%%WWWDIR%%/po/gallery-config.pot
%%WWWDIR%%/po/gallery-core.pot
%%WWWDIR%%/po/make_mo_files.sh
%%WWWDIR%%/po/remove_obsolete.pl
%%WWWDIR%%/po/transform_fuzzy.pl
%%WWWDIR%%/po/update_po_files.sh
%%WWWDIR%%/poll_properties.php
%%WWWDIR%%/poll_results.php
%%WWWDIR%%/progress_uploading.php
%%WWWDIR%%/publish_xp.php
%%WWWDIR%%/publish_xp_docs.php
%%WWWDIR%%/rearrange.php
%%WWWDIR%%/rebuild_capture_dates.php
%%WWWDIR%%/rebuild_thumbs.php
%%WWWDIR%%/register.php
%%WWWDIR%%/rename_album.php
%%WWWDIR%%/reset_votes.php
%%WWWDIR%%/resize_photo.php
%%WWWDIR%%/rotate_photo.php
%%WWWDIR%%/rss.php
%%WWWDIR%%/save_photos.php
%%WWWDIR%%/search.php
%%WWWDIR%%/secure.sh
%%WWWDIR%%/session.php
%%WWWDIR%%/setup/.htaccess
%%WWWDIR%%/setup/check.inc
%%WWWDIR%%/setup/check_imagemagick.php
%%WWWDIR%%/setup/check_mail.php
%%WWWDIR%%/setup/check_netpbm.php
%%WWWDIR%%/setup/check_versions.php
%%WWWDIR%%/setup/config_data.inc
%%WWWDIR%%/setup/confirm.inc
%%WWWDIR%%/setup/constants.inc
%%WWWDIR%%/setup/defaults.inc
%%WWWDIR%%/setup/diagnostics.php
%%WWWDIR%%/setup/frame_test.php
%%WWWDIR%%/setup/ghcc.php
%%WWWDIR%%/setup/gpl.txt
%%WWWDIR%%/setup/index.php
%%WWWDIR%%/setup/init.php
%%WWWDIR%%/setup/login.inc
%%WWWDIR%%/setup/mod_rewrite.template
%%WWWDIR%%/setup/php_value.template
%%WWWDIR%%/setup/php_value_ok.php
%%WWWDIR%%/setup/phpinfo.php
%%WWWDIR%%/setup/session_test.php
%%WWWDIR%%/setup/write.inc
%%WWWDIR%%/skins/bars002/css/screen.css
%%WWWDIR%%/skins/bars002/images/navbar.jpg
%%WWWDIR%%/skins/bars002/images/screenshot.jpg
%%WWWDIR%%/skins/bars002/images/topbar.jpg
%%WWWDIR%%/skins/bars002/style.def
%%WWWDIR%%/skins/bars014/css/screen.css
%%WWWDIR%%/skins/bars014/images/mod_highlight_bg.jpg
%%WWWDIR%%/skins/bars014/images/mod_highlight_left.jpg
%%WWWDIR%%/skins/bars014/images/mod_highlight_right.jpg
%%WWWDIR%%/skins/bars014/images/navbar.jpg
%%WWWDIR%%/skins/bars014/images/screenshot.jpg
%%WWWDIR%%/skins/bars014/style.def
%%WWWDIR%%/skins/bblue/css/screen.css
%%WWWDIR%%/skins/bblue/images/mod_headliner.jpg
%%WWWDIR%%/skins/bblue/images/mod_navbar.jpg
%%WWWDIR%%/skins/bblue/images/mod_toplight_bg.jpg
%%WWWDIR%%/skins/bblue/images/mod_toplight_left.jpg
%%WWWDIR%%/skins/bblue/images/mod_toplight_right.jpg
%%WWWDIR%%/skins/bblue/images/mod_under_hl.jpg
%%WWWDIR%%/skins/bblue/images/screenshot.jpg
%%WWWDIR%%/skins/bblue/style.def
%%WWWDIR%%/skins/bgreen/css/screen.css
%%WWWDIR%%/skins/bgreen/images/mod_headliner.jpg
%%WWWDIR%%/skins/bgreen/images/mod_navbar.jpg
%%WWWDIR%%/skins/bgreen/images/mod_toplight_bg.jpg
%%WWWDIR%%/skins/bgreen/images/mod_toplight_left.gif
%%WWWDIR%%/skins/bgreen/images/mod_toplight_left.jpg
%%WWWDIR%%/skins/bgreen/images/mod_toplight_right.gif
%%WWWDIR%%/skins/bgreen/images/mod_toplight_right.jpg
%%WWWDIR%%/skins/bgreen/images/mod_under_hl.jpg
%%WWWDIR%%/skins/bgreen/images/screenshot.jpg
%%WWWDIR%%/skins/bgreen/style.def
%%WWWDIR%%/skins/bgreen2/css/screen.css
%%WWWDIR%%/skins/bgreen2/images/mod_headliner.jpg
%%WWWDIR%%/skins/bgreen2/images/mod_navbar.jpg
%%WWWDIR%%/skins/bgreen2/images/mod_toplight_bg.jpg
%%WWWDIR%%/skins/bgreen2/images/mod_toplight_left.jpg
%%WWWDIR%%/skins/bgreen2/images/mod_toplight_right.jpg
%%WWWDIR%%/skins/bgreen2/images/mod_under_hl.jpg
%%WWWDIR%%/skins/bgreen2/images/screenshot.jpg
%%WWWDIR%%/skins/bgreen2/style.def
%%WWWDIR%%/skins/black/css/screen.css
%%WWWDIR%%/skins/black/images/mod_navbar.jpg
%%WWWDIR%%/skins/black/images/mod_titlebar.jpg
%%WWWDIR%%/skins/black/images/screenshot.jpg
%%WWWDIR%%/skins/black/style.def
%%WWWDIR%%/skins/bluemod/css/screen.css
%%WWWDIR%%/skins/bluemod/images/mod_background.jpg
%%WWWDIR%%/skins/bluemod/images/mod_navbar.jpg
%%WWWDIR%%/skins/bluemod/images/mod_titlebar.jpg
%%WWWDIR%%/skins/bluemod/images/mod_titlemid.jpg
%%WWWDIR%%/skins/bluemod/images/screenshot.jpg
%%WWWDIR%%/skins/bluemod/style.def
%%WWWDIR%%/skins/bpurple/css/screen.css
%%WWWDIR%%/skins/bpurple/images/mod_headliner.jpg
%%WWWDIR%%/skins/bpurple/images/mod_navbar.jpg
%%WWWDIR%%/skins/bpurple/images/mod_toplight_bg.jpg
%%WWWDIR%%/skins/bpurple/images/mod_toplight_left.jpg
%%WWWDIR%%/skins/bpurple/images/mod_toplight_right.jpg
%%WWWDIR%%/skins/bpurple/images/mod_under_hl.jpg
%%WWWDIR%%/skins/bpurple/images/screenshot.jpg
%%WWWDIR%%/skins/bpurple/style.def
%%WWWDIR%%/skins/bred/css/screen.css
%%WWWDIR%%/skins/bred/images/mod_headliner.jpg
%%WWWDIR%%/skins/bred/images/mod_navbar.jpg
%%WWWDIR%%/skins/bred/images/mod_toplight_bg.jpg
%%WWWDIR%%/skins/bred/images/mod_toplight_left.gif
%%WWWDIR%%/skins/bred/images/mod_toplight_left.jpg
%%WWWDIR%%/skins/bred/images/mod_toplight_right.gif
%%WWWDIR%%/skins/bred/images/mod_toplight_right.jpg
%%WWWDIR%%/skins/bred/images/mod_under_hl.jpg
%%WWWDIR%%/skins/bred/images/screenshot.jpg
%%WWWDIR%%/skins/bred/style.def
%%WWWDIR%%/skins/bubbles/css/screen.css
%%WWWDIR%%/skins/bubbles/images/mod_navbar.jpg
%%WWWDIR%%/skins/bubbles/images/mod_toplight_bg.jpg
%%WWWDIR%%/skins/bubbles/images/mod_toplight_left.jpg
%%WWWDIR%%/skins/bubbles/images/mod_toplight_right.jpg
%%WWWDIR%%/skins/bubbles/images/screenshot.jpg
%%WWWDIR%%/skins/bubbles/style.def
%%WWWDIR%%/skins/butterfly_green/css/screen.css
%%WWWDIR%%/skins/butterfly_green/images/mod_box.jpg
%%WWWDIR%%/skins/butterfly_green/images/mod_headliner.jpg
%%WWWDIR%%/skins/butterfly_green/images/mod_navbar.jpg
%%WWWDIR%%/skins/butterfly_green/images/mod_toplight_bg.jpg
%%WWWDIR%%/skins/butterfly_green/images/mod_toplight_left.jpg
%%WWWDIR%%/skins/butterfly_green/images/screenshot.jpg
%%WWWDIR%%/skins/butterfly_green/style.def
%%WWWDIR%%/skins/greenpurple/css/screen.css
%%WWWDIR%%/skins/greenpurple/images/mod_descbg.jpg
%%WWWDIR%%/skins/greenpurple/images/mod_navbar.jpg
%%WWWDIR%%/skins/greenpurple/images/mod_navbox.jpg
%%WWWDIR%%/skins/greenpurple/images/mod_titlebar.jpg
%%WWWDIR%%/skins/greenpurple/images/mod_titlelft.jpg
%%WWWDIR%%/skins/greenpurple/images/mod_titlemid.jpg
%%WWWDIR%%/skins/greenpurple/images/mod_titlert.jpg
%%WWWDIR%%/skins/greenpurple/images/screenshot.jpg
%%WWWDIR%%/skins/greenpurple/style.def
%%WWWDIR%%/skins/hotred/css/screen.css
%%WWWDIR%%/skins/hotred/images/mod_descbg.jpg
%%WWWDIR%%/skins/hotred/images/mod_descbox.jpg
%%WWWDIR%%/skins/hotred/images/mod_navbar.jpg
%%WWWDIR%%/skins/hotred/images/mod_navbox.jpg
%%WWWDIR%%/skins/hotred/images/mod_titlebar.jpg
%%WWWDIR%%/skins/hotred/images/mod_titlemid.jpg
%%WWWDIR%%/skins/hotred/images/screenshot.jpg
%%WWWDIR%%/skins/hotred/style.def
%%WWWDIR%%/skins/jenskin/css/screen.css
%%WWWDIR%%/skins/jenskin/images/screenshot.jpg
%%WWWDIR%%/skins/jenskin/images/simplex-bkg.gif
%%WWWDIR%%/skins/jenskin/style.def
%%WWWDIR%%/skins/lilac/css/screen.css
%%WWWDIR%%/skins/lilac/images/mod_descbg.jpg
%%WWWDIR%%/skins/lilac/images/mod_navbar.jpg
%%WWWDIR%%/skins/lilac/images/mod_navbox.jpg
%%WWWDIR%%/skins/lilac/images/mod_titlebar.jpg
%%WWWDIR%%/skins/lilac/images/mod_titlemid.jpg
%%WWWDIR%%/skins/lilac/images/screenshot.jpg
%%WWWDIR%%/skins/lilac/style.def
%%WWWDIR%%/skins/madmod1/css/screen.css
%%WWWDIR%%/skins/madmod1/images/background.jpg
%%WWWDIR%%/skins/madmod1/images/background9.jpg
%%WWWDIR%%/skins/madmod1/images/bar.gif
%%WWWDIR%%/skins/madmod1/images/button9.jpg
%%WWWDIR%%/skins/madmod1/images/gallery9.jpg
%%WWWDIR%%/skins/madmod1/images/headbg9.jpg
%%WWWDIR%%/skins/madmod1/images/navbg9.jpg
%%WWWDIR%%/skins/madmod1/images/next9.jpg
%%WWWDIR%%/skins/madmod1/images/prev9.jpg
%%WWWDIR%%/skins/madmod1/images/screenshot.jpg
%%WWWDIR%%/skins/madmod1/images/titlehead9.jpg
%%WWWDIR%%/skins/madmod1/style.def
%%WWWDIR%%/skins/madmod1/tpl/album.footer.tpl
%%WWWDIR%%/skins/madmod1/tpl/album.header.tpl
%%WWWDIR%%/skins/madmod1/tpl/breadcrumb.tpl
%%WWWDIR%%/skins/madmod1/tpl/footer.tpl
%%WWWDIR%%/skins/madmod1/tpl/gallery.footer.tpl
%%WWWDIR%%/skins/madmod1/tpl/gallery.header.tpl
%%WWWDIR%%/skins/madmod1/tpl/header.tpl
%%WWWDIR%%/skins/madmod1/tpl/menu.tpl
%%WWWDIR%%/skins/madmod1/tpl/navigator.tpl
%%WWWDIR%%/skins/madmod1/tpl/navphoto.tpl
%%WWWDIR%%/skins/madmod1/tpl/photo.footer.tpl
%%WWWDIR%%/skins/madmod1/tpl/photo.header.tpl
%%WWWDIR%%/skins/madmod1/tpl/search.footer.tpl
%%WWWDIR%%/skins/madmod1/tpl/search.header.tpl
%%WWWDIR%%/skins/madmod1/tpl/slideshow.footer.tpl
%%WWWDIR%%/skins/madmod1/tpl/slideshow.header.tpl
%%WWWDIR%%/skins/paint/css/screen.css
%%WWWDIR%%/skins/paint/images/mod_background.jpg
%%WWWDIR%%/skins/paint/images/mod_descbg.jpg
%%WWWDIR%%/skins/paint/images/mod_navbar.jpg
%%WWWDIR%%/skins/paint/images/mod_toplight_bg.jpg
%%WWWDIR%%/skins/paint/images/mod_toplight_left.gif
%%WWWDIR%%/skins/paint/images/mod_toplight_right.gif
%%WWWDIR%%/skins/paint/images/screenshot.jpg
%%WWWDIR%%/skins/paint/style.def
%%WWWDIR%%/skins/redmarble/css/screen.css
%%WWWDIR%%/skins/redmarble/images/mod_background.jpg
%%WWWDIR%%/skins/redmarble/images/mod_navbar.jpg
%%WWWDIR%%/skins/redmarble/images/mod_titlebar.jpg
%%WWWDIR%%/skins/redmarble/images/mod_titlemid.jpg
%%WWWDIR%%/skins/redmarble/images/screenshot.jpg
%%WWWDIR%%/skins/redmarble/style.def
%%WWWDIR%%/skins/slick/css/screen.css
%%WWWDIR%%/skins/slick/images/mod_background.jpg
%%WWWDIR%%/skins/slick/images/mod_descbg.jpg
%%WWWDIR%%/skins/slick/images/mod_headliner.jpg
%%WWWDIR%%/skins/slick/images/mod_navbar.jpg
%%WWWDIR%%/skins/slick/images/mod_pixel.gif
%%WWWDIR%%/skins/slick/images/mod_title.jpg
%%WWWDIR%%/skins/slick/images/mod_title_bg.jpg
%%WWWDIR%%/skins/slick/images/mod_title_left.jpg
%%WWWDIR%%/skins/slick/images/mod_title_right.jpg
%%WWWDIR%%/skins/slick/images/mod_titlemid.jpg
%%WWWDIR%%/skins/slick/images/mod_toplight_bg.jpg
%%WWWDIR%%/skins/slick/images/mod_toplight_left.jpg
%%WWWDIR%%/skins/slick/images/mod_toplight_right.jpg
%%WWWDIR%%/skins/slick/images/screenshot.jpg
%%WWWDIR%%/skins/slick/style.def
%%WWWDIR%%/skins/suit/css/screen.css
%%WWWDIR%%/skins/suit/images/mod_navbar.jpg
%%WWWDIR%%/skins/suit/images/mod_titlebar.jpg
%%WWWDIR%%/skins/suit/images/mod_titlemid.jpg
%%WWWDIR%%/skins/suit/images/screenshot.jpg
%%WWWDIR%%/skins/suit/style.def
%%WWWDIR%%/skins/white1/css/screen.css
%%WWWDIR%%/skins/white1/images/mod_navbar.jpg
%%WWWDIR%%/skins/white1/images/mod_titlebar.jpg
%%WWWDIR%%/skins/white1/images/mod_titlemid.jpg
%%WWWDIR%%/skins/white1/images/screenshot.jpg
%%WWWDIR%%/skins/white1/style.def
%%WWWDIR%%/skins/yellow/css/screen.css
%%WWWDIR%%/skins/yellow/images/mod_navbar.jpg
%%WWWDIR%%/skins/yellow/images/mod_titlebar.jpg
%%WWWDIR%%/skins/yellow/images/mod_titlemid.jpg
%%WWWDIR%%/skins/yellow/images/screenshot.jpg
%%WWWDIR%%/skins/yellow/style.def
%%WWWDIR%%/slideshow.php
%%WWWDIR%%/sort_album.php
%%WWWDIR%%/stamp_preview.php
%%WWWDIR%%/stats-wizard.php
%%WWWDIR%%/stats.php
%%WWWDIR%%/tools/build_manifest_1_4.php
%%WWWDIR%%/tools/despam-comments.php
%%WWWDIR%%/tools/find_orphans.php
%%WWWDIR%%/tools/g1-makereport.php
%%WWWDIR%%/tools/g1-report.css
%%WWWDIR%%/tools/g1-report.php
%%WWWDIR%%/tools/include/main.inc
%%WWWDIR%%/tools/include/plugin_rowdata.inc
%%WWWDIR%%/tools/include/row_header.inc
%%WWWDIR%%/tools/lib/lib-validate_albums.php
%%WWWDIR%%/tools/validate_albums.php
%%WWWDIR%%/upgrade_album.php
%%WWWDIR%%/upgrade_users.php
%%WWWDIR%%/user_preferences.php
%%WWWDIR%%/util.php
%%WWWDIR%%/view_album.php
%%WWWDIR%%/view_comments.php
%%WWWDIR%%/view_photo.php
%%WWWDIR%%/view_photo_properties.php
%%WWWDIR%%/watermark_album.php
@dirrm %%WWWDIR%%/tools/lib
@dirrm %%WWWDIR%%/tools/include
@dirrm %%WWWDIR%%/tools
@dirrm %%WWWDIR%%/skins/yellow/images
@dirrm %%WWWDIR%%/skins/yellow/css
@dirrm %%WWWDIR%%/skins/yellow
@dirrm %%WWWDIR%%/skins/white1/images
@dirrm %%WWWDIR%%/skins/white1/css
@dirrm %%WWWDIR%%/skins/white1
@dirrm %%WWWDIR%%/skins/suit/images
@dirrm %%WWWDIR%%/skins/suit/css
@dirrm %%WWWDIR%%/skins/suit
@dirrm %%WWWDIR%%/skins/slick/images
@dirrm %%WWWDIR%%/skins/slick/css
@dirrm %%WWWDIR%%/skins/slick
@dirrm %%WWWDIR%%/skins/redmarble/images
@dirrm %%WWWDIR%%/skins/redmarble/css
@dirrm %%WWWDIR%%/skins/redmarble
@dirrm %%WWWDIR%%/skins/paint/images
@dirrm %%WWWDIR%%/skins/paint/css
@dirrm %%WWWDIR%%/skins/paint
@dirrm %%WWWDIR%%/skins/madmod1/tpl
@dirrm %%WWWDIR%%/skins/madmod1/images
@dirrm %%WWWDIR%%/skins/madmod1/css
@dirrm %%WWWDIR%%/skins/madmod1
@dirrm %%WWWDIR%%/skins/lilac/images
@dirrm %%WWWDIR%%/skins/lilac/css
@dirrm %%WWWDIR%%/skins/lilac
@dirrm %%WWWDIR%%/skins/jenskin/images
@dirrm %%WWWDIR%%/skins/jenskin/css
@dirrm %%WWWDIR%%/skins/jenskin
@dirrm %%WWWDIR%%/skins/hotred/images
@dirrm %%WWWDIR%%/skins/hotred/css
@dirrm %%WWWDIR%%/skins/hotred
@dirrm %%WWWDIR%%/skins/greenpurple/images
@dirrm %%WWWDIR%%/skins/greenpurple/css
@dirrm %%WWWDIR%%/skins/greenpurple
@dirrm %%WWWDIR%%/skins/butterfly_green/images
@dirrm %%WWWDIR%%/skins/butterfly_green/css
@dirrm %%WWWDIR%%/skins/butterfly_green
@dirrm %%WWWDIR%%/skins/bubbles/images
@dirrm %%WWWDIR%%/skins/bubbles/css
@dirrm %%WWWDIR%%/skins/bubbles
@dirrm %%WWWDIR%%/skins/bred/images
@dirrm %%WWWDIR%%/skins/bred/css
@dirrm %%WWWDIR%%/skins/bred
@dirrm %%WWWDIR%%/skins/bpurple/images
@dirrm %%WWWDIR%%/skins/bpurple/css
@dirrm %%WWWDIR%%/skins/bpurple
@dirrm %%WWWDIR%%/skins/bluemod/images
@dirrm %%WWWDIR%%/skins/bluemod/css
@dirrm %%WWWDIR%%/skins/bluemod
@dirrm %%WWWDIR%%/skins/black/images
@dirrm %%WWWDIR%%/skins/black/css
@dirrm %%WWWDIR%%/skins/black
@dirrm %%WWWDIR%%/skins/bgreen2/images
@dirrm %%WWWDIR%%/skins/bgreen2/css
@dirrm %%WWWDIR%%/skins/bgreen2
@dirrm %%WWWDIR%%/skins/bgreen/images
@dirrm %%WWWDIR%%/skins/bgreen/css
@dirrm %%WWWDIR%%/skins/bgreen
@dirrm %%WWWDIR%%/skins/bblue/images
@dirrm %%WWWDIR%%/skins/bblue/css
@dirrm %%WWWDIR%%/skins/bblue
@dirrm %%WWWDIR%%/skins/bars014/images
@dirrm %%WWWDIR%%/skins/bars014/css
@dirrm %%WWWDIR%%/skins/bars014
@dirrm %%WWWDIR%%/skins/bars002/images
@dirrm %%WWWDIR%%/skins/bars002/css
@dirrm %%WWWDIR%%/skins/bars002
@dirrm %%WWWDIR%%/skins
@dirrm %%WWWDIR%%/setup
@dirrm %%WWWDIR%%/po
@dirrm %%WWWDIR%%/platform
%%NLS%%@dirrm %%WWWDIR%%/locale/zh_TW/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/zh_TW/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/zh_TW.utf8/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/zh_TW.utf8/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/zh_TW.utf8
%%NLS%%@dirrm %%WWWDIR%%/locale/zh_TW
%%NLS%%@dirrm %%WWWDIR%%/locale/zh_HK/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/zh_HK/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/zh_HK.utf8/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/zh_HK.utf8/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/zh_HK.utf8
%%NLS%%@dirrm %%WWWDIR%%/locale/zh_HK
%%NLS%%@dirrm %%WWWDIR%%/locale/vi_VN/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/vi_VN/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/vi_VN
%%NLS%%@dirrm %%WWWDIR%%/locale/tr_TR/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/tr_TR/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/tr_TR
%%NLS%%@dirrm %%WWWDIR%%/locale/sv_SE/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/sv_SE/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/sv_SE
%%NLS%%@dirrm %%WWWDIR%%/locale/sl_SI/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/sl_SI/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/sl_SI
%%NLS%%@dirrm %%WWWDIR%%/locale/sk_SK/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/sk_SK/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/sk_SK
%%NLS%%@dirrm %%WWWDIR%%/locale/ru_RU.koi8r/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/ru_RU.koi8r/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/ru_RU.koi8r
%%NLS%%@dirrm %%WWWDIR%%/locale/ru_RU.cp1251/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/ru_RU.cp1251/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/ru_RU.cp1251
%%NLS%%@dirrm %%WWWDIR%%/locale/pt_PT/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/pt_PT/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/pt_PT
%%NLS%%@dirrm %%WWWDIR%%/locale/pt_BR/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/pt_BR/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/pt_BR
%%NLS%%@dirrm %%WWWDIR%%/locale/pl_PL/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/pl_PL/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/pl_PL
%%NLS%%@dirrm %%WWWDIR%%/locale/no_NO/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/no_NO/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/no_NO
%%NLS%%@dirrm %%WWWDIR%%/locale/nl_NL/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/nl_NL/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/nl_NL
%%NLS%%@dirrm %%WWWDIR%%/locale/lt_LT/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/lt_LT/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/lt_LT
%%NLS%%@dirrm %%WWWDIR%%/locale/ko_KR/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/ko_KR/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/ko_KR
%%NLS%%@dirrm %%WWWDIR%%/locale/ja_JP/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/ja_JP/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/ja_JP.utf8/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/ja_JP.utf8/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/ja_JP.utf8
%%NLS%%@dirrm %%WWWDIR%%/locale/ja_JP
%%NLS%%@dirrm %%WWWDIR%%/locale/it_IT/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/it_IT/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/it_IT
%%NLS%%@dirrm %%WWWDIR%%/locale/is_IS/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/is_IS/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/is_IS
%%NLS%%@dirrm %%WWWDIR%%/locale/hu_HU/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/hu_HU/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/hu_HU
%%NLS%%@dirrm %%WWWDIR%%/locale/gl_ES/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/gl_ES/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/gl_ES
%%NLS%%@dirrm %%WWWDIR%%/locale/fr_FR/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/fr_FR/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/fr_FR
%%NLS%%@dirrm %%WWWDIR%%/locale/fi_FI/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/fi_FI/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/fi_FI
%%NLS%%@dirrm %%WWWDIR%%/locale/es_ES/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/es_ES/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/es_ES
%%NLS%%@dirrm %%WWWDIR%%/locale/en_US/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/en_US
%%NLS%%@dirrm %%WWWDIR%%/locale/en_GB/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/en_GB/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/en_GB
%%NLS%%@dirrm %%WWWDIR%%/locale/de_DE/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/de_DE/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/de_DE
%%NLS%%@dirrm %%WWWDIR%%/locale/da_DK/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/da_DK/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/da_DK
%%NLS%%@dirrm %%WWWDIR%%/locale/cs_CZ.iso-8859-2/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/cs_CZ.iso-8859-2/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/cs_CZ.iso-8859-2
%%NLS%%@dirrm %%WWWDIR%%/locale/cs_CZ.cp1250/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/cs_CZ.cp1250/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/cs_CZ.cp1250
%%NLS%%@dirrm %%WWWDIR%%/locale/ca_ES/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/ca_ES/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/ca_ES
%%NLS%%@dirrm %%WWWDIR%%/locale/bg_BG/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/bg_BG/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/bg_BG
%%NLS%%@dirrm %%WWWDIR%%/locale/ar_EG/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/ar_EG/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/ar_EG
%%NLS%%@dirrm %%WWWDIR%%/locale/af_ZA/flagimage
%%NLS%%@dirrm %%WWWDIR%%/locale/af_ZA/LC_MESSAGES
%%NLS%%@dirrm %%WWWDIR%%/locale/af_ZA
%%NLS%%@dirrm %%WWWDIR%%/locale
@dirrm %%WWWDIR%%/lib
@dirrm %%WWWDIR%%/layout
@dirrm %%WWWDIR%%/js/wz/tip_balloon
@dirrm %%WWWDIR%%/js/wz
@dirrm %%WWWDIR%%/js/moorainbow
@dirrm %%WWWDIR%%/js
@dirrm %%WWWDIR%%/java
@dirrm %%WWWDIR%%/includes/stats
@dirrm %%WWWDIR%%/includes/slideshow
@dirrm %%WWWDIR%%/includes/errors
@dirrm %%WWWDIR%%/includes/ecard/templates
@dirrm %%WWWDIR%%/includes/ecard
@dirrm %%WWWDIR%%/includes/definitions
@dirrm %%WWWDIR%%/includes/comments
@dirrm %%WWWDIR%%/includes/add_photos
@dirrm %%WWWDIR%%/includes
@dirrm %%WWWDIR%%/images/moorainbow
@dirrm %%WWWDIR%%/images/icons/tree
@dirrm %%WWWDIR%%/images/icons/slideshow
@dirrm %%WWWDIR%%/images/icons/notice
@dirrm %%WWWDIR%%/images/icons/navigation
@dirrm %%WWWDIR%%/images/icons/imageedit
@dirrm %%WWWDIR%%/images/icons
@dirrm %%WWWDIR%%/images/ecard_images
@dirrm %%WWWDIR%%/images
@dirrm %%WWWDIR%%/html_wrap/frames/wooden
@dirrm %%WWWDIR%%/html_wrap/frames/simple_book
@dirrm %%WWWDIR%%/html_wrap/frames/shadows
@dirrm %%WWWDIR%%/html_wrap/frames/scrapbookshadowsmall
@dirrm %%WWWDIR%%/html_wrap/frames/scrapbookshadow
@dirrm %%WWWDIR%%/html_wrap/frames/scrapbook_small
@dirrm %%WWWDIR%%/html_wrap/frames/scrapbook
@dirrm %%WWWDIR%%/html_wrap/frames/postage_stamp
@dirrm %%WWWDIR%%/html_wrap/frames/polaroids
@dirrm %%WWWDIR%%/html_wrap/frames/polaroid
@dirrm %%WWWDIR%%/html_wrap/frames/notebook
@dirrm %%WWWDIR%%/html_wrap/frames/golden
@dirrm %%WWWDIR%%/html_wrap/frames/deryk
@dirrm %%WWWDIR%%/html_wrap/frames
@dirrm %%WWWDIR%%/html_wrap
@dirrm %%WWWDIR%%/html
@dirrm %%WWWDIR%%/help
@dirrm %%WWWDIR%%/docs/images
@dirrm %%WWWDIR%%/docs/context-help
@dirrm %%WWWDIR%%/docs
@dirrm %%WWWDIR%%/css
@dirrm %%WWWDIR%%/contrib/postnuke
@dirrm %%WWWDIR%%/contrib/phpnuke
@dirrm %%WWWDIR%%/contrib/phpBB2
@dirrm %%WWWDIR%%/contrib/mambo/includes
@dirrm %%WWWDIR%%/contrib/mambo/images
@dirrm %%WWWDIR%%/contrib/mambo/classes
@dirrm %%WWWDIR%%/contrib/mambo
@dirrm %%WWWDIR%%/contrib/joomla/includes
@dirrm %%WWWDIR%%/contrib/joomla/images
@dirrm %%WWWDIR%%/contrib/joomla/classes
@dirrm %%WWWDIR%%/contrib/joomla
@dirrm %%WWWDIR%%/contrib/GeekLog
@dirrm %%WWWDIR%%/contrib
@dirrm %%WWWDIR%%/classes/remote
@dirrm %%WWWDIR%%/classes/postnuke0.7.1
@dirrm %%WWWDIR%%/classes/postnuke
@dirrm %%WWWDIR%%/classes/phpbb
@dirrm %%WWWDIR%%/classes/nuke5
@dirrm %%WWWDIR%%/classes/nsnnuke
@dirrm %%WWWDIR%%/classes/mambo
@dirrm %%WWWDIR%%/classes/geeklog
@dirrm %%WWWDIR%%/classes/gallery
@dirrm %%WWWDIR%%/classes/database/mysql
@dirrm %%WWWDIR%%/classes/database
@dirrm %%WWWDIR%%/classes/XML_HTMLSax3/HTMLSax3
@dirrm %%WWWDIR%%/classes/XML_HTMLSax3
@dirrm %%WWWDIR%%/classes/Mail
@dirrm %%WWWDIR%%/classes/HTML_Safe
@dirrm %%WWWDIR%%/classes/HTML
@dirrm %%WWWDIR%%/classes
@dirrmtry %%WWWDIR%%
|