gf-ralbum 0.0.2 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. data/VERSION +1 -0
  2. data/bin/{ralbum.rb → ralbum} +1 -1
  3. data/example/example.sh +2 -1
  4. data/example/test_jalbum_phototree/jalbum-settings.jap +321 -0
  5. data/example/test_jalbum_phototree/src/albumfiles.txt +9 -0
  6. data/example/test_jalbum_phototree/src/comments.properties +0 -0
  7. data/example/test_jalbum_phototree/src/flowers/albumfiles.txt +14 -0
  8. data/example/test_jalbum_phototree/src/meta.properties +2 -0
  9. data/example/{test_phototree → test_rubyphoto_phototree}/album.xml +0 -0
  10. data/example/test_rubyphoto_phototree/flowers/IMG_1469.wt.jpg +0 -0
  11. data/example/test_rubyphoto_phototree/flowers/IMG_2291.jpg +0 -0
  12. data/example/test_rubyphoto_phototree/flowers/IMG_2598.jpg +0 -0
  13. data/example/test_rubyphoto_phototree/flowers/IMG_3068.jpg +0 -0
  14. data/example/test_rubyphoto_phototree/flowers/IMG_3323.jpg +0 -0
  15. data/example/test_rubyphoto_phototree/flowers/IMG_3348.jpg +0 -0
  16. data/example/{test_phototree → test_rubyphoto_phototree}/r_photo01.jpg +0 -0
  17. data/example/{test_phototree → test_rubyphoto_phototree}/r_photo01.jpg.xml +0 -0
  18. data/example/{test_phototree/catalog_data → test_rubyphoto_phototree/ralbum}/md5_to_key.yaml +0 -0
  19. data/example/{test_phototree/catalog_data → test_rubyphoto_phototree/ralbum}/md5_to_key.yaml.test +0 -0
  20. data/example/{test_phototree/catalog_data → test_rubyphoto_phototree/ralbum}/project.xml +206 -3
  21. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum01/album.xml +0 -0
  22. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum01/subalbum01_photo01.jpg +0 -0
  23. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum01/subalbum01_photo01.jpg.xml +0 -0
  24. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum01/subalbum01_photo02.jpg +0 -0
  25. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum01/subalbum01_photo02.jpg.xml +0 -0
  26. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum01/subalbum01_photo03.jpg +0 -0
  27. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum01/subalbum01_photo03.jpg.xml +0 -0
  28. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum01/subalbum01_photo04.jpg +0 -0
  29. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum01/subalbum01_photo04.jpg.xml +0 -0
  30. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum02/album.xml +0 -0
  31. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum02/subalbum02_photo01.jpg +0 -0
  32. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum02/subalbum02_photo01.jpg.xml +0 -0
  33. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum02/subalbum02_photo02.jpg +0 -0
  34. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum02/subalbum02_photo02.jpg.xml +0 -0
  35. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum02/subalbum02_photo03.jpg +0 -0
  36. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum02/subalbum02_photo03.jpg.xml +0 -0
  37. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum02/subalbum02_photo04.jpg +0 -0
  38. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum02/subalbum02_photo04.jpg.xml +0 -0
  39. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum02/subalbum02_photo05.jpg +0 -0
  40. data/example/{test_phototree → test_rubyphoto_phototree}/subalbum02/subalbum02_photo05.jpg.xml +0 -0
  41. data/lib/ralbum.rb +9 -5
  42. data/lib/ralbum/album_tree/album.rb +74 -0
  43. data/lib/ralbum/album_tree/generate_album_tree_node_visitor.rb +73 -0
  44. data/lib/ralbum/album_tree/image_file.rb +88 -0
  45. data/lib/ralbum/{image_pool.rb → album_tree/image_pool.rb} +16 -4
  46. data/lib/ralbum/catalog.rb +7 -7
  47. data/lib/ralbum/cli/cli_ralbum.rb +66 -25
  48. data/lib/ralbum/image_strategies/copy_image_strategy.rb +16 -0
  49. data/lib/ralbum/image_strategies/linked_image_strategy.rb +18 -0
  50. data/lib/ralbum/image_strategies/scaled_image_strategy.rb +52 -0
  51. data/lib/ralbum/image_strategies/sepia_scaled_image_strategy.rb +50 -0
  52. data/lib/{ralbum-common → ralbum}/object_with_properties.rb +0 -0
  53. data/lib/{ralbum-common → ralbum}/object_with_validation.rb +0 -0
  54. data/lib/ralbum/photo_tree/jalbum_photo_tree.rb +83 -0
  55. data/lib/ralbum/photo_tree/photo_file.rb +149 -0
  56. data/lib/ralbum/photo_tree/photo_tree_item.rb +68 -0
  57. data/lib/ralbum/{photo_tree_node.rb → photo_tree/photo_tree_node.rb} +16 -13
  58. data/lib/ralbum/{photo_tree_builder.rb → photo_tree/rubyphoto_photo_tree.rb} +64 -46
  59. data/lib/ralbum/project.rb +48 -12
  60. data/lib/ralbum/skin.rb +34 -27
  61. data/lib/ralbum/skin_engine.rb +32 -17
  62. data/lib/ralbum/skin_engines/erb_skin_engine.rb +2 -5
  63. data/lib/ralbum/skin_engines/kwartz_skin_engine.rb +6 -9
  64. data/lib/ralbum/skin_manager.rb +11 -2
  65. data/lib/ralbum/skins/cgi/cgi_skin.rb +21 -23
  66. data/lib/ralbum/skins/cgi/res/model.rb +30 -32
  67. data/lib/ralbum/skins/gfold/inc/menu_bottom.html +53 -53
  68. data/lib/ralbum/skins/gfold/inc/menu_top.html +71 -71
  69. data/lib/ralbum/skins/gfold/inc/page_footer.html +28 -28
  70. data/lib/ralbum/skins/gfold/out/album_page.rb +316 -316
  71. data/lib/ralbum/skins/gfold/out/image_page.rb +231 -231
  72. data/lib/ralbum/skins/gfold/out/tree_page.rb +96 -96
  73. data/lib/ralbum/skins/gfold/res/prototype.js +3277 -3277
  74. data/lib/ralbum/skins/gfold/template/album_page.html +161 -161
  75. data/lib/ralbum/skins/gfold/template/album_page.plogic +127 -127
  76. data/lib/ralbum/skins/gfold/template/image_page.html +91 -91
  77. data/lib/ralbum/skins/gfold/template/image_page.plogic +70 -70
  78. data/lib/ralbum/skins/gfold/template/tree_page.html +79 -79
  79. data/lib/ralbum/skins/gfold/template/tree_page.plogic +45 -45
  80. data/lib/ralbum/skins/js/out/album_page.rb +2 -2
  81. data/lib/ralbum/skins/js/out/tree_page.rb +18 -17
  82. data/lib/ralbum/skins/js/template/album_page.html +2 -2
  83. data/lib/ralbum/skins/js/template/tree_page.html +1 -1
  84. data/lib/ralbum/skins/test_erb/template/album_page.rhtml +22 -0
  85. data/lib/ralbum/skins/test_erb/template/image_page.rhtml +44 -0
  86. data/lib/ralbum/tasks/compile_skins.rb +8 -0
  87. data/test/ralbum/cli/tc_cli_ralbum.rb +35 -0
  88. data/test/ralbum/image_strategies/tc_scaled_image_strategy.rb +18 -0
  89. data/test/ralbum/image_strategies/tc_sepia_scaled_image_strategy.rb +18 -0
  90. data/test/ralbum/photo_tree/tc_jalbum_photo_tree.rb +39 -0
  91. data/test/ralbum/photo_tree/tc_photo_file.rb +13 -0
  92. data/test/ralbum/{tc_01_photo_tree.rb → photo_tree/tc_photo_tree.rb} +10 -12
  93. data/test/ralbum/photo_tree/tc_rubyalbum_photo_tree.rb +20 -0
  94. data/test/ralbum/tc_album.rb +55 -0
  95. data/test/ralbum/tc_catalog.rb +8 -4
  96. data/test/ralbum/tc_image_pool.rb +37 -0
  97. data/test/ralbum/{tc_05_kwartz_skin_engine.rb → tc_kwartz_skin_engine.rb} +1 -1
  98. data/test/ralbum/{tc_04_skin_manager.rb → tc_skin_manager.rb} +8 -3
  99. data/test/ralbum/test_helper.rb +16 -1
  100. data/test_data/ralbum/test_data/is_test/dummy.txt +0 -0
  101. metadata +78 -81
  102. data/bin/ralbum-JPG2jpg.rb +0 -90
  103. data/bin/ralbum-compile_skins.rb +0 -18
  104. data/bin/ralbum-myconv.rb +0 -81
  105. data/bin/ralbum-readexif.rb +0 -18
  106. data/bin/ralbum-reorder.rb +0 -200
  107. data/lib/ralbum/album.rb +0 -66
  108. data/lib/ralbum/generate_album_tree_node_visitor.rb +0 -60
  109. data/lib/ralbum/image_file.rb +0 -81
  110. data/lib/ralbum/image_strategy.rb +0 -143
  111. data/lib/ralbum/photo_tree_item.rb +0 -89
  112. data/test/ralbum/cli/test_cli_ralbum.rb +0 -13
  113. data/test/ralbum/tc_02_photo_tree_builder.rb +0 -20
  114. data/test/ralbum/tc_03_album.rb +0 -42
  115. data/test/ralbum/tc_06_image_strategy.rb +0 -21
  116. data/test/test_ralbum.rb +0 -14
  117. data/test_data/ralbum/test_data/is_test/r_photo01_scaled.jpg +0 -0
  118. data/test_data/ralbum/test_data/is_test/r_photo01_sepia_scaled.jpg +0 -0
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.5
@@ -9,4 +9,4 @@ $:.unshift( File.join($RALBUM_HOME, "lib" ) )
9
9
  require 'ralbum'
10
10
  require 'ralbum/cli/cli_ralbum'
11
11
 
12
- CliRAlbum.run
12
+ exit CliRAlbum.run
@@ -1,3 +1,4 @@
1
1
 
2
- ruby ../bin/ralbum.rb -v 10 -f test_phototree test_album
2
+ ruby ../bin/ralbum -v 10 -f test_rubyphoto_phototree test_rubyphoto_albumtree
3
+
3
4
 
@@ -0,0 +1,321 @@
1
+ #Jalbum Project
2
+ #Sun Jun 07 10:25:21 CEST 2009
3
+ skin.slideGuestBookRating=true
4
+ class=class se.datadosen.jalbum.AlbumBean
5
+ skin.logoMargin=20
6
+ skin.iptcObjectName=true
7
+ skin.includeSlideCopyright=omit
8
+ outputDirectory=/media/Interzone/GioPrj/prj_github_rubyforge/ralbum/example/test_jalbum_albumtree
9
+ skin.logoVertAlign=bottom
10
+ skin.movieScaleToFit=true
11
+ skin.logoFileName=
12
+ skin.fitImage=none
13
+ skin.emSquareThumbs=false
14
+ exifImageDescription=false
15
+ skin.colorMapLightColorSlides=\#f6eecb
16
+ skin.colorMapThumbs=false
17
+ skin.blogStyleLevel=1
18
+ skin.colorMapDarkColorThumbsHex=\#241c0b
19
+ skin.enableKeyboard=true
20
+ skin.tsFileTitle=true
21
+ skin.paypalUseSelect=false
22
+ skin.empPicType=this
23
+ accountProfileName=
24
+ skin.voiceAnnotations=true
25
+ skin.blogStyleImageWidth=400
26
+ rows=4
27
+ skin.watermarkMargin=20
28
+ skin.movieWidth=640
29
+ skin.paypalLabel6=
30
+ sameDirectory=false
31
+ skin.paypalLabel5=
32
+ skin.paypalLabel4=
33
+ skin.paypalLabel3=
34
+ skin.paypalLabel2=
35
+ skin.paypalLabel1=
36
+ skin.watermarkStyle=normal
37
+ skin.exifFlash=false
38
+ skin.ttComment=false
39
+ skin.watermarkFont=AR PL UMing CN
40
+ skin.paypalShipping6=
41
+ skin.includeIndexCopyright=text
42
+ appendImages=false
43
+ textEncoding=ISO-8859-1
44
+ skin.paypalShipping5=
45
+ skin.zoomPercentSlides=30
46
+ skin.paypalShipping4=
47
+ skin.indexGuestBookWidth=740
48
+ skin.paypalShipping3=
49
+ skin.paypalShipping2=
50
+ skin.paypalShipping1=
51
+ skin.thumbsCount=5
52
+ skin.slideGuestBookHeight=140
53
+ skin.iptcCity=true
54
+ widgetInjection=true
55
+ skin.imageBorderColor=\#ffffff
56
+ skin.thumbsPosition=bothsides
57
+ skin.paypalEmail=
58
+ skin.emSquareSlides=false
59
+ cols=6
60
+ skin.xpSubject=true
61
+ skin.ttDate=false
62
+ skin.indexPageTransitionDelay=0.5
63
+ skin.gpsFormat=dms
64
+ useThumbForFolderIcon=false
65
+ skin.guestbookHighlightColorHex=\#ff9922
66
+ progressiveMode=true
67
+ skin.slideFooter=
68
+ skin.colorMapSlides=false
69
+ pageExtension=.html
70
+ updatedDirsOnly=false
71
+ copyOriginals=true
72
+ skin.slideShowDelay=3
73
+ reverseOrder=false
74
+ skin.pathSep=»
75
+ skin.indexGuestBookRating=false
76
+ skin.showLastUpdate=true
77
+ skin.enableMousewheel=false
78
+ skin.paypalHandlingCartwise=true
79
+ iptcCaption=true
80
+ thumbnailPrefix=
81
+ skin.slideShowLoop=false
82
+ slideDirectory=slides
83
+ qualityPercent=75
84
+ skin.iptcCategory=true
85
+ excludeByDefault=false
86
+ skin.exifDate=true
87
+ skin.colorMapDarkColorSlidesHex=\#241c0b
88
+ skin.pageTransitionDelay=0.5
89
+ skin.tsDate=false
90
+ skin.guestbookNotification=false
91
+ skin.gpsAltitude=true
92
+ jpegComment=false
93
+ skin.watermarkSize=36
94
+ skin.folderCommentPosition=top
95
+ includePattern=
96
+ skin.showImageTitle=true
97
+ skin.indexSlideShowLoop=false
98
+ skin.paypalPrice6=
99
+ skin.paypalPrice5=
100
+ skin.paypalPrice4=
101
+ skin.paypalPrice3=
102
+ skin.paypalPrice2=
103
+ skin.paypalPrice1=
104
+ skin.ttSize=false
105
+ skin.ttOriginal=false
106
+ skin.watermarkOpacity=10
107
+ skin.thumbPadding=12
108
+ skin.includeSlideShow=true
109
+ skin.ttFileName=false
110
+ skin.exifExposureBias=false
111
+ skin.language=en
112
+ skin.ttDescription=false
113
+ skin.indexFooterOnlyTop=false
114
+ skin.paypalId6=
115
+ interpretedOutputDirectory=/media/Interzone/GioPrj/prj_github_rubyforge/ralbum/example/test_jalbum_albumtree
116
+ skin.paypalId5=
117
+ skin.indexGuestBookHeight=280
118
+ skin.paypalId4=
119
+ skin.paypalId3=
120
+ skin.paypalId2=
121
+ skin.paypalId1=
122
+ skin.iptcSource=true
123
+ skin.ttLabel=false
124
+ skin.iptcAuthor=true
125
+ skin.autoMaximize=false
126
+ sharpenPercent=50
127
+ skin.markOfTheWeb=true
128
+ skin.iptcCopyright=true
129
+ skin.ttFolderName=true
130
+ skin.tsSize=false
131
+ skin.paypalHandling=
132
+ skin.watermarkVertAlign=bottom
133
+ skin.mapZoom=12
134
+ skin.xmpString=creator, date, title, subject, description, format, rights, CreateDate, ModifyDate, Identifier, Label, Owner, Artist, Copyright, Maker, Model, DateTimeOriginal, ColorSpace, Exposure Time, F-Number, FNumber, ISOSpeedRatings, Shutter Speed Value, ShutterSpeedValue, Aperturevalue, ExposureBiasValue, SubjectDistance, MeteringMode, LightSource, Flash, Focallength, Exposureprogram, ExposureMode, SceneType, WhiteBalance, Lens, Lens-Information, GPSLongitude, GPSLongitudeRef, GPSLatitude, GPSLatitudeRef, GPSAltitude, GPSAltitudeRef
135
+ skin.imageBorderColorHex=\#ffffff
136
+ skin.colorMapMediumColorThumbs=\#887f64
137
+ skin.zoomPercent=30
138
+ imageOrdering=OrderByDate
139
+ skin.exifCamera=true
140
+ skin.exifWhiteBalance=false
141
+ subdirs=true
142
+ skin.printingPosition=top
143
+ skin.displayMetaLabels=true
144
+ directoriesFirst=true
145
+ skin.slideHeader=
146
+ skin.usePageTransition=true
147
+ skin.grayscaleEffect=false
148
+ skin.exifResolution=true
149
+ skin.empPicOmitThumb=true
150
+ style=Black.css
151
+ skin.mapTarget=true
152
+ skin.includeNavHelp=popuppage
153
+ skin.showXmp=false
154
+ skin.gpsLongitude=true
155
+ skin.exifExposureMode=false
156
+ skin.iptcLocation=true
157
+ skin.ttNumber=false
158
+ skin.printing=none
159
+ skin.paypalUseQuantity=false
160
+ skin.exifPosition=bottom
161
+ skin.indexGuestBookOnlyTop=false
162
+ skin.ttPosition=bottom
163
+ skin.includeIndexSlideShow=true
164
+ skin.languageSelector=
165
+ skin.homepageDesc2=
166
+ skin.homepageDesc1=
167
+ skin.fontSize=12
168
+ skin.copyProtection=false
169
+ writeUTF8=true
170
+ skin.watermarkText=
171
+ skin.tsLabel=false
172
+ skin.xpTitle=true
173
+ imageLinking=LinkScaled
174
+ includeDirectories=true
175
+ skin.homepageTarget2=true
176
+ skin.thumbBorderWidth=1
177
+ ignorePattern=\\..*
178
+ skin.homepageTarget1=true
179
+ skin.guestbookHighlightColor=\#ff9922
180
+ skin.colorMapDarkColorThumbs=\#241c0b
181
+ skin.homepageLink2=
182
+ metaData=true
183
+ skin.colorMapMediumColorSlides=\#887f64
184
+ skin.homepageLink1=
185
+ skin.subStyle=default
186
+ skin.metadataScouting=false
187
+ skin.jumptoPictureTop=false
188
+ skin.gpsTime=true
189
+ skin.zoomThumbs=false
190
+ skin.showExif=false
191
+ classicReaders=true
192
+ skin.upLinkTitle=
193
+ skin.showXp=false
194
+ skin.tsNumber=false
195
+ skin.grayscaleThumbs=false
196
+ skin.customScrollbars=false
197
+ skin.logoHorAlign=right
198
+ skin.watermarkHorAlign=right
199
+ imageSize=800x800
200
+ skin.paypalSelect8=
201
+ skin.paypalSelect7=
202
+ skin.paypalSelect6=
203
+ skin.paypalSelect5=
204
+ skin.paypalSelect4=
205
+ skin.paypalSelect3=
206
+ skin.gpsLatitude=true
207
+ skin.paypalSelect2=
208
+ skin.paypalSelect1=
209
+ skin.watermarkColor=\#ffffff
210
+ skin.guestbookBaseFontSize=12
211
+ skin.empPicPosition=omit
212
+ cpuCores=2
213
+ keepMetaData=false
214
+ skin.iptcCountry=true
215
+ skin.thumbSpacing=6
216
+ skin.blogStyleImageHeight=400
217
+ skin.showGps=false
218
+ skin.colorMapDarkColorSlides=\#241c0b
219
+ urlEncode=false
220
+ skin.xpKeywords=true
221
+ remoteDirectory=album
222
+ skin.indexHeaderOnlyTop=false
223
+ skin.zoomSlides=false
224
+ skin.empPicWidth=400
225
+ skin.slideGuestBookWidth=740
226
+ skin.thumbBorderColorHover=\#ffffff
227
+ skin.colorMapLightColorThumbsHex=\#f6eecb
228
+ skin.indexFooter=
229
+ skin.iptcKeywords=true
230
+ skin.guestbookAscending=false
231
+ skin.thumbsSize=48
232
+ skin.thumbBorderColorHex=\#aaaaaa
233
+ skin.exifPhotographer=true
234
+ indexPageName=index
235
+ skin.imageBorderWidth=8
236
+ skin.grayscaleSlides=false
237
+ skin.ttFileTitle=false
238
+ skin.tsUseLabelIfNoComment=true
239
+ skin.xpComment=true
240
+ skin.guestbookNotificationEmail=
241
+ skin.indexSlideShowStartsSlides=true
242
+ skin.paypalCurrency=
243
+ skin.useIndexPageTransition=false
244
+ resourceDirectory=res
245
+ directory=/media/Interzone/GioPrj/prj_github_rubyforge/ralbum/example/test_jalbum_phototree/src
246
+ slides=true
247
+ closeupDirectory=slides
248
+ skin.iptcHeadline=true
249
+ skin.indexLinksCount=10
250
+ skin.exifExposureTime=true
251
+ dateFormat=
252
+ skin.forceLinkToEmptyFolders=false
253
+ skin.guestbookEntries=20
254
+ skin.slideLinksCount=24
255
+ skin.exifLens=false
256
+ skin.showThumbTitle=true
257
+ skin.empPicFileName=enhanced.jpg
258
+ skin.exifAperture=true
259
+ skin.movieHeight=480
260
+ skin.largeThumbs=false
261
+ skin.showIptc=false
262
+ userName=
263
+ skin.languagePosition=omit
264
+ skin.tsComment=true
265
+ skin.newLabelDaysCount=30
266
+ skin.blogStyleType=none
267
+ skin.colorMapLightColorSlidesHex=\#f6eecb
268
+ skin.upLink=../
269
+ skin.colorMapMediumColorThumbsHex=\#887f64
270
+ skin.paypalType=inline
271
+ skin.pathAlign=left
272
+ skin.exifIsoSetting=true
273
+ skin.iptcCaption=true
274
+ skin.showTotalImages=true
275
+ skin.embedMovies=true
276
+ skin.movieAutoPlay=true
277
+ skin.thumbBorderColorHoverHex=\#ffffff
278
+ skin.slideMount=graphic
279
+ suppressIEWarnings=true
280
+ skin.includeIndexGuestBook=false
281
+ skin=Chameleon
282
+ skin.mapType=map
283
+ skin.indexHeader=
284
+ skin.useUpLink=this
285
+ exifUserComment=true
286
+ skin.tsFileName=false
287
+ skin.tsTextPosition=bottom
288
+ skin.ttAbbreviateCommentLength=60
289
+ skin.downloadIcon=true
290
+ skin.ttUseLabelIfNoComment=true
291
+ skin.slideGuestBookPosition=omit
292
+ skin.ttAbbreviateComment=true
293
+ textFileComment=true
294
+ skin.exifFocalLength=true
295
+ skin.fieldSep=|
296
+ skin.newLabel=false
297
+ skin.indexGuestBookPosition=omit
298
+ skin.albuminfoInTable=true
299
+ skin.empPicHeight=400
300
+ skin.colorMapMediumColorSlidesHex=\#887f64
301
+ skin.colorMapLightColorThumbs=\#f6eecb
302
+ skin.eventId=
303
+ scalingMethod=ScaleMedium
304
+ thumbSize=124x124
305
+ skin.paypalPosition=omit
306
+ skin.indexLinksPosition=top
307
+ thumbnailDirectory=thumbs
308
+ skin.companyId=
309
+ highQualityThumbs=true
310
+ closeupPrefix=
311
+ mediaRSS=true
312
+ skin.slideLinksPosition=omit
313
+ skin.fontFamily=Verdana, Arial, sans-serif
314
+ skin.ttImageCount=false
315
+ skin.includeGuestBook=false
316
+ skin.thumbBorderColor=\#aaaaaa
317
+ skin.iptcProvince=true
318
+ skin.linkToMap=false
319
+ skin.paypalHint=Order this Item
320
+ skin.indexSlideShowDelay=4
321
+ skin.imageNavigation=imnav3
@@ -0,0 +1,9 @@
1
+ # This file is created by JAlbum. It sets custom file filtering and ordering for this image directory.
2
+ # Each row indicate a file and it's order. Files not listed here are added to the end of the album
3
+ # Rows beginning with "-" indicate excluded files.
4
+ # Rows containing a tab character indicate links, where the text before the tab is the logical file name
5
+ # and the path to the right is the target path.
6
+ # Note: This file allows absolute paths to files and directories in other locations and thereby
7
+ # allows you to compile albums consisting of files from several different locations.
8
+
9
+ flowers
@@ -0,0 +1,14 @@
1
+ # This file is created by JAlbum. It sets custom file filtering and ordering for this image directory.
2
+ # Each row indicate a file and it's order. Files not listed here are added to the end of the album
3
+ # Rows beginning with "-" indicate excluded files.
4
+ # Rows containing a tab character indicate links, where the text before the tab is the logical file name
5
+ # and the path to the right is the target path.
6
+ # Note: This file allows absolute paths to files and directories in other locations and thereby
7
+ # allows you to compile albums consisting of files from several different locations.
8
+
9
+ IMG_1469.wt.jpg /media/Interzone/GioPrj/prj_github_rubyforge/ralbum/example/test_rubyphoto_phototree/flowers/IMG_1469.wt.jpg
10
+ IMG_2291.jpg /media/Interzone/GioPrj/prj_github_rubyforge/ralbum/example/test_rubyphoto_phototree/flowers/IMG_2291.jpg
11
+ IMG_2598.jpg /media/Interzone/GioPrj/prj_github_rubyforge/ralbum/example/test_rubyphoto_phototree/flowers/IMG_2598.jpg
12
+ IMG_3068.jpg /media/Interzone/GioPrj/prj_github_rubyforge/ralbum/example/test_rubyphoto_phototree/flowers/IMG_3068.jpg
13
+ IMG_3323.jpg /media/Interzone/GioPrj/prj_github_rubyforge/ralbum/example/test_rubyphoto_phototree/flowers/IMG_3323.jpg
14
+ IMG_3348.jpg /media/Interzone/GioPrj/prj_github_rubyforge/ralbum/example/test_rubyphoto_phototree/flowers/IMG_3348.jpg
@@ -0,0 +1,2 @@
1
+ folderIcon=flowers/IMG_1469.wt.jpg
2
+ descript=description phototree
@@ -21,7 +21,7 @@ r_photo01.jpg
21
21
  descrizione di r_photo01.jpg
22
22
  </description>
23
23
  <file_date>
24
- Tue May 19 00:10:56 +0200 2009
24
+ Fri May 29 07:08:42 +0200 2009
25
25
  </file_date>
26
26
  <exif>
27
27
  <model>
@@ -126,10 +126,12 @@ Tue May 19 00:10:56 +0200 2009
126
126
  <model>
127
127
  </model>
128
128
  <date_and_time>
129
+ 2004-06-26T16:54:48Z
129
130
  </date_and_time>
130
131
  <FocalLength>
131
132
  </FocalLength>
132
133
  <exposure_time>
134
+ 1/160
133
135
  </exposure_time>
134
136
  <white_balance>
135
137
  </white_balance>
@@ -155,7 +157,7 @@ Tue May 19 00:10:56 +0200 2009
155
157
  Canon PowerShot G5
156
158
  </model>
157
159
  <date_and_time>
158
- 2003:11:30 00:21:46
160
+ 2003-11-30T00:21:46-08:00
159
161
  </date_and_time>
160
162
  <FocalLength>
161
163
  </FocalLength>
@@ -197,7 +199,7 @@ Tue May 19 00:10:56 +0200 2009
197
199
  Canon PowerShot S500
198
200
  </model>
199
201
  <date_and_time>
200
- 2004:04:11 07:00:29
202
+ 2004-04-11T07:00:29-08:00
201
203
  </date_and_time>
202
204
  <FocalLength>
203
205
  </FocalLength>
@@ -324,6 +326,207 @@ Tue May 19 00:10:56 +0200 2009
324
326
  </exif>
325
327
  </photo>
326
328
  </album>
329
+ <album>
330
+ <title>
331
+ flowers
332
+ </title>
333
+ <thumbnail/>
334
+ <shortdesc/>
335
+ <longdesc/>
336
+ <date/>
337
+ <order/>
338
+ <photo>
339
+ <md5>
340
+ 8bfbda55b6d342fc715cc5fdd4e1a758
341
+ </md5>
342
+ <title>
343
+ IMG_3323.jpg
344
+ </title>
345
+ <description>
346
+ </description>
347
+ <file_date>
348
+ Wed May 27 07:50:10 +0200 2009
349
+ </file_date>
350
+ <exif>
351
+ <model>
352
+ Canon EOS 400D DIGITAL
353
+ </model>
354
+ <date_and_time>
355
+ 2007:06:10 08:17:43
356
+ </date_and_time>
357
+ <FocalLength>
358
+ </FocalLength>
359
+ <exposure_time>
360
+ 1/15
361
+ </exposure_time>
362
+ <white_balance>
363
+ 0
364
+ </white_balance>
365
+ <iso_speed>
366
+ 100
367
+ </iso_speed>
368
+ </exif>
369
+ </photo>
370
+ <photo>
371
+ <md5>
372
+ bc847e82755d659cd148768e4cc41dd5
373
+ </md5>
374
+ <title>
375
+ IMG_3068.jpg
376
+ </title>
377
+ <description>
378
+ </description>
379
+ <file_date>
380
+ Wed May 27 07:50:10 +0200 2009
381
+ </file_date>
382
+ <exif>
383
+ <model>
384
+ Canon EOS 400D DIGITAL
385
+ </model>
386
+ <date_and_time>
387
+ 2007:06:03 17:24:57
388
+ </date_and_time>
389
+ <FocalLength>
390
+ </FocalLength>
391
+ <exposure_time>
392
+ 1/400
393
+ </exposure_time>
394
+ <white_balance>
395
+ 0
396
+ </white_balance>
397
+ <iso_speed>
398
+ 100
399
+ </iso_speed>
400
+ </exif>
401
+ </photo>
402
+ <photo>
403
+ <md5>
404
+ abc6c77939abc8bc21c2365ef95b69c4
405
+ </md5>
406
+ <title>
407
+ IMG_1469.wt.jpg
408
+ </title>
409
+ <description>
410
+ </description>
411
+ <file_date>
412
+ Wed May 27 07:50:10 +0200 2009
413
+ </file_date>
414
+ <exif>
415
+ <model>
416
+ Canon EOS 400D DIGITAL
417
+ </model>
418
+ <date_and_time>
419
+ 2007:03:11 13:13:04
420
+ </date_and_time>
421
+ <FocalLength>
422
+ </FocalLength>
423
+ <exposure_time>
424
+ 1/500
425
+ </exposure_time>
426
+ <white_balance>
427
+ 0
428
+ </white_balance>
429
+ <iso_speed>
430
+ 100
431
+ </iso_speed>
432
+ </exif>
433
+ </photo>
434
+ <photo>
435
+ <md5>
436
+ b6772a1d4ba85560987ca1cf6b888572
437
+ </md5>
438
+ <title>
439
+ IMG_2291.jpg
440
+ </title>
441
+ <description>
442
+ </description>
443
+ <file_date>
444
+ Wed May 27 07:50:10 +0200 2009
445
+ </file_date>
446
+ <exif>
447
+ <model>
448
+ Canon EOS 400D DIGITAL
449
+ </model>
450
+ <date_and_time>
451
+ 2007:04:22 11:38:03
452
+ </date_and_time>
453
+ <FocalLength>
454
+ </FocalLength>
455
+ <exposure_time>
456
+ 1/125
457
+ </exposure_time>
458
+ <white_balance>
459
+ 0
460
+ </white_balance>
461
+ <iso_speed>
462
+ 100
463
+ </iso_speed>
464
+ </exif>
465
+ </photo>
466
+ <photo>
467
+ <md5>
468
+ 0a0e0294cc221df6c321234e8b98ba6d
469
+ </md5>
470
+ <title>
471
+ IMG_2598.jpg
472
+ </title>
473
+ <description>
474
+ </description>
475
+ <file_date>
476
+ Wed May 27 07:50:10 +0200 2009
477
+ </file_date>
478
+ <exif>
479
+ <model>
480
+ Canon EOS 400D DIGITAL
481
+ </model>
482
+ <date_and_time>
483
+ 2007:05:01 08:20:43
484
+ </date_and_time>
485
+ <FocalLength>
486
+ </FocalLength>
487
+ <exposure_time>
488
+ 1/400
489
+ </exposure_time>
490
+ <white_balance>
491
+ 0
492
+ </white_balance>
493
+ <iso_speed>
494
+ </iso_speed>
495
+ </exif>
496
+ </photo>
497
+ <photo>
498
+ <md5>
499
+ 695d0b29468a6e79969f91f75ecd5182
500
+ </md5>
501
+ <title>
502
+ IMG_3348.jpg
503
+ </title>
504
+ <description>
505
+ </description>
506
+ <file_date>
507
+ Wed May 27 07:50:10 +0200 2009
508
+ </file_date>
509
+ <exif>
510
+ <model>
511
+ Canon EOS 400D DIGITAL
512
+ </model>
513
+ <date_and_time>
514
+ 2007:06:10 08:30:07
515
+ </date_and_time>
516
+ <FocalLength>
517
+ </FocalLength>
518
+ <exposure_time>
519
+ 1/500
520
+ </exposure_time>
521
+ <white_balance>
522
+ 0
523
+ </white_balance>
524
+ <iso_speed>
525
+ 400
526
+ </iso_speed>
527
+ </exif>
528
+ </photo>
529
+ </album>
327
530
  </album>
328
531
  </photo_tree>
329
532
  </project>