gcfavorites / fxif

Automatically exported from code.google.com/p/fxif
0 stars 0 forks source link

FxIF does not display the time in the photos exported from Lightroom #23

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

I just looked at the EXIF/IPTC of this photo:
https://upload.wikimedia.org/wikipedia/commons/9/9b/H%C3%A9rault_River%2C_Agde_0
9.jpg

What is the expected output? What do you see instead?

Expected: 2013-06-29 10:58:00
Displayed: 2013-06-29

What version of the product are you using? On what operating system?

Mac OS X 10.9, Firefox 25.0, FxIF 0.4.7.1

Please provide any additional information below.

Problem is caused by the regexp in the file binIptc.js:

matches = iptcTime.match(/^(\d{2})(\d{2})(\d{2})([+-]\d{4})$/);

Because in the photo above there is no information about the time zone.

Original issue reported on code.google.com by rustr...@gmail.com on 13 Nov 2013 at 1:50

GoogleCodeExporter commented 9 years ago
That’s correct. This comes from tightly following the specification in which 
time zone information is mandatory.

I fixed that in r33 which will be in the comming 0.4.8. There this information 
is optional. If it isn’t contained, the output contains a note. The same case 
has been fixed for time informations in the XMP data.

Original comment by cueyr...@gmail.com on 12 Dec 2014 at 2:33