File: MANIFEST

package info (click to toggle)
gallery2 2.1.2-2
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 46,140 kB
  • ctags: 5,615
  • sloc: php: 75,455; xml: 1,683; sh: 731; perl: 479; sql: 202; makefile: 54
file content (1341 lines) | stat: -rw-r--r-- 61,997 bytes parent folder | download | duplicates (2)
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
# File crc32 crc32(crlf) size size(crlf)  or  R File
README.html	3770880560	1320106548	73808	75959
bootstrap.inc	612002498	124969522	1966	2016
embed.php	3898585658	4008059184	2756	2825
images/g2Logo.gif	1196739865	1196739865	6395	6395
images/gallery.gif	2220981207	2220981207	1180	1180
images/galleryLogo_sm.gif	1166401692	1166401692	3488	3488
images/galleryLogo_sm.png	1945861746	1945861746	10222	10222
images/xhtml10.png	1165418597	1165418597	321	321
index.php	442072329	1737278171	1940	1991
init.inc	2726326320	3835051766	7316	7513
install/GalleryStub.class	1777183946	73876131	1224	1262
install/InstallStep.class	3099617679	3422761660	2415	2524
install/StatusTemplate.class	2320145545	2989525975	3330	3433
install/config.php-template	1496501369	1595470988	7424	7599
install/images/background.png	2766840926	2766840926	23329	23329
install/images/btnBGbl.gif	162020977	162020977	172	172
install/images/btnBGgrn.gif	921048166	921048166	173	173
install/images/btnBGor.gif	3886118901	3886118901	173	173
install/images/btnBLbl.gif	929171289	929171289	172	172
install/images/btnBLgrn.gif	676576556	676576556	171	171
install/images/btnBLor.gif	3122183424	3122183424	172	172
install/images/btnBRbl.gif	3553759478	3553759478	172	172
install/images/btnBRgrn.gif	1593520250	1593520250	172	172
install/images/btnBRor.gif	2239040372	2239040372	172	172
install/images/btnTLbl.gif	752510677	752510677	171	171
install/images/btnTLgrn.gif	1620552182	1620552182	171	171
install/images/btnTLor.gif	1764133389	1764133389	171	171
install/images/btnTRbl.gif	3306389985	3306389985	169	169
install/images/btnTRgrn.gif	1466176462	1466176462	169	169
install/images/btnTRor.gif	3506895090	3506895090	170	170
install/images/g2Logo_install_head.png	2360733490	2360733490	13674	13674
install/images/ico_error.gif	3087634832	3087634832	1608	1608
install/images/ico_success.gif	1603034537	1603034537	1629	1629
install/images/ico_warning.gif	3081259453	3081259453	1589	1589
install/index.php	2842433952	506703347	13377	13810
install/locale/af/LC_MESSAGES/gallery2_install.mo	3024349487	3024349487	43565	43565
install/locale/bg/LC_MESSAGES/gallery2_install.mo	2112787314	2112787314	30178	30178
install/locale/cs/LC_MESSAGES/gallery2_install.mo	3727080553	3727080553	50597	50597
install/locale/de/LC_MESSAGES/gallery2_install.mo	1763169022	1763169022	54377	54377
install/locale/en_GB/LC_MESSAGES/gallery2_install.mo	1715122067	1715122067	1001	1001
install/locale/eu/LC_MESSAGES/gallery2_install.mo	801281101	801281101	48254	48254
install/locale/fr/LC_MESSAGES/gallery2_install.mo	1548909458	1548909458	54071	54071
install/locale/it/LC_MESSAGES/gallery2_install.mo	1525108095	1525108095	51335	51335
install/locale/ja/LC_MESSAGES/gallery2_install.mo	1128042967	1128042967	46524	46524
install/locale/lt/LC_MESSAGES/gallery2_install.mo	3472734775	3472734775	50092	50092
install/locale/nl/LC_MESSAGES/gallery2_install.mo	2770347303	2770347303	50181	50181
install/locale/no/LC_MESSAGES/gallery2_install.mo	2180270908	2180270908	48990	48990
install/locale/pl/LC_MESSAGES/gallery2_install.mo	1170833260	1170833260	509	509
install/locale/ru/LC_MESSAGES/gallery2_install.mo	1682641791	1682641791	70797	70797
install/locale/sr/LC_MESSAGES/gallery2_install.mo	1340812651	1340812651	44733	44733
install/locale/sv/LC_MESSAGES/gallery2_install.mo	2755557952	2755557952	48863	48863
install/locale/tr/LC_MESSAGES/gallery2_install.mo	878242213	878242213	22226	22226
install/locale/vi/LC_MESSAGES/gallery2_install.mo	2474308034	2474308034	49717	49717
install/locale/zh_CN/LC_MESSAGES/gallery2_install.mo	4232029872	4232029872	26288	26288
install/locale/zh_TW/LC_MESSAGES/gallery2_install.mo	1802582638	1802582638	47990	47990
install/po/GNUmakefile	131239173	1173653828	126	132
install/po/af.po	71796886	2123685292	53894	55266
install/po/bg.po	617840761	3468218207	47423	48705
install/po/cs.po	3190216939	512539199	55850	57218
install/po/de.po	1043032799	2396867702	55952	56836
install/po/en_GB.po	2083553324	1698907327	52574	53907
install/po/eu.po	2223456826	1094723649	53840	55191
install/po/fr.po	832598218	338532747	56399	57741
install/po/it.po	3684152814	737062673	55243	56146
install/po/ja.po	486193810	1559355727	62340	63703
install/po/lt.po	11313297	1662028887	52401	53778
install/po/nl.po	3746482803	643524849	51276	52135
install/po/no.po	1852902225	2365178509	49799	50655
install/po/pl.po	2920548314	1324915715	28914	29994
install/po/ru.po	4072745036	663325822	76769	77675
install/po/sr.po	1203816282	3397919503	54293	55651
install/po/strings.raw	3796870284	4097965830	27291	27634
install/po/sv.po	3888564187	3218070885	51439	52737
install/po/tr.po	3339040899	1311438855	39085	40250
install/po/vi.po	2573887892	2558611576	59886	61229
install/po/zh_CN.po	1206158707	214481048	51213	52499
install/po/zh_TW.po	2774003226	414832201	50109	51343
install/steps/AdminUserSetupStep.class	1374942772	3836562523	4273	4393
install/steps/AuthenticateStep.class	2340074944	2684722738	3356	3463
install/steps/CreateConfigFileStep.class	2692713329	4192764014	8055	8268
install/steps/DatabaseSetupStep.class	923661396	2519974634	24035	24729
install/steps/FinishedStep.class	1203079481	2286435677	1277	1314
install/steps/InstallCoreModuleStep.class	3140207937	1478268403	9425	9668
install/steps/InstallOtherModulesStep.class	287986794	3432294377	9700	9999
install/steps/MultisiteStep.class	4122548337	3513605354	5932	6100
install/steps/SecureStep.class	1003575014	2190759275	2229	2289
install/steps/StorageSetupStep.class	2660616584	2774494485	10297	10605
install/steps/SystemChecksStep.class	1419660991	591996969	17235	17706
install/steps/WelcomeStep.class	2276693853	1424831195	1465	1513
install/styles/style.css	3342340958	3181552316	9186	9601
install/templates/AdminUserSetupRequest.html	2665936849	1397545983	3653	3769
install/templates/AdminUserSetupSuccess.html	4206166754	147542172	100	105
install/templates/AuthenticateRequest.html	500598403	1259096118	1420	1443
install/templates/AuthenticateSuccessful.html	1331499763	934077975	89	94
install/templates/CleanInstallRequest.html	366032670	2688710446	1065	1089
install/templates/CreateConfigFileFailed.html	104200828	156890698	478	495
install/templates/CreateConfigFileInstructions.html	3620741697	1865660762	1383	1406
install/templates/CreateConfigFileSuccess.html	1391408172	829188516	407	416
install/templates/DatabaseSetupRequest.html	3965939744	1175895565	4812	4950
install/templates/DatabaseSetupSuccess.html	920547944	825436087	90	95
install/templates/Finished.html	3485087966	253751	740	757
install/templates/Header.html	26338478	4088582083	660	683
install/templates/InstallCoreModule.html	3406637923	1800050101	574	586
install/templates/InstallCoreModuleError.html	2589349954	1077866568	1546	1574
install/templates/InstallCoreModuleSuccess.html	1962461428	3347005861	434	443
install/templates/InstallOtherModulesRequest.html	241814384	1069551249	4548	4662
install/templates/InstallOtherModulesSuccess.html	2054838603	2083029200	1921	1966
install/templates/MainPage.html	3184187006	937988509	6856	7019
install/templates/ManifestSystemCheck.html	3337248559	2954323363	3375	3437
install/templates/Multisite.html	3039051795	3701003270	4955	5054
install/templates/MultisiteSuccess.html	3637549020	2095741799	206	216
install/templates/NavBar.html	1952304065	963513540	1258	1297
install/templates/Secure.html	3445463778	2382597693	2711	2763
install/templates/StorageSetupRequest.html	1656343407	2839393046	7732	7874
install/templates/StorageSetupSuccess.html	1056692906	3881909576	97	102
install/templates/SystemChecks.html	3858186548	1672036693	1111	1150
install/templates/VersionCheckFailed.html	2392876071	2711850686	1824	1885
install/templates/Welcome.html	323427562	1324202276	1733	1765
lib/adodb/adodb-error.inc.php	77532951	4040964880	8544	8802
lib/adodb/adodb-iterator.inc.php	3659028501	2126144351	1598	1682
lib/adodb/adodb-lib.inc.php	961328343	984121911	31147	32150
lib/adodb/adodb-perf.inc.php	1402422590	2299237798	30669	31722
lib/adodb/adodb-php4.inc.php	1669925684	2721487400	322	338
lib/adodb/adodb-time.inc.php	1928003692	589135776	38309	39596
lib/adodb/adodb.inc.php	1397080260	1532612831	110446	114322
lib/adodb/drivers/adodb-db2.inc.php	2454533083	2779510788	18230	18938
lib/adodb/drivers/adodb-mysql.inc.php	736436489	2484851888	20197	20962
lib/adodb/drivers/adodb-mysqli.inc.php	3810395695	2029575170	22892	23797
lib/adodb/drivers/adodb-mysqlt.inc.php	3238524927	1073388507	3155	3291
lib/adodb/drivers/adodb-oci8.inc.php	252984552	295727008	42362	43839
lib/adodb/drivers/adodb-oci805.inc.php	2168296824	3575527679	1581	1640
lib/adodb/drivers/adodb-oci8po.inc.php	3651933450	2214443315	5503	5720
lib/adodb/drivers/adodb-odbc.inc.php	199758350	395992292	19509	20246
lib/adodb/drivers/adodb-oracle.inc.php	4014458939	1041881342	8987	9307
lib/adodb/drivers/adodb-postgres.inc.php	3948024068	3653464705	521	535
lib/adodb/drivers/adodb-postgres64.inc.php	238435762	2975266248	30508	31525
lib/adodb/drivers/adodb-postgres7.inc.php	1701391097	3908283189	5900	6130
lib/adodb/drivers/adodb-sqlite.inc.php	254780254	3255667589	9722	10095
lib/adodb/drivers/adodb-sqlitepo.inc.php	3901842332	3687547395	1865	1927
lib/adodb/license.txt	3461088424	425178580	25899	26081
lib/adodb/perf/perf-mysql.inc.php	1442146649	2878750193	8431	8746
lib/adodb/perf/perf-oci8.inc.php	3735861036	131346913	16493	17002
lib/adodb/perf/perf-postgres.inc.php	2767303678	3470863618	4613	4737
lib/adodb/readme.txt	3642036082	427593884	1671	1733
lib/adodb/tohtml.inc.php	1880888250	1302270575	5527	5722
lib/bbcode/README	1827601533	334588623	631	646
lib/bbcode/bbcode.class	3568792804	380747630	18202	18787
lib/javascript/AutoComplete.js	1742369564	862705274	9164	9456
lib/javascript/BlockSelectWidget.js	1243752342	3594305303	19574	20190
lib/javascript/BlockToggle.js	3317932221	222322817	1380	1415
lib/javascript/XmlHttp.js	1952168086	3889258923	1754	1809
lib/pear/HTMLSax3.php	3913894665	24504344	42833	44171
lib/pear/Safe.php	2774090203	3040170256	17999	18667
lib/smarty/COPYING.lib	2819441257	4217144802	24389	24847
lib/smarty/Config_File.class.php	280373870	1894563025	12717	13106
lib/smarty/README	2466752195	1693895370	3186	3266
lib/smarty/Smarty.class.php	2604844775	416015268	62933	64867
lib/smarty/Smarty_Compiler.class.php	1051914029	1851496897	91064	93375
lib/smarty/debug.tpl	1729946169	3215374183	5066	5130
lib/smarty/internals/core.assemble_plugin_filepath.php	2308203854	285966143	1949	2016
lib/smarty/internals/core.assign_smarty_interface.php	3876088753	1676896789	1258	1301
lib/smarty/internals/core.create_dir_structure.php	3825454299	1799593054	2496	2575
lib/smarty/internals/core.display_debug_console.php	2623652360	3109619299	1583	1644
lib/smarty/internals/core.get_include_path.php	2904186623	2076945407	1002	1046
lib/smarty/internals/core.get_microtime.php	4175355305	2363575603	360	383
lib/smarty/internals/core.get_php_resource.php	600575070	46127069	2467	2547
lib/smarty/internals/core.is_secure.php	2972518146	952963268	1671	1730
lib/smarty/internals/core.is_trusted.php	403926356	2749494319	1273	1320
lib/smarty/internals/core.load_plugins.php	2582671890	3075972098	4429	4554
lib/smarty/internals/core.load_resource_plugin.php	3083340139	958865844	2147	2221
lib/smarty/internals/core.process_cached_inserts.php	541317271	122165627	2404	2475
lib/smarty/internals/core.process_compiled_include.php	2167620517	3150673181	1011	1048
lib/smarty/internals/core.read_cache_file.php	2573194400	2033973560	3604	3705
lib/smarty/internals/core.rm_auto.php	2261804047	688618704	2286	2357
lib/smarty/internals/core.rmdir.php	2415460627	1014435373	1444	1498
lib/smarty/internals/core.run_insert_handler.php	2810320771	3072536386	2656	2727
lib/smarty/internals/core.smarty_include_php.php	1062397499	381887763	1602	1652
lib/smarty/internals/core.write_cache_file.php	120483243	3185751241	3620	3716
lib/smarty/internals/core.write_compiled_include.php	4277651660	63020855	3118	3209
lib/smarty/internals/core.write_compiled_resource.php	1297727610	3763704011	1081	1116
lib/smarty/internals/core.write_file.php	380554207	3334012302	1378	1432
lib/smarty/plugins/block.textformat.php	3226108329	2594660056	2797	2899
lib/smarty/plugins/compiler.assign.php	2754527954	3244191588	968	1006
lib/smarty/plugins/function.assign_debug_info.php	3630973802	2502619675	1116	1155
lib/smarty/plugins/function.config_load.php	1107411515	330559359	6029	6169
lib/smarty/plugins/function.counter.php	401080161	579120412	1726	1805
lib/smarty/plugins/function.cycle.php	2535274429	3387179515	3192	3294
lib/smarty/plugins/function.debug.php	2310365736	3966496971	835	870
lib/smarty/plugins/function.eval.php	2926625628	192338870	968	1016
lib/smarty/plugins/function.fetch.php	1740153398	3325680261	8697	8917
lib/smarty/plugins/function.html_checkboxes.php	1022408579	158205255	4381	4524
lib/smarty/plugins/function.html_image.php	2225476841	937690238	4615	4754
lib/smarty/plugins/function.html_options.php	3652276149	3704235195	3751	3872
lib/smarty/plugins/function.html_radios.php	2829508658	1036916117	4841	4997
lib/smarty/plugins/function.html_select_date.php	3116931272	1686363577	11592	11914
lib/smarty/plugins/function.html_select_time.php	2974759527	1072877132	7170	7362
lib/smarty/plugins/function.html_table.php	3749617632	418056692	3759	3896
lib/smarty/plugins/function.mailto.php	60639751	627145855	5161	5324
lib/smarty/plugins/function.math.php	502815260	509038510	2514	2597
lib/smarty/plugins/function.popup.php	1321748570	4215433819	3201	3318
lib/smarty/plugins/function.popup_init.php	416744434	2053827845	931	970
lib/smarty/plugins/modifier.capitalize.php	3792950535	4024579441	946	988
lib/smarty/plugins/modifier.cat.php	3804093512	1426896802	623	656
lib/smarty/plugins/modifier.count_characters.php	1352478836	2170624607	695	726
lib/smarty/plugins/modifier.count_paragraphs.php	2270409908	2717822743	582	610
lib/smarty/plugins/modifier.count_sentences.php	3962052522	3635204750	605	633
lib/smarty/plugins/modifier.count_words.php	3249798812	1197021994	703	735
lib/smarty/plugins/modifier.date_format.php	2696773927	305014695	1361	1409
lib/smarty/plugins/modifier.debug_print_var.php	307643750	677368606	1863	1919
lib/smarty/plugins/modifier.default.php	3302512418	3330995144	587	618
lib/smarty/plugins/modifier.escape.php	3586625910	2700753262	2527	2616
lib/smarty/plugins/modifier.indent.php	2385926590	1026216977	519	546
lib/smarty/plugins/modifier.lower.php	3347692285	3042225050	433	458
lib/smarty/plugins/modifier.nl2br.php	39964044	4029780705	717	752
lib/smarty/plugins/modifier.regex_replace.php	1660684611	2772362009	830	863
lib/smarty/plugins/modifier.replace.php	1967704499	360076863	537	566
lib/smarty/plugins/modifier.spacify.php	321270991	4177870351	596	625
lib/smarty/plugins/modifier.string_format.php	1749579289	1683572690	531	559
lib/smarty/plugins/modifier.strip.php	982963012	3023277631	742	775
lib/smarty/plugins/modifier.strip_tags.php	2474370798	2764608498	628	659
lib/smarty/plugins/modifier.truncate.php	289006270	1558915657	1260	1309
lib/smarty/plugins/modifier.upper.php	247861502	3840162767	433	458
lib/smarty/plugins/modifier.wordwrap.php	1792394084	1768332614	565	593
lib/smarty/plugins/outputfilter.trimwhitespace.php	2003755543	1480698520	2649	2724
lib/smarty/plugins/shared.escape_special_chars.php	112759707	1344107215	726	756
lib/smarty/plugins/shared.make_timestamp.php	2315225765	1449554211	1119	1164
lib/smarty_plugins/modifier.entitytruncate.php	562427464	4129288720	2963	3040
lib/smarty_plugins/modifier.ireplace.php	3180427379	3892883559	1439	1477
lib/smarty_plugins/modifier.markup.php	379482413	4058248073	6247	6447
lib/smarty_plugins/modifier.print_r.php	446853044	1466621661	1239	1275
lib/smarty_plugins/modifier.repeat.php	3341375489	871250771	1192	1226
lib/smarty_plugins/modifier.split.php	2571367552	3843227037	1310	1345
lib/smarty_plugins/modifier.utf8.php	1482781641	1234639668	1226	1261
lib/smtp/smtp.php	452454365	1118372581	5766	5945
lib/support/cache.php	497587356	1658737476	4409	4566
lib/support/chmod.php	430336676	1308511102	25588	26290
lib/support/gd.php	443675872	1526100726	7242	7487
lib/support/index.php	1066974696	2097630945	1723	1772
lib/support/phpinfo.php	3303129836	2657748157	139	145
lib/support/security.inc	3920275185	3469942833	4922	5100
lib/support/support.css	887804749	2618199775	793	849
lib/tools/bin/.htaccess	421983041	3149581760	31	33
lib/tools/bin/GNUmakefile.GalleryStorage	59425111	3439998927	988	1025
lib/tools/bin/GNUmakefile.classes	875481188	1455723513	803	828
lib/tools/bin/XmlParser.inc	661699572	1600732879	2432	2512
lib/tools/bin/dbxml.tpl	1189412270	2590422693	1356	1410
lib/tools/bin/entities.tpl	1926639038	871525141	781	796
lib/tools/bin/generate-dbxml.php	2687442788	1604205370	8651	8963
lib/tools/bin/generate-entities.php	1312129431	3593053773	5702	5908
lib/tools/bin/generate-maps.php	1521969844	3546340130	3180	3293
lib/tools/bin/generate-sql.php	541010725	1010510662	38073	39260
lib/tools/bin/maps.tpl	630391018	1965981581	481	487
lib/tools/bin/rebuild-modules.pl	2721262392	211589498	465	481
lib/tools/creator/GNUmakefile.tpl	4034380534	480088214	159	166
lib/tools/creator/MyPage.inc.tpl	1328262831	695735545	3138	3246
lib/tools/creator/MyPage.tpl.tpl	4104452985	3636842738	1427	1467
lib/tools/creator/MyPageHelper.class.tpl	946113430	2842371581	2017	2090
lib/tools/creator/create-module.php	753517275	1850083787	5222	5407
lib/tools/creator/map.tpl	1080745876	25718043	515	536
lib/tools/creator/module.inc.tpl	2771395112	58072204	2019	2084
lib/tools/dtd/DatabaseChangeDefinition2.0.dtd	1504463714	2133524373	1010	1035
lib/tools/dtd/DatabaseRemoveDefinition2.0.dtd	326094190	4082287261	203	210
lib/tools/dtd/DatabaseTableDefinition2.0.dtd	118093666	1731261693	652	669
lib/tools/dtd/GalleryClass2.1.dtd	3901647794	1873521681	991	1017
lib/tools/dtd/MapsDefinition2.0.dtd	4110984890	3658939786	828	849
lib/tools/phpunit/CodeAuditTestCase.class	3732017498	216611198	4663	4833
lib/tools/phpunit/GalleryControllerTestCase.class	2015403514	103993764	2823	2910
lib/tools/phpunit/GalleryTestCase.class	3826271490	4001092241	24764	25676
lib/tools/phpunit/ItemAddOptionTestCase.class	1816884479	3680725495	3215	3313
lib/tools/phpunit/ItemAddPluginTestCase.class	3970204793	2412076827	3521	3628
lib/tools/phpunit/ItemEditOptionTestCase.class	4181372513	3980667884	4373	4525
lib/tools/phpunit/ItemEditPluginTestCase.class	1448389286	159875520	3422	3529
lib/tools/phpunit/MockTemplateAdapter.class	4045739188	4036523352	1922	1990
lib/tools/phpunit/UnitTestPlatform.class	1207375017	1137110993	10767	11130
lib/tools/phpunit/index.php	3920693118	1185318626	11483	11845
lib/tools/phpunit/index.tpl	3768006181	805680868	9784	10038
lib/tools/phpunit/phpunit.inc	832799066	1192226931	22579	23343
lib/tools/phpunit/stylesheet.css	1952326772	1179756497	1513	1634
lib/tools/po/.htaccess	3087127056	3127319940	47	50
lib/tools/po/GNUmakefile.inc	4112963813	4225165834	3633	3749
lib/tools/po/extract.php	1340025780	3223138563	7816	8066
lib/tools/po/header.pl	3222888357	2704325639	986	1012
lib/tools/po/header.txt	1923518662	3153667514	867	885
lib/tools/po/premerge-messages.pl	3726868671	3199359966	912	970
lib/tools/po/shtool	2882826200	4174946454	23738	24454
lib/tools/po/trim-po.php	3124348264	1816572257	2181	2254
lib/tools/po/update-all-translations.pl	127837999	3103916094	3780	3938
lib/tools/reports/localization.php	727073905	54283360	8764	9112
lib/tools/reports/localization/main_detail.inc	768957709	1996794312	1878	1926
lib/tools/reports/localization/main_summary.inc	715605094	944293611	2124	2182
lib/tools/reports/localization/plugin_rowdata.inc	2663961286	3329141023	1026	1055
lib/tools/reports/localization/row_header_detail.inc	1624705811	2384764330	365	397
lib/tools/reports/localization/row_header_summary.inc	4061216132	3874970834	295	321
lib/tools/reports/localization/style.css	3212714870	1398464441	1524	1582
lib/tools/repository/IndexGenerator.inc	2179340955	1798122181	2428	2503
lib/tools/repository/MainPage.inc	3595626950	3866564652	2399	2467
lib/tools/repository/PackagePlugin.inc	1048667894	3972286936	6352	6556
lib/tools/repository/RepositoryManager.inc	2479084039	1785329520	3818	3931
lib/tools/repository/classes/RepositoryControllerAndView.class	3811172240	1788485857	2973	3064
lib/tools/repository/classes/RepositoryDescriptor.class	768216169	3357846746	11476	11860
lib/tools/repository/classes/RepositoryIndex.class	1621822664	2542053415	8092	8335
lib/tools/repository/classes/RepositoryObject.class	2403234181	2396616345	6293	6515
lib/tools/repository/classes/RepositoryPackage.class	4203749229	193122113	6136	6324
lib/tools/repository/index.php	3477279753	2665472946	3760	3878
lib/tools/repository/templates/IndexGenerationResults.tpl	4132425897	715345008	681	697
lib/tools/repository/templates/MainPage.tpl	1540153781	1531252840	1550	1598
lib/tools/repository/templates/PackagePlugin.tpl	1879753614	582251776	1717	1773
lib/tools/repository/templates/PackageRemovalResults.tpl	815319763	489242935	951	989
lib/tools/repository/templates/PackageResults.tpl	696383687	3680087762	1277	1323
lib/tools/repository/templates/RepositoryManager.tpl	3568789808	2085963362	1640	1699
lib/tools/repository/templates/package.tpl	691805757	1183866616	570	592
lib/tools/repository/templates/stylesheet.css	3092442100	1343845795	1512	1631
lib/tools/repository/test/data/SampleDescriptors.inc	3720177841	654249606	9630	9895
lib/tools/repository/test/data/SampleIndex.inc	2540359321	3060410067	2492	2562
lib/tools/repository/test/data/testShowViewTemplate.tpl	3021762416	3854479862	8	9
lib/tools/repository/test/phpunit/RepositoryControllerAndViewTest.class	539026214	730271823	1844	1900
lib/tools/repository/test/phpunit/RepositoryDescriptorTest.class	3189797430	3154398512	13149	13592
lib/tools/repository/test/phpunit/RepositoryObjectTest.class	3777778579	369153762	4080	4196
lib/tools/repository/test/phpunit/RepositoryPackageTest.class	3462839664	1518274287	8754	9009
lib/tools/repository/test/phpunit/RepositoryTestTemplate.class	996218485	2927974365	2019	2088
lib/tools/repository/test/phpunit/RepositoryToolsIndexTest.class	3200768206	98675159	5160	5319
lib/tools/stubs/.htaccess	3087127056	3127319940	47	50
lib/tools/stubs/README	1151385191	4022774953	302	308
lib/tools/stubs/Smarty_stub.class	2787424404	3329876977	1076	1110
lib/tools/stubs/TestCase_stub.class	2471758023	1604889499	1081	1115
lib/tools/uml/GNUmakefile	3017185505	848639846	105	113
lib/tools/uml/JavaClasses.xsl	742229467	3652984814	2212	2265
lib/wz_dragdrop/transparentpixel.gif	140141401	140141401	43	43
lib/wz_dragdrop/wz_dragdrop.js	3756427581	4136821188	38687	40134
main.php	1526320793	1382323719	20663	21279
upgrade/GalleryStub.class	3923355715	3092239159	1200	1238
upgrade/StatusTemplate.class	894767277	1793118899	3322	3425
upgrade/UpgradeStep.class	1279486868	3692805316	2415	2524
upgrade/images/background.png	2766840926	2766840926	23329	23329
upgrade/images/btnBGbl.gif	162020977	162020977	172	172
upgrade/images/btnBGgrn.gif	921048166	921048166	173	173
upgrade/images/btnBGor.gif	3886118901	3886118901	173	173
upgrade/images/btnBLbl.gif	929171289	929171289	172	172
upgrade/images/btnBLgrn.gif	676576556	676576556	171	171
upgrade/images/btnBLor.gif	3122183424	3122183424	172	172
upgrade/images/btnBRbl.gif	3553759478	3553759478	172	172
upgrade/images/btnBRgrn.gif	1593520250	1593520250	172	172
upgrade/images/btnBRor.gif	2239040372	2239040372	172	172
upgrade/images/btnTLbl.gif	752510677	752510677	171	171
upgrade/images/btnTLgrn.gif	1620552182	1620552182	171	171
upgrade/images/btnTLor.gif	1764133389	1764133389	171	171
upgrade/images/btnTRbl.gif	3306389985	3306389985	169	169
upgrade/images/btnTRgrn.gif	1466176462	1466176462	169	169
upgrade/images/btnTRor.gif	3506895090	3506895090	170	170
upgrade/images/g2Logo_upgrade_head.png	2325312367	2325312367	16522	16522
upgrade/images/ico_error.gif	3087634832	3087634832	1608	1608
upgrade/images/ico_success.gif	1603034537	1603034537	1629	1629
upgrade/images/ico_warning.gif	3081259453	3081259453	1589	1589
upgrade/index.php	3215424562	1137761189	10760	11105
upgrade/locale/af/LC_MESSAGES/gallery2_upgrade.mo	578020469	578020469	19592	19592
upgrade/locale/bg/LC_MESSAGES/gallery2_upgrade.mo	3821634591	3821634591	13746	13746
upgrade/locale/cs/LC_MESSAGES/gallery2_upgrade.mo	4042635356	4042635356	25914	25914
upgrade/locale/de/LC_MESSAGES/gallery2_upgrade.mo	1449374777	1449374777	27933	27933
upgrade/locale/eu/LC_MESSAGES/gallery2_upgrade.mo	1556207193	1556207193	24507	24507
upgrade/locale/fr/LC_MESSAGES/gallery2_upgrade.mo	2139406547	2139406547	28537	28537
upgrade/locale/it/LC_MESSAGES/gallery2_upgrade.mo	293490448	293490448	26811	26811
upgrade/locale/ja/LC_MESSAGES/gallery2_upgrade.mo	1690660397	1690660397	23090	23090
upgrade/locale/nl/LC_MESSAGES/gallery2_upgrade.mo	845712571	845712571	26149	26149
upgrade/locale/no/LC_MESSAGES/gallery2_upgrade.mo	2808360314	2808360314	25660	25660
upgrade/locale/pl/LC_MESSAGES/gallery2_upgrade.mo	1741796245	1741796245	508	508
upgrade/locale/ru/LC_MESSAGES/gallery2_upgrade.mo	141897596	141897596	36360	36360
upgrade/locale/sr/LC_MESSAGES/gallery2_upgrade.mo	726682961	726682961	20718	20718
upgrade/locale/sv/LC_MESSAGES/gallery2_upgrade.mo	4026615902	4026615902	25873	25873
upgrade/locale/tr/LC_MESSAGES/gallery2_upgrade.mo	2123729205	2123729205	23207	23207
upgrade/locale/vi/LC_MESSAGES/gallery2_upgrade.mo	2172650368	2172650368	22914	22914
upgrade/locale/zh_CN/LC_MESSAGES/gallery2_upgrade.mo	1282291743	1282291743	13115	13115
upgrade/locale/zh_TW/LC_MESSAGES/gallery2_upgrade.mo	2841943253	2841943253	24645	24645
upgrade/po/GNUmakefile	3981272167	3303981136	126	132
upgrade/po/af.po	3837943624	471401136	25962	26704
upgrade/po/bg.po	2728126616	1657227695	23631	24348
upgrade/po/cs.po	4208031474	1736541515	27762	28509
upgrade/po/de.po	3081466372	149032496	30186	30967
upgrade/po/eu.po	2087416767	411133109	27261	28016
upgrade/po/fr.po	2176203840	3804083111	30470	31242
upgrade/po/it.po	2060114543	3606374344	28139	28664
upgrade/po/ja.po	1759173900	1949092258	29900	30640
upgrade/po/nl.po	3715027751	1781141140	27422	27943
upgrade/po/no.po	2820989843	2761451566	26833	27353
upgrade/po/pl.po	1100428393	401211556	15933	16566
upgrade/po/ru.po	2835593267	2195550678	38359	38888
upgrade/po/sr.po	1409946829	3218369254	26573	27324
upgrade/po/strings.raw	2809075987	1340353798	14350	14554
upgrade/po/sv.po	41706395	2040542377	27711	28462
upgrade/po/tr.po	1614181194	670572211	27453	28205
upgrade/po/vi.po	2755020909	2614582173	28980	29718
upgrade/po/zh_CN.po	2797987437	2035695628	26319	27046
upgrade/po/zh_TW.po	1082349713	3096814989	26285	26992
upgrade/steps/AuthenticateStep.class	1275820792	2971705803	1735	1788
upgrade/steps/CleanCacheStep.class	2445561931	4063300612	2436	2509
upgrade/steps/FinishedStep.class	2217582252	975587033	1110	1143
upgrade/steps/RedirectToInstallerStep.class	105815145	1148586518	1715	1767
upgrade/steps/SystemChecksStep.class	336373686	2671185295	19360	19900
upgrade/steps/UpgradeCoreModuleStep.class	2854459244	3154016360	7347	7562
upgrade/steps/UpgradeOtherModulesStep.class	1150987785	243934851	11004	11334
upgrade/steps/WelcomeStep.class	4189863560	1197905828	1654	1705
upgrade/styles/style.css	313922371	1958481033	8335	8700
upgrade/templates/AuthenticateRequest.html	4038237541	1632306365	1157	1189
upgrade/templates/AuthenticateSuccessful.html	2066199327	580023278	101	106
upgrade/templates/CleanCache.html	40213118	491558812	1474	1505
upgrade/templates/Finished.html	3352690101	4008685855	507	520
upgrade/templates/Header.html	445714115	3021541490	658	681
upgrade/templates/InvalidConfig.html	1476367480	3003024647	356	362
upgrade/templates/MainPage.html	1999211528	13106538	6301	6465
upgrade/templates/ManifestCleanupScript.html	3796652713	356607291	397	411
upgrade/templates/ManifestSystemCheck.html	4137973305	2653794565	3666	3730
upgrade/templates/NavBar.html	3813728563	2324884567	1223	1263
upgrade/templates/RedirectToInstaller.html	4115505707	2358693729	934	954
upgrade/templates/SystemChecks.html	3858186548	1672036693	1111	1150
upgrade/templates/UpgradeCoreModuleError.html	3625831103	3860079866	739	763
upgrade/templates/UpgradeCoreModuleRequest.html	873149912	708187094	5010	5133
upgrade/templates/UpgradeCoreModuleSuccess.html	1256636731	4080293428	682	700
upgrade/templates/UpgradeCoreModuleUpToDate.html	2320865409	2029739622	354	372
upgrade/templates/UpgradeOtherModulesRequest.html	1018034427	2891530433	5410	5563
upgrade/templates/UpgradeOtherModulesSuccess.html	2044152369	1768172150	1983	2040
upgrade/templates/Welcome.html	3749003252	2684446060	1636	1666
R	docs/DEVELOPER_GUIDELINES
R	docs/EMBEDDING
R	docs/LOCALIZING
R	docs/TODO.baschny
R	docs/TODO.bharat
R	docs
R	init.php
R	install/locale/bg_BG/LC_MESSAGES/gallery2_install.mo
R	install/locale/bg_BG/LC_MESSAGES
R	install/locale/bg_BG
R	install/locale/cs_CZ/LC_MESSAGES/gallery2_install.mo
R	install/locale/cs_CZ/LC_MESSAGES
R	install/locale/cs_CZ
R	install/locale/de_DE/LC_MESSAGES/gallery2_install.mo
R	install/locale/de_DE/LC_MESSAGES
R	install/locale/de_DE
R	install/locale/eu_ES/LC_MESSAGES/gallery2_install.mo
R	install/locale/eu_ES/LC_MESSAGES
R	install/locale/eu_ES
R	install/locale/fr_FR/LC_MESSAGES/gallery2_install.mo
R	install/locale/fr_FR/LC_MESSAGES
R	install/locale/fr_FR
R	install/locale/it_IT/LC_MESSAGES/gallery2_install.mo
R	install/locale/it_IT/LC_MESSAGES
R	install/locale/it_IT
R	install/locale/ja_JP/LC_MESSAGES/gallery2_install.mo
R	install/locale/ja_JP/LC_MESSAGES
R	install/locale/ja_JP
R	install/locale/nl_NL/LC_MESSAGES/gallery2_install.mo
R	install/locale/nl_NL/LC_MESSAGES
R	install/locale/nl_NL
R	install/locale/sr_YU/LC_MESSAGES/gallery2_install.mo
R	install/locale/sr_YU/LC_MESSAGES
R	install/locale/sr_YU
R	install/locale/tr_TR/LC_MESSAGES/gallery2_install.mo
R	install/locale/tr_TR/LC_MESSAGES
R	install/locale/tr_TR
R	install/locale/vi_VN/LC_MESSAGES/gallery2_install.mo
R	install/locale/vi_VN/LC_MESSAGES
R	install/locale/vi_VN
R	install/multiconfig.php-template
R	install/po/bg_BG.po
R	install/po/cs_CZ.po
R	install/po/de_DE.po
R	install/po/eu_ES.po
R	install/po/fr_FR.po
R	install/po/it_IT.po
R	install/po/ja_JP.po
R	install/po/nl_NL.po
R	install/po/sr_YU.po
R	install/po/tr_TR.po
R	install/po/vi_VN.po
R	install/templates/WelcomeMultiSite.html
R	layouts/classic/MANIFEST
R	layouts/classic/debug/viewableFiles.txt
R	layouts/classic/debug
R	layouts/classic/images/nav_dot.gif
R	layouts/classic/images/nav_dot_left.gif
R	layouts/classic/images/nav_dot_right.gif
R	layouts/classic/images/nav_first.gif
R	layouts/classic/images/nav_home.gif
R	layouts/classic/images/nav_last.gif
R	layouts/classic/images/nav_next.gif
R	layouts/classic/images/nav_page.gif
R	layouts/classic/images/nav_prev.gif
R	layouts/classic/images
R	layouts/classic/layout.css
R	layouts/classic/layout.css.php
R	layouts/classic/layout.inc
R	layouts/classic/locale/cs_CZ/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/cs_CZ/LC_MESSAGES
R	layouts/classic/locale/cs_CZ
R	layouts/classic/locale/da_DK/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/da_DK/LC_MESSAGES
R	layouts/classic/locale/da_DK
R	layouts/classic/locale/de_DE/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/de_DE/LC_MESSAGES
R	layouts/classic/locale/de_DE
R	layouts/classic/locale/el_GR/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/el_GR/LC_MESSAGES
R	layouts/classic/locale/el_GR
R	layouts/classic/locale/en_GB/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/en_GB/LC_MESSAGES
R	layouts/classic/locale/en_GB
R	layouts/classic/locale/es_AR/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/es_AR/LC_MESSAGES
R	layouts/classic/locale/es_AR
R	layouts/classic/locale/es_ES/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/es_ES/LC_MESSAGES
R	layouts/classic/locale/es_ES
R	layouts/classic/locale/fi_FI/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/fi_FI/LC_MESSAGES
R	layouts/classic/locale/fi_FI
R	layouts/classic/locale/fr_FR/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/fr_FR/LC_MESSAGES
R	layouts/classic/locale/fr_FR
R	layouts/classic/locale/ga_IE/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/ga_IE/LC_MESSAGES
R	layouts/classic/locale/ga_IE
R	layouts/classic/locale/is_IS/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/is_IS/LC_MESSAGES
R	layouts/classic/locale/is_IS
R	layouts/classic/locale/it_IT/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/it_IT/LC_MESSAGES
R	layouts/classic/locale/it_IT
R	layouts/classic/locale/ja_JP/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/ja_JP/LC_MESSAGES
R	layouts/classic/locale/ja_JP
R	layouts/classic/locale/nl_NL/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/nl_NL/LC_MESSAGES
R	layouts/classic/locale/nl_NL
R	layouts/classic/locale/no_NO/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/no_NO/LC_MESSAGES
R	layouts/classic/locale/no_NO
R	layouts/classic/locale/pl_PL/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/pl_PL/LC_MESSAGES
R	layouts/classic/locale/pl_PL
R	layouts/classic/locale/pt_BR/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/pt_BR/LC_MESSAGES
R	layouts/classic/locale/pt_BR
R	layouts/classic/locale/sv_SE/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/sv_SE/LC_MESSAGES
R	layouts/classic/locale/sv_SE
R	layouts/classic/locale/tr_TR/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/tr_TR/LC_MESSAGES
R	layouts/classic/locale/tr_TR
R	layouts/classic/locale/vi_VN/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/vi_VN/LC_MESSAGES
R	layouts/classic/locale/vi_VN
R	layouts/classic/locale/zh_CN/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/zh_CN/LC_MESSAGES
R	layouts/classic/locale/zh_CN
R	layouts/classic/locale/zh_TW/LC_MESSAGES/layouts_classic.mo
R	layouts/classic/locale/zh_TW/LC_MESSAGES
R	layouts/classic/locale/zh_TW
R	layouts/classic/locale
R	layouts/classic/po/GNUmakefile
R	layouts/classic/po/cs_CZ.po
R	layouts/classic/po/da_DK.po
R	layouts/classic/po/de_DE.po
R	layouts/classic/po/el_GR.po
R	layouts/classic/po/en_GB.po
R	layouts/classic/po/es_AR.po
R	layouts/classic/po/es_ES.po
R	layouts/classic/po/fi_FI.po
R	layouts/classic/po/fr_FR.po
R	layouts/classic/po/ga_IE.po
R	layouts/classic/po/is_IS.po
R	layouts/classic/po/it_IT.po
R	layouts/classic/po/ja_JP.po
R	layouts/classic/po/nl_NL.po
R	layouts/classic/po/no_NO.po
R	layouts/classic/po/pl_PL.po
R	layouts/classic/po/pt_BR.po
R	layouts/classic/po/strings.raw
R	layouts/classic/po/sv_SE.po
R	layouts/classic/po/tr_TR.po
R	layouts/classic/po/vi_VN.po
R	layouts/classic/po/zh_CN.po
R	layouts/classic/po/zh_TW.po
R	layouts/classic/po
R	layouts/classic/templates/albumBody.tpl
R	layouts/classic/templates/albumThumbnail.tpl
R	layouts/classic/templates/head.tpl
R	layouts/classic/templates/itemNavigator.tpl
R	layouts/classic/templates/pageNavigator.tpl
R	layouts/classic/templates/parents.tpl
R	layouts/classic/templates/pathbar.tpl
R	layouts/classic/templates/singleBody.tpl
R	layouts/classic/templates/singleThumbnail.tpl
R	layouts/classic/templates
R	layouts/classic
R	layouts/hybrid/MANIFEST
R	layouts/hybrid/debug/viewableFiles.txt
R	layouts/hybrid/debug
R	layouts/hybrid/hybrid.js
R	layouts/hybrid/images/alb.png
R	layouts/hybrid/images/down.png
R	layouts/hybrid/images/fit.png
R	layouts/hybrid/images/full.png
R	layouts/hybrid/images/fwd.png
R	layouts/hybrid/images/info.png
R	layouts/hybrid/images/left.png
R	layouts/hybrid/images/menu.png
R	layouts/hybrid/images/next-off.png
R	layouts/hybrid/images/next.png
R	layouts/hybrid/images/poz.png
R	layouts/hybrid/images/prev-off.png
R	layouts/hybrid/images/prev.png
R	layouts/hybrid/images/rand.png
R	layouts/hybrid/images/rev.png
R	layouts/hybrid/images/right.png
R	layouts/hybrid/images/up.png
R	layouts/hybrid/images
R	layouts/hybrid/layout.css
R	layouts/hybrid/layout.inc
R	layouts/hybrid/locale/cs_CZ/LC_MESSAGES/layouts_hybrid.mo
R	layouts/hybrid/locale/cs_CZ/LC_MESSAGES
R	layouts/hybrid/locale/cs_CZ
R	layouts/hybrid/locale/de_DE/LC_MESSAGES/layouts_hybrid.mo
R	layouts/hybrid/locale/de_DE/LC_MESSAGES
R	layouts/hybrid/locale/de_DE
R	layouts/hybrid/locale/fr_FR/LC_MESSAGES/layouts_hybrid.mo
R	layouts/hybrid/locale/fr_FR/LC_MESSAGES
R	layouts/hybrid/locale/fr_FR
R	layouts/hybrid/locale/is_IS/LC_MESSAGES/layouts_hybrid.mo
R	layouts/hybrid/locale/is_IS/LC_MESSAGES
R	layouts/hybrid/locale/is_IS
R	layouts/hybrid/locale/it_IT/LC_MESSAGES/layouts_hybrid.mo
R	layouts/hybrid/locale/it_IT/LC_MESSAGES
R	layouts/hybrid/locale/it_IT
R	layouts/hybrid/locale/nl_NL/LC_MESSAGES/layouts_hybrid.mo
R	layouts/hybrid/locale/nl_NL/LC_MESSAGES
R	layouts/hybrid/locale/nl_NL
R	layouts/hybrid/locale/no_NO/LC_MESSAGES/layouts_hybrid.mo
R	layouts/hybrid/locale/no_NO/LC_MESSAGES
R	layouts/hybrid/locale/no_NO
R	layouts/hybrid/locale/sv_SE/LC_MESSAGES/layouts_hybrid.mo
R	layouts/hybrid/locale/sv_SE/LC_MESSAGES
R	layouts/hybrid/locale/sv_SE
R	layouts/hybrid/locale/tr_TR/LC_MESSAGES/layouts_hybrid.mo
R	layouts/hybrid/locale/tr_TR/LC_MESSAGES
R	layouts/hybrid/locale/tr_TR
R	layouts/hybrid/locale/vi_VN/LC_MESSAGES/layouts_hybrid.mo
R	layouts/hybrid/locale/vi_VN/LC_MESSAGES
R	layouts/hybrid/locale/vi_VN
R	layouts/hybrid/locale/zh_CN/LC_MESSAGES/layouts_hybrid.mo
R	layouts/hybrid/locale/zh_CN/LC_MESSAGES
R	layouts/hybrid/locale/zh_CN
R	layouts/hybrid/locale
R	layouts/hybrid/po/GNUmakefile
R	layouts/hybrid/po/cs_CZ.po
R	layouts/hybrid/po/de_DE.po
R	layouts/hybrid/po/fr_FR.po
R	layouts/hybrid/po/is_IS.po
R	layouts/hybrid/po/it_IT.po
R	layouts/hybrid/po/nl_NL.po
R	layouts/hybrid/po/no_NO.po
R	layouts/hybrid/po/strings.raw
R	layouts/hybrid/po/sv_SE.po
R	layouts/hybrid/po/tr_TR.po
R	layouts/hybrid/po/vi_VN.po
R	layouts/hybrid/po/zh_CN.po
R	layouts/hybrid/po
R	layouts/hybrid/templates/detail.tpl
R	layouts/hybrid/templates/header.tpl
R	layouts/hybrid/templates/hybrid.css
R	layouts/hybrid/templates/hybrid.js
R	layouts/hybrid/templates/hybrid.tpl
R	layouts/hybrid/templates/render.tpl
R	layouts/hybrid/templates
R	layouts/hybrid
R	layouts/matrix/MANIFEST
R	layouts/matrix/debug/viewableFiles.txt
R	layouts/matrix/debug
R	layouts/matrix/layout.css
R	layouts/matrix/layout.css.php
R	layouts/matrix/layout.inc
R	layouts/matrix/locale/cs_CZ/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/cs_CZ/LC_MESSAGES
R	layouts/matrix/locale/cs_CZ
R	layouts/matrix/locale/da_DK/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/da_DK/LC_MESSAGES
R	layouts/matrix/locale/da_DK
R	layouts/matrix/locale/de_DE/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/de_DE/LC_MESSAGES
R	layouts/matrix/locale/de_DE
R	layouts/matrix/locale/el_GR/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/el_GR/LC_MESSAGES
R	layouts/matrix/locale/el_GR
R	layouts/matrix/locale/en_GB/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/en_GB/LC_MESSAGES
R	layouts/matrix/locale/en_GB
R	layouts/matrix/locale/es_AR/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/es_AR/LC_MESSAGES
R	layouts/matrix/locale/es_AR
R	layouts/matrix/locale/es_MX/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/es_MX/LC_MESSAGES
R	layouts/matrix/locale/es_MX
R	layouts/matrix/locale/fi_FI/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/fi_FI/LC_MESSAGES
R	layouts/matrix/locale/fi_FI
R	layouts/matrix/locale/fr_FR/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/fr_FR/LC_MESSAGES
R	layouts/matrix/locale/fr_FR
R	layouts/matrix/locale/ga_IE/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/ga_IE/LC_MESSAGES
R	layouts/matrix/locale/ga_IE
R	layouts/matrix/locale/he_IL/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/he_IL/LC_MESSAGES
R	layouts/matrix/locale/he_IL
R	layouts/matrix/locale/hu_HU/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/hu_HU/LC_MESSAGES
R	layouts/matrix/locale/hu_HU
R	layouts/matrix/locale/is_IS/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/is_IS/LC_MESSAGES
R	layouts/matrix/locale/is_IS
R	layouts/matrix/locale/it_IT/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/it_IT/LC_MESSAGES
R	layouts/matrix/locale/it_IT
R	layouts/matrix/locale/ja_JP/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/ja_JP/LC_MESSAGES
R	layouts/matrix/locale/ja_JP
R	layouts/matrix/locale/nl_NL/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/nl_NL/LC_MESSAGES
R	layouts/matrix/locale/nl_NL
R	layouts/matrix/locale/no_NO/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/no_NO/LC_MESSAGES
R	layouts/matrix/locale/no_NO
R	layouts/matrix/locale/pl_PL/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/pl_PL/LC_MESSAGES
R	layouts/matrix/locale/pl_PL
R	layouts/matrix/locale/pt_BR/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/pt_BR/LC_MESSAGES
R	layouts/matrix/locale/pt_BR
R	layouts/matrix/locale/pt_PT/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/pt_PT/LC_MESSAGES
R	layouts/matrix/locale/pt_PT
R	layouts/matrix/locale/ru_RU/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/ru_RU/LC_MESSAGES
R	layouts/matrix/locale/ru_RU
R	layouts/matrix/locale/sv_SE/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/sv_SE/LC_MESSAGES
R	layouts/matrix/locale/sv_SE
R	layouts/matrix/locale/tr_TR/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/tr_TR/LC_MESSAGES
R	layouts/matrix/locale/tr_TR
R	layouts/matrix/locale/vi_VN/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/vi_VN/LC_MESSAGES
R	layouts/matrix/locale/vi_VN
R	layouts/matrix/locale/zh_CN/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/zh_CN/LC_MESSAGES
R	layouts/matrix/locale/zh_CN
R	layouts/matrix/locale/zh_TW/LC_MESSAGES/layouts_matrix.mo
R	layouts/matrix/locale/zh_TW/LC_MESSAGES
R	layouts/matrix/locale/zh_TW
R	layouts/matrix/locale
R	layouts/matrix/po/GNUmakefile
R	layouts/matrix/po/cs_CZ.po
R	layouts/matrix/po/da_DK.po
R	layouts/matrix/po/de_DE.po
R	layouts/matrix/po/el_GR.po
R	layouts/matrix/po/en_GB.po
R	layouts/matrix/po/es_AR.po
R	layouts/matrix/po/es_MX.po
R	layouts/matrix/po/fi_FI.po
R	layouts/matrix/po/fr_FR.po
R	layouts/matrix/po/ga_IE.po
R	layouts/matrix/po/he_IL.po
R	layouts/matrix/po/hu_HU.po
R	layouts/matrix/po/is_IS.po
R	layouts/matrix/po/it_IT.po
R	layouts/matrix/po/ja_JP.po
R	layouts/matrix/po/nl_NL.po
R	layouts/matrix/po/no_NO.po
R	layouts/matrix/po/pl_PL.po
R	layouts/matrix/po/pt_BR.po
R	layouts/matrix/po/pt_PT.po
R	layouts/matrix/po/ru_RU.po
R	layouts/matrix/po/strings.raw
R	layouts/matrix/po/sv_SE.po
R	layouts/matrix/po/tr_TR.po
R	layouts/matrix/po/vi_VN.po
R	layouts/matrix/po/zh_CN.po
R	layouts/matrix/po/zh_TW.po
R	layouts/matrix/po
R	layouts/matrix/templates/albumBody.tpl
R	layouts/matrix/templates/albumThumbnail.tpl
R	layouts/matrix/templates/banner.tpl
R	layouts/matrix/templates/guestPreviewModeSwitch.tpl
R	layouts/matrix/templates/head.tpl
R	layouts/matrix/templates/itemNavigator.tpl
R	layouts/matrix/templates/pageNavigator.tpl
R	layouts/matrix/templates/parents.tpl
R	layouts/matrix/templates/pathbar.tpl
R	layouts/matrix/templates/sidebar.tpl
R	layouts/matrix/templates/singleBody.tpl
R	layouts/matrix/templates/singleThumbnail.tpl
R	layouts/matrix/templates
R	layouts/matrix
R	layouts/siriux/MANIFEST
R	layouts/siriux/layout.css
R	layouts/siriux/layout.inc
R	layouts/siriux/locale/cs_CZ/LC_MESSAGES/layouts_siriux.mo
R	layouts/siriux/locale/cs_CZ/LC_MESSAGES
R	layouts/siriux/locale/cs_CZ
R	layouts/siriux/locale/de_DE/LC_MESSAGES/layouts_siriux.mo
R	layouts/siriux/locale/de_DE/LC_MESSAGES
R	layouts/siriux/locale/de_DE
R	layouts/siriux/locale/fr_FR/LC_MESSAGES/layouts_siriux.mo
R	layouts/siriux/locale/fr_FR/LC_MESSAGES
R	layouts/siriux/locale/fr_FR
R	layouts/siriux/locale/it_IT/LC_MESSAGES/layouts_siriux.mo
R	layouts/siriux/locale/it_IT/LC_MESSAGES
R	layouts/siriux/locale/it_IT
R	layouts/siriux/locale/nl_NL/LC_MESSAGES/layouts_siriux.mo
R	layouts/siriux/locale/nl_NL/LC_MESSAGES
R	layouts/siriux/locale/nl_NL
R	layouts/siriux/locale/sv_SE/LC_MESSAGES/layouts_siriux.mo
R	layouts/siriux/locale/sv_SE/LC_MESSAGES
R	layouts/siriux/locale/sv_SE
R	layouts/siriux/locale/tr_TR/LC_MESSAGES/layouts_siriux.mo
R	layouts/siriux/locale/tr_TR/LC_MESSAGES
R	layouts/siriux/locale/tr_TR
R	layouts/siriux/locale/vi_VN/LC_MESSAGES/layouts_siriux.mo
R	layouts/siriux/locale/vi_VN/LC_MESSAGES
R	layouts/siriux/locale/vi_VN
R	layouts/siriux/locale/zh_CN/LC_MESSAGES/layouts_siriux.mo
R	layouts/siriux/locale/zh_CN/LC_MESSAGES
R	layouts/siriux/locale/zh_CN
R	layouts/siriux/locale
R	layouts/siriux/po/GNUmakefile
R	layouts/siriux/po/cs_CZ.po
R	layouts/siriux/po/de_DE.po
R	layouts/siriux/po/fr_FR.po
R	layouts/siriux/po/it_IT.po
R	layouts/siriux/po/nl_NL.po
R	layouts/siriux/po/strings.raw
R	layouts/siriux/po/sv_SE.po
R	layouts/siriux/po/tr_TR.po
R	layouts/siriux/po/vi_VN.po
R	layouts/siriux/po/zh_CN.po
R	layouts/siriux/po
R	layouts/siriux/templates/albumBody.tpl
R	layouts/siriux/templates/guestPreviewModeSwitch.tpl
R	layouts/siriux/templates/head.tpl
R	layouts/siriux/templates/itemLinks.tpl
R	layouts/siriux/templates/itemNavigator.tpl
R	layouts/siriux/templates/pathbar.tpl
R	layouts/siriux/templates/singleBody.tpl
R	layouts/siriux/templates/systemLinks.tpl
R	layouts/siriux/templates
R	layouts/siriux
R	layouts/slider/MANIFEST
R	layouts/slider/debug/viewableFiles.txt
R	layouts/slider/debug
R	layouts/slider/images/fit.png
R	layouts/slider/images/full.png
R	layouts/slider/images/fwd.png
R	layouts/slider/images/next-off.png
R	layouts/slider/images/next.png
R	layouts/slider/images/poz.png
R	layouts/slider/images/prev-off.png
R	layouts/slider/images/prev.png
R	layouts/slider/images/rand.png
R	layouts/slider/images/rev.png
R	layouts/slider/images/tool.png
R	layouts/slider/images
R	layouts/slider/layout.css
R	layouts/slider/layout.inc
R	layouts/slider/locale/cs_CZ/LC_MESSAGES/layouts_slider.mo
R	layouts/slider/locale/cs_CZ/LC_MESSAGES
R	layouts/slider/locale/cs_CZ
R	layouts/slider/locale/de_DE/LC_MESSAGES/layouts_slider.mo
R	layouts/slider/locale/de_DE/LC_MESSAGES
R	layouts/slider/locale/de_DE
R	layouts/slider/locale/fr_FR/LC_MESSAGES/layouts_slider.mo
R	layouts/slider/locale/fr_FR/LC_MESSAGES
R	layouts/slider/locale/fr_FR
R	layouts/slider/locale/is_IS/LC_MESSAGES/layouts_slider.mo
R	layouts/slider/locale/is_IS/LC_MESSAGES
R	layouts/slider/locale/is_IS
R	layouts/slider/locale/it_IT/LC_MESSAGES/layouts_slider.mo
R	layouts/slider/locale/it_IT/LC_MESSAGES
R	layouts/slider/locale/it_IT
R	layouts/slider/locale/nl_NL/LC_MESSAGES/layouts_slider.mo
R	layouts/slider/locale/nl_NL/LC_MESSAGES
R	layouts/slider/locale/nl_NL
R	layouts/slider/locale/no_NO/LC_MESSAGES/layouts_slider.mo
R	layouts/slider/locale/no_NO/LC_MESSAGES
R	layouts/slider/locale/no_NO
R	layouts/slider/locale/ru_RU/LC_MESSAGES/layouts_slider.mo
R	layouts/slider/locale/ru_RU/LC_MESSAGES
R	layouts/slider/locale/ru_RU
R	layouts/slider/locale/sv_SE/LC_MESSAGES/layouts_slider.mo
R	layouts/slider/locale/sv_SE/LC_MESSAGES
R	layouts/slider/locale/sv_SE
R	layouts/slider/locale/tr_TR/LC_MESSAGES/layouts_slider.mo
R	layouts/slider/locale/tr_TR/LC_MESSAGES
R	layouts/slider/locale/tr_TR
R	layouts/slider/locale/vi_VN/LC_MESSAGES/layouts_slider.mo
R	layouts/slider/locale/vi_VN/LC_MESSAGES
R	layouts/slider/locale/vi_VN
R	layouts/slider/locale/zh_CN/LC_MESSAGES/layouts_slider.mo
R	layouts/slider/locale/zh_CN/LC_MESSAGES
R	layouts/slider/locale/zh_CN
R	layouts/slider/locale
R	layouts/slider/po/GNUmakefile
R	layouts/slider/po/cs_CZ.po
R	layouts/slider/po/de_DE.po
R	layouts/slider/po/fr_FR.po
R	layouts/slider/po/is_IS.po
R	layouts/slider/po/it_IT.po
R	layouts/slider/po/nl_NL.po
R	layouts/slider/po/no_NO.po
R	layouts/slider/po/ru_RU.po
R	layouts/slider/po/strings.raw
R	layouts/slider/po/sv_SE.po
R	layouts/slider/po/tr_TR.po
R	layouts/slider/po/vi_VN.po
R	layouts/slider/po/zh_CN.po
R	layouts/slider/po
R	layouts/slider/slider.js
R	layouts/slider/templates/header.tpl
R	layouts/slider/templates/render.tpl
R	layouts/slider/templates/sidebar.tpl
R	layouts/slider/templates/slider.css
R	layouts/slider/templates/slider.js
R	layouts/slider/templates/slider.tpl
R	layouts/slider/templates
R	layouts/slider
R	layouts/tile/MANIFEST
R	layouts/tile/debug/viewableFiles.txt
R	layouts/tile/debug
R	layouts/tile/layout.css
R	layouts/tile/layout.inc
R	layouts/tile/locale/cs_CZ/LC_MESSAGES/layouts_tile.mo
R	layouts/tile/locale/cs_CZ/LC_MESSAGES
R	layouts/tile/locale/cs_CZ
R	layouts/tile/locale/de_DE/LC_MESSAGES/layouts_tile.mo
R	layouts/tile/locale/de_DE/LC_MESSAGES
R	layouts/tile/locale/de_DE
R	layouts/tile/locale/fr_FR/LC_MESSAGES/layouts_tile.mo
R	layouts/tile/locale/fr_FR/LC_MESSAGES
R	layouts/tile/locale/fr_FR
R	layouts/tile/locale/is_IS/LC_MESSAGES/layouts_tile.mo
R	layouts/tile/locale/is_IS/LC_MESSAGES
R	layouts/tile/locale/is_IS
R	layouts/tile/locale/it_IT/LC_MESSAGES/layouts_tile.mo
R	layouts/tile/locale/it_IT/LC_MESSAGES
R	layouts/tile/locale/it_IT
R	layouts/tile/locale/nl_NL/LC_MESSAGES/layouts_tile.mo
R	layouts/tile/locale/nl_NL/LC_MESSAGES
R	layouts/tile/locale/nl_NL
R	layouts/tile/locale/no_NO/LC_MESSAGES/layouts_tile.mo
R	layouts/tile/locale/no_NO/LC_MESSAGES
R	layouts/tile/locale/no_NO
R	layouts/tile/locale/ru_RU/LC_MESSAGES/layouts_tile.mo
R	layouts/tile/locale/ru_RU/LC_MESSAGES
R	layouts/tile/locale/ru_RU
R	layouts/tile/locale/sv_SE/LC_MESSAGES/layouts_tile.mo
R	layouts/tile/locale/sv_SE/LC_MESSAGES
R	layouts/tile/locale/sv_SE
R	layouts/tile/locale/tr_TR/LC_MESSAGES/layouts_tile.mo
R	layouts/tile/locale/tr_TR/LC_MESSAGES
R	layouts/tile/locale/tr_TR
R	layouts/tile/locale/vi_VN/LC_MESSAGES/layouts_tile.mo
R	layouts/tile/locale/vi_VN/LC_MESSAGES
R	layouts/tile/locale/vi_VN
R	layouts/tile/locale/zh_CN/LC_MESSAGES/layouts_tile.mo
R	layouts/tile/locale/zh_CN/LC_MESSAGES
R	layouts/tile/locale/zh_CN
R	layouts/tile/locale
R	layouts/tile/po/GNUmakefile
R	layouts/tile/po/cs_CZ.po
R	layouts/tile/po/de_DE.po
R	layouts/tile/po/fr_FR.po
R	layouts/tile/po/is_IS.po
R	layouts/tile/po/it_IT.po
R	layouts/tile/po/messages.po
R	layouts/tile/po/nl_NL.po
R	layouts/tile/po/no_NO.po
R	layouts/tile/po/ru_RU.po
R	layouts/tile/po/strings.raw
R	layouts/tile/po/sv_SE.po
R	layouts/tile/po/tr_TR.po
R	layouts/tile/po/vi_VN.po
R	layouts/tile/po/zh_CN.po
R	layouts/tile/po
R	layouts/tile/templates/edit.tpl
R	layouts/tile/templates/guestPreviewModeSwitch.tpl
R	layouts/tile/templates/header.tpl
R	layouts/tile/templates/render.tpl
R	layouts/tile/templates/sidebar.tpl
R	layouts/tile/templates/tile.css
R	layouts/tile/templates/tile.js
R	layouts/tile/templates/tile.tpl
R	layouts/tile/templates
R	layouts/tile/tile.js
R	layouts/tile
R	layouts
R	lib/IE7/README.txt
R	lib/IE7/_private/ie7-logo.gif
R	lib/IE7/_private/ie7-page.css
R	lib/IE7/_private/ie7-server.css
R	lib/IE7/_private/ie7-server.htc
R	lib/IE7/_private/test.png
R	lib/IE7/_private
R	lib/IE7/blank.gif
R	lib/IE7/compatibility/Pure CSS Menus (nearly).html
R	lib/IE7/compatibility/Pure CSS Menus.html
R	lib/IE7/compatibility/abbr.html
R	lib/IE7/compatibility/active.css
R	lib/IE7/compatibility/active.html
R	lib/IE7/compatibility/active.xml
R	lib/IE7/compatibility/adjacent.css
R	lib/IE7/compatibility/adjacent.html
R	lib/IE7/compatibility/adjacent.xml
R	lib/IE7/compatibility/after.html
R	lib/IE7/compatibility/attr-begin.html
R	lib/IE7/compatibility/attr-contains.html
R	lib/IE7/compatibility/attr-dash-list.css
R	lib/IE7/compatibility/attr-dash-list.html
R	lib/IE7/compatibility/attr-dash-list.xml
R	lib/IE7/compatibility/attr-end.html
R	lib/IE7/compatibility/attr-list.css
R	lib/IE7/compatibility/attr-list.html
R	lib/IE7/compatibility/attr-list.xml
R	lib/IE7/compatibility/attr-value.css
R	lib/IE7/compatibility/attr-value.html
R	lib/IE7/compatibility/attr-value.xml
R	lib/IE7/compatibility/attr.css
R	lib/IE7/compatibility/attr.html
R	lib/IE7/compatibility/attr.xml
R	lib/IE7/compatibility/background-fixed.html
R	lib/IE7/compatibility/before.html
R	lib/IE7/compatibility/blue.css
R	lib/IE7/compatibility/bluething.jpg
R	lib/IE7/compatibility/bluething_fade.jpg
R	lib/IE7/compatibility/bottom-left.gif
R	lib/IE7/compatibility/bottom-right.gif
R	lib/IE7/compatibility/box-sizing.html
R	lib/IE7/compatibility/button.html
R	lib/IE7/compatibility/child.css
R	lib/IE7/compatibility/child.html
R	lib/IE7/compatibility/child.xml
R	lib/IE7/compatibility/comment-bug.htm
R	lib/IE7/compatibility/complexspiral/bigben-bg.css
R	lib/IE7/compatibility/complexspiral/demo.html
R	lib/IE7/compatibility/complexspiral/demo2.html
R	lib/IE7/compatibility/complexspiral/flower-bg.css
R	lib/IE7/compatibility/complexspiral/glassy-bg.jpg
R	lib/IE7/compatibility/complexspiral/glassy-gray.jpg
R	lib/IE7/compatibility/complexspiral/glassy-ripple.jpg
R	lib/IE7/compatibility/complexspiral/glassy-tan.jpg
R	lib/IE7/compatibility/complexspiral/glassy.html
R	lib/IE7/compatibility/complexspiral/halfscr-black.gif
R	lib/IE7/compatibility/complexspiral/halfscr-blue.gif
R	lib/IE7/compatibility/complexspiral/halfscr-white.gif
R	lib/IE7/compatibility/complexspiral/lightning-bg.css
R	lib/IE7/compatibility/complexspiral/shell-bg.css
R	lib/IE7/compatibility/complexspiral/shell-bg.jpg
R	lib/IE7/compatibility/complexspiral/shell-blue.jpg
R	lib/IE7/compatibility/complexspiral/shell-fade.jpg
R	lib/IE7/compatibility/complexspiral/shell-wash.jpg
R	lib/IE7/compatibility/complexspiral/shell2-bg.css
R	lib/IE7/compatibility/complexspiral/shuttle-bg.css
R	lib/IE7/compatibility/complexspiral
R	lib/IE7/compatibility/content.html
R	lib/IE7/compatibility/empty.css
R	lib/IE7/compatibility/empty.html
R	lib/IE7/compatibility/empty.xml
R	lib/IE7/compatibility/first-child.css
R	lib/IE7/compatibility/first-child.html
R	lib/IE7/compatibility/first-child.xml
R	lib/IE7/compatibility/fixed.html
R	lib/IE7/compatibility/float.html
R	lib/IE7/compatibility/focus.css
R	lib/IE7/compatibility/focus.html
R	lib/IE7/compatibility/focus.xml
R	lib/IE7/compatibility/form.html
R	lib/IE7/compatibility/green.css
R	lib/IE7/compatibility/horizontal-gauge.gif
R	lib/IE7/compatibility/hover.css
R	lib/IE7/compatibility/hover.html
R	lib/IE7/compatibility/hover.xml
R	lib/IE7/compatibility/ie7-demo.js
R	lib/IE7/compatibility/imports.css
R	lib/IE7/compatibility/imports.html
R	lib/IE7/compatibility/indirect.css
R	lib/IE7/compatibility/indirect.html
R	lib/IE7/compatibility/indirect.xml
R	lib/IE7/compatibility/label.html
R	lib/IE7/compatibility/lang.html
R	lib/IE7/compatibility/last-child.css
R	lib/IE7/compatibility/last-child.html
R	lib/IE7/compatibility/last-child.xml
R	lib/IE7/compatibility/left-right.html
R	lib/IE7/compatibility/max-width.html
R	lib/IE7/compatibility/min-height.html
R	lib/IE7/compatibility/min-width.html
R	lib/IE7/compatibility/multiple-classes-bug.html
R	lib/IE7/compatibility/multiple-classes.css
R	lib/IE7/compatibility/multiple-classes.html
R	lib/IE7/compatibility/multiple-classes.xml
R	lib/IE7/compatibility/multiple-pseudo-classes.html
R	lib/IE7/compatibility/nth-child.html
R	lib/IE7/compatibility/nth-last-child.html
R	lib/IE7/compatibility/only-child.html
R	lib/IE7/compatibility/png-background.html
R	lib/IE7/compatibility/png.css
R	lib/IE7/compatibility/png.html
R	lib/IE7/compatibility/png.xml
R	lib/IE7/compatibility/purple_stucco.jpg
R	lib/IE7/compatibility/red.css
R	lib/IE7/compatibility/root.css
R	lib/IE7/compatibility/root.html
R	lib/IE7/compatibility/root.xml
R	lib/IE7/compatibility/suite.html
R	lib/IE7/compatibility/super-dynamic.html
R	lib/IE7/compatibility/super.css
R	lib/IE7/compatibility/super.xml
R	lib/IE7/compatibility/test.css
R	lib/IE7/compatibility/top-bottom.html
R	lib/IE7/compatibility/top-left.gif
R	lib/IE7/compatibility/top-right.gif
R	lib/IE7/compatibility/tukan-trans.png
R	lib/IE7/compatibility/unscrollable.html
R	lib/IE7/compatibility/vertical-gauge.gif
R	lib/IE7/compatibility
R	lib/IE7/configure.html
R	lib/IE7/g2-test.php
R	lib/IE7/ie7-box-model.js
R	lib/IE7/ie7-content.htm
R	lib/IE7/ie7-core.js
R	lib/IE7/ie7-css-strict.js
R	lib/IE7/ie7-css2.js
R	lib/IE7/ie7-css3.js
R	lib/IE7/ie7-debug.css
R	lib/IE7/ie7-debug.htc
R	lib/IE7/ie7-fixed.js
R	lib/IE7/ie7-html.css
R	lib/IE7/ie7-html.htc
R	lib/IE7/ie7-html4.js
R	lib/IE7/ie7-ie5.css
R	lib/IE7/ie7-ie5.js
R	lib/IE7/ie7-lite-p.js
R	lib/IE7/ie7-lite.js
R	lib/IE7/ie7-logo.gif
R	lib/IE7/ie7-png.js
R	lib/IE7/ie7-server.css
R	lib/IE7/ie7-standard-p.js
R	lib/IE7/ie7-standard.js
R	lib/IE7/ie7-xml.css
R	lib/IE7/ie7-xml.htc
R	lib/IE7/ie7.gif
R	lib/IE7/index.html
R	lib/IE7/install.html
R	lib/IE7/license
R	lib/IE7/modules/ie7-box-model.js
R	lib/IE7/modules/ie7-core.js
R	lib/IE7/modules/ie7-css-strict.js
R	lib/IE7/modules/ie7-css.js
R	lib/IE7/modules/ie7-debug.js
R	lib/IE7/modules/ie7-fixed.js
R	lib/IE7/modules/ie7-html.js
R	lib/IE7/modules/ie7-png.js
R	lib/IE7/modules/ie7-xml.js
R	lib/IE7/modules
R	lib/IE7/samples/ie7-config.htc
R	lib/IE7/samples/ie7-config.xml
R	lib/IE7/samples
R	lib/IE7/src/ie7-box-model.js
R	lib/IE7/src/ie7-content.htm
R	lib/IE7/src/ie7-core.js
R	lib/IE7/src/ie7-css-strict.js
R	lib/IE7/src/ie7-css.js
R	lib/IE7/src/ie7-css2.js
R	lib/IE7/src/ie7-css3.js
R	lib/IE7/src/ie7-debug.js
R	lib/IE7/src/ie7-fixed.js
R	lib/IE7/src/ie7-html.js
R	lib/IE7/src/ie7-html4.js
R	lib/IE7/src/ie7-ie5.js
R	lib/IE7/src/ie7-lite.js
R	lib/IE7/src/ie7-png.js
R	lib/IE7/src/ie7-standard.js
R	lib/IE7/src
R	lib/IE7/test-trans.png
R	lib/IE7/test.html
R	lib/IE7/usage.html
R	lib/IE7
R	lib/java/GRApplet.tpl
R	lib/java/GalleryRemoteApplet.jar
R	lib/java/GalleryRemoteAppletMini.jar
R	lib/java/GalleryRemoteHTTPClient.jar
R	lib/java/applet_img.jar
R	lib/java
R	lib/smarty/core/core.assemble_auto_filename.php
R	lib/smarty/core/core.assemble_plugin_filepath.php
R	lib/smarty/core/core.assign_smarty_interface.php
R	lib/smarty/core/core.create_dir_structure.php
R	lib/smarty/core/core.display_debug_console.php
R	lib/smarty/core/core.fetch_resource_info.php
R	lib/smarty/core/core.get_include_path.php
R	lib/smarty/core/core.get_microtime.php
R	lib/smarty/core/core.get_php_resource.php
R	lib/smarty/core/core.is_secure.php
R	lib/smarty/core/core.is_trusted.php
R	lib/smarty/core/core.load_plugins.php
R	lib/smarty/core/core.load_resource_plugin.php
R	lib/smarty/core/core.parse_resource_name.php
R	lib/smarty/core/core.process_cached_inserts.php
R	lib/smarty/core/core.process_compiled_include.php
R	lib/smarty/core/core.read_cache_file.php
R	lib/smarty/core/core.rm_auto.php
R	lib/smarty/core/core.rmdir.php
R	lib/smarty/core/core.run_insert_handler.php
R	lib/smarty/core/core.smarty_include.php
R	lib/smarty/core/core.smarty_include_php.php
R	lib/smarty/core/core.write_cache_file.php
R	lib/smarty/core/core.write_cache_paths_file.php
R	lib/smarty/core/core.write_compiled_include.php
R	lib/smarty/core/core.write_compiled_resource.php
R	lib/smarty/core/core.write_file.php
R	lib/smarty/core
R	lib/smarty_plugins/function.adminlinkid.php
R	lib/smarty_plugins/function.safecssname.php
R	lib/tools/CRC32.jar
R	lib/tools/GNUmakefile.inc
R	lib/tools/bin/codex-download.tpl
R	lib/tools/bin/filterManifests.pl
R	lib/tools/bin/generate-interfaces.php
R	lib/tools/bin/interface.tpl
R	lib/tools/bin/rebuild-modules.sh
R	lib/tools/bin/update-codex-download-page.php
R	lib/tools/dtd/GalleryClass2.0.dtd
R	lib/tools/gd/index.php
R	lib/tools/gd/stylesheet.css
R	lib/tools/gd
R	lib/tools/messages/messageFooter.inc
R	lib/tools/messages/messageHeader.inc
R	lib/tools/messages/missingConfig.inc
R	lib/tools/messages/missingPassword.inc
R	lib/tools/messages/passwordForm.inc
R	lib/tools/messages
R	lib/tools/phpinfo.php
R	lib/tools/po/extract.pl
R	lib/tools/security.inc
R	lib/tools/test/TestCase/DeactivateModule.class
R	lib/tools/test/TestCase/InstallModule.class
R	lib/tools/test/TestCase
R	lib/tools/test/TestCase.class
R	lib/tools/test/TestCase/ActivateModule.class
R	lib/tools/test/index.php
R	lib/tools/test/templates/index.tpl
R	lib/tools/test/templates
R	lib/tools/test
R	templates/debug.tpl
R	templates/embedBody.tpl
R	templates/embedHead.tpl
R	templates/error.tpl
R	templates/errorBody.tpl
R	templates/errorHead.tpl
R	templates/global.tpl
R	templates/layout.css
R	templates/layout.css.php
R	templates/layoutNew.css
R	templates/profile.tpl
R	templates/redirect.tpl
R	templates/sidebar.tpl
R	templates/standalone.tpl
R	templates
R	themes/mblue/MANIFEST
R	themes/mblue/theme.css
R	themes/mblue
R	themes/veloria/MANIFEST
R	themes/veloria/images/banner.gif
R	themes/veloria/images/pixel.gif
R	themes/veloria/images/tab-left-act.gif
R	themes/veloria/images/tab-left-inact.gif
R	themes/veloria/images/tab-left-on.gif
R	themes/veloria/images/tab-left.gif
R	themes/veloria/images/tab-mid-act.gif
R	themes/veloria/images/tab-mid-inact.gif
R	themes/veloria/images/tab-no-tab.gif
R	themes/veloria/images/tab-right-act.gif
R	themes/veloria/images/tab-right-inact.gif
R	themes/veloria/images/tab-right-on.gif
R	themes/veloria/images/tab-right.gif
R	themes/veloria/images/tab-tween-act-inact.gif
R	themes/veloria/images/tab-tween-inact-act.gif
R	themes/veloria/images/tab-tween-inact-inact.gif
R	themes/veloria/images
R	themes/veloria/styles/theme.css
R	themes/veloria/styles
R	themes/veloria/theme.css
R	themes/veloria/theme.inc
R	themes/veloria
R	upgrade/images/g2Logo_install_head.png
R	upgrade/locale/bg_BG/LC_MESSAGES/gallery2_upgrade.mo
R	upgrade/locale/bg_BG/LC_MESSAGES
R	upgrade/locale/bg_BG
R	upgrade/locale/cs_CZ/LC_MESSAGES/gallery2_upgrade.mo
R	upgrade/locale/cs_CZ/LC_MESSAGES
R	upgrade/locale/cs_CZ
R	upgrade/locale/de_DE/LC_MESSAGES/gallery2_upgrade.mo
R	upgrade/locale/de_DE/LC_MESSAGES
R	upgrade/locale/de_DE
R	upgrade/locale/eu_ES/LC_MESSAGES/gallery2_upgrade.mo
R	upgrade/locale/eu_ES/LC_MESSAGES
R	upgrade/locale/eu_ES
R	upgrade/locale/fr_FR/LC_MESSAGES/gallery2_upgrade.mo
R	upgrade/locale/fr_FR/LC_MESSAGES
R	upgrade/locale/fr_FR
R	upgrade/locale/it_IT/LC_MESSAGES/gallery2_upgrade.mo
R	upgrade/locale/it_IT/LC_MESSAGES
R	upgrade/locale/it_IT
R	upgrade/locale/nl_NL/LC_MESSAGES/gallery2_upgrade.mo
R	upgrade/locale/nl_NL/LC_MESSAGES
R	upgrade/locale/nl_NL
R	upgrade/locale/sr_YU/LC_MESSAGES/gallery2_upgrade.mo
R	upgrade/locale/sr_YU/LC_MESSAGES
R	upgrade/locale/sr_YU
R	upgrade/locale/tr_TR/LC_MESSAGES/gallery2_upgrade.mo
R	upgrade/locale/tr_TR/LC_MESSAGES
R	upgrade/locale/tr_TR
R	upgrade/locale/vi_VN/LC_MESSAGES/gallery2_upgrade.mo
R	upgrade/locale/vi_VN/LC_MESSAGES
R	upgrade/locale/vi_VN
R	upgrade/po/bg_BG.po
R	upgrade/po/cs_CZ.po
R	upgrade/po/de_DE.po
R	upgrade/po/eu_ES.po
R	upgrade/po/fr_FR.po
R	upgrade/po/it_IT.po
R	upgrade/po/nl_NL.po
R	upgrade/po/sr_YU.po
R	upgrade/po/tr_TR.po
R	upgrade/po/vi_VN.po