Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove remaining imports/calls to six not automatically removed by pyupgrade. | Ben Sturmfels | 2021-03-05 | 1 | -2/+0 |
| | |||||
* | Apply `pyupgrade --py3-plus` to remove Python 2 compatibility code. | Ben Sturmfels | 2021-03-05 | 1 | -7/+7 |
| | |||||
* | Fix EXIF rotation to make the image portrait on demand | chrysn | 2017-11-29 | 1 | -4/+9 |
| | | | | | Closes: https://issues.mediagoblin.org/ticket/5525 Signed-off-by: Andrew Browning <ayleph@thisshitistemp.com> | ||||
* | Fix #5524 Zero division error in exif.py | Andrew Browning | 2017-09-20 | 1 | -8/+4 |
| | | | | | | This patch implements the safe_gps_ratio_divide function for gps direction and altitude values to prevent a zero divide error on malformed GPS data. | ||||
* | #5314 Prevent ZeroDivisionError in exif.py | Christopher Allan Webber | 2015-04-27 | 1 | -3/+8 |
| | |||||
* | Fix tests on Python 3. | Berker Peksag | 2014-07-14 | 1 | -3/+4 |
| | |||||
* | Use six.iteritems() in tools/exif.py. | Berker Peksag | 2014-06-08 | 1 | -1/+1 |
| | |||||
* | The file() builtin has been removed in Python 3. Use open() instead. | Berker Peksag | 2014-06-07 | 1 | -1/+1 |
| | |||||
* | Use six.iteritems() instead of dict.iteritems(). | Berker Peksag | 2014-05-26 | 1 | -2/+4 |
| | |||||
* | No more EXIF, for real. Use exifread. This should fix recent import EXIF ↵ | Christopher Allan Webber | 2014-04-06 | 1 | -4/+1 |
| | | | | | | failures. This commit sponsored by Aaron Whitehouse. Thank you! | ||||
* | make exif a submodule | Alon Levy | 2014-03-02 | 1 | -4/+5 |
| | | | | | | | Updates it to latest which includes a fix for a 100% hang on a jpg without any EXIF data: https://www.dropbox.com/s/m5l185qxq9w5mzk/raspberry-pi-gpio-cheat-sheet.jpg Signed-off-by: Alon Levy <alon@pobox.com> | ||||
* | Changes to display all EXIF information | Gabriel Saldana | 2013-05-20 | 1 | -1/+1 |
| | |||||
* | Switching non-forms back to using normal pass_to_ugettext | Christopher Allan Webber | 2013-04-24 | 1 | -1/+1 |
| | |||||
* | Fix-bug-667-Use-lazy_pass_to_ugettext-for-forms. | Aditi Mittal | 2013-04-24 | 1 | -1/+1 |
| | |||||
* | A more realistic "con" explaination in the docstring of ↵ | Christopher Allan Webber | 2013-03-15 | 1 | -1/+4 |
| | | | | | | | | exif_fix_image_orientation Thanks to dnet for catching this. This commit sponsored by Chester Zeller. Thanks! | ||||
* | simplified get_useful | András Veres-Szentkirályi | 2013-02-22 | 1 | -6/+1 |
| | |||||
* | use dict.iteritems() instead of dict.items() | András Veres-Szentkirályi | 2013-02-22 | 1 | -1/+1 |
| | |||||
* | use list expression instead of 3-deep for | András Veres-Szentkirályi | 2013-02-22 | 1 | -7/+2 |
| | |||||
* | simplified clean_exif | András Veres-Szentkirályi | 2013-02-22 | 1 | -6/+2 |
| | |||||
* | close file properly and remove unneeded variable | András Veres-Szentkirályi | 2013-02-22 | 1 | -6/+2 |
| | |||||
* | typofix in comment | András Veres-Szentkirályi | 2013-02-22 | 1 | -1/+1 |
| | |||||
* | use key in dict instead of key in dict.keys() | András Veres-Szentkirályi | 2013-02-22 | 1 | -1/+1 |
| | |||||
* | Use system wide EXIF package, if available. | Elrond | 2013-02-07 | 1 | -1/+5 |
| | | | | | | Created and tested by Simon Fondrie-Teitler. Thanks! | ||||
* | Update extlib/EXIF | Sebastian Spaeth | 2012-12-25 | 1 | -2/+1 |
| | | | | | | | | | | | | Bump bundled EXIF lib to 1.0.10 as release in Sep 2012. Also skip unused detailed EXIF tags for reading, we might turn that on when we need them. Adapt test to wording change in EXIF Flas field and due to the fact that we use "details=False" by default now (we did not use these anyway) Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de> | ||||
* | Fix for issue #491, invert latitude when neccesary. | warp | 2012-08-27 | 1 | -0/+3 |
| | |||||
* | Decoding EXIF strings as UTF-8 with replace in the ifd_tag_to_dict | Joar Wandborg | 2012-07-07 | 1 | -1/+14 |
| | | | | method. | ||||
* | Fixed EXIF longitude bug | Joar Wandborg | 2012-06-23 | 1 | -3/+14 |
| | | | | | - Negative or 'W' longitudes were not accounted for. - pyflakes fixes. | ||||
* | fix for ticket #404 | Bassam | 2012-03-15 | 1 | -0/+7 |
| | |||||
* | It's 2012 all up in here | Christopher Allan Webber | 2012-02-02 | 1 | -1/+1 |
| | |||||
* | Acts on feedback from Chris | Joar Wandborg | 2012-01-25 | 1 | -7/+4 |
| | | | | | | | - Added EXIF tests - Removed pdb from image processing "ifmain" - Fixed comment typo in image processing - Removed unused import in tools.exif | ||||
* | EXIF fixes | Joar Wandborg | 2012-01-25 | 1 | -0/+168 |
- Moved exif functions from mediagoblin.media_types.image.processing to mediagoblin.tools.exif - Moved EXIF.py link from mediagoblin.media_types to mediagoblin.tools.extlib - Refractored and updated EXIF exctraction and presentation |