Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-01-31 | Drop the requirement to have the install() function set the module | Bharat Mediratta | |
version. It's redundant. Fixes #1985. | |||
2013-01-22 | gallery.menalto.com -> galleryproject.org | Bharat Mediratta | |
codex.gallery2.org -> codex.galleryproject.org Fixes #1957. | |||
2013-01-21 | Update copyright to 2013. Fixes #1953. | Bharat Mediratta | |
2012-02-27 | Update copyright to 2012. #1822 | Bharat Mediratta | |
2011-04-23 | Oops, fix broken codex urls. For #1698. | Bharat Mediratta | |
2011-04-23 | Oops, this is the rest of the modules and themes for #1696 and #1698. | Bharat Mediratta | |
2011-04-22 | Catch the item_updated_data_file() event and rescan. Fixes #1679. | 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-10-25 | All modules should be named Xxx_Core for extensibility. Fixes #1458. | Bharat Mediratta | |
2010-09-11 | Tune timeouts to work better on large installs. | Bharat Mediratta | |
2010-07-31 | Full pass over all the JSON encoding and JS dialog code. We now abide | Bharat Mediratta | |
by the following rules: 1) An initial dialog or panel load can take either HTML or JSON, but the mime type must accurately reflect its payload. 2) dialog form submits can handle a pure HTML response, but the mime type must also be correct. This properly resolves the problem where the reauth code gets a JSON response first from the reauth code, and then an HTML response when you reauth and continue on to a given form -- try it out with Admin > Settings > Advanced. 3) All JSON replies must set the mime type correctly. The json::reply convenience function does this for us. 4) By default, any HTML content sent back in the JSON response should be in the "html" field, no longer the "form" field. The combination of these allows us to stop doing boilerplate code like this in our controllers: // Print our view, JSON encoded json::reply(array("form" => (string) $view)); instead, controllers can just return HTML, eg: // Print our view print $view; That's much more intuitive for developers. | |||
2010-07-31 | More patches as part of #1225. Change the 'core' modules to use the json::reply | Tim Almdal | |
method to set the content type header and encode the response as a json object | |||
2010-07-06 | Fix for ticket #1181. Use $.getJSON to retrieve the json contents of the ↵ | Tim Almdal | |
dialog. Convert all the controllers that create the data to go into a dialog to return the html as part of a json object. | |||
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-06-09 | New version of EXIF gets ISO and Metering Mode right. Yay! | Bharat Mediratta | |
2010-06-06 | Updated to Exifer | Bharat Mediratta | |
2010-03-03 | Update the copyright to 2010. It's only 3 months into the year :-) | Bharat Mediratta | |
2010-01-27 | Convert __toString() to use (string) cast instead. | Bharat Mediratta | |
2010-01-19 | Extend Gallery_Unit_Test_Case instead of Unit_Test_Case. | Bharat Mediratta | |
2010-01-17 | Use test::random_photo_unsaved() instead. | Bharat Mediratta | |
2010-01-17 | Updated for model based validation. | Bharat Mediratta | |
2009-12-06 | Update database query. | 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 Database::instance() -> db::build() | 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-28 | Normalize capitalization ticket #596 | Tim Almdal | |
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-30 | Replaced gButtonLink with g-button. | Chad Kieffer | |
2009-09-22 | Updated to Exifer r4477. Fixes ticket #763. | Tim Almdal | |
2009-09-22 | Implement the updated version of gallery3-vendor/exifer which has gettext ↵ | Tim Almdal | |
replaced with calls to the gallery t method to provide translation. Fixes ticket 672. | |||
2009-09-22 | Revert "Change the exif module to respond to the gallery_ready event and ↵ | Tim Almdal | |
check to see if gettext is installed. The 3rd party library used in the exif module expects gettext to be available. Rather than doing all the time use the gallery ready event to only do it when it might be needed. Fixes ticket #672" This reverts commit 33690a32bcf132e5ab470ff77ba23c073ac26271. | |||
2009-09-21 | Change the exif module to respond to the gallery_ready event and check to ↵ | Tim Almdal | |
see if gettext is installed. The 3rd party library used in the exif module expects gettext to be available. Rather than doing all the time use the gallery ready event to only do it when it might be needed. Fixes ticket #672 | |||
2009-08-31 | Fix XSS vectors in HTML attributes (mostly t() 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 the processing time for search_task and exif_task to start the | Bharat Mediratta | |
1.5 second counter only after we've done any expensive queries. This guarantees at least some time to do work. Fixes ticket #693. | |||
2009-08-30 | Change all instances of SafeString::of_safe_html() to html::mark_safe() in ↵ | Andy Staudacher | |
views. | |||
2009-08-29 | Update all code to use helper method html::clean(), html::purify(), ... ↵ | Andy Staudacher | |
instead of SafeString directly. | |||
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 | Merge commit 'upstream/master' | Andy Staudacher | |
Conflicts: modules/akismet/views/admin_akismet.html.php modules/comment/helpers/comment_rss.php modules/gallery/helpers/gallery_rss.php modules/gallery/libraries/I18n.php modules/gallery/views/permissions_browse.html.php modules/gallery/views/simple_uploader.html.php modules/info/views/info_block.html.php modules/organize/controllers/organize.php modules/organize/views/organize.html.php modules/organize/views/organize_album.html.php themes/default/views/album.html.php themes/default/views/movie.html.php themes/default/views/photo.html.php | |||
2009-08-29 | Refactor all calls of p::clean() to SafeString::of() and p::purify() to ↵ | Andy Staudacher | |
SafeString::purify(). Removing any p::clean() calls for arguments to t() and t2() since their args are wrapped in a SafeString anyway. | |||
2009-08-27 | Remove 'ENGINE=InnoDB' specification from tables that we create. Use | Bharat Mediratta | |
the system's default table specification. Fixes ticket #597. | |||
2009-07-19 | Remove success logging from exif_task. | Bharat Mediratta | |