| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2009-09-21 | Set children_count to 0, photos have no children. | Bharat Mediratta | |
| 2009-09-21 | Update the next/previous item calculations to match what we do in photos.php | Bharat Mediratta | |
| Force the children_count to be zero, movies have no children. Rename $photo to $movie everywhere. | |||
| 2009-09-21 | Add viewable() protection to children() and children_count() calls. | Bharat Mediratta | |
| This is not currently necessary (nor is it a security hole) because we don't constrain permissions at the child level in the core, but it makes our security audits easier and will enable the scenario where somebody writes a module to add per-photo permissions. | |||
| 2009-09-21 | Fix Item_Model::get_position() so that our sort is stable when the comparison | Bharat Mediratta | |
| row has a null value in the sort field. Fix for #627 Note: this changes get_position() to take an Item_Model instead of an id! | |||
| 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 | - Add theme->movie_menu() to whitelisted methods. | Andy Staudacher | |
| - xss_data checkpoint | |||
| 2009-09-17 | Arg, fixing the "Sharing your Translations" text, thanks engineer@gmc | Andy Staudacher | |
| 2009-09-17 | Fix: Make "Sharing your translations" a localizable string | Andy Staudacher | |
| 2009-09-17 | Mark permission's display name for translation | Andy Staudacher | |
| 2009-09-16 | Merge branch 'master' of git@github.com:gallery/gallery3 | Tim Almdal | |
| 2009-09-16 | Changed the search module installer to explicitly specify MyISAM as the ↵ | Tim Almdal | |
| database type. Changed the packager to not remove the engine specification if the table is search_records. Fixes Ticket #774 | |||
| 2009-09-16 | Merge branch 'master' of git@github.com:gallery/gallery3 | Bharat Mediratta | |
| 2009-09-16 | Add a movie_menu() theme callback, and have the default theme call it | Bharat Mediratta | |
| in the sidebar on movie page types. | |||
| 2009-09-15 | Also check for rss feeds in controller auth check | Andy Staudacher | |
| 2009-09-15 | Controller auth / CSRF fixes | Andy Staudacher | |
| 2009-09-15 | Add exception for REST controllers (no fixes necessary). | Andy Staudacher | |
| 2009-09-15 | CSRF / auth fixes, golden data file checkpoint | Andy Staudacher | |
| 2009-09-15 | First functional version of Controller_Auth_Test | Andy Staudacher | |
| 2009-09-15 | Initial skeleton of Controller_Auth code audit test (non functional). | 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-13 | Merge branch 'master' of git@github.com:gallery/gallery3 into beta3_staging | Bharat Mediratta | |
| 2009-09-13 | Remove raw HTML that's wrapped around the name of the file | Kevin Nehls | |
| to create if not logged in as admin | |||
| 2009-09-13 | Merge branch 'master' of git@github.com:gallery/gallery3 into beta3_staging | Bharat Mediratta | |
| 2009-09-13 | If there's a show= param and we can't find the given id in the current | Bharat Mediratta | |
| album, just ignore the parameter. | |||
| 2009-09-12 | Update version to "3.0 beta 3" | Bharat Mediratta | |
| 2009-09-12 | Updated for url format changes applied in ↵ | Bharat Mediratta | |
| 2aad580f53dbc06bb170c710467b47a5a532c6c8. | |||
| 2009-09-11 | rawurlencode() path components in relative_path_cache and | Bharat Mediratta | |
| relative_url_cache so that they're safe for browser use. | |||
| 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 | Use abs_url() inside url::redirect() calls so that we don't just wind | Bharat Mediratta | |
| up tacking onto the base url. | |||
| 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-10 | Rename ORM_MPTT::is_descendant() to ORM_MPTT::contains() to make the | Bharat Mediratta | |
| API a little clearer. Write a test for it, too. | |||
| 2009-09-08 | Fix a thinko-- of course we want urls to be the path to the file itself. | Bharat Mediratta | |
| 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 | Change $this->_photo to just $photo | Bharat Mediratta | |
| 2009-09-08 | Fix test to support new slug code. | Bharat Mediratta | |
| 2009-09-08 | Change the relative_path_cache and relative_url_cache columns to store | Bharat Mediratta | |
| urlencoded data for ease of use when we're dealing with the data. This fixes ticket #569 by not allowing the urls that we put into our RSS feeds to have bad characters in them. We have to convert a path like var/albums/foo/"quotes"/bar.jpg into something like var/albums/foo/%22quotes%22/bar.jpg. If we take the approach of storing native data in the cache, then we have to explode the path, urlencode the bits, and implode it again to avoid escaping the / char. By storing it escaped, we avoid this problem. I believe (but have not tested) that this is more efficient. | |||
| 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 | Actually use the slug when creating new albums (instead of just converting the | Bharat Mediratta | |
| filename over). | |||
| 2009-09-08 | Trim leading and trailing hyphens from the slug. | Bharat Mediratta | |
| 2009-09-08 | Remove unused $feed->link. | Bharat Mediratta | |
| 2009-09-08 | Minor tweaks to the url refactor. | 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 | |
