Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use getattr, setattr and delattr where possible, instead of calling the ↵ | Olivier Tilloy | 2011-08-20 | 1 | -4/+4 |
| | | | | underlying (and supposedly hidden) methods. | ||||
* | Added some (failing) unit tests for date conversion for dates prior to year ↵ | Olivier Tilloy | 2011-08-04 | 1 | -0/+16 |
| | | | | 1900. | ||||
* | Fix timezone formatting when writing IPTC tags. | Olivier Tilloy | 2011-08-02 | 1 | -0/+15 |
| | | | This introduces an optional dependency on python-tz in unit tests. | ||||
* | Fix the IPTC Time type to string conversion, | Olivier Tilloy | 2010-12-22 | 1 | -10/+10 |
| | | | | the string expected by exiv2's TimeValue::read(string) does not respect the IPTC specification ('%H:%M:%S±%H:%M' instead of '%H%M%S±%H%M). | ||||
* | Unit test to check that accessing the .raw_values and .values properties ↵ | Olivier Tilloy | 2010-11-21 | 1 | -0/+30 |
| | | | | issue deprecation warnings. | ||||
* | Rename the .raw_values and .values properties of IPTC tags to .raw_value and ↵ | Olivier Tilloy | 2010-11-21 | 1 | -3/+3 |
| | | | | | .value, for consistency with the API of EXIF and XMP tags. | ||||
* | Add a unit test to check that an exception is raised when trying to set ↵ | Olivier Tilloy | 2010-11-17 | 1 | -0/+5 |
| | | | | multiple values to a non-repeatable IPTC tag. | ||||
* | Throw an exception instead of silently failing when unable to parse the raw ↵ | Olivier Tilloy | 2010-11-17 | 1 | -0/+5 |
| | | | | | | value for EXIF and IPTC tags. Note that parsing never fails for XMP tags. Added corresponding unit tests. | ||||
* | Attach the image's IptcData to a tag when it is assigned to an image. | Olivier Tilloy | 2010-05-19 | 1 | -17/+1 |
| | | | | Remove redundant code that would set the values of a tag twice (in the tag itself, and in the image). Remove the now useless metadata attribute. | ||||
* | Updated copyright headers for 2010. | Olivier Tilloy | 2010-01-05 | 1 | -1/+1 |
|\ | |||||
| * | Updated copyright headers for 2010. | Olivier Tilloy | 2010-01-05 | 1 | -1/+1 |
| | | | | | | Happy new year! | ||||
* | | Fixed IPTC unit tests: | Olivier Tilloy | 2010-01-04 | 1 | -2/+2 |
|/ | | | | it seems that the "Iptc.Envelope.CharacterSet" tag is not "Undefined" after all (the IPTC datasets reference confirms). | ||||
* | Fixed IPTC unit tests. | Olivier Tilloy | 2009-12-15 | 1 | -71/+23 |
| | |||||
* | IptcTag doesn't inherit from libexiv2python._IptcTag anymore, it keeps a ↵ | Olivier Tilloy | 2009-11-18 | 1 | -1/+1 |
| | | | | reference to it as a protected attribute. | ||||
* | Pass IPTC Dates to exiv2 in the correct format (%Y-%m-%d). | Olivier Tilloy | 2009-10-28 | 1 | -4/+4 |
| | |||||
* | Do not allow setting the values of an IPTC tag to something else than a list ↵ | Olivier Tilloy | 2009-10-26 | 1 | -0/+6 |
| | | | | or a tuple. | ||||
* | Updated unit tests' imports. | Olivier Tilloy | 2009-10-20 | 1 | -1/+4 |
| | |||||
* | Do not do any charset conversions for IPTC tags. | Olivier Tilloy | 2009-10-08 | 1 | -4/+1 |
| | |||||
* | Make IptcTag._convert_to_string an instance method. | Olivier Tilloy | 2009-10-08 | 1 | -33/+48 |
| | |||||
* | Make IptcTag._convert_to_python an instance method. | Olivier Tilloy | 2009-10-07 | 1 | -0/+235 |