Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-05-02 | Rename core helper to gallery helper to indicate that it's more of an ↵ | Bharat Mediratta | |
app-wide helper. 'core' doesn't make as much sense | |||
2009-05-02 | Create item helper and move move_item(), remove_album_cover() and | Bharat Mediratta | |
make_album_cover() functions into it. | |||
2009-05-02 | Move make_album_cover and remove_album_cover out of Item_Model and | Bharat Mediratta | |
into the core helper. Clean up interactions so that when we remove an album cover we pick a new one, or clean out the old album cover if there are no other choices. | |||
2009-05-01 | Forgot these when i created the make_album_cover method | Tim Almdal | |
2009-04-29 | Refactor the creation and removal of the album covers into | Tim Almdal | |
make_album_cover and remove_album_cover methods in Item_Model. Usage: $photo->make_album_cover() $album->remove_album_cover() | |||
2009-04-22 | Throw an exception in graphics::resize() if the input file is empty | Bharat Mediratta | |
2009-04-22 | Refactor the move functionality into a helper function so it can be | Tim Almdal | |
called from organize | |||
2009-04-18 | whitespace cleanup | Bharat Mediratta | |
2009-04-17 | Be graceful if exec() is disabled | Bharat Mediratta | |
2009-04-12 | changed order of form fields in photo and album forms so that the confusing ↵ | Jakob Hilden | |
"name" field is not on top anymore changed "name" label to "Filename" for photos and "Directory Name" for albums | |||
2009-04-12 | Fix indentation. | Bharat Mediratta | |
2009-04-09 | Fix the spelling of "appearance_menu" and update user_menu so that the | Bharat Mediratta | |
user/groups admin menu option appears again. | |||
2009-04-08 | Fixes issues with Server Add: | Tim Almdal | |
1) Fixes Ticket #208 2) Fixes Ticket #190 3) Fixes an unticketed issue where two items could collide when creating the thumbnail and/or resize. For example, loading a.flv and a.jpg would have generated the same thumbnail image. This change adds a random value to the name to avoid conflicts. 4) Added item::__set() to clear the relative path if the name changes | |||
2009-04-06 | Fix up the quick-edit code on the photos page. Everything but "move" | Bharat Mediratta | |
is implemented. Can't do move easily because it's tricky to handle the post-move redirect. | |||
2009-04-06 | Rework the links section of the "Welcome to Gallery3" block so that | Bharat Mediratta | |
the links work and it's more helpful. In the process, rename the Presentation menu to be Appearance because that makes more sense to me (and at least one other user who wrote about it on -devel). | |||
2009-04-05 | Don't do graphics detection in core_installer::install() because that | Bharat Mediratta | |
gets run at scaffolding::package() time, not on the target machine. Instead, create a core module variable to trigger running graphics::choose_default_toolkit() on the first admin login after install. Fixes ticket #206. | |||
2009-04-05 | Add a weight column to the items model. Change the album ordering to | Tim Almdal | |
use this as the default instead of id. This prepares the way for manual reordering in the organize functionality. | |||
2009-04-02 | Completely task-ify the localization scanning code and restore the | Bharat Mediratta | |
incoming_translation key cache. The only part of this that is not broken down is the l10n_client::fetch_updates() part. | |||
2009-03-31 | Add quick edit pane to resize images, ticket #189 | Chad Kieffer | |
2009-03-26 | Convert language updates over to task form. It's still very rough, | Bharat Mediratta | |
the task only has one step from zero to 100. | |||
2009-03-26 | Replace iterators with stack based scanner, which we can serialize into the ↵ | Bharat Mediratta | |
task context. | |||
2009-03-26 | Normalize code style. | Bharat Mediratta | |
2009-03-26 | Convert the L10n scanner from a library to a helper. | Bharat Mediratta | |
In order to make the class static, I had to remove the index cache. I'll restore that and cache the index keys in the task context in a subsequent change. For now, I've put in a @todo to add the caching back in. | |||
2009-03-26 | Revert r20492 | Tim Almdal | |
2009-03-26 | Normalize exception format. | Bharat Mediratta | |
2009-03-26 | Fix typo, whitespace. | Bharat Mediratta | |
2009-03-25 | Fix for ticket #184. Set the default album sort order to "Title" | Tim Almdal | |
2009-03-25 | Remove debug line. | Bharat Mediratta | |
2009-03-24 | change version from "3.0 Alpha 3" to "3.0 pre-beta svn" | Bharat Mediratta | |
2009-03-21 | Refactor all translation strings that have ambiguous placeholders. | Andy Staudacher | |
E.g. "%link_startClick here%link_end" is now '<a href="%url">Click here</a>'. Note: This isn't always the best solution. E.g. consider "Foo <a href='%url' class='gDialogLink'>bar</a>." Now the translator has to deal with preserving CSS classes too... | |||
2009-03-20 | Set our version to 3.0 Alpha 3 and add 'logs' as a dir we create at install time | Bharat Mediratta | |
2009-03-19 | Rejigger the way we do reinstalls while Kohana is running. | Bharat Mediratta | |
core_installer::install() now takes an $initial_install param that allows us to enforce that we're doing a clean install. Use this in both the scaffolding and the unit test code. Greatly simplify the scaffolding uninstall/reinstall code. | |||
2009-03-18 | Fix for ticket #153. The sort column was not not initialized for | Tim Almdal | |
movies or photos. Turns out that when you go to delete, ORM tries to check for children and apply the sort order. | |||
2009-03-18 | Fix failed unit test: private methods are required to begin with an ↵ | Tim Almdal | |
underscore(_) | |||
2009-03-18 | Remove trailing ?> | Tim Almdal | |
2009-03-18 | Remove semi-colons from single sql statements and correct anoter | Tim Almdal | |
instance of {items` which won't get prefixed properly | |||
2009-03-18 | Functional l10n_client / server interaction: | Andy Staudacher | |
- Get / verify API Key from l10n server - Submit translations - Fetch translations / updates Reference: Tasks: 75, 76, 55 TODO: Move out of core (and a series of other tasks). | |||
2009-03-17 | Treat calls to install() with TEST_MODE set to be initial installs. At ↵ | Bharat Mediratta | |
least for now. | |||
2009-03-16 | Switch the locale::$locales data structure to be an array instead of a | Bharat Mediratta | |
stdClass because we're not allowed to asort() stdClass objects in PHP 5.2.6. | |||
2009-03-16 | Set the sort_column and sort_order for the root album | Bharat Mediratta | |
2009-03-16 | Oops, fix a typo. | Bharat Mediratta | |
2009-03-16 | Get rid of the extra robust code we had in here to make the | Bharat Mediratta | |
scaffolding work when the Gallery wasn't installed yet. Now we force users through the installer. | |||
2009-03-16 | Initialize $result in get_html() | Bharat Mediratta | |
2009-03-16 | Don't count on the uri having 3 components; that breaks on newer versions of ↵ | Bharat Mediratta | |
PHP. | |||
2009-03-16 | Illegal use of $this in static function site(). Replace with $theme. | Bharat Mediratta | |
2009-03-16 | Thin down the scaffolding code so that all that is there is the test | Tim Almdal | |
data creation and the packaging code. The rest ofthe functionality is either no longer required, or moved to the developer module (MPTT Tree). Also provide checking for the active user to be an admin. | |||
2009-03-15 | Move the start/stop translating menu item to the admin menu | Tim Almdal | |
2009-03-15 | Move profiling and debugging out of the scaffolding and into the | Tim Almdal | |
developer module. | |||
2009-03-14 | style fixes | Bharat Mediratta | |
2009-03-14 | Invert the check for https vs http. | Tim Almdal | |