Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-05-10 | Use a clearer query syntax for deleting extra search and exif records ↵ | Bharat Mediratta | |
(thanks Romain LE DISEZ) | |||
2009-05-08 | Don't try to use mb_detect_encoding if the module isn't loaded. Not sure if ↵ | Bharat Mediratta | |
this is a great solution, but it'll probably cut down on a big class of errors opportunistically | |||
2009-05-07 | Don't try to use the exif/iptc values if we couldn't extract them cleanly. | Bharat Mediratta | |
2009-05-07 | Grab photo capture date and captions from EXIF/IPTC data. | Bharat Mediratta | |
- Add a "captured" column to the items table. - Pull the DateTime EXIF field and put it into the captured column - Pull the Caption EXIF & IPTC fields and put them into the description field if there was not already a value there | |||
2009-05-05 | Detect input encodings from EXIF/IPTC data and convert to utf-8 as | Bharat Mediratta | |
appropriate. This allows us to switch the exif value column back to varchar and improves the way that we deal with non-utf8 data in our embedded EXIF/IPTC data. | |||
2009-04-27 | Update value size to 1536 chars because I had an image which went over 1024 ↵ | Bharat Mediratta | |
chars | |||
2009-04-25 | Drop the item_id key; we don't need this level of strictness in most | Bharat Mediratta | |
cases and it slows down inserts. | |||
2009-04-25 | Change the value column to varbinary so that we can handle the occasional ↵ | Bharat Mediratta | |
binary data embedded in places like the EXIF caption field | |||
2009-04-25 | Fix status math. | Bharat Mediratta | |
2009-04-25 | Extract as many records as we can in a second | Bharat Mediratta | |
2009-04-25 | Add a key on item_id so that our query to find missing exif records is efficient | Bharat Mediratta | |
2009-04-21 | Remove duplicate word from status message | Tim Almdal | |
2009-04-05 | Don't try to insert exif keys if there aren't any. | Bharat Mediratta | |
2009-04-05 | Optimization: add all exif/iptc keys in a single insert, instead of | Bharat Mediratta | |
many separate queries. In the process, rip out the summary column, we weren't using it. Clean up the test, and drop the exif_records database on uninstall. | |||
2009-03-27 | Put csrf token into Admin_View and Theme_View by default, then use it | Bharat Mediratta | |
directly wherever possible instead of access::csrf_token(). | |||
2009-03-13 | Make the exif_key value size 1k | Bharat Mediratta | |
2009-03-09 | Get rid of Task_Definition types: they're not necessary. This | Bharat Mediratta | |
incidentally fixes the the problem that admin/maintenance tasks have been broken. | |||
2009-03-05 | Avoid using default task types. Require task::get_definitions() to | Bharat Mediratta | |
specify a single type and ask for it appropriately in admin_maintenance. Specify a type for every existing task. | |||
2009-03-05 | Fix some table names | Bharat Mediratta | |
2009-02-28 | Change the pattern to identify tables that need prefix substitution to | Tim Almdal | |
mirror the drupal pattern of using braces {}. | |||
2009-02-27 | This implements table prefix for all the queries in core, user, exif, | Tim Almdal | |
tag, search, comment and notification modules (Ticket #68) (missed this one) | |||
2009-02-27 | This implements table prefix for all the queries in core, user, exif, | Tim Almdal | |
tag, search, comment and notification modules (Ticket #68) | |||
2009-02-26 | Replace ORM->select(count(*)) with a call to Database::count_records | Tim Almdal | |
2009-02-26 | Implement fix for ticket #103. If there is no exif data, don't | Tim Almdal | |
display the "Show more Information Button". | |||
2009-02-24 | File structure style fixes | Andy Staudacher | |
2009-02-21 | Change the name of the model from exif_info to exif_record So item | Tim Almdal | |
deletes won't fail. | |||
2009-02-15 | Tweak EXIF extraction code to be more robust. | Bharat Mediratta | |
* Create Exif_Record_Model to track whether we've scanned the EXIF data for this photo or not. This allows us to track photos that don't have EXIF data (and won't have any Exif_Keys) * Blow away old Exif_Keys when extracting, else we hit unique index constraints. * exif::_get_stats() -- before it was running the task forever | |||
2009-02-14 | exif_data -> exif_keys | Bharat Mediratta | |
This was breaking delete. | |||
2009-02-13 | Fix error if theme item is not supplied. | Tim Almdal | |
2009-02-12 | Add a maintenace task to extract the EXIF data from images | Tim Almdal | |
Changed exif to EXIF in comments | |||
2009-02-11 | Well, exif dialog displays and will show the summary information. | Tim Almdal | |
However, The text needs to be scaled or the size of the box needs to be managed such that there is nowrapping. The columns need to be styled for odd and even. And I can't get tabbing to work. If you click on details tab nothing happens and i don't know what I've done wrong. Addition input is appreciated. | |||
2009-02-10 | Exif data is now collected when an image is added. | Tim Almdal | |
2009-02-07 | The start of the exif module. so I can merger the exifer library | Tim Almdal | |