File: package.xml

package info (click to toggle)
php-horde-ansel 3.0.10%2Bdebian1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,020 kB
  • sloc: php: 15,720; xml: 1,994; javascript: 1,784; makefile: 37; sh: 3
file content (1489 lines) | stat: -rw-r--r-- 99,002 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
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.10.4" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
 <name>ansel</name>
 <channel>pear.horde.org</channel>
 <summary>Photo gallery application</summary>
 <description>Ansel is a full featured photo gallery application.</description>
 <lead>
  <name>Michael J Rubinsky</name>
  <user>mrubinsk</user>
  <email>mrubinsk@horde.org</email>
  <active>yes</active>
 </lead>
 <lead>
  <name>Jan Schneider</name>
  <user>jan</user>
  <email>jan@horde.org</email>
  <active>yes</active>
 </lead>
 <lead>
  <name>Chuck Hagenbuch</name>
  <user>chuck</user>
  <email>chuck@horde.org</email>
  <active>no</active>
 </lead>
 <date>2019-05-12</date>
 <time>11:46:26</time>
 <version>
  <release>3.0.10</release>
  <api>3.0.0</api>
 </version>
 <stability>
  <release>stable</release>
  <api>stable</api>
 </stability>
 <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
 <notes>
* [mjr] Fix removing image stacks when resetting default image.
* [mjr] Fix fatal error when attempting to delete an image that doesn&apos;t exist.
 </notes>
 <contents>
  <dir baseinstalldir="/" name="/">
   <file baseinstalldir="/" md5sum="767761812d1385c1966aead9b3fc770e" name="bin/ansel" role="script">
    <tasks:replace from="/usr/bin/env php" to="php_bin" type="pear-config" />
   </file>
   <file baseinstalldir="/" md5sum="f3c4595634cae937cc48c7be4eebc6c1" name="bin/ansel-convert-sql-shares-to-sqlng" role="script">
    <tasks:replace from="/usr/bin/env php" to="php_bin" type="pear-config" />
   </file>
   <file baseinstalldir="/" md5sum="ea69f18418141ad3c71e0ad7aa863d33" name="bin/ansel-exif-to-tags" role="script">
    <tasks:replace from="/usr/bin/env php" to="php_bin" type="pear-config" />
   </file>
   <file baseinstalldir="/" md5sum="fcabbf8d980cf7bf46aaab44d8d64156" name="bin/ansel-garbage-collection" role="script">
    <tasks:replace from="/usr/bin/env php" to="php_bin" type="pear-config" />
   </file>
   <file baseinstalldir="/" md5sum="3bf3b63aca541d1dac03a74989499691" name="bin/AnselPublish.scpt" role="script" />
   <file baseinstalldir="/" md5sum="f5a271e285ee67261f914f7982fdfa5a" name="config/.htaccess" role="horde" />
   <file baseinstalldir="/" md5sum="09e22d2260e02eb5f8aaf0c090e7aa89" name="config/conf.xml" role="horde" />
   <file baseinstalldir="/" md5sum="808545773283a21ea0984c28a6a2ac8d" name="config/hooks.php.dist" role="horde" />
   <file baseinstalldir="/" md5sum="ed4cbfe4806e3dd7a1d7285cad286ee1" name="config/prefs.php" role="horde" />
   <file baseinstalldir="/" md5sum="e1d2bd88949af053e65a30cbbe303ff8" name="config/styles.php" role="horde" />
   <file baseinstalldir="/" md5sum="ae27c5d6c7755d53e33a44ae961bcdce" name="docs/CHANGES" role="doc" />
   <file baseinstalldir="/" md5sum="b150fc3477c4cb36bff9d41939ca4be0" name="docs/CREDITS" role="doc" />
   <file baseinstalldir="/" md5sum="aaf6c6ec36d7bb241c93e67318417f9e" name="docs/INSTALL" role="doc" />
   <file baseinstalldir="/" md5sum="120a962d3d2c5caf075c03d417ed745a" name="docs/lighttpd-ansel.conf" role="doc" />
   <file baseinstalldir="/" md5sum="fe80065e97e249dc2d632d417d75bda9" name="docs/RELEASE_NOTES" role="doc" />
   <file baseinstalldir="/" md5sum="54e5fc1a25a6fd58c7ded53a652c54bb" name="faces/search/all.php" role="horde" />
   <file baseinstalldir="/" md5sum="2f91fe88ee40649fc006298479485730" name="faces/search/image.php" role="horde" />
   <file baseinstalldir="/" md5sum="e79077a8f820f7ff1afa38cce4397141" name="faces/search/image_define.php" role="horde" />
   <file baseinstalldir="/" md5sum="f56f4ef68c9313b23587604ff3b2f3c2" name="faces/search/image_save.php" role="horde" />
   <file baseinstalldir="/" md5sum="a77b18f22d3da269cf66ea1e366fef3b" name="faces/search/image_search.php" role="horde" />
   <file baseinstalldir="/" md5sum="6beadd71095dd8f86ab101f6da99e0ad" name="faces/search/img.php" role="horde" />
   <file baseinstalldir="/" md5sum="b3262bed7ea8e4835d35073a4c0153ad" name="faces/search/name.php" role="horde" />
   <file baseinstalldir="/" md5sum="acf8665fd27ca602dfa398158185d587" name="faces/search/named.php" role="horde" />
   <file baseinstalldir="/" md5sum="fa298c84fa55dcaf6ded3cc9a4ec68f8" name="faces/search/owner.php" role="horde" />
   <file baseinstalldir="/" md5sum="e0ab23a6e8e9dd2bc65866422ecb9a65" name="faces/search/tabs.php" role="horde" />
   <file baseinstalldir="/" md5sum="7881734bdc0738d25096f5eb7fdd967f" name="faces/claim.php" role="horde" />
   <file baseinstalldir="/" md5sum="c4e269a1e2ba695a65c726d53987864c" name="faces/custom.php" role="horde" />
   <file baseinstalldir="/" md5sum="0ef3ba445718d77453c44ab5cea3acbf" name="faces/face.php" role="horde" />
   <file baseinstalldir="/" md5sum="ce89fcfcc122c3b55af7bf01d1953e1b" name="faces/gallery.php" role="horde" />
   <file baseinstalldir="/" md5sum="6c7dd5ab8d6abeb361d045a843ecdaf8" name="faces/image.php" role="horde" />
   <file baseinstalldir="/" md5sum="b43e30d873e34b3733d53ddc214a84e5" name="faces/img.php" role="horde" />
   <file baseinstalldir="/" md5sum="af7aff5c8eaa70f5dc45b90693d0f73c" name="faces/name.php" role="horde" />
   <file baseinstalldir="/" md5sum="ee5df3a8ea9f8492c63afeaf10c59089" name="faces/report.php" role="horde" />
   <file baseinstalldir="/" md5sum="b7efaeb25656f475152b2664eaec86c7" name="faces/savecustom.php" role="horde" />
   <file baseinstalldir="/" md5sum="2438a16c21c3857c71f78a3957d91fc0" name="gallery/captions.php" role="horde" />
   <file baseinstalldir="/" md5sum="d41d8cd98f00b204e9800998ecf8427e" name="gallery/index.php" role="horde" />
   <file baseinstalldir="/" md5sum="c9806bc9af2234f3bcecd2b7b34caa9f" name="gallery/sort.php" role="horde" />
   <file baseinstalldir="/" md5sum="cb47a5f6ff16976bc072bce3909af81c" name="img/download.php" role="horde" />
   <file baseinstalldir="/" md5sum="2dfa0cfd981fd79b41a857ce69cd85b4" name="img/ecard.php" role="horde" />
   <file baseinstalldir="/" md5sum="6427a6596e2af95577a4b869bce065aa" name="img/full.php" role="horde" />
   <file baseinstalldir="/" md5sum="ee4a12ee239f56b8fd922acaf41996cd" name="img/index.php" role="horde" />
   <file baseinstalldir="/" md5sum="b264a41e5c64da238600c9c2063ae4a7" name="img/mini.php" role="horde" />
   <file baseinstalldir="/" md5sum="e4bd3aae14e047fce9cd7f8f192de1b1" name="img/screen.php" role="horde" />
   <file baseinstalldir="/" md5sum="3d3d2a21587d04e1963f4fa3f48cbdf5" name="img/thumb.php" role="horde" />
   <file baseinstalldir="/" md5sum="e27bdafdfba67d604c1ea1d095e0762b" name="img/upload.php" role="horde" />
   <file baseinstalldir="/" md5sum="65228ea13fec43a96e6e97b918c1ba9d" name="img/upload_preview.php" role="horde" />
   <file baseinstalldir="/" md5sum="060bc51d4a0bff63b78a4fd88dc7dc94" name="js/blocks/geotag.js" role="horde" />
   <file baseinstalldir="/" md5sum="0aaff43aa2c71fcd61500c98195dff0a" name="js/views/common.js" role="horde" />
   <file baseinstalldir="/" md5sum="2aadd5c3c23926e56921787691339a94" name="js/views/gallery.js" role="horde" />
   <file baseinstalldir="/" md5sum="8388469f93c4ecb091bc500187895fce" name="js/views/image.js" role="horde" />
   <file baseinstalldir="/" md5sum="ee1b67efff3c33185f643add7463e235" name="js/views/slideshow.js" role="horde" />
   <file baseinstalldir="/" md5sum="589ab6d2b44cb7933b3f2f6b05bfba05" name="js/widgets/geotag.js" role="horde" />
   <file baseinstalldir="/" md5sum="5a07e99fd88366df29c23d29e6b601f4" name="js/widgets/tagactions.js" role="horde" />
   <file baseinstalldir="/" md5sum="748d6d23d2fceaf5f15325355bb133e5" name="js/block.js" role="horde" />
   <file baseinstalldir="/" md5sum="fbf4e21bd9e263c857f641ada6fd2997" name="js/carousel.js" role="horde" />
   <file baseinstalldir="/" md5sum="f650ff93bdf8d41d1afa0247e468e155" name="js/cropper.js" role="horde" />
   <file baseinstalldir="/" md5sum="9ecd021a4bc3f4c34b464cb4770a4347" name="js/editfaces.js" role="horde" />
   <file baseinstalldir="/" md5sum="4648a81f7ef8bbe96b1bbc26fb7c041f" name="js/embed.js" role="horde" />
   <file baseinstalldir="/" md5sum="1c2ceda1db622b6b8877961dd17cddf8" name="js/imagefaces.js" role="horde" />
   <file baseinstalldir="/" md5sum="862549c6f14d3288d50fad209c0b2027" name="js/map.js" role="horde" />
   <file baseinstalldir="/" md5sum="94ca6e0690ffaeff810f8f71addf1140" name="js/map_edit.js" role="horde" />
   <file baseinstalldir="/" md5sum="fac91b81d70d4b4436ecb911468d3e73" name="js/resizeimage.js" role="horde" />
   <file baseinstalldir="/" md5sum="cf19a5b97969b38804bc144e406a0a35" name="js/slugcheck.js" role="horde" />
   <file baseinstalldir="/" md5sum="29795d3b1c7f7793f9e52d8291ea53e6" name="js/smartmobile.js" role="horde" />
   <file baseinstalldir="/" md5sum="78cfc9178c9189f8a39f2f56075fba73" name="js/togglewidget.js" role="horde" />
   <file baseinstalldir="/" md5sum="260e9bf081a095ac786a846636ed134a" name="lib/Ajax/Application/Handler.php" role="horde" />
   <file baseinstalldir="/" md5sum="c9c55e3987bb7949ff7a519faafe0626" name="lib/Ajax/Imple/EditCaption.php" role="horde" />
   <file baseinstalldir="/" md5sum="c5bdb6ffaa5ef496133ccb488f7f38fa" name="lib/Ajax/Imple/EditFaces.php" role="horde" />
   <file baseinstalldir="/" md5sum="94bee1dd5754c1d1954bbaa2d3c7afcf" name="lib/Ajax/Imple/LocationAutoCompleter.php" role="horde" />
   <file baseinstalldir="/" md5sum="7bbb90e2c7cdf157f1e1f0c915ca9d16" name="lib/Ajax/Imple/ToggleGalleryActions.php" role="horde" />
   <file baseinstalldir="/" md5sum="286291d09926fccec2c3e7f29ec0b5f5" name="lib/Ajax/Imple/ToggleOtherGalleries.php" role="horde" />
   <file baseinstalldir="/" md5sum="253298919919578160497767d0c4df2c" name="lib/Ajax/Application.php" role="horde" />
   <file baseinstalldir="/" md5sum="da50c4adb6347705c3c69b7d03238117" name="lib/Block/Cloud.php" role="horde" />
   <file baseinstalldir="/" md5sum="dcc6d1124ed0e85300dde135a25fe687" name="lib/Block/Gallery.php" role="horde" />
   <file baseinstalldir="/" md5sum="15e085b8c556aef331dec945f44848e2" name="lib/Block/MyGalleries.php" role="horde" />
   <file baseinstalldir="/" md5sum="d38de64fef3d8ef603bb6ed622780941" name="lib/Block/RandomPhoto.php" role="horde" />
   <file baseinstalldir="/" md5sum="35d7062c8b62e190c26ede6b14f7ada3" name="lib/Block/RecentComments.php" role="horde" />
   <file baseinstalldir="/" md5sum="0c6aaa1db6cef277cccb96ee91903586" name="lib/Block/RecentFaces.php" role="horde" />
   <file baseinstalldir="/" md5sum="af783a7ca686f74e50e2573d5d6a02e2" name="lib/Block/RecentlyAdded.php" role="horde" />
   <file baseinstalldir="/" md5sum="f91424fa6c730a5c7edde0974dec2bdb" name="lib/Block/RecentlyAddedGeodata.php" role="horde" />
   <file baseinstalldir="/" md5sum="8b521ecaf7e9e1188c4ac692e38a8a8c" name="lib/Faces/Base.php" role="horde" />
   <file baseinstalldir="/" md5sum="48c2dd7cfb37704168987a8e3d824e3b" name="lib/Faces/Facedetect.php" role="horde" />
   <file baseinstalldir="/" md5sum="89daff88fdb3a7b0cbef87fa452afd0b" name="lib/Faces/User.php" role="horde" />
   <file baseinstalldir="/" md5sum="77b2cb31661b286e5ebbea6a2dfeb3bd" name="lib/Factory/Faces.php" role="horde" />
   <file baseinstalldir="/" md5sum="37c418a9892b3cb81784e0239d5c2c37" name="lib/Factory/Storage.php" role="horde" />
   <file baseinstalldir="/" md5sum="42e39daf32383dac1fcfb8036011d79b" name="lib/Factory/Styles.php" role="horde" />
   <file baseinstalldir="/" md5sum="7144e447f9d61507cb0cfc3cafcaaeb2" name="lib/Form/Ecard.php" role="horde" />
   <file baseinstalldir="/" md5sum="d0b0291c93f1dc29d27bb515161f276c" name="lib/Form/Image.php" role="horde" />
   <file baseinstalldir="/" md5sum="5f3ec00bd71993312d279a0d5286fe66" name="lib/Form/ImageDate.php" role="horde" />
   <file baseinstalldir="/" md5sum="c7eacf78c0b1b67b3967307fc06d8acd" name="lib/Form/Upload.php" role="horde" />
   <file baseinstalldir="/" md5sum="00b9c8251536f9d7973344c8ffeb74fb" name="lib/Form/Watermark.php" role="horde" />
   <file baseinstalldir="/" md5sum="1162dabd43cc048d757e9eff87f11c3d" name="lib/Gallery/Decorator/Date.php" role="horde" />
   <file baseinstalldir="/" md5sum="6337b206cc28d920fe6eab987e648152" name="lib/GalleryMode/Base.php" role="horde" />
   <file baseinstalldir="/" md5sum="eb15406fd8a1a52858b23978f1cbdc57" name="lib/GalleryMode/Date.php" role="horde" />
   <file baseinstalldir="/" md5sum="54fcecfbbff3d890e3a9a3b92a91a166" name="lib/GalleryMode/Normal.php" role="horde" />
   <file baseinstalldir="/" md5sum="4283c1c47f504ed37b4332e5abfce7d9" name="lib/ImageGenerator/Mini.php" role="horde" />
   <file baseinstalldir="/" md5sum="8f83b5be274fabc8a07f7554176f6d73" name="lib/ImageGenerator/PolaroidThumb.php" role="horde" />
   <file baseinstalldir="/" md5sum="de0f9caaed288fdaa6c754b4bc25140e" name="lib/ImageGenerator/PolaroidThumbStack.php" role="horde" />
   <file baseinstalldir="/" md5sum="600b8c6e4869ad7222db6f9557c01871" name="lib/ImageGenerator/RoundedThumb.php" role="horde" />
   <file baseinstalldir="/" md5sum="3f7e8c1fa6e6eff501106c47855fa9c6" name="lib/ImageGenerator/RoundedThumbStack.php" role="horde" />
   <file baseinstalldir="/" md5sum="05a690a4420cf36313094ea4033158b7" name="lib/ImageGenerator/Screen.php" role="horde" />
   <file baseinstalldir="/" md5sum="ade2d55187a7c9e132d7d02065cba883" name="lib/ImageGenerator/ShadowThumb.php" role="horde" />
   <file baseinstalldir="/" md5sum="7bd34d8976cce4072e1238f12ffd74f8" name="lib/ImageGenerator/ShadowThumbStack.php" role="horde" />
   <file baseinstalldir="/" md5sum="c9d4575ef89198b649a5b60df173fb40" name="lib/ImageGenerator/SquareThumb.php" role="horde" />
   <file baseinstalldir="/" md5sum="ea47b292bbf77a5de7b59448740d468b" name="lib/ImageGenerator/Thumb.php" role="horde" />
   <file baseinstalldir="/" md5sum="b7e01f8f92d6ca1af9ce5875c027bf96" name="lib/LoginTasks/SystemTask/Upgrade.php" role="horde" />
   <file baseinstalldir="/" md5sum="9d19ef10488e2407f60ec36601002d5b" name="lib/Prefs/Special/GallerySelect.php" role="horde" />
   <file baseinstalldir="/" md5sum="522c4b91e2aa19eb241dfbadf5be9827" name="lib/Prefs/Special/GalleryStyle.php" role="horde" />
   <file baseinstalldir="/" md5sum="ed7557bd1333969a357381536e59a962" name="lib/Queue/ProcessThumbs.php" role="horde" />
   <file baseinstalldir="/" md5sum="2603f8cee4e6a5a28e65f9e7947892e3" name="lib/Report/letter.php" role="horde" />
   <file baseinstalldir="/" md5sum="a2db982d45fcbff5331ef14fba9fedab" name="lib/Report/mail.php" role="horde" />
   <file baseinstalldir="/" md5sum="eb6c5fc17983cb1c6122e28f70585a33" name="lib/Report/tickets.php" role="horde" />
   <file baseinstalldir="/" md5sum="bdd59b2e824bb557e3571da72e284d3d" name="lib/Tile/DateGallery.php" role="horde" />
   <file baseinstalldir="/" md5sum="fb8459dee68a18ab7b7074128cb6dd04" name="lib/Tile/Gallery.php" role="horde" />
   <file baseinstalldir="/" md5sum="a2ee5e31f34dd48fc5ec08fef1f43dab" name="lib/Tile/Image.php" role="horde" />
   <file baseinstalldir="/" md5sum="e8acd044feacd75da83b7c4c2050b02a" name="lib/View/EmbeddedRenderer/GalleryLink.php" role="horde" />
   <file baseinstalldir="/" md5sum="e12dc283cc70a63a1bb03bbf0d687490" name="lib/View/EmbeddedRenderer/Mini.php" role="horde" />
   <file baseinstalldir="/" md5sum="febf3617c18904e072dd916ced45d07a" name="lib/View/EmbeddedRenderer/Slideshow.php" role="horde" />
   <file baseinstalldir="/" md5sum="f37cc9d9511f5bff4330eb7a3d74b40e" name="lib/View/GalleryRenderer/Base.php" role="horde" />
   <file baseinstalldir="/" md5sum="32678c5f86ed4d12d30ab3a021cd3b54" name="lib/View/GalleryRenderer/Gallery.php" role="horde" />
   <file baseinstalldir="/" md5sum="b8345d018ad2d030b95dcac2877dbc1c" name="lib/View/GalleryRenderer/GalleryLightbox.php" role="horde" />
   <file baseinstalldir="/" md5sum="da7457ebe1121cba7e1d2fc25332ac2a" name="lib/View/Ansel.php" role="horde" />
   <file baseinstalldir="/" md5sum="e003a6511b704254ef76dafa2d667777" name="lib/View/Base.php" role="horde" />
   <file baseinstalldir="/" md5sum="3da3292d22c854cb59f9f08b2edaa39c" name="lib/View/Gallery.php" role="horde" />
   <file baseinstalldir="/" md5sum="06cf770d24b6edbcd950775b0d703538" name="lib/View/GalleryProperties.php" role="horde" />
   <file baseinstalldir="/" md5sum="6908adad978021f0d4820e1794d3138e" name="lib/View/Image.php" role="horde" />
   <file baseinstalldir="/" md5sum="b213fd7b73e7ce7524705558b387236d" name="lib/View/List.php" role="horde" />
   <file baseinstalldir="/" md5sum="446e15e0dfdaf5034e0689e569eb23ae" name="lib/View/Results.php" role="horde" />
   <file baseinstalldir="/" md5sum="42f00a7bd97fbfc268f4e42cc9ad789c" name="lib/View/Slideshow.php" role="horde" />
   <file baseinstalldir="/" md5sum="70410190fe7245f5c740235432f3fa12" name="lib/View/Upload.php" role="horde" />
   <file baseinstalldir="/" md5sum="4b508b37012a3528ea818201ee4d1617" name="lib/Widget/Actions.php" role="horde" />
   <file baseinstalldir="/" md5sum="bd626e7974fb2059ebd9306612d7f2c5" name="lib/Widget/Base.php" role="horde" />
   <file baseinstalldir="/" md5sum="8150182498968939bc96f931f78919f5" name="lib/Widget/GalleryFaces.php" role="horde" />
   <file baseinstalldir="/" md5sum="e539b95c23154b2adbe7f83326ed80c5" name="lib/Widget/Geotag.php" role="horde" />
   <file baseinstalldir="/" md5sum="a8ca40fe5625a27c363befcf8770238b" name="lib/Widget/ImageFaces.php" role="horde" />
   <file baseinstalldir="/" md5sum="640db4da4a6eb5e403895cc9127dbb51" name="lib/Widget/Links.php" role="horde" />
   <file baseinstalldir="/" md5sum="0ef613fc1352953e9ea6ffe2f5f2a169" name="lib/Widget/OtherGalleries.php" role="horde" />
   <file baseinstalldir="/" md5sum="a16a22618570d450a4c588d41bb6aa9b" name="lib/Widget/OwnerFaces.php" role="horde" />
   <file baseinstalldir="/" md5sum="bf045a8008f1de7e4ccd2995951a7dac" name="lib/Widget/SimilarPhotos.php" role="horde" />
   <file baseinstalldir="/" md5sum="0e7b6bd59a9f5fda83a5a9732502a994" name="lib/Widget/Tags.php" role="horde" />
   <file baseinstalldir="/" md5sum="f5a271e285ee67261f914f7982fdfa5a" name="lib/.htaccess" role="horde" />
   <file baseinstalldir="/" md5sum="28f2630f48c2b2c51603261e15fcd70e" name="lib/ActionHandler.php" role="horde" />
   <file baseinstalldir="/" md5sum="a714cd3f003235e16ecaeda38429ddb9" name="lib/Ansel.php" role="horde" />
   <file baseinstalldir="/" md5sum="2dd11e3ff5e5174f10a49d652ac39bdc" name="lib/Api.php" role="horde" />
   <file baseinstalldir="/" md5sum="f45716c7854725849ae9cae871aa4d16" name="lib/Application.php" role="horde" />
   <file baseinstalldir="/" md5sum="1fdc5ba7d1216238fe47c9338d066edd" name="lib/Config.php" role="horde" />
   <file baseinstalldir="/" md5sum="9fd15689301b2a67dca1c8c5f09465d6" name="lib/Exception.php" role="horde" />
   <file baseinstalldir="/" md5sum="1865b870ac0c6ef95e96ff1139cb29c9" name="lib/Faces.php" role="horde" />
   <file baseinstalldir="/" md5sum="93f6be3f9e5afc79cd7db48b64850754" name="lib/Gallery.php" role="horde" />
   <file baseinstalldir="/" md5sum="af7de7060b6fab96e86bbd96a417ff07" name="lib/Image.php" role="horde" />
   <file baseinstalldir="/" md5sum="ab2c06b0a6aa6bd66e0c56c33ba537f6" name="lib/ImageGenerator.php" role="horde" />
   <file baseinstalldir="/" md5sum="0dcc9fe67a7ce6d257eeaa4baf5500c6" name="lib/Report.php" role="horde" />
   <file baseinstalldir="/" md5sum="c4c1308c2cd9246e130c47701942c52e" name="lib/Storage.php" role="horde" />
   <file baseinstalldir="/" md5sum="dcb98061d283dffc2e4f9f3c976dd32d" name="lib/Style.php" role="horde" />
   <file baseinstalldir="/" md5sum="a70a6bc287a8aed3d7da5a9f7ae09ce5" name="lib/TagBrowser.php" role="horde" />
   <file baseinstalldir="/" md5sum="6918754417212c5e943a4e6de9042ffe" name="lib/Tagger.php" role="horde" />
   <file baseinstalldir="/" md5sum="b5b79cef3e64f17334c19281142bf115" name="lib/Test.php" role="horde" />
   <file baseinstalldir="/" md5sum="c3f0b74ba40ead1874e5245a1f997b69" name="lib/Widget.php" role="horde" />
   <file baseinstalldir="/" md5sum="abd268cc79c9302399d64ed1f1daf7f5" name="lib/XPPublisher.php" role="horde" />
   <file baseinstalldir="/" md5sum="3ea8f013d6e72e45885860b4462c9657" name="locale/da/LC_MESSAGES/ansel.mo" role="horde" />
   <file baseinstalldir="/" md5sum="092fd7fcabb12b407171fe1f8b66e6b4" name="locale/da/LC_MESSAGES/ansel.po" role="horde" />
   <file baseinstalldir="/" md5sum="ec39343fb83b1a489525a502b53c96e3" name="locale/de/LC_MESSAGES/ansel.mo" role="horde" />
   <file baseinstalldir="/" md5sum="f16fb902cb684d09cd67635a20cad77f" name="locale/de/LC_MESSAGES/ansel.po" role="horde" />
   <file baseinstalldir="/" md5sum="b5cd5e717d04c9e5400ead4f8de25dbd" name="locale/de/help.xml" role="horde" />
   <file baseinstalldir="/" md5sum="e0e593414b852a4c36cfde50694680c3" name="locale/en/help.xml" role="horde" />
   <file baseinstalldir="/" md5sum="8bad24fca642c3545eab0f1791149067" name="locale/es/LC_MESSAGES/ansel.mo" role="horde" />
   <file baseinstalldir="/" md5sum="1460347feb396d9d99ef639e60079f5e" name="locale/es/LC_MESSAGES/ansel.po" role="horde" />
   <file baseinstalldir="/" md5sum="9e21379bfc619710f71bb8618a849c4b" name="locale/es/help.xml" role="horde" />
   <file baseinstalldir="/" md5sum="b3ae511d6623a9e3a9a3a56f878f9472" name="locale/fi/LC_MESSAGES/ansel.mo" role="horde" />
   <file baseinstalldir="/" md5sum="74e492fa2bce074f9615afff7bbd5824" name="locale/fi/LC_MESSAGES/ansel.po" role="horde" />
   <file baseinstalldir="/" md5sum="a73358f2f95b2968d8ed5200c9fe17c4" name="locale/fi/help.xml" role="horde" />
   <file baseinstalldir="/" md5sum="4251ccfe6f490562289af0117993b75a" name="locale/fr/LC_MESSAGES/ansel.mo" role="horde" />
   <file baseinstalldir="/" md5sum="af6acc9b61203245ba591de3d446bdc9" name="locale/fr/LC_MESSAGES/ansel.po" role="horde" />
   <file baseinstalldir="/" md5sum="5b24798abb3dc867181430d3dc639c09" name="locale/it/LC_MESSAGES/ansel.mo" role="horde" />
   <file baseinstalldir="/" md5sum="b644044f318c64abc99abddbf06d549b" name="locale/it/LC_MESSAGES/ansel.po" role="horde" />
   <file baseinstalldir="/" md5sum="040e364152119f969582a4fc1d710c81" name="locale/ja/LC_MESSAGES/ansel.mo" role="horde" />
   <file baseinstalldir="/" md5sum="3e313919dc1a33f496573c2d667df7c9" name="locale/ja/LC_MESSAGES/ansel.po" role="horde" />
   <file baseinstalldir="/" md5sum="4a572247fd66debffc9f5c633c0a6faf" name="locale/lt/LC_MESSAGES/ansel.mo" role="horde" />
   <file baseinstalldir="/" md5sum="a59e6589ee05ebe7003dbdd5566e14f3" name="locale/lt/LC_MESSAGES/ansel.po" role="horde" />
   <file baseinstalldir="/" md5sum="9b83d01aa624042e8828bdd644da67c0" name="locale/lv/LC_MESSAGES/ansel.mo" role="horde" />
   <file baseinstalldir="/" md5sum="00b840b2efc9d2e28517de71c9e31177" name="locale/lv/LC_MESSAGES/ansel.po" role="horde" />
   <file baseinstalldir="/" md5sum="f3c6b493d6f0af119b2dade0633a4c7b" name="locale/lv/help.xml" role="horde" />
   <file baseinstalldir="/" md5sum="f67516f71398a8b6f70315926f84d398" name="locale/sk/LC_MESSAGES/ansel.mo" role="horde" />
   <file baseinstalldir="/" md5sum="d2959247b794195191ef1bfb243f7536" name="locale/sk/LC_MESSAGES/ansel.po" role="horde" />
   <file baseinstalldir="/" md5sum="f65e9c726619769333800e1e18ceeb6d" name="locale/sl/LC_MESSAGES/ansel.mo" role="horde" />
   <file baseinstalldir="/" md5sum="6b5a452466879b96774b9ad0caf0d272" name="locale/sl/LC_MESSAGES/ansel.po" role="horde" />
   <file baseinstalldir="/" md5sum="096074270386bfab0fe79d4111b9811b" name="locale/sv/LC_MESSAGES/ansel.mo" role="horde" />
   <file baseinstalldir="/" md5sum="fbc38f6e847bab8eb73868970d17941e" name="locale/sv/LC_MESSAGES/ansel.po" role="horde" />
   <file baseinstalldir="/" md5sum="630267d863e5e3e3e5e37bd4e450c8c8" name="locale/tr/LC_MESSAGES/ansel.mo" role="horde" />
   <file baseinstalldir="/" md5sum="5d8f1ddc432fb2ba33b0a43dbf9799c7" name="locale/tr/LC_MESSAGES/ansel.po" role="horde" />
   <file baseinstalldir="/" md5sum="da405e880924065db51a0492b5be76e2" name="locale/zh_TW/LC_MESSAGES/ansel.mo" role="horde" />
   <file baseinstalldir="/" md5sum="acb9d734d2a2bbf811385b24135707d9" name="locale/zh_TW/LC_MESSAGES/ansel.po" role="horde" />
   <file baseinstalldir="/" md5sum="f5a271e285ee67261f914f7982fdfa5a" name="locale/.htaccess" role="horde" />
   <file baseinstalldir="/" md5sum="691dbba1fc352b694148c4c7e495a278" name="locale/ansel.pot" role="horde" />
   <file baseinstalldir="/" md5sum="f83273e2271ff09ae688d875d9eddb57" name="migration/1_ansel_base_tables.php" role="horde" />
   <file baseinstalldir="/" md5sum="e7b89a6937247e5fd864794e980b6ee7" name="migration/2_ansel_upgrade_autoincrement.php" role="horde" />
   <file baseinstalldir="/" md5sum="30fb9d56c2f74170fad000feddf09afd" name="migration/3_ansel_upgrade_style.php" role="horde" />
   <file baseinstalldir="/" md5sum="e03966ba499986a67caac7ef8a52769e" name="migration/4_ansel_upgrade_tagstocontent.php" role="horde" />
   <file baseinstalldir="/" md5sum="0290c2b9738e6c6ada586614efebc7cc" name="migration/5_ansel_upgrade_categoriestotags.php" role="horde" />
   <file baseinstalldir="/" md5sum="7e0ff6ae019fcd2987dc25a201d0cbf2" name="migration/6_ansel_upgrade_unsignedints.php" role="horde" />
   <file baseinstalldir="/" md5sum="710812b4bcb8ffcaba5221ebdeaa68eb" name="migration/7_ansel_upgrade_stylefix.php" role="horde" />
   <file baseinstalldir="/" md5sum="36a12a4d6cc5908a149eb13eb8ea580e" name="migration/8_ansel_upgrade_sqlhierarchical.php" role="horde" />
   <file baseinstalldir="/" md5sum="370b9352a3564485f75f5c9be2f9e107" name="migration/9_ansel_upgrade_sqlng.php" role="horde" />
   <file baseinstalldir="/" md5sum="25888b0fed76dc975df7cd922f0d1293" name="migration/10_ansel_upgrade_computestylehashes.php" role="horde" />
   <file baseinstalldir="/" md5sum="463871bf154fcd71325fb6ae8fa31c3c" name="migration/11_ansel_fix_blob_length.php" role="horde" />
   <file baseinstalldir="/" md5sum="452d064bfcac8f483cf1c9cc3858adb0" name="migration/12_ansel_upgrade_fixautoincrement.php" role="horde" />
   <file baseinstalldir="/" md5sum="91d29cc0d912e3850389a42967b86d03" name="migration/13_ansel_upgrade_parents.php" role="horde" />
   <file baseinstalldir="/" md5sum="ff67af3bc16671b6762e8e2006e3ceea" name="migration/14_ansel_upgrade_fixshareusers.php" role="horde" />
   <file baseinstalldir="/" md5sum="a25e2f99b179870a9b0a62b042f520f0" name="templates/browse/new.inc" role="horde" />
   <file baseinstalldir="/" md5sum="0bf62cd713c98344c010377b68d5c1e8" name="templates/captions/captions.inc" role="horde" />
   <file baseinstalldir="/" md5sum="0fad54ee039c17792a73ff9b41adc803" name="templates/faces/custom.inc" role="horde" />
   <file baseinstalldir="/" md5sum="ffbddf9f829941e4dd7ebd97984d0781" name="templates/faces/define.inc" role="horde" />
   <file baseinstalldir="/" md5sum="a8a2038a59f5492599672141efaae234" name="templates/faces/face.inc" role="horde" />
   <file baseinstalldir="/" md5sum="fd59de76ab497dde32b597f9649c2a07" name="templates/faces/faces.inc" role="horde" />
   <file baseinstalldir="/" md5sum="f16a94f6b811bea53d25b9f2806aa786" name="templates/faces/gallery.inc" role="horde" />
   <file baseinstalldir="/" md5sum="8cbc93d6f8d0bb739d2b0685d3db0e5a" name="templates/faces/image.inc" role="horde" />
   <file baseinstalldir="/" md5sum="089c5401fec1e8aa4f5f3a9aacc0edd9" name="templates/faces/index.inc" role="horde" />
   <file baseinstalldir="/" md5sum="ea82f5b3947c1ce3a3452abd54200ad4" name="templates/faces/search.inc" role="horde" />
   <file baseinstalldir="/" md5sum="364d9a1f3128d55bf317e29ce556fb69" name="templates/gallery/partial/_styles.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="3f882a40ec099daec90e0bd82c4a2f5c" name="templates/gallery/delete_confirmation.inc" role="horde" />
   <file baseinstalldir="/" md5sum="3401a408dd0e2663297a6a55f8e57732" name="templates/gallery/properties.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="aade0524cdf1a7ef84bd5e1fa4e5b105" name="templates/group/footer.inc" role="horde" />
   <file baseinstalldir="/" md5sum="e6fa74f543552319e059f506937e749a" name="templates/group/header.inc" role="horde" />
   <file baseinstalldir="/" md5sum="27b7a0d8477bbf26b4252199951245d6" name="templates/group/owner.inc" role="horde" />
   <file baseinstalldir="/" md5sum="d34b402541d5376d6e88484a3eed0e9a" name="templates/group/pager.inc" role="horde" />
   <file baseinstalldir="/" md5sum="8dcc6d11f2d7fb201189a75dd485a346" name="templates/image/crop_image.inc" role="horde" />
   <file baseinstalldir="/" md5sum="c967d1a724a226a8847b95d4c912c9d4" name="templates/image/edit_image.inc" role="horde" />
   <file baseinstalldir="/" md5sum="49361856869280f1fcde96fb313c5471" name="templates/image/plupload.inc" role="horde" />
   <file baseinstalldir="/" md5sum="5b76d282f732b549366eef797d02fac9" name="templates/image/preview_cropimage.inc" role="horde" />
   <file baseinstalldir="/" md5sum="f85683b5e19b73f7365e3208dae4c75f" name="templates/image/preview_image.inc" role="horde" />
   <file baseinstalldir="/" md5sum="7949fc74b6ce04dac6de887635861fc7" name="templates/image/resize_image.inc" role="horde" />
   <file baseinstalldir="/" md5sum="e8abb3911ab35ea571bbef1214cb4bf3" name="templates/image/upload.inc" role="horde" />
   <file baseinstalldir="/" md5sum="a8cd81931d3a4e2e712ad5d7f8240f91" name="templates/list/footer.inc" role="horde" />
   <file baseinstalldir="/" md5sum="12fea30d5268ba7f916e5e970a33bb36" name="templates/list/header.inc" role="horde" />
   <file baseinstalldir="/" md5sum="d166addc68fd4789ce425a74faa424c3" name="templates/list/pager.inc" role="horde" />
   <file baseinstalldir="/" md5sum="7a612e83666da8925513dfa3d691c3d7" name="templates/rss/rss.inc" role="horde" />
   <file baseinstalldir="/" md5sum="e53748bf676ed48bc5a87c9c4c1da3a6" name="templates/rss/rss2.inc" role="horde" />
   <file baseinstalldir="/" md5sum="a90cee569e567c31fd482a9d2b6665eb" name="templates/smartmobile/galleries.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="b68c26aad8c9d1aec90c4f174aaf584c" name="templates/smartmobile/gallery.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="9834fc017304c3b16f1ffe57d5185185" name="templates/smartmobile/image.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="a01ff7b303002d1125ba7cdbc6dc6b38" name="templates/smartmobile/javascript_defs.php" role="horde" />
   <file baseinstalldir="/" md5sum="feda8f8e9bbf7bf02e33753364290186" name="templates/tile/dategallery.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="b359ff7a1a61b65525cb6d53ee1008cd" name="templates/tile/face.inc" role="horde" />
   <file baseinstalldir="/" md5sum="d75f9ef980e775603944254bfc970bbd" name="templates/tile/gallery.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="6baf5ba54bbefdac0fac4407d49c4b8b" name="templates/tile/gallerymini.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="15363b905e92fdc196dcf35e9bb7f53b" name="templates/tile/image.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="21c3af66de1263a0d1dc8be8a00f5201" name="templates/view/api/gallery.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="6b2ee340b10c395979acdd1d904734ee" name="templates/view/gallery.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="830a38db81821ee198f12223ebd6feb6" name="templates/view/image.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="993bb1b29c09f5d3ea3758bbd5efef42" name="templates/view/list.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="af2e6ff123728b034e4c1794c9d40d1e" name="templates/view/results.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="babdc255ac12e370c3a42fdee9478db7" name="templates/view/slideshow.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="e80dab59c0d0b8bd11f9207069aa8018" name="templates/widgets/actions.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="8e0ff2cb39a0dbc0ac01c8caf205debc" name="templates/widgets/begin.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="0a3a0b592b9c285e050805307cee87c2" name="templates/widgets/end.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="5b7833f1323882a11f404840d751fe98" name="templates/widgets/geotag.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="c12c228f8ef70a5dcd6f7758eda638cd" name="templates/widgets/imagefaces.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="b39089b4b4bcfa821d0cf7be0a0e0c7d" name="templates/widgets/links.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="a2beb502bb5bdeb5b60805564b614a3b" name="templates/widgets/othergalleries.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="4163ebf7f6d90d2af94e18caa4d2c83e" name="templates/widgets/tags.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="ca1a261aa60495e68c57937177421f33" name="templates/xppublish/javascript.inc" role="horde" />
   <file baseinstalldir="/" md5sum="0ec0b050835c4662ccfcacf289bd731d" name="templates/xppublish/list.inc" role="horde" />
   <file baseinstalldir="/" md5sum="36b5f04a8ef5c3543005205dc9e3595f" name="templates/xppublish/login.inc" role="horde" />
   <file baseinstalldir="/" md5sum="b800191e1e9a0c08248d7a839691cf1b" name="templates/xppublish/new.inc" role="horde" />
   <file baseinstalldir="/" md5sum="f5a271e285ee67261f914f7982fdfa5a" name="templates/.htaccess" role="horde" />
   <file baseinstalldir="/" md5sum="d0354ecbed54b81285d43363cda906a4" name="templates/map_edit.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="145ac71b39831e48c550391807b691c2" name="test/Ansel/fixtures/vfs/.horde/ansel/00/full/4200.jpg" role="test" />
   <file baseinstalldir="/" md5sum="7e495e288361e620706df2720a2fb11c" name="test/Ansel/Unit/Base.php" role="test" />
   <file baseinstalldir="/" md5sum="ef0ffc02de2371e30a1c3bbf4b6727b7" name="test/Ansel/Unit/ImageTest.php" role="test" />
   <file baseinstalldir="/" md5sum="8bc9518b9c0576806c82d9413489d099" name="test/Ansel/AllTests.php" role="test" />
   <file baseinstalldir="/" md5sum="1af0b359d331c7108e49fc0fba057c16" name="test/Ansel/Autoload.php" role="test" />
   <file baseinstalldir="/" md5sum="0a5018f0726d4673850fece3ad4d72c0" name="test/Ansel/bootstrap.php" role="test" />
   <file baseinstalldir="/" md5sum="5d2f201738d3ca6e1632b530cffa5404" name="test/Ansel/TestCase.php" role="test" />
   <file baseinstalldir="/" md5sum="383f273744696aec3ca9d277bdf2640f" name="themes/default/graphics/carousel/left-disabled.gif" role="horde" />
   <file baseinstalldir="/" md5sum="00baea614548f5df0c576c625bf44b4e" name="themes/default/graphics/carousel/left.gif" role="horde" />
   <file baseinstalldir="/" md5sum="403133642a955a2addfddb60006a96ff" name="themes/default/graphics/carousel/right-disabled.gif" role="horde" />
   <file baseinstalldir="/" md5sum="c672e184f6405d11a4966d871c9f5b6c" name="themes/default/graphics/carousel/right.gif" role="horde" />
   <file baseinstalldir="/" md5sum="1f7dd21de89bed2cf605ed7bd1276a63" name="themes/default/graphics/lightbox/bullet.gif" role="horde" />
   <file baseinstalldir="/" md5sum="540f65d2b2f94032d6c3037622843a50" name="themes/default/graphics/lightbox/close.gif" role="horde" />
   <file baseinstalldir="/" md5sum="0e5462b0b4f00432eac4b33d5fa31c5a" name="themes/default/graphics/lightbox/closelabel.gif" role="horde" />
   <file baseinstalldir="/" md5sum="7e99e1159a3686f6aa4f90043c554483" name="themes/default/graphics/lightbox/loading.gif" role="horde" />
   <file baseinstalldir="/" md5sum="110afaaaf901f67fee2357c5df88a1aa" name="themes/default/graphics/lightbox/nextlabel.gif" role="horde" />
   <file baseinstalldir="/" md5sum="fb5fff30d471cc603589578015d36864" name="themes/default/graphics/lightbox/prevlabel.gif" role="horde" />
   <file baseinstalldir="/" md5sum="5e96c50efacfa4d6edb6e68a91810268" name="themes/default/graphics/add.png" role="horde" />
   <file baseinstalldir="/" md5sum="e9825a96f2b3570267937a6b0d07431f" name="themes/default/graphics/allgalleries.png" role="horde" />
   <file baseinstalldir="/" md5sum="ab4e5863933bb2bf631f9311c0bd0fbe" name="themes/default/graphics/ansel.png" role="horde" />
   <file baseinstalldir="/" md5sum="1c335260b09b444abfb43b539a6e1660" name="themes/default/graphics/arrow_switch.png" role="horde" />
   <file baseinstalldir="/" md5sum="a2a72e6cdc492b970248ebb5e43b74a6" name="themes/default/graphics/bookmark.png" role="horde" />
   <file baseinstalldir="/" md5sum="c5213f88bc9ccff760e936464274f459" name="themes/default/graphics/browse.png" role="horde" />
   <file baseinstalldir="/" md5sum="424067bc40cd9f27d31716095e1078a7" name="themes/default/graphics/down.png" role="horde" />
   <file baseinstalldir="/" md5sum="2426b2964287ce94d1cddf4609e30b64" name="themes/default/graphics/embed.png" role="horde" />
   <file baseinstalldir="/" md5sum="a67e47418b54b5b34d4c82de8c548b03" name="themes/default/graphics/faces.png" role="horde" />
   <file baseinstalldir="/" md5sum="b64a1155b80e0b06272f8b842b83fa57" name="themes/default/graphics/favicon.ico" role="horde" />
   <file baseinstalldir="/" md5sum="7a4ab41bc0dd1206a6674023769a8dda" name="themes/default/graphics/galleries.png" role="horde" />
   <file baseinstalldir="/" md5sum="ff6bf845b1b94425f0daf81a308711ac" name="themes/default/graphics/gallery-locked-mini.png" role="horde" />
   <file baseinstalldir="/" md5sum="3b080ef60c7f6fb0f30991bbd6b02e45" name="themes/default/graphics/gallery-locked.png" role="horde" />
   <file baseinstalldir="/" md5sum="9b4c27fccf817923f59b78fa6099c376" name="themes/default/graphics/marqueeHoriz.gif" role="horde" />
   <file baseinstalldir="/" md5sum="2b2adfe6df6517f146b5b7c5b86eda42" name="themes/default/graphics/marqueeVert.gif" role="horde" />
   <file baseinstalldir="/" md5sum="ff6bf845b1b94425f0daf81a308711ac" name="themes/default/graphics/mini-error.png" role="horde" />
   <file baseinstalldir="/" md5sum="ab4e5863933bb2bf631f9311c0bd0fbe" name="themes/default/graphics/mygalleries.png" role="horde" />
   <file baseinstalldir="/" md5sum="3d271e1db92b9edf8cd58eda286cc792" name="themes/default/graphics/photomarker-shadow.png" role="horde" />
   <file baseinstalldir="/" md5sum="204c09990cd764082706252112fa6d91" name="themes/default/graphics/photomarker.png" role="horde" />
   <file baseinstalldir="/" md5sum="ae8dbc35a42dc518e1e9dc5f810ee94f" name="themes/default/graphics/plus.png" role="horde" />
   <file baseinstalldir="/" md5sum="4491ed5917db4d2cf1fdc8a97d1d0279" name="themes/default/graphics/point.png" role="horde" />
   <file baseinstalldir="/" md5sum="3b080ef60c7f6fb0f30991bbd6b02e45" name="themes/default/graphics/prettythumb-error.png" role="horde" />
   <file baseinstalldir="/" md5sum="b8f35233e58b09c00d7411b76cb281a0" name="themes/default/graphics/problem.png" role="horde" />
   <file baseinstalldir="/" md5sum="a51c9947d8e64482f99e8e523bb6e49f" name="themes/default/graphics/report.png" role="horde" />
   <file baseinstalldir="/" md5sum="8c54078fc6021d38a53d6bdc5189868e" name="themes/default/graphics/resize.png" role="horde" />
   <file baseinstalldir="/" md5sum="3f2ccf71a5a947d01474b10dc9b2cbd1" name="themes/default/graphics/scaler_slider.gif" role="horde" />
   <file baseinstalldir="/" md5sum="2bc6520be39227f7f2e54b24e889819b" name="themes/default/graphics/scaler_slider_track.gif" role="horde" />
   <file baseinstalldir="/" md5sum="3b080ef60c7f6fb0f30991bbd6b02e45" name="themes/default/graphics/screen-error.png" role="horde" />
   <file baseinstalldir="/" md5sum="9f5602a8da3dfec581622cbf16649901" name="themes/default/graphics/slideshow_next.png" role="horde" />
   <file baseinstalldir="/" md5sum="dd31b9028a6600f34120c7179f473202" name="themes/default/graphics/slideshow_pause.png" role="horde" />
   <file baseinstalldir="/" md5sum="8d87e064ecbc4efcaf7b970d18ac4183" name="themes/default/graphics/slideshow_play.png" role="horde" />
   <file baseinstalldir="/" md5sum="ac788940a2f13714c37433c21b563a23" name="themes/default/graphics/slideshow_prev.png" role="horde" />
   <file baseinstalldir="/" md5sum="295103f29c013294b3f70926507ff4cc" name="themes/default/graphics/text.png" role="horde" />
   <file baseinstalldir="/" md5sum="3b080ef60c7f6fb0f30991bbd6b02e45" name="themes/default/graphics/thumb-error.png" role="horde" />
   <file baseinstalldir="/" md5sum="a810ea5683d8123bd23a761c53c88c53" name="themes/default/graphics/up.png" role="horde" />
   <file baseinstalldir="/" md5sum="ce3539d2aefd024739770e4f8da69f0c" name="themes/default/smartmobile/screen.css" role="horde" />
   <file baseinstalldir="/" md5sum="95c5f0c405648d1e646cabb0c95e7aa8" name="themes/default/cropper.css" role="horde" />
   <file baseinstalldir="/" md5sum="05ebb33d4a33d6f17c8631b884115540" name="themes/default/embed.css" role="horde" />
   <file baseinstalldir="/" md5sum="49aeea230aa26a49b11b5e07e56423c2" name="themes/default/lightbox.css" role="horde" />
   <file baseinstalldir="/" md5sum="d7e4cf2cb0857ffd6f0e5c209db4a4c1" name="themes/default/screen.css" role="horde" />
   <file baseinstalldir="/" md5sum="8fb246b0cc36bff3c7356c3ac2e62d84" name=".htaccess" role="horde" />
   <file baseinstalldir="/" md5sum="c3be26c4b8739df80ffe9ea387ec2cd7" name="browse.php" role="horde" />
   <file baseinstalldir="/" md5sum="4f23ff99e0cdaf75aa0576b4acea59fc" name="browse_edit.php" role="horde" />
   <file baseinstalldir="/" md5sum="83600a711e6dd70e3193eedf92653fe7" name="COPYING" role="doc" />
   <file baseinstalldir="/" md5sum="4cab4b3252a991fd73dfb33ef6434f15" name="disclamer.php" role="horde" />
   <file baseinstalldir="/" md5sum="405afb7d089c5b1fa7086dd1ade1d97e" name="edit_dates.php" role="horde" />
   <file baseinstalldir="/" md5sum="4e94747ddea8c9b24cd579f9bc2ce2aa" name="gallery.php" role="horde" />
   <file baseinstalldir="/" md5sum="992c33e4c9f62eb8694a0076dbc689e4" name="group.php" role="horde" />
   <file baseinstalldir="/" md5sum="8a124acdefd24562e3becc430cc4672e" name="image.php" role="horde" />
   <file baseinstalldir="/" md5sum="1e2f1e555228d1a1a219efe17358dfc0" name="index.php" role="horde" />
   <file baseinstalldir="/" md5sum="48a16526da99492886a6b2dc7b988f71" name="map_edit.php" role="horde" />
   <file baseinstalldir="/" md5sum="514d00713b658465c14b10247b8a13c3" name="perms.php" role="horde" />
   <file baseinstalldir="/" md5sum="00b67cc08c3bff4b692ea340d2db61ff" name="preview.php" role="horde" />
   <file baseinstalldir="/" md5sum="a3f8c8b6c6d37224cbe2ad225222d915" name="protect.php" role="horde" />
   <file baseinstalldir="/" md5sum="5e1551de1b65ae457461aa3e29332b55" name="README" role="doc" />
   <file baseinstalldir="/" md5sum="f9c909c92fde6bd4d52447647c5a7f64" name="report.php" role="horde" />
   <file baseinstalldir="/" md5sum="89b94761a4d4a4d10e68a8675a5213b8" name="rss.php" role="horde" />
   <file baseinstalldir="/" md5sum="05d0495e871241de5c182af49240b9f2" name="smartmobile.php" role="horde" />
   <file baseinstalldir="/" md5sum="0ac039813f9b7d064c910aa5395ad6de" name="view.php" role="horde" />
   <file baseinstalldir="/" md5sum="294b9d872075269ed160a4cfeaccdd3a" name="xppublish.php" role="horde" />
  </dir>
 </contents>
 <dependencies>
  <required>
   <php>
    <min>5.3.0</min>
    <max>8.0.0alpha1</max>
    <exclude>8.0.0alpha1</exclude>
   </php>
   <pearinstaller>
    <min>1.7.0</min>
   </pearinstaller>
   <package>
    <name>content</name>
    <channel>pear.horde.org</channel>
    <min>2.0.3</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>horde</name>
    <channel>pear.horde.org</channel>
    <min>5.0.0</min>
    <max>6.0.0alpha1</max>
    <exclude>6.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Auth</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Autoloader</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Core</name>
    <channel>pear.horde.org</channel>
    <min>2.30.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Date</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Db</name>
    <channel>pear.horde.org</channel>
    <min>2.2.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Exception</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Form</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Group</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Image</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Mime</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Nls</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Perms</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Prefs</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Serialize</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Share</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Support</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Text_Filter</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Url</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Util</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_View</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Vfs</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <extension>
    <name>gettext</name>
   </extension>
   <extension>
    <name>hash</name>
   </extension>
  </required>
  <optional>
   <package>
    <name>Horde_Service_UrlShortener</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Service_Twitter</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Service_Facebook</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <extension>
    <name>gd</name>
   </extension>
   <extension>
    <name>imagick</name>
   </extension>
   <extension>
    <name>libpuzzle</name>
   </extension>
   <extension>
    <name>php-facedetect</name>
   </extension>
  </optional>
 </dependencies>
 <usesrole>
  <role>horde</role>
  <package>Role</package>
  <channel>pear.horde.org</channel>
 </usesrole>
 <phprelease>
  <filelist>
   <install as="ansel/.htaccess" name=".htaccess" />
   <install as="ansel/browse.php" name="browse.php" />
   <install as="ansel/browse_edit.php" name="browse_edit.php" />
   <install as="COPYING" name="COPYING" />
   <install as="ansel/disclamer.php" name="disclamer.php" />
   <install as="ansel/edit_dates.php" name="edit_dates.php" />
   <install as="ansel/gallery.php" name="gallery.php" />
   <install as="ansel/group.php" name="group.php" />
   <install as="ansel/image.php" name="image.php" />
   <install as="ansel/index.php" name="index.php" />
   <install as="ansel/map_edit.php" name="map_edit.php" />
   <install as="ansel/perms.php" name="perms.php" />
   <install as="ansel/preview.php" name="preview.php" />
   <install as="ansel/protect.php" name="protect.php" />
   <install as="README" name="README" />
   <install as="ansel/report.php" name="report.php" />
   <install as="ansel/rss.php" name="rss.php" />
   <install as="ansel/smartmobile.php" name="smartmobile.php" />
   <install as="ansel/view.php" name="view.php" />
   <install as="ansel/xppublish.php" name="xppublish.php" />
   <install as="ansel" name="bin/ansel" />
   <install as="ansel-convert-sql-shares-to-sqlng" name="bin/ansel-convert-sql-shares-to-sqlng" />
   <install as="ansel-exif-to-tags" name="bin/ansel-exif-to-tags" />
   <install as="ansel-garbage-collection" name="bin/ansel-garbage-collection" />
   <install as="AnselPublish.scpt" name="bin/AnselPublish.scpt" />
   <install as="ansel/config/.htaccess" name="config/.htaccess" />
   <install as="ansel/config/conf.xml" name="config/conf.xml" />
   <install as="ansel/config/hooks.php.dist" name="config/hooks.php.dist" />
   <install as="ansel/config/prefs.php" name="config/prefs.php" />
   <install as="ansel/config/styles.php" name="config/styles.php" />
   <install as="CHANGES" name="docs/CHANGES" />
   <install as="CREDITS" name="docs/CREDITS" />
   <install as="INSTALL" name="docs/INSTALL" />
   <install as="lighttpd-ansel.conf" name="docs/lighttpd-ansel.conf" />
   <install as="RELEASE_NOTES" name="docs/RELEASE_NOTES" />
   <install as="ansel/faces/claim.php" name="faces/claim.php" />
   <install as="ansel/faces/custom.php" name="faces/custom.php" />
   <install as="ansel/faces/face.php" name="faces/face.php" />
   <install as="ansel/faces/gallery.php" name="faces/gallery.php" />
   <install as="ansel/faces/image.php" name="faces/image.php" />
   <install as="ansel/faces/img.php" name="faces/img.php" />
   <install as="ansel/faces/name.php" name="faces/name.php" />
   <install as="ansel/faces/report.php" name="faces/report.php" />
   <install as="ansel/faces/savecustom.php" name="faces/savecustom.php" />
   <install as="ansel/faces/search/all.php" name="faces/search/all.php" />
   <install as="ansel/faces/search/image.php" name="faces/search/image.php" />
   <install as="ansel/faces/search/image_define.php" name="faces/search/image_define.php" />
   <install as="ansel/faces/search/image_save.php" name="faces/search/image_save.php" />
   <install as="ansel/faces/search/image_search.php" name="faces/search/image_search.php" />
   <install as="ansel/faces/search/img.php" name="faces/search/img.php" />
   <install as="ansel/faces/search/name.php" name="faces/search/name.php" />
   <install as="ansel/faces/search/named.php" name="faces/search/named.php" />
   <install as="ansel/faces/search/owner.php" name="faces/search/owner.php" />
   <install as="ansel/faces/search/tabs.php" name="faces/search/tabs.php" />
   <install as="ansel/gallery/captions.php" name="gallery/captions.php" />
   <install as="ansel/gallery/index.php" name="gallery/index.php" />
   <install as="ansel/gallery/sort.php" name="gallery/sort.php" />
   <install as="ansel/img/download.php" name="img/download.php" />
   <install as="ansel/img/ecard.php" name="img/ecard.php" />
   <install as="ansel/img/full.php" name="img/full.php" />
   <install as="ansel/img/index.php" name="img/index.php" />
   <install as="ansel/img/mini.php" name="img/mini.php" />
   <install as="ansel/img/screen.php" name="img/screen.php" />
   <install as="ansel/img/thumb.php" name="img/thumb.php" />
   <install as="ansel/img/upload.php" name="img/upload.php" />
   <install as="ansel/img/upload_preview.php" name="img/upload_preview.php" />
   <install as="ansel/js/block.js" name="js/block.js" />
   <install as="ansel/js/carousel.js" name="js/carousel.js" />
   <install as="ansel/js/cropper.js" name="js/cropper.js" />
   <install as="ansel/js/editfaces.js" name="js/editfaces.js" />
   <install as="ansel/js/embed.js" name="js/embed.js" />
   <install as="ansel/js/imagefaces.js" name="js/imagefaces.js" />
   <install as="ansel/js/map.js" name="js/map.js" />
   <install as="ansel/js/map_edit.js" name="js/map_edit.js" />
   <install as="ansel/js/resizeimage.js" name="js/resizeimage.js" />
   <install as="ansel/js/slugcheck.js" name="js/slugcheck.js" />
   <install as="ansel/js/smartmobile.js" name="js/smartmobile.js" />
   <install as="ansel/js/togglewidget.js" name="js/togglewidget.js" />
   <install as="ansel/js/blocks/geotag.js" name="js/blocks/geotag.js" />
   <install as="ansel/js/views/common.js" name="js/views/common.js" />
   <install as="ansel/js/views/gallery.js" name="js/views/gallery.js" />
   <install as="ansel/js/views/image.js" name="js/views/image.js" />
   <install as="ansel/js/views/slideshow.js" name="js/views/slideshow.js" />
   <install as="ansel/js/widgets/geotag.js" name="js/widgets/geotag.js" />
   <install as="ansel/js/widgets/tagactions.js" name="js/widgets/tagactions.js" />
   <install as="ansel/lib/.htaccess" name="lib/.htaccess" />
   <install as="ansel/lib/ActionHandler.php" name="lib/ActionHandler.php" />
   <install as="ansel/lib/Ansel.php" name="lib/Ansel.php" />
   <install as="ansel/lib/Api.php" name="lib/Api.php" />
   <install as="ansel/lib/Application.php" name="lib/Application.php" />
   <install as="ansel/lib/Config.php" name="lib/Config.php" />
   <install as="ansel/lib/Exception.php" name="lib/Exception.php" />
   <install as="ansel/lib/Faces.php" name="lib/Faces.php" />
   <install as="ansel/lib/Gallery.php" name="lib/Gallery.php" />
   <install as="ansel/lib/Image.php" name="lib/Image.php" />
   <install as="ansel/lib/ImageGenerator.php" name="lib/ImageGenerator.php" />
   <install as="ansel/lib/Report.php" name="lib/Report.php" />
   <install as="ansel/lib/Storage.php" name="lib/Storage.php" />
   <install as="ansel/lib/Style.php" name="lib/Style.php" />
   <install as="ansel/lib/TagBrowser.php" name="lib/TagBrowser.php" />
   <install as="ansel/lib/Tagger.php" name="lib/Tagger.php" />
   <install as="ansel/lib/Test.php" name="lib/Test.php" />
   <install as="ansel/lib/Widget.php" name="lib/Widget.php" />
   <install as="ansel/lib/XPPublisher.php" name="lib/XPPublisher.php" />
   <install as="ansel/lib/Ajax/Application.php" name="lib/Ajax/Application.php" />
   <install as="ansel/lib/Ajax/Application/Handler.php" name="lib/Ajax/Application/Handler.php" />
   <install as="ansel/lib/Ajax/Imple/EditCaption.php" name="lib/Ajax/Imple/EditCaption.php" />
   <install as="ansel/lib/Ajax/Imple/EditFaces.php" name="lib/Ajax/Imple/EditFaces.php" />
   <install as="ansel/lib/Ajax/Imple/LocationAutoCompleter.php" name="lib/Ajax/Imple/LocationAutoCompleter.php" />
   <install as="ansel/lib/Ajax/Imple/ToggleGalleryActions.php" name="lib/Ajax/Imple/ToggleGalleryActions.php" />
   <install as="ansel/lib/Ajax/Imple/ToggleOtherGalleries.php" name="lib/Ajax/Imple/ToggleOtherGalleries.php" />
   <install as="ansel/lib/Block/Cloud.php" name="lib/Block/Cloud.php" />
   <install as="ansel/lib/Block/Gallery.php" name="lib/Block/Gallery.php" />
   <install as="ansel/lib/Block/MyGalleries.php" name="lib/Block/MyGalleries.php" />
   <install as="ansel/lib/Block/RandomPhoto.php" name="lib/Block/RandomPhoto.php" />
   <install as="ansel/lib/Block/RecentComments.php" name="lib/Block/RecentComments.php" />
   <install as="ansel/lib/Block/RecentFaces.php" name="lib/Block/RecentFaces.php" />
   <install as="ansel/lib/Block/RecentlyAdded.php" name="lib/Block/RecentlyAdded.php" />
   <install as="ansel/lib/Block/RecentlyAddedGeodata.php" name="lib/Block/RecentlyAddedGeodata.php" />
   <install as="ansel/lib/Faces/Base.php" name="lib/Faces/Base.php" />
   <install as="ansel/lib/Faces/Facedetect.php" name="lib/Faces/Facedetect.php" />
   <install as="ansel/lib/Faces/User.php" name="lib/Faces/User.php" />
   <install as="ansel/lib/Factory/Faces.php" name="lib/Factory/Faces.php" />
   <install as="ansel/lib/Factory/Storage.php" name="lib/Factory/Storage.php" />
   <install as="ansel/lib/Factory/Styles.php" name="lib/Factory/Styles.php" />
   <install as="ansel/lib/Form/Ecard.php" name="lib/Form/Ecard.php" />
   <install as="ansel/lib/Form/Image.php" name="lib/Form/Image.php" />
   <install as="ansel/lib/Form/ImageDate.php" name="lib/Form/ImageDate.php" />
   <install as="ansel/lib/Form/Upload.php" name="lib/Form/Upload.php" />
   <install as="ansel/lib/Form/Watermark.php" name="lib/Form/Watermark.php" />
   <install as="ansel/lib/Gallery/Decorator/Date.php" name="lib/Gallery/Decorator/Date.php" />
   <install as="ansel/lib/GalleryMode/Base.php" name="lib/GalleryMode/Base.php" />
   <install as="ansel/lib/GalleryMode/Date.php" name="lib/GalleryMode/Date.php" />
   <install as="ansel/lib/GalleryMode/Normal.php" name="lib/GalleryMode/Normal.php" />
   <install as="ansel/lib/ImageGenerator/Mini.php" name="lib/ImageGenerator/Mini.php" />
   <install as="ansel/lib/ImageGenerator/PolaroidThumb.php" name="lib/ImageGenerator/PolaroidThumb.php" />
   <install as="ansel/lib/ImageGenerator/PolaroidThumbStack.php" name="lib/ImageGenerator/PolaroidThumbStack.php" />
   <install as="ansel/lib/ImageGenerator/RoundedThumb.php" name="lib/ImageGenerator/RoundedThumb.php" />
   <install as="ansel/lib/ImageGenerator/RoundedThumbStack.php" name="lib/ImageGenerator/RoundedThumbStack.php" />
   <install as="ansel/lib/ImageGenerator/Screen.php" name="lib/ImageGenerator/Screen.php" />
   <install as="ansel/lib/ImageGenerator/ShadowThumb.php" name="lib/ImageGenerator/ShadowThumb.php" />
   <install as="ansel/lib/ImageGenerator/ShadowThumbStack.php" name="lib/ImageGenerator/ShadowThumbStack.php" />
   <install as="ansel/lib/ImageGenerator/SquareThumb.php" name="lib/ImageGenerator/SquareThumb.php" />
   <install as="ansel/lib/ImageGenerator/Thumb.php" name="lib/ImageGenerator/Thumb.php" />
   <install as="ansel/lib/LoginTasks/SystemTask/Upgrade.php" name="lib/LoginTasks/SystemTask/Upgrade.php" />
   <install as="ansel/lib/Prefs/Special/GallerySelect.php" name="lib/Prefs/Special/GallerySelect.php" />
   <install as="ansel/lib/Prefs/Special/GalleryStyle.php" name="lib/Prefs/Special/GalleryStyle.php" />
   <install as="ansel/lib/Queue/ProcessThumbs.php" name="lib/Queue/ProcessThumbs.php" />
   <install as="ansel/lib/Report/letter.php" name="lib/Report/letter.php" />
   <install as="ansel/lib/Report/mail.php" name="lib/Report/mail.php" />
   <install as="ansel/lib/Report/tickets.php" name="lib/Report/tickets.php" />
   <install as="ansel/lib/Tile/DateGallery.php" name="lib/Tile/DateGallery.php" />
   <install as="ansel/lib/Tile/Gallery.php" name="lib/Tile/Gallery.php" />
   <install as="ansel/lib/Tile/Image.php" name="lib/Tile/Image.php" />
   <install as="ansel/lib/View/Ansel.php" name="lib/View/Ansel.php" />
   <install as="ansel/lib/View/Base.php" name="lib/View/Base.php" />
   <install as="ansel/lib/View/Gallery.php" name="lib/View/Gallery.php" />
   <install as="ansel/lib/View/GalleryProperties.php" name="lib/View/GalleryProperties.php" />
   <install as="ansel/lib/View/Image.php" name="lib/View/Image.php" />
   <install as="ansel/lib/View/List.php" name="lib/View/List.php" />
   <install as="ansel/lib/View/Results.php" name="lib/View/Results.php" />
   <install as="ansel/lib/View/Slideshow.php" name="lib/View/Slideshow.php" />
   <install as="ansel/lib/View/Upload.php" name="lib/View/Upload.php" />
   <install as="ansel/lib/View/EmbeddedRenderer/GalleryLink.php" name="lib/View/EmbeddedRenderer/GalleryLink.php" />
   <install as="ansel/lib/View/EmbeddedRenderer/Mini.php" name="lib/View/EmbeddedRenderer/Mini.php" />
   <install as="ansel/lib/View/EmbeddedRenderer/Slideshow.php" name="lib/View/EmbeddedRenderer/Slideshow.php" />
   <install as="ansel/lib/View/GalleryRenderer/Base.php" name="lib/View/GalleryRenderer/Base.php" />
   <install as="ansel/lib/View/GalleryRenderer/Gallery.php" name="lib/View/GalleryRenderer/Gallery.php" />
   <install as="ansel/lib/View/GalleryRenderer/GalleryLightbox.php" name="lib/View/GalleryRenderer/GalleryLightbox.php" />
   <install as="ansel/lib/Widget/Actions.php" name="lib/Widget/Actions.php" />
   <install as="ansel/lib/Widget/Base.php" name="lib/Widget/Base.php" />
   <install as="ansel/lib/Widget/GalleryFaces.php" name="lib/Widget/GalleryFaces.php" />
   <install as="ansel/lib/Widget/Geotag.php" name="lib/Widget/Geotag.php" />
   <install as="ansel/lib/Widget/ImageFaces.php" name="lib/Widget/ImageFaces.php" />
   <install as="ansel/lib/Widget/Links.php" name="lib/Widget/Links.php" />
   <install as="ansel/lib/Widget/OtherGalleries.php" name="lib/Widget/OtherGalleries.php" />
   <install as="ansel/lib/Widget/OwnerFaces.php" name="lib/Widget/OwnerFaces.php" />
   <install as="ansel/lib/Widget/SimilarPhotos.php" name="lib/Widget/SimilarPhotos.php" />
   <install as="ansel/lib/Widget/Tags.php" name="lib/Widget/Tags.php" />
   <install as="ansel/locale/.htaccess" name="locale/.htaccess" />
   <install as="ansel/locale/ansel.pot" name="locale/ansel.pot" />
   <install as="ansel/locale/da/LC_MESSAGES/ansel.mo" name="locale/da/LC_MESSAGES/ansel.mo" />
   <install as="ansel/locale/da/LC_MESSAGES/ansel.po" name="locale/da/LC_MESSAGES/ansel.po" />
   <install as="ansel/locale/de/help.xml" name="locale/de/help.xml" />
   <install as="ansel/locale/de/LC_MESSAGES/ansel.mo" name="locale/de/LC_MESSAGES/ansel.mo" />
   <install as="ansel/locale/de/LC_MESSAGES/ansel.po" name="locale/de/LC_MESSAGES/ansel.po" />
   <install as="ansel/locale/en/help.xml" name="locale/en/help.xml" />
   <install as="ansel/locale/es/help.xml" name="locale/es/help.xml" />
   <install as="ansel/locale/es/LC_MESSAGES/ansel.mo" name="locale/es/LC_MESSAGES/ansel.mo" />
   <install as="ansel/locale/es/LC_MESSAGES/ansel.po" name="locale/es/LC_MESSAGES/ansel.po" />
   <install as="ansel/locale/fi/help.xml" name="locale/fi/help.xml" />
   <install as="ansel/locale/fi/LC_MESSAGES/ansel.mo" name="locale/fi/LC_MESSAGES/ansel.mo" />
   <install as="ansel/locale/fi/LC_MESSAGES/ansel.po" name="locale/fi/LC_MESSAGES/ansel.po" />
   <install as="ansel/locale/fr/LC_MESSAGES/ansel.mo" name="locale/fr/LC_MESSAGES/ansel.mo" />
   <install as="ansel/locale/fr/LC_MESSAGES/ansel.po" name="locale/fr/LC_MESSAGES/ansel.po" />
   <install as="ansel/locale/it/LC_MESSAGES/ansel.mo" name="locale/it/LC_MESSAGES/ansel.mo" />
   <install as="ansel/locale/it/LC_MESSAGES/ansel.po" name="locale/it/LC_MESSAGES/ansel.po" />
   <install as="ansel/locale/ja/LC_MESSAGES/ansel.mo" name="locale/ja/LC_MESSAGES/ansel.mo" />
   <install as="ansel/locale/ja/LC_MESSAGES/ansel.po" name="locale/ja/LC_MESSAGES/ansel.po" />
   <install as="ansel/locale/lt/LC_MESSAGES/ansel.mo" name="locale/lt/LC_MESSAGES/ansel.mo" />
   <install as="ansel/locale/lt/LC_MESSAGES/ansel.po" name="locale/lt/LC_MESSAGES/ansel.po" />
   <install as="ansel/locale/lv/help.xml" name="locale/lv/help.xml" />
   <install as="ansel/locale/lv/LC_MESSAGES/ansel.mo" name="locale/lv/LC_MESSAGES/ansel.mo" />
   <install as="ansel/locale/lv/LC_MESSAGES/ansel.po" name="locale/lv/LC_MESSAGES/ansel.po" />
   <install as="ansel/locale/sk/LC_MESSAGES/ansel.mo" name="locale/sk/LC_MESSAGES/ansel.mo" />
   <install as="ansel/locale/sk/LC_MESSAGES/ansel.po" name="locale/sk/LC_MESSAGES/ansel.po" />
   <install as="ansel/locale/sl/LC_MESSAGES/ansel.mo" name="locale/sl/LC_MESSAGES/ansel.mo" />
   <install as="ansel/locale/sl/LC_MESSAGES/ansel.po" name="locale/sl/LC_MESSAGES/ansel.po" />
   <install as="ansel/locale/sv/LC_MESSAGES/ansel.mo" name="locale/sv/LC_MESSAGES/ansel.mo" />
   <install as="ansel/locale/sv/LC_MESSAGES/ansel.po" name="locale/sv/LC_MESSAGES/ansel.po" />
   <install as="ansel/locale/tr/LC_MESSAGES/ansel.mo" name="locale/tr/LC_MESSAGES/ansel.mo" />
   <install as="ansel/locale/tr/LC_MESSAGES/ansel.po" name="locale/tr/LC_MESSAGES/ansel.po" />
   <install as="ansel/locale/zh_TW/LC_MESSAGES/ansel.mo" name="locale/zh_TW/LC_MESSAGES/ansel.mo" />
   <install as="ansel/locale/zh_TW/LC_MESSAGES/ansel.po" name="locale/zh_TW/LC_MESSAGES/ansel.po" />
   <install as="ansel/migration/1_ansel_base_tables.php" name="migration/1_ansel_base_tables.php" />
   <install as="ansel/migration/2_ansel_upgrade_autoincrement.php" name="migration/2_ansel_upgrade_autoincrement.php" />
   <install as="ansel/migration/3_ansel_upgrade_style.php" name="migration/3_ansel_upgrade_style.php" />
   <install as="ansel/migration/4_ansel_upgrade_tagstocontent.php" name="migration/4_ansel_upgrade_tagstocontent.php" />
   <install as="ansel/migration/5_ansel_upgrade_categoriestotags.php" name="migration/5_ansel_upgrade_categoriestotags.php" />
   <install as="ansel/migration/6_ansel_upgrade_unsignedints.php" name="migration/6_ansel_upgrade_unsignedints.php" />
   <install as="ansel/migration/7_ansel_upgrade_stylefix.php" name="migration/7_ansel_upgrade_stylefix.php" />
   <install as="ansel/migration/8_ansel_upgrade_sqlhierarchical.php" name="migration/8_ansel_upgrade_sqlhierarchical.php" />
   <install as="ansel/migration/9_ansel_upgrade_sqlng.php" name="migration/9_ansel_upgrade_sqlng.php" />
   <install as="ansel/migration/10_ansel_upgrade_computestylehashes.php" name="migration/10_ansel_upgrade_computestylehashes.php" />
   <install as="ansel/migration/11_ansel_fix_blob_length.php" name="migration/11_ansel_fix_blob_length.php" />
   <install as="ansel/migration/12_ansel_upgrade_fixautoincrement.php" name="migration/12_ansel_upgrade_fixautoincrement.php" />
   <install as="ansel/migration/13_ansel_upgrade_parents.php" name="migration/13_ansel_upgrade_parents.php" />
   <install as="ansel/migration/14_ansel_upgrade_fixshareusers.php" name="migration/14_ansel_upgrade_fixshareusers.php" />
   <install as="ansel/templates/.htaccess" name="templates/.htaccess" />
   <install as="ansel/templates/map_edit.html.php" name="templates/map_edit.html.php" />
   <install as="ansel/templates/browse/new.inc" name="templates/browse/new.inc" />
   <install as="ansel/templates/captions/captions.inc" name="templates/captions/captions.inc" />
   <install as="ansel/templates/faces/custom.inc" name="templates/faces/custom.inc" />
   <install as="ansel/templates/faces/define.inc" name="templates/faces/define.inc" />
   <install as="ansel/templates/faces/face.inc" name="templates/faces/face.inc" />
   <install as="ansel/templates/faces/faces.inc" name="templates/faces/faces.inc" />
   <install as="ansel/templates/faces/gallery.inc" name="templates/faces/gallery.inc" />
   <install as="ansel/templates/faces/image.inc" name="templates/faces/image.inc" />
   <install as="ansel/templates/faces/index.inc" name="templates/faces/index.inc" />
   <install as="ansel/templates/faces/search.inc" name="templates/faces/search.inc" />
   <install as="ansel/templates/gallery/delete_confirmation.inc" name="templates/gallery/delete_confirmation.inc" />
   <install as="ansel/templates/gallery/properties.html.php" name="templates/gallery/properties.html.php" />
   <install as="ansel/templates/gallery/partial/_styles.html.php" name="templates/gallery/partial/_styles.html.php" />
   <install as="ansel/templates/group/footer.inc" name="templates/group/footer.inc" />
   <install as="ansel/templates/group/header.inc" name="templates/group/header.inc" />
   <install as="ansel/templates/group/owner.inc" name="templates/group/owner.inc" />
   <install as="ansel/templates/group/pager.inc" name="templates/group/pager.inc" />
   <install as="ansel/templates/image/crop_image.inc" name="templates/image/crop_image.inc" />
   <install as="ansel/templates/image/edit_image.inc" name="templates/image/edit_image.inc" />
   <install as="ansel/templates/image/plupload.inc" name="templates/image/plupload.inc" />
   <install as="ansel/templates/image/preview_cropimage.inc" name="templates/image/preview_cropimage.inc" />
   <install as="ansel/templates/image/preview_image.inc" name="templates/image/preview_image.inc" />
   <install as="ansel/templates/image/resize_image.inc" name="templates/image/resize_image.inc" />
   <install as="ansel/templates/image/upload.inc" name="templates/image/upload.inc" />
   <install as="ansel/templates/list/footer.inc" name="templates/list/footer.inc" />
   <install as="ansel/templates/list/header.inc" name="templates/list/header.inc" />
   <install as="ansel/templates/list/pager.inc" name="templates/list/pager.inc" />
   <install as="ansel/templates/rss/rss.inc" name="templates/rss/rss.inc" />
   <install as="ansel/templates/rss/rss2.inc" name="templates/rss/rss2.inc" />
   <install as="ansel/templates/smartmobile/galleries.html.php" name="templates/smartmobile/galleries.html.php" />
   <install as="ansel/templates/smartmobile/gallery.html.php" name="templates/smartmobile/gallery.html.php" />
   <install as="ansel/templates/smartmobile/image.html.php" name="templates/smartmobile/image.html.php" />
   <install as="ansel/templates/smartmobile/javascript_defs.php" name="templates/smartmobile/javascript_defs.php" />
   <install as="ansel/templates/tile/dategallery.html.php" name="templates/tile/dategallery.html.php" />
   <install as="ansel/templates/tile/face.inc" name="templates/tile/face.inc" />
   <install as="ansel/templates/tile/gallery.html.php" name="templates/tile/gallery.html.php" />
   <install as="ansel/templates/tile/gallerymini.html.php" name="templates/tile/gallerymini.html.php" />
   <install as="ansel/templates/tile/image.html.php" name="templates/tile/image.html.php" />
   <install as="ansel/templates/view/gallery.html.php" name="templates/view/gallery.html.php" />
   <install as="ansel/templates/view/image.html.php" name="templates/view/image.html.php" />
   <install as="ansel/templates/view/list.html.php" name="templates/view/list.html.php" />
   <install as="ansel/templates/view/results.html.php" name="templates/view/results.html.php" />
   <install as="ansel/templates/view/slideshow.html.php" name="templates/view/slideshow.html.php" />
   <install as="ansel/templates/view/api/gallery.html.php" name="templates/view/api/gallery.html.php" />
   <install as="ansel/templates/widgets/actions.html.php" name="templates/widgets/actions.html.php" />
   <install as="ansel/templates/widgets/begin.html.php" name="templates/widgets/begin.html.php" />
   <install as="ansel/templates/widgets/end.html.php" name="templates/widgets/end.html.php" />
   <install as="ansel/templates/widgets/geotag.html.php" name="templates/widgets/geotag.html.php" />
   <install as="ansel/templates/widgets/imagefaces.html.php" name="templates/widgets/imagefaces.html.php" />
   <install as="ansel/templates/widgets/links.html.php" name="templates/widgets/links.html.php" />
   <install as="ansel/templates/widgets/othergalleries.html.php" name="templates/widgets/othergalleries.html.php" />
   <install as="ansel/templates/widgets/tags.html.php" name="templates/widgets/tags.html.php" />
   <install as="ansel/templates/xppublish/javascript.inc" name="templates/xppublish/javascript.inc" />
   <install as="ansel/templates/xppublish/list.inc" name="templates/xppublish/list.inc" />
   <install as="ansel/templates/xppublish/login.inc" name="templates/xppublish/login.inc" />
   <install as="ansel/templates/xppublish/new.inc" name="templates/xppublish/new.inc" />
   <install as="Ansel/AllTests.php" name="test/Ansel/AllTests.php" />
   <install as="Ansel/Autoload.php" name="test/Ansel/Autoload.php" />
   <install as="Ansel/bootstrap.php" name="test/Ansel/bootstrap.php" />
   <install as="Ansel/TestCase.php" name="test/Ansel/TestCase.php" />
   <install as="Ansel/fixtures/vfs/.horde/ansel/00/full/4200.jpg" name="test/Ansel/fixtures/vfs/.horde/ansel/00/full/4200.jpg" />
   <install as="Ansel/Unit/Base.php" name="test/Ansel/Unit/Base.php" />
   <install as="Ansel/Unit/ImageTest.php" name="test/Ansel/Unit/ImageTest.php" />
   <install as="ansel/themes/default/cropper.css" name="themes/default/cropper.css" />
   <install as="ansel/themes/default/embed.css" name="themes/default/embed.css" />
   <install as="ansel/themes/default/lightbox.css" name="themes/default/lightbox.css" />
   <install as="ansel/themes/default/screen.css" name="themes/default/screen.css" />
   <install as="ansel/themes/default/graphics/add.png" name="themes/default/graphics/add.png" />
   <install as="ansel/themes/default/graphics/allgalleries.png" name="themes/default/graphics/allgalleries.png" />
   <install as="ansel/themes/default/graphics/ansel.png" name="themes/default/graphics/ansel.png" />
   <install as="ansel/themes/default/graphics/arrow_switch.png" name="themes/default/graphics/arrow_switch.png" />
   <install as="ansel/themes/default/graphics/bookmark.png" name="themes/default/graphics/bookmark.png" />
   <install as="ansel/themes/default/graphics/browse.png" name="themes/default/graphics/browse.png" />
   <install as="ansel/themes/default/graphics/down.png" name="themes/default/graphics/down.png" />
   <install as="ansel/themes/default/graphics/embed.png" name="themes/default/graphics/embed.png" />
   <install as="ansel/themes/default/graphics/faces.png" name="themes/default/graphics/faces.png" />
   <install as="ansel/themes/default/graphics/favicon.ico" name="themes/default/graphics/favicon.ico" />
   <install as="ansel/themes/default/graphics/galleries.png" name="themes/default/graphics/galleries.png" />
   <install as="ansel/themes/default/graphics/gallery-locked-mini.png" name="themes/default/graphics/gallery-locked-mini.png" />
   <install as="ansel/themes/default/graphics/gallery-locked.png" name="themes/default/graphics/gallery-locked.png" />
   <install as="ansel/themes/default/graphics/marqueeHoriz.gif" name="themes/default/graphics/marqueeHoriz.gif" />
   <install as="ansel/themes/default/graphics/marqueeVert.gif" name="themes/default/graphics/marqueeVert.gif" />
   <install as="ansel/themes/default/graphics/mini-error.png" name="themes/default/graphics/mini-error.png" />
   <install as="ansel/themes/default/graphics/mygalleries.png" name="themes/default/graphics/mygalleries.png" />
   <install as="ansel/themes/default/graphics/photomarker-shadow.png" name="themes/default/graphics/photomarker-shadow.png" />
   <install as="ansel/themes/default/graphics/photomarker.png" name="themes/default/graphics/photomarker.png" />
   <install as="ansel/themes/default/graphics/plus.png" name="themes/default/graphics/plus.png" />
   <install as="ansel/themes/default/graphics/point.png" name="themes/default/graphics/point.png" />
   <install as="ansel/themes/default/graphics/prettythumb-error.png" name="themes/default/graphics/prettythumb-error.png" />
   <install as="ansel/themes/default/graphics/problem.png" name="themes/default/graphics/problem.png" />
   <install as="ansel/themes/default/graphics/report.png" name="themes/default/graphics/report.png" />
   <install as="ansel/themes/default/graphics/resize.png" name="themes/default/graphics/resize.png" />
   <install as="ansel/themes/default/graphics/scaler_slider.gif" name="themes/default/graphics/scaler_slider.gif" />
   <install as="ansel/themes/default/graphics/scaler_slider_track.gif" name="themes/default/graphics/scaler_slider_track.gif" />
   <install as="ansel/themes/default/graphics/screen-error.png" name="themes/default/graphics/screen-error.png" />
   <install as="ansel/themes/default/graphics/slideshow_next.png" name="themes/default/graphics/slideshow_next.png" />
   <install as="ansel/themes/default/graphics/slideshow_pause.png" name="themes/default/graphics/slideshow_pause.png" />
   <install as="ansel/themes/default/graphics/slideshow_play.png" name="themes/default/graphics/slideshow_play.png" />
   <install as="ansel/themes/default/graphics/slideshow_prev.png" name="themes/default/graphics/slideshow_prev.png" />
   <install as="ansel/themes/default/graphics/text.png" name="themes/default/graphics/text.png" />
   <install as="ansel/themes/default/graphics/thumb-error.png" name="themes/default/graphics/thumb-error.png" />
   <install as="ansel/themes/default/graphics/up.png" name="themes/default/graphics/up.png" />
   <install as="ansel/themes/default/graphics/carousel/left-disabled.gif" name="themes/default/graphics/carousel/left-disabled.gif" />
   <install as="ansel/themes/default/graphics/carousel/left.gif" name="themes/default/graphics/carousel/left.gif" />
   <install as="ansel/themes/default/graphics/carousel/right-disabled.gif" name="themes/default/graphics/carousel/right-disabled.gif" />
   <install as="ansel/themes/default/graphics/carousel/right.gif" name="themes/default/graphics/carousel/right.gif" />
   <install as="ansel/themes/default/graphics/lightbox/bullet.gif" name="themes/default/graphics/lightbox/bullet.gif" />
   <install as="ansel/themes/default/graphics/lightbox/close.gif" name="themes/default/graphics/lightbox/close.gif" />
   <install as="ansel/themes/default/graphics/lightbox/closelabel.gif" name="themes/default/graphics/lightbox/closelabel.gif" />
   <install as="ansel/themes/default/graphics/lightbox/loading.gif" name="themes/default/graphics/lightbox/loading.gif" />
   <install as="ansel/themes/default/graphics/lightbox/nextlabel.gif" name="themes/default/graphics/lightbox/nextlabel.gif" />
   <install as="ansel/themes/default/graphics/lightbox/prevlabel.gif" name="themes/default/graphics/lightbox/prevlabel.gif" />
   <install as="ansel/themes/default/smartmobile/screen.css" name="themes/default/smartmobile/screen.css" />
  </filelist>
 </phprelease>
 <changelog>
  <release>
   <version>
    <release>1.0.0RC1</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Add Turkish translation (Akif Dinc &lt;akif@dinc.org&gt;).
* [jan] Change group field in shares table to work with LDAP groups (Bug #6883).
* [jan] Add WebDAV interface.
* [jan] Add Japanese translation (Takeshi Taguchi &lt;taguchi@tcltk.jp&gt;).
* [mjr] The xppublish feature now uses the correct (not temporary) filenames.
* [cjh] Use the zip extension to read uploaded ZIP files if it&apos;s available.
* [mjr] Added rounded, shadowed thumbnails and a &apos;Polaroid-like&apos; stack of images to use as gallery default images.
* [mjr] Add RSS feeds that can publish feeds across all images, for specific user, specific gallery, and specific tag.
* [mjr] Implement a searchTag api so other applications can list tags and perform tag searches of Ansel resources.
* [mjr] Add support for image and gallery tags.
* [mjr] New blocks for listing recently added images and image comments.
* [mjr] Image comments, titles, and links now correctly update during slideshow and image navigation.
* [cjh] Give Ansel its own Share implementation for now as hierarchical shares are being removed from the main Horde_Share class.
* [cjh] Merge in updates from Exifer 1.5 (final Exifer release), along with some related code cleanup.
* [cjh] Fix screen-size previews of edit operations.
* [cjh] Move images from the DataTree to their own SQL table.
* [jan] Add Slovenian translation (Duck &lt;duck@obala.net&gt;).
* [mjr] Add an addGallery() method to the external api.
* [cjh] Integrate slideshow and image views (Bug #3785).
* [cjh] Add creation of subgalleries, setting gallery owners, and setting image captions to the ansel.php CLI (dorm@dorm.org, Request #3986).
* [cjh] Implement drag-and-drop sorting of images.
* [mas] Fix undefined index warning if no galleries are defined (Bug #2172).
* [jan] Add Swedish translation (Andreas Dahlén &lt;andreas@dahlen.ws&gt;).
* [jan] Add Finnish translation (Leena Heino &lt;liinu@uta.fi&gt;).
* [jan] Add Lithuanian translation (Vilius Sumskas &lt;vilius@lnk.lt&gt;).
* [cjh] Use new Horde_Menu CSS styled menu.
* [cjh] Remove view/ directory as it wasn&apos;t being maintained.
* [cjh] Add automatic rotation of images according to Exif information (Brian Templeton &lt;kaetzchen@gmail.com&gt;).
* [cjh] Add API methods (Duck &lt;duck@obala.net&gt;, Roel Gloudemans &lt;roel@gloudemans.info&gt;).
* [cjh] Images can now have categories using the Horde-wide category system (Duck &lt;duck@obala.net&gt;).
* [jan] Add option to not prompt for gallery ID (Duck &lt;duck@obala.net&gt;).
* [cjh] The default gallery &quot;list&quot; format now looks like the gallery image listing view (Duck &lt;duck@obala.net&gt;).
* [jan] Add comments on images.
* [jan] Recursively delete complete directories when deleting images.
* [jan] Don&apos;t convert image format when downloading the full image.
* [jan] Store images with correct file extension in the VFS backend.
* [mms] Allow images to be sent as an ecard.
* [jan] Add Spanish translation (Manuel Perez Ayala &lt;mperaya@alcazaba.unex.es&gt;).
* [jan] Add Traditional Chinese translation (David Chang &lt;david@tmv.gov.tw&gt;).
* [cjh] Command line interface to Ansel (Vijay Mahrra &lt;vijay.mahrra@es.easynet.net&gt;).
* [cjh] Store EXIF data for uploaded images into the backend on upload. (&quot;Heath S. Hendrickson&quot; &lt;heath@outerspaceconsultants.com&gt;).
* [cjh] Allow re-ordering images in a gallery. (&quot;Heath S. Hendrickson&quot; &lt;heath@outerspaceconsultants.com&gt;).
* [cjh] Add placeholder tokens in watermark strings (&quot;Heath S. Hendrickson&quot; &lt;heath@outerspaceconsultants.com&gt;).
* [cjh] Allow custom watermark text (&quot;Heath S. Hendrickson&quot; &lt;heath@outerspaceconsultants.com&gt;).
* [cjh] Link for showing exif data in a popup window (&quot;Heath S. Hendrickson&quot; &lt;heath@outerspaceconsultants.com&gt;).
* [cjh] Preference for whether or not to show exif data in the image view (&quot;Heath S. Hendrickson&quot; &lt;heath@outerspaceconsultants.com&gt;).
* [cjh] Support for PHP&apos;s native exif_read_data() function (&quot;Heath S. Hendrickson&quot; &lt;heath@outerspaceconsultants.com&gt;).
* [cjh] Add batch-setting of captions.
* [cjh] Add previous and next buttons for navigation within galleries (Brian Keifer &lt;brian@valinor.net&gt;).
* [cjh] Define minimum, maximum, and default sizes for thumbnail and screen images, and allow setting those values in the min-max range on a per-gallery basis (Ben Chavet &lt;ben@chavet.net&gt;).
* [cjh] Authenticated users can now download a zip file containing all images in a gallery.
* [cjh] Add creation and display of subgalleries.
* [cjh] Let users enter the short ids for galleries, instead of using 32 character md5 strings.
* [cjh] Add slideshows.
* [cjh] Implement support for Windows XP&apos;s Publish To Web wizard.
* [cjh] Add display of embedded exif information in images. Adapted from Exifer, by Jake Olefsky &lt;jake@olefsky.com&gt;.
* [cjh] Show tooltips containing filename and image descriptions.
* [jan] Add German translation.
* [cjh] Initial Ansel code.
   </notes>
  </release>
  <release>
   <version>
    <release>1.0.0</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [mjr] Force screen images to be jpegs to reduce image size.
* [mjr] Add a new api method for obtaining the available gallery styles.
* [mjr] Add a widget to the gallery view for showing faces that the gallery owner has tagged.
* [mjr] Allow embedding screen size images in external sites as well.
* [mjr] Add configuration parameter to require a minimum number of images to be present in a gallery before it&apos;s displayed in a gallery list. (Duck &lt;duck@obala.net&gt;, Request# 7949)
* [mjr] Add a Link widget to the Image View.
* [mjr] Correct some undefined variable warnings. (Duck &lt;duck@obala.net&gt;)
* [mjr] Fix default parameters for the ansel tag cloud.
   </notes>
  </release>
  <release>
   <version>
    <release>1.1.0</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [mjr] Fix a bug that caused a SQL error on some RDBMS (Bug #8610).
* [mjr] Add autocompletion for tags.
* [mjr] Fix issue with uploading images to galleries in &quot;Browse by Date&quot; mode causing the mode to be reset to &quot;Normal&quot;.
* [mjr] Return to the previously viewed page number when manually selecting face ranges (Bug #8402).
* [mjr] Significantly reduce the number of javascript errors due to IE issues.
* [mjr] Allow the addition of geolocation data on images that do not contain any and allow the relocating of images that do have the data.
* [mjr] Fix display of EXIF date values (Bug #8352).
* [mjr] Display a Google Map with thumbnail markers for image location(s) if location data is available.
* [mjr] Add configuration switch to disallow querying the preference backend for other user&apos;s identities and preferences (Bug #8269).
* [mjr] Remove broken implementation of the &apos;numlimit&apos; configuration option (Bug #8139).
* [jan] Fix icon URLs if cookies are turned off.
* [jan] Fix ansel_shares table definition for PostgreSQL.
* [mjr] Fix issue that caused screen image creation to fail when using gd Horde_Image driver.
* [mjr] Fix issue with screen images being generated as PNGs if not using VFS Direct serving.
   </notes>
  </release>
  <release>
   <version>
    <release>1.1.1</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [mjr] Fix default value for image_faces value in the database schema (Bug #8925).
* [mjr] Fix sending ecards when SMTP auth is set, but no global username/password exists in the configuration (horde@albasoft@com, Bug #8924).
* [mjr] Fix escaping location query for PostgreSQL (Bug #8919).
* [mjr] Properly url-encode and escape html when processing tags.
* [mjr] Protect against divide-by-zero errors (Bug #8761).
* [jan] Fix invalid class name in block for recently geotagged images.
   </notes>
  </release>
  <release>
   <version>
    <release>1.1.2</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [mjr] Fix issue where subgalleries would become invisible in certain conditions.
* [mjr] Fix parsing gps data in certain locales (Bug #9180).
* [mjr] Fix a bug that caused certain thumbnail types to be generated as jpeg images instead of the requested png type.
* [jan] Add French translation (Maxime Chavagne &lt;maxime@chavagne.net&gt;).
* [mjr] Enforce the same allowed characters for tags as slugs (Bug #9005).
* [mjr] Fix clicking on image edit actions causes logout when not using cookies.
* [mjr] Fix adding a face name from the gallery faces view (Bug #9002).
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.0alpha1</release>
    <api>2.0.0</api>
   </version>
   <stability>
    <release>alpha</release>
    <api>alpha</api>
   </stability>
   <date>2011-10-11</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* First alpha release for Horde 4.
* [mjr] Support for sending twitter notifications after uploading images.
* [mjr] Refactor Geotagging features to use HordeMap.
* [jan] Add Latvian translation (Jānis Eisaks &lt;jancs@dv.lv&gt;).
* [jan] Provide default configuration files instead of .dist versions.
* [mjr] Mobile view added.
* [mjr] Square image and smart square image generators added.
* [mjr] Gallery style properties are now directly editable per-gallery by the gallery owner (Request #6003).
* [mjr] New ajax image uploader added.
* [mjr] Categories are removed and migrated to tags.
* [mjr] Move tag handling to Content_Tagger.
* [mjr] Unsharpmask filtering options added.
* [mjr] Support for multipage images (Request #6022).
* [mjr] Remove support for no longer available openCV extension.
* [mjr] Exif code removed and placed in Horde_Image_Exif.
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.0RC1</release>
    <api>2.0.0RC1</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2011-10-19</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix migrations to not rely on Ansel being available.
* [mjr] Fix hook calls (Bug #10659).
* [mjr] Add script to convert from sql to sqlng shares after migrations have already run.
* [mjr] Add migration to ensure style hashes are computed for migrated galleries.
* [mjr] Fix uploading large files (Bug #10641).
* [mjr] Fix thumbnail generation on bulk caption setting page (Bug #10642).
* [mjr] Fix GROUP BY fields when searching for similar faces (Bug #10635).
* [jan] Fix link to report faces (Bug #10636).
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.0RC2</release>
    <api>2.0.0RC2</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2011-10-27</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix page output of popup for updating dates of multiple images (Bug #10676).
* [jan] Fix initialization of editor for creating ecards (Bug #10675).
* [mjr] Fix issue causing uploads to fail in certain cases on IE.
* [mjr] Display localized date strings when grouping galleries by date (Bug #10669).
* [mjr] Improve gallery property editing when jpg image format is configured.
* [jan] Add Slovak translation (Martin Matuška &lt;martin@matuska.org&gt;).
* [mjr] Allow filtering listTagInfo results by user.
* [mjr] Fix issue with style migration when upgrading from Ansel 1.x.
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.0</release>
    <api>2.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2011-11-02</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Add pref to allow explicitly turning off the new ajax uploader.
* [mjr] Fix invalid image type errors when uploading in older versions of mozilla.
* [mjr] Fix issue with deleting galleries in date mode with key images (Bug #10671).
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.1</release>
    <api>2.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2011-11-02</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix saving portal blocks.
* [mjr] Fix issue with carousel display on legacy uploader.
* [mjr] Fix issue where gallery still retained image count after it was empties of all images when using gallery cache.
* [mjr] Fix issue with map not showing when user does not have Horde_Perms::EDIT on the gallery (Bug #10762).
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.2</release>
    <api>2.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2012-02-28</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix auto rotation of images based on orientation exif data (Bug #11441).
* [mjr] Honor locked default_download pref (Bug #11325).
* [mjr] Fix getting gallery data via the API (maxime@chavagne.net, Bug #11229).
* [mjr] Fix carousel when viewing upload screen in an iFrame (Bug #10889).
* [mjr] Fix returning to gallery view after uploading images when viewing Ansel in an iFrame (Bug #11209).
* [mjr] Fix moving a subgallery to a top level gallery (Bug #11134).
* [jan] Fix redirection after setting gallery password (thpo+horde@dotrc.de, Bug #11195).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.0beta1</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2013-06-18</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* First beta release for Horde 5.
* [mjr] Various fixes for SQLite to work with Ansel.
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.0RC1</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2013-07-17</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix performing image actions in Lightbox galleries.
* [mjr] Fix display of missing widgets.
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.0</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2013-08-22</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fixed fatal error when using face widgets.
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.1</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2013-10-29</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Support nginx style Sendfile headers (Request #12661).
* [mjr] Fix cancel button behavior on reporting page (Bug #12667).
* [mjr] Prevent protected images from leaking into gallery thumbnails (Bug #12668).
* [mjr] Fix adding custom watermark (Bug #12634).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.2</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2015-02-10</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix closure compiler errors (Bug #13596).
* [jan] Fix type of ansel_shares_users.user_uid column.
* [jan] Fix watermark font size preference.
* [jan] Make shares table compatible with Oracle.
* [jan] Add Danish translation (Erling Preben Hansen &lt;erling@eph.dk&gt;).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.3</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2015-08-01</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix PUTing images.
* [jan] Fix DAV URLs when using authusername hooks.
* [mjr] Fix fatal error due to failed generation of KeyImage thumbnails in mobile view (Bug #14028).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.4</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2016-03-21</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Use access rules compatible with both Apache 2.2 and 2.4.
* [jan] Improve Oracle compatibility.
* [mjr] Fix content-type for screen images to be compatible with some versions of IE.
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.5</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2016-05-26</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix creating new galleries (Bug #14372).
* [jan] Fix fatal error in upload screen with PHP 7 (Michael Cramer &lt;michael@bigmichi1.de&gt;).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.6</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2017-03-20</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Honor selected images when downloading selected images as a zip file (Bug #14569).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.7</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2017-08-01</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] SECURITY: Fix open redirects.
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.8</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2017-09-19</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Officially support PHP 7.
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.9</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2018-10-23</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix fatal error in database migration (Bug #14865).
* [jan] Fix error when clicking on a tag in the tag cloud (Michael Cramer &lt;michael@bigmichi1.de&gt;, Bug #14715).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.10</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2019-05-12</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix removing image stacks when resetting default image.
* [mjr] Fix fatal error when attempting to delete an image that doesn&apos;t exist.
   </notes>
  </release>
  <release>
   <version>
    <release>4.0.0</release>
    <api>4.0.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2017-10-20</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* Fix removing image stacks when resetting default image.
* Fix fatal error when attempting to delete an image that doesn&apos;t exist.
* [mjr] Add captcha check when sending ecard.
* [jan] Show users&apos; full names in share dialogs.
* [mjr] Remove maps configuration, replaced by global maps configuration (Bug #14168).
* [jan] Keep original file names when PUTing images via WebDAV.
* [jan] Return ETags with browse() API method.
* [mjr] Fix fatal divide by zero error due to incorrectly named variable.
   </notes>
  </release>
 </changelog>
</package>