| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2009-09-29 | * Remove the @todo in module event and always try to call ↵ | Tim Almdal | |
| gallery_event::$function first * Refactor gallery.php to move site_menu, admin_menu, and context_menu to gallery_event.php * Change Theme_View and Admin_view to call module::event("site_menu|admin_menu|context_menu"...) | |||
| 2009-09-28 | Create and throw the exception, instead of logging. The theory behind | Bharat Mediratta | |
| exceptions is that they only need to be logged if they can't be caught and handled. If we don't throw it, then the error gets swallowed and the code that errored out just blithely continues. | |||
| 2009-09-28 | Do a pass on the gallery::find_file and Gallery_View::{script,css} PHPdoc. | Bharat Mediratta | |
| 2009-09-28 | Merge branch 'master' of git@github.com:gallery/gallery3 | Tim Almdal | |
| 2009-09-28 | Update the PHPDoc for gallery::find_file and convert ↵ | Tim Almdal | |
| Gallery_View::script/css to use gallery::find_file | |||
| 2009-09-28 | Clean up upgrader for version 14. Put {} around table name, | Bharat Mediratta | |
| capitalize reserved words, use single quotes in the query to avoid escaping the double quotes, remove table alias. | |||
| 2009-09-27 | Clean up the task initialization for rebuild thumbs and resizes. | Tim Almdal | |
| 2009-09-27 | Change gallery installer to do a direct update to the database, preppending ↵ | Tim Almdal | |
| gallery_graphics:: to each of the defined rules operations | |||
| 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-27 | Fix one more place in the installer where we referring to the old default | Bharat Mediratta | |
| theme names. Update installer.sql | |||
| 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-24 | Refactored the rebuild_dirty_images handler to simplify the counting and end ↵ | Tim Almdal | |
| processing. It was getting all confused with trying to figure out the completed and remaining. Now on initiation it sets the total images that are dirty and then counts the completed until it equals the total, then exits. Fixes ticket #771 | |||
| 2009-09-24 | Fix unit tests by updating the xss golden file and declaring ↵ | Tim Almdal | |
| gallery_error::error_handler as static | |||
| 2009-09-24 | Forgot to change the defaults theme names on initial install... Duh | Tim Almdal | |
| 2009-09-24 | Oops, forgot to change the install version number to match the upgrade ↵ | Tim Almdal | |
| version number | |||
| 2009-09-23 | Add a new api method gallery::find_file. This wraps the Kohana::find_file ↵ | Tim Almdal | |
| function, but allows the extension to supplied as part of the filename. Changed the Edit permission dialog to use the new api method to locate the icons from the active theme. | |||
| 2009-09-23 | set the version number to 13, so we will update the default themes in the ↵ | Tim Almdal | |
| gallery vars | |||
| 2009-09-23 | Fix a typo | Tim Almdal | |
| 2009-09-23 | Clone the photo::get_edit_form to the movies helper and use it to generate ↵ | Tim Almdal | |
| the movie edit form. Fixes ticket #726. | |||
| 2009-09-22 | Create a gallery error handler that traps php errors and rethrows them as ↵ | Tim Almdal | |
| Exceptions. This fixes ticket #763 | |||
| 2009-09-19 | On the edit album form, add dirname and slug asa hidden fields, so that when ↵ | Tim Almdal | |
| the edits are being validated on input, the fields are found and can be referenced | |||
| 2009-09-19 | Change the fix for ticket #775 to always add the Add menu, but not add any ↵ | Tim Almdal | |
| items if the album directory is not writable. | |||
| 2009-09-18 | Don't display the add menu if the underlying operating system directory is ↵ | Tim Almdal | |
| not writable. THis should fix ticket #775 | |||
| 2009-09-17 | Mark permission's display name for translation | Andy Staudacher | |
| 2009-09-15 | Improve language preference (Acccept-Language header matching): Boost ↵ | Andy Staudacher | |
| same-language match over exact locale match for lower qvalue. | |||
| 2009-09-13 | Set the version to "3.0 git (pre-RC1)" | Bharat Mediratta | |
| 2009-09-12 | Update version to "3.0 beta 3" | Bharat Mediratta | |
| 2009-09-10 | Put the buttons for album/photo dialogs in their own group in the form | Bharat Mediratta | |
| so that they appear at the end, after any other groups that other modules add. Thanks Glooper! | |||
| 2009-09-10 | Remove debug code. | Bharat Mediratta | |
| 2009-09-10 | Rename "after_installer" to "welcome_message" in the code to make it | Bharat Mediratta | |
| clearer what its purpose is. Add some spacing in the theme for it so that it's less cramped. | |||
| 2009-09-08 | Fix line > 100 chars. | Bharat Mediratta | |
| 2009-09-08 | Replace two preg_replace() calls with a single trim() call. | Bharat Mediratta | |
| 2009-09-08 | Amend the v12 installer to empty out the relative_url_cache and | Bharat Mediratta | |
| relative_path_cache columns. | |||
| 2009-09-08 | Update item::convert_filename_to_slug() to eliminate leading and | Bharat Mediratta | |
| trailing hyphens. | |||
| 2009-09-08 | Remove unused $feed->link. | Bharat Mediratta | |
| 2009-09-08 | Move specialized (pretty) url generation back into Item_Model so that | Bharat Mediratta | |
| we're not relying on overriding url::site() to do tricks around item urls. This means that you won't get item urls by doing url::site("albums/37"), for example, but it also means that we won't get pretty urls where we don't expect them (like in the action of a <form> element). Incidentally, this will help us move over to using the slug format because if you've got a bad character in a url, the edit forms will now work on it since they'll be id based. | |||
| 2009-09-08 | Improve comment. | Bharat Mediratta | |
| 2009-09-07 | Automagically generate pretty urls for movies, too. | Bharat Mediratta | |
| 2009-09-07 | Fix a bug where we were not properly decoding the path in the fallback | Bharat Mediratta | |
| code in get_item_from_uri() by using relative_url() instead of relative_path(). | |||
| 2009-09-07 | Add the 'Internet Address' field to all items, along with proper | Bharat Mediratta | |
| validation for the fields. | |||
| 2009-09-07 | Switch to using Item_Model::relative_url() for the url path. | Bharat Mediratta | |
| 2009-09-07 | Remove unused item::validate_no_name_conflict() and a debug line. | Bharat Mediratta | |
| 2009-09-07 | Add item::validate_url_safe() with a test. | Bharat Mediratta | |
| 2009-09-07 | Add the slug to album, photo, and movie forms. | Bharat Mediratta | |
| 2009-09-07 | Add support for a per-item "slug" which will be the user-visible url | Bharat Mediratta | |
| component for that given item. Album hierarchies are represented by nested slugs. By default, we convert the filename to a slug when you create an album, photo or movie. | |||
| 2009-09-07 | Quiet down ffmpeg in movie::extract_frame() | Bharat Mediratta | |
| 2009-09-05 | Bugfixes for locales::locale_from_http_request(), and adding tests. | Andy Staudacher | |
| (And the tests should illustrate that kohana 2.4's API doesn't quite fit our purpose of simply getting the best match between the accepted (client) and the installed (g3) locales.) | |||
| 2009-09-05 | Change the module installer so that you don't need to provide your own | Bharat Mediratta | |
| install() function if all you're going to do is to set the version of the module from module.info into the database. This means that for some simple modules, you don't need an install.php file at all. | |||
| 2009-09-04 | Add @todo to replace locales::locale_from_http_request() | Bharat Mediratta | |
| request::accepts_language() when we upgrade to Kohana 2.4 | |||
| 2009-09-04 | Add new locale preferences: Adding per session (cookie) locale preferences ↵ | Andy Staudacher | |
| and check the browser's / OS' locale preferences. Ticket 582. | |||
