-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta.xml
78 lines (62 loc) · 1.95 KB
/
meta.xml
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
<?xml version="1.0" encoding="utf-8"?>
<data>
<info>
<galleryName>$model.metadata.galleryName.value</galleryName>
<description>$model.metadata.groupDescription.value</description>
<galleryDate>$model.metadata.galleryDate.value</galleryDate>
<galleryFilterCategories>
<% if model.filterCategory.Steinberggasse then %>
<filterItem>steinberggasse</filterItem>
<% end %>
<% if model.filterCategory.Kirchplatz then %>
<filterItem>kirchplatz</filterItem>
<% end %>
<% if model.filterCategory.Roulotte then %>
<filterItem>roulotte-am-graben</filterItem>
<% end %>
</galleryFilterCategories>
<galleryFilterType>
<% if model.filterType.Konzerte then %>
<filterItem>konzerte</filterItem>
<% end %>
<% if model.filterType.Kleinkunst then %>
<filterItem>kleinkunst-film</filterItem>
<% end %>
<% if model.filterType.ClubsBars then %>
<filterItem>clubs-bars</filterItem>
<% end %>
<% if model.filterType.Stimmung then %>
<filterItem>stimmung</filterItem>
<% end %>
<% if model.filterType.Helfer then %>
<filterItem>helfer</filterItem>
<% end %>
<% if model.filterType.Kinder then %>
<filterItem>kinder</filterItem>
<% end %>
<% if model.filterType.Kostenlos then %>
<filterItem>kostenlos</filterItem>
<% end %>
<% if model.filterType.Kostenpflichtig then %>
<filterItem>kostenpflichtig</filterItem>
<% end %>
</galleryFilterType>
</info>
<galleryElements>
<%
for i=1,numImages,1 do
image = getImage(i)
%>
<mediaItem>
<itemType>Image</itemType>
<itemName><%= image.metadata.title %></itemName>
<itemId><%= image.imageID %></itemId>
<itemFile>
<small><%= model.photoSizes.small.directory %>/<%= image.exportFilename %>.jpg</small>
<large><%= image.exportFilename %>.jpg</large>
<thumb><%= model.photoSizes.thumb.directory %>/<%= image.exportFilename %>.jpg</thumb>
</itemFile>
</mediaItem>
<% end %>
</galleryElements>
</data>