aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* XMP Boolean to string conversion + unit tests.Olivier Tilloy2009-01-272-0/+23
|
* XmpTag: value conversion at init.Olivier Tilloy2009-01-271-1/+1
|
* XMP bag conversion + unit tests.Olivier Tilloy2009-01-272-3/+16
|
* XMP ProperName conversion + unit tests.Olivier Tilloy2009-01-272-7/+8
|
* XMP URL and URI conversion + unit tests.Olivier Tilloy2009-01-262-6/+22
|
* XMP Text conversion + unit tests.Olivier Tilloy2009-01-262-3/+19
|
* XMP LangAlt conversion + unit tests.Olivier Tilloy2009-01-262-7/+38
|
* Unit tests for XMP integer conversion.Olivier Tilloy2009-01-222-1/+22
|
* XMP MIMEType conversion + unit tests.Olivier Tilloy2009-01-222-2/+18
|
* Unit tests for the conversion of XMP tags, started fixing the conversion of ↵Olivier Tilloy2009-01-223-31/+139
| | | | Dates.
* XMP Date conversion complete.Olivier Tilloy2009-01-212-58/+81
|
* XMP Date custom regular expression.Olivier Tilloy2009-01-201-11/+75
|
* Retrieve the real type of xmp tags.Olivier Tilloy2009-01-141-2/+1
|
* Retrieve XMP tag values (without python type conversion atm).Olivier Tilloy2009-01-124-3/+76
|
* Updated headers' dates.Olivier Tilloy2009-01-094-4/+4
|
* Module attributes for the versions of exiv2 and pyexiv2.Olivier Tilloy2009-01-092-0/+16
|
* First basic support for XMP metadata: listing XMP keys.Olivier Tilloy2008-06-143-1/+27
|
* Value(s) of subclasses of MetadataTag are converted to Python types.Olivier Tilloy2008-06-121-61/+63
|
* IptcTag class, python wrapper for an IPTC tag.Olivier Tilloy2008-06-111-8/+40
|
* Retrieve more data for an IPTC tag (low-level).Olivier Tilloy2008-06-115-38/+73
|
* Replace all tabs by spaces in the code.Olivier Tilloy2008-04-193-671/+718
| | | | Add a MetadataTag class to the python module.
* Ignore build files.Olivier Tilloy2008-04-191-0/+2
|
* Refactor the structure of the exiv2 wrapper, retrieve more data for an EXIF tag.Olivier Tilloy2008-04-197-737/+716
|
* Add pyexiv2 art (icon, SVG file and PNGs for various sizes).Olivier Tilloy2008-04-195-1/+674
|
* Updated changelog for version 0.1.2, tagging as release-0.1.2.release-0.1.2Olivier Tilloy2008-02-091-0/+35
|
* Updated the copyright notice in the source headers.Olivier Tilloy2008-02-093-3/+3
|
* Updated the copyright notice in the source headers.Olivier Tilloy2008-02-0911-11/+11
|
* Added a test to the unit test for bug #183332.Olivier Tilloy2008-02-091-0/+21
|
* Fixed bug #183332 (Cached metadata is not converted to its correct type): ↵Olivier Tilloy2008-02-061-6/+8
| | | | the new value is now converted before being written to the internal metadata cache.
* Added a test to the unit test for bug #183332.Olivier Tilloy2008-02-061-1/+19
|
* Added a unit test for bug #183332 (currently failing as the bug is not fixed ↵Olivier Tilloy2008-02-062-0/+65
| | | | yet).
* EXIF and IPTC tag setters now always return the type of the value even if ↵Olivier Tilloy2008-02-062-24/+26
| | | | not previously set.
* Added a unit test for bug #183618.Olivier Tilloy2008-02-013-0/+87
|
* Added a unit test for bug #175070.Olivier Tilloy2008-01-312-0/+79
|
* Added a unit test for bug #173387.Olivier Tilloy2008-01-314-0/+75
|
* Added forgotten file in previous commit.Olivier Tilloy2008-01-311-0/+0
|
* Added a unit test for bug #146313.Olivier Tilloy2008-01-303-1/+75
|
* Added some unit tests for basic functionalities. These tests will help spot ↵Olivier Tilloy2008-01-305-0/+250
| | | | regressions in the future.
* Implemented the equality comparison operator for class pyexiv2.Rational, ↵Olivier Tilloy2008-01-301-0/+13
| | | | will be useful for unit testing.
* Factorized the code that converts a tag value to the matching Python type.Olivier Tilloy2008-01-271-55/+56
|
* Fixed a bug that prevented from setting an EXIF tag with multiple values.Olivier Tilloy2008-01-271-2/+2
|
* Added a rational number type (class pyexiv2.Rational) to handle rational ↵Olivier Tilloy2008-01-271-17/+51
| | | | values stored in EXIF tags.
* Added method copyMetadataTo(Image) to class Image to copy all EXIF and IPTC ↵Olivier Tilloy2008-01-271-3/+26
| | | | metadata and the comment from one image to another one. Based on a patch submitted by Vince (vinces1979@gmail.com).
* Added private flags to avoid caching twice the EXIF/IPTC metadata. Based on ↵Olivier Tilloy2008-01-271-4/+10
| | | | a patch submitted by Vince (vinces1979@gmail.com).
* Fixed bug #183618 (Exif.GPSInfo.{GPSLongitude,Latitude} are not decoded), ↵Olivier Tilloy2008-01-271-20/+26
| | | | reverts the behaviour implemented with revision 70 to fix bug #146323 (Multi value fields are broken (Exif.Image.Orientation)): multiple value fields for EXIF tags are now fully decoded and returned as a tuple of values.
* Fixed bug #175070 (Deleting a tag not previously accessed raises a KeyError ↵Olivier Tilloy2008-01-201-6/+10
| | | | exception): when deleting a tag, the existence in the internal dictionary's keys is tested first.
* Fixed bug #173387 (Error reading Exif.Photo.UserComment): the value of tag ↵Olivier Tilloy2008-01-201-4/+8
| | | | "Exif.Photo.UserComment" (and other malformed tags of type Undefined) is now returned directly as a human-readable string.
* *Really* fixed bug #146313 (passing the filename to the Image constructor as ↵Olivier Tilloy2008-01-181-1/+3
| | | | unicode fails): if filename is passed as unicode, it is converted to a regular string.
* Implemented feature request tracked by bug #175069 (Retrieve/set the JPEG ↵Olivier Tilloy2008-01-164-1/+47
| | | | comment): added methods getComment(), setComment(str) and clearComment() to class Image.
* pyexiv2 will now install in the 'site-packages' python directory. Fixes bug ↵Olivier Tilloy2007-12-261-1/+1
| | | | #177249, thanks to a patch provided by Chris Mayo.