Gallery Builder
It never was so easy like now to show photos in an amazing view. It's like one-two-three: choose photos, customize any of 10 galleries, publish the gallery. That's all.
Configuration file structure
XML configuration file structure
| <gallery>
<albums>
<album icon="" thumbnailsFolder="" imagesFolder="" description="">
<flickr userID=”” photosetID=”” tags=””/>
<picasa user=”” albumID=”” /> <items>
<item source="" description="" thumb=""/>
</items>
<item source="" description="" thumb=""/> <item source="" description="" thumb=""/> </album>
<album icon="" thumbnailsFolder="" imagesFolder="" description="">
<flickr userID=”” photosetID=”” tags=””/>
<picasa user=”” albumID=”” /> <items>
<item source="" description="" thumb=""/>
</items>
<item source="" description="" thumb=""/> <item source="" description="" thumb=""/> </album>
<album icon="" thumbnailsFolder="" imagesFolder="" description="">
<flickr userID=”” photosetID=”” tags=””/>
<picasa user=”” albumID=”” /> <items>
<item source="" description="" thumb=""/>
</items>
<item source="" description="" thumb=""/> <item source="" description="" thumb=""/> </album>
</gallery> |
JSON configuration file structure
| {
"gallery": {
}
"albums": [
}
{
]
"icon":"",
},"thumbnailsFolder": "gallery/images/album1/", "imagesFolder": "gallery/images/album1/", "description": "Album 1", "flickr":{"userID":"","photosetID":"","tags":""}, "picasa":{"user":"","albumID":""}, "items": [
{
]
"source": " 1.jpg"
},"thumb": " t1.jpg", "description": "", . . . . . {
"source": " 21.jpg"
}"thumb": " t21.jpg", "description": "", . . . . . {
"icon":"",
}"thumbnailsFolder": "gallery/images/album10/", "imagesFolder": "gallery/images/album10/", "description": "Album 10", "flickr":{"userID":"","photosetID":"","tags":""}, "picasa":{"user":"","albumID":""}, "items": [
{
]
"source": " 1.jpg"
},"thumb": " t1.jpg", "description": "", . . . . . {
"source": "n.jpg"
}"thumb": " tn.jpg", "description": "", |
icon- path to album's icon
thumbnailsFolder- path to thumbnails folder
imagesFolder- path to images folder
description- album's description
Flickr attributes:
thumbnailsFolder- path to thumbnails folder
imagesFolder- path to images folder
description- album's description
userID – user ID in Flickr
photosetID - uniq ID to a photoset
tags - tags of photos
Picasa attributes:
photosetID - uniq ID to a photoset
tags - tags of photos
user – login to Picasa
albumID - uniq ID to an album
Item attributes:
albumID - uniq ID to an album
source – image file name
thumb – thumbnail file name
description – Image description
thumb – thumbnail file name
description – Image description





