| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-04-23 | Fix for ticket #1681 (and maybe #1625). Change the parameter from -v to ↵ | Tim Almdal | |
| -version. | |||
| 2011-02-21 | Added 'item' to parameters passed to graphics rules | colings | |
| 2011-02-13 | Merge remote branch 'upstream/master' | colings | |
| 2011-01-21 | Update copyright to 2011. | Bharat Mediratta | |
| 2011-01-10 | Stop using "which" to find binaries. Create system::find_binary() | Bharat Mediratta | |
| which traverses the $PATH and returns any executable binary of the appropriate name that it can find. Fixes #1555. | |||
| 2011-01-10 | Fix up the version detecting regex for GraphicsMagick and don't crash | Bharat Mediratta | |
| if the regex doesn't return properly. Follow on to 3ec0ba956dced01a97f2ee7bd943d326c42350e3 for ticket #1595. | |||
| 2011-01-09 | Made t() calls parsable by localization scanner | Joe7 | |
| 2011-01-08 | Minor coding style fix | Joe7 | |
| 2011-01-08 | Refactored graphics::detect_toolkits() so ImageMagick and GraphicsMagick ↵ | Joe7 | |
| shares the same loop. Just as premarked as todo. Will make https://sourceforge.net/apps/trac/gallery/ticket/1555#comment:3 an even quicker task | |||
| 2011-01-02 | Tweak to include parent_id in resize call, for custom albums. | colings | |
| 2010-11-28 | Replace self::func() with <helper_name>::func() for all public APIs | Bharat Mediratta | |
| and constants to make overloading easier. Fixes #1510. | |||
| 2010-09-22 | Prioritize using the value in graphics_toolkit_path over the standard | Bharat Mediratta | |
| path so that if you change that value in Admin > Settings > Advanced we prefer it over other paths (which may be restricted by open_basedir). Fixes #1395. | |||
| 2010-09-16 | Add a module variable containing extra paths to search for binaries. | Bharat Mediratta | |
| Fixes ticket #1384. | |||
| 2010-08-29 | Don't concatenate two strings together as an argument for t() or t2(); | Bharat Mediratta | |
| the l10n_scanner cannot parse it properly and drops those from the localization list. Fixes ticket #1284. | |||
| 2010-07-22 | Properly handle the case where the album_cover_item_id points to an | Bharat Mediratta | |
| invalid (probably deleted) item. Fixes ticket #1238. | |||
| 2010-03-03 | Update the copyright to 2010. It's only 3 months into the year :-) | Bharat Mediratta | |
| 2010-01-31 | Fix lots of warnings that pop up when we're in E_STRICT mode. They're | Bharat Mediratta | |
| mostly issues around uninitialized variables, calling non-static functions in a static context, calling Session functions directly instead of on its singleton, passing non-variables by reference, and subclasses not using the same interface as the parent class. | |||
| 2010-01-09 | Fix for ticket #972 and more. In Kohana 2.4, ORM::delete_all ignores any where | Tim Almdal | |
| clauses and deletes all the entries in the table unless an array of id's are passed as the parameter. This fix used the Database_builder to specify any where conditions. Thanks psvo for find the first one. :-) | |||
| 2009-12-06 | Update more database calls. | 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 | Kohana::config_xxx() is now Kohana_Config::instance()->xxx | 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 | ORM::orderby -> ORM::order_by | Bharat Mediratta | |
| 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-30 | Include the graphics_toolkit_path from the advanced settings in the path ↵ | Tim Almdal | |
| when searching for the graphics toolkits directories. Fixes ticket #639 | |||
| 2009-10-06 | Move the graphics::rotate to gallery_graphics::rotate to be consistent with ↵ | Tim Almdal | |
| the other gallery graphics functions. | |||
| 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-09-27 | This path requires the upgrader to be run and applies the following changes: | Tim Almdal | |
| * moves the composite method back into core * requires that the operation be fully qualified i.e. gallery_graphics::resize * caches the graphics rules on each request | |||
| 2009-09-24 | Refactor the graphic rules processing to accomplish 2 goals: First separate ↵ | Tim Almdal | |
| the grapics library from module supplied rules and secondly, allow for modules to provide new processing rules callbacks. graphics::generate will now look for <module_name>_graphics::<rule> methods. | |||
| 2009-09-02 | Change graphics::generate() API so that it doesn't return a boolean, | Bharat Mediratta | |
| instead it throws an exception if there's a problem. The normal case for graphics::generate is that it's going to succeed. It'll only fail if something un-handleable went wrong, so just use the resulting exception. | |||
| 2009-09-02 | Deal with the aftermath of adding sharpen() calls. Since GD does not | Bharat Mediratta | |
| support it, this causes crashes as soon as you try to use it, which breaks a bunch of our tests. Also, give the user some idea that sharpen() is missing in the UI. Fixes #689. | |||
| 2009-08-31 | XSS review fixes (mostly adding missing html::mark_clean()) calls. | Andy Staudacher | |
| 2009-08-31 | Rename mark_safe() to mark_clean() | Andy Staudacher | |
| 2009-08-30 | Merge commit 'upstream/master' | Andy Staudacher | |
| Conflicts: modules/gallery/views/l10n_client.html.php modules/organize/views/organize_tree.html.php modules/server_add/helpers/server_add_event.php | |||
| 2009-08-30 | Change all instances of SafeString::of_safe_html() to html::mark_safe() in ↵ | Andy Staudacher | |
| views. | |||
| 2009-08-29 | Remove try/catch in resize() since that will swallow any exceptions | Bharat Mediratta | |
| that we generate when resizing. | |||
| 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-08-29 | Fix for ticket #628: | Tim Almdal | |
| 1) increased gallery module version to 11 2) added image_sharpened parameter to the gallery module 3) sharpen all resizes. | |||
| 2009-08-08 | Improve the graphics toolkit detection code so that properly | Bharat Mediratta | |
| identifies situations where its restricted by open_basedir. We now track more informatoin about the toolkit including the version and any errors we encountered while doing the detection so that we can provide more info downstream. This makes graphics::detect_toolkits() a little heavier, but that's ok because it should not be called very often. In the process, refactor the controller and view hierarchy so that it's a little more straightforward in the code. Fixes ticket #616. | |||
| 2009-07-31 | Add new events: | Bharat Mediratta | |
| graphics_resize graphics_resize_completed graphics_rotate graphics_rotate_completed graphics_composite graphics_composite_completed | |||
| 2009-07-14 | Add /opt/bin as a binary path. | Bharat Mediratta | |
| 2009-07-02 | Suppress the filesize error if the thumbnail is not found so we can get | Tim Almdal | |
| an EMPTY_INPUT_FILE exception which we can then log and continue. | |||
| 2009-06-24 | Look in /opt/local/bin for binaries, too. | Bharat Mediratta | |
| Fixes ticket #423. | |||
| 2009-06-16 | Use a placeholder image if ffmpeg is missing instead of throwing an | Bharat Mediratta | |
| exception which would get silently swallowed by swfUpload. | |||
| 2009-06-12 | Add /usr/local/bin to PATH before trying to detect binaries. | Bharat Mediratta | |
| 2009-06-07 | Improve error handling support for corrupt images and report them | Bharat Mediratta | |
| appropriately in g2_import. | |||
| 2009-06-05 | Add the exception message to the trace string when there's a graphics | Bharat Mediratta | |
| failure. | |||
| 2009-06-04 | Skip over busted images when rebuilding. Change graphics::generate() | Bharat Mediratta | |
| to return true/false on whether or not it could rebuild the image properly, then track the broke images in the task and ignore them. Fixes ticket #344. | |||
| 2009-05-27 | Update all references to the core application to now point to the | Bharat Mediratta | |
| gallery module. This type of mass update is prone to some small bugs. | |||
