Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-01-21 | Update copyright to 2013. Fixes #1953. | Bharat Mediratta | |
2012-02-27 | Update copyright to 2012. #1822 | Bharat Mediratta | |
2011-03-27 | Centralize our encoding code into a new helpers and use | Bharat Mediratta | |
mb_convert_encoding if possible. Build on the work in c791ae96d5bb28f39b26a0e556e10e636f97436c by momo-i. Fixes #1660. | |||
2011-02-01 | fixed tag broken | momo-i | |
2011-01-21 | Update copyright to 2011. | Bharat Mediratta | |
2010-06-27 | When detecting encodings, give priority to ISO-8859-1 which seems to | Bharat Mediratta | |
solve the umlaut problem in IPTC data. Fixes ticket #1144. | |||
2010-03-03 | Update the copyright to 2010. It's only 3 months into the year :-) | Bharat Mediratta | |
2009-12-02 | Fix a bunch of places where we were using "= null" instead of "IS NULL". | Bharat Mediratta | |
2009-12-02 | Convert more database calls over to the new format | Bharat Mediratta | |
- admin/maintenance page loads, the rebuild thumbs/resizes task works - Fixed up some conversion bugs in the Cache driver | |||
2009-11-26 | utf8::clean() is now Input::clean() | Bharat Mediratta | |
2009-11-26 | Database::orwhere() is now Database_Builder::or_where() | Bharat Mediratta | |
2009-11-26 | Convert all DB where() calls to take 3 arguments. | Bharat Mediratta | |
Convert all open_paren() calls to and_open() or or_open() as appropriate. | |||
2009-11-25 | Preliminary work to cut over to Kohana 2.4 | Bharat Mediratta | |
- Kohana::log() -> Kohana_Log::add() - Kohana::config_XXX -> Kohana_Config::instance()->XXX - Implement View::set_global in MY_View - Updated Cache_Database_Driver to latest APIs - ORM::$loaded -> ORM::loaded() - Updated item::viewable() to use K2.4 parenthesization | |||
2009-10-04 | Renamed most, if not all css selectors from gName to g-name. Moved a few ↵ | Chad Kieffer | |
shared images from wind to lib. Deleted unused images in the admin_wind. This will likely break a few ajax features. | |||
2009-09-30 | Convert gDialog and gCancel over to g-dialog and g-cancel. Refactor CSS id's ↵ | Chad Kieffer | |
and classes in the login/reset password dialog. | |||
2009-08-31 | Rename mark_safe() to mark_clean() | Andy Staudacher | |
2009-08-30 | Change all instances of SafeString::of_safe_html() to html::mark_safe() in ↵ | Andy Staudacher | |
views. | |||
2009-08-29 | Undo url helper changes - url methods no longer return a SafeString. | Andy Staudacher | |
Adding SafeString::of_safe_html() calls where urls are passed as parameters to t() and t2(). | |||
2009-07-11 | Fixes ticket #526 | Shai Ben-Naphtali | |
Signed-off-by: Tim Almdal <tnalmdal@shaw.ca> | |||
2009-06-30 | Update Exif_test to match change made in ↵ | Bharat Mediratta | |
4943103700332a11f16319496e485cfd7fd9e36a Get rid of vestigial third column in exif::_keys(). | |||
2009-06-30 | Fix for #437. Use Exposure Time instead of Shutter Speed as suggested by | Tim Almdal | |
hiwilson. | |||
2009-05-28 | Protect get() against missing records. | Bharat Mediratta | |
2009-05-20 | Avoid complex inserts in available_tasks() to make admin/maintenance | Bharat Mediratta | |
run faster. This fixes ticket #235. Incidentally, refactor exif and search to use the same patterns overall so that if you understand one, you understand the other and they generally use the same strings for localization. | |||
2009-05-13 | Gee it's May already. Update copyright to 2009. | Bharat Mediratta | |
2009-05-11 | Don't accept negative capture dates from EXIF, they're probably just crap data. | Bharat Mediratta | |
2009-05-11 | Refactor the exif module to denormalize the stored data. This way we | Bharat Mediratta | |
have a single exif_record for each item instead of 1 per key. It's about 5x faster to scan photos this way. | |||
2009-05-11 | Don't use ORM to delete old exif_keys.. it's too inefficient | Bharat Mediratta | |
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-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-02-24 | File structure style fixes | Andy Staudacher | |
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-12 | Add a maintenace task to extract the EXIF data from images | Tim Almdal | |
Changed exif to EXIF in comments | |||
2009-02-10 | Exif data is now collected when an image is added. | Tim Almdal | |