| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2009-05-09 | Move the thumb_proportion method into Theme_View and set it by default | Tim Almdal | |
| if the page type is album. Leave a todo if we ever set up a theme default API | |||
| 2009-05-08 | Don't rely on the file to have an extension (or better: don't throw an | Bharat Mediratta | |
| error if we can't find one-- just assume its a photo). | |||
| 2009-05-08 | Don't do ORM::factory() lookups on non-ints (thanks Romain LE DISEZ) | Bharat Mediratta | |
| 2009-05-02 | Remove some unnecessary blank lines. | Bharat Mediratta | |
| 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-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-29 | Reset the parent thumbnail in Item_Model::delete instead of where the | Tim Almdal | |
| delete was happening. This will insure that it is consistently done for all deletes and we don't have to remember to replicate the code. | |||
| 2009-04-29 | Move the module::event("before_item_delete") into the | Tim Almdal | |
| Item_Model::delete method. This will insure that it will get called for all events. Currently it is not being called for children of an album when the parent album is deleted. | |||
| 2009-04-28 | auto install organize module | Bharat Mediratta | |
| 2009-04-22 | Mark a task as stalled if it's > 15 seconds old (because tasks should ping ↵ | Bharat Mediratta | |
| back much faster than that) | |||
| 2009-04-22 | Make the scaling based on the target thumbnail size that was specified | Tim Almdal | |
| at thumbnail creation. This will remove the upscaling effect | |||
| 2009-04-22 | Added method to determine proportion of current thumb_size to the default, ↵ | Chad Kieffer | |
| 150. Use this in the the default theme, or any other, to reduce the size of CSS widths and heights in albums, including .gItem. | |||
| 2009-04-22 | Refactor the move functionality into a helper function so it can be | Tim Almdal | |
| called from organize | |||
| 2009-04-18 | Redirect item/NN requests to absolute urls | Bharat Mediratta | |
| 2009-04-17 | Don't show the 'no toolkit found' message unless we actually didn't find one | Bharat Mediratta | |
| 2009-04-17 | Fix for ticket 203: Don't interpolate the translation string for the l10n ↵ | Andy Staudacher | |
| client translation input field | |||
| 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-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-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-04-02 | Continuation of r20518. Remove all the cases were the csrf values in | Tim Almdal | |
| views were being manually set. Also removed it from the Admin_View. | |||
| 2009-03-31 | Add missing 2nd argument for Theme_View() | Bharat Mediratta | |
| 2009-03-27 | Add missing csrf value. | Bharat Mediratta | |
| 2009-03-27 | Put csrf token into Admin_View and Theme_View by default, then use it | Bharat Mediratta | |
| directly wherever possible instead of access::csrf_token(). | |||
| 2009-03-26 | Rename $block_id to $id to fix ticket #192 | Bharat Mediratta | |
| 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 | 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-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 | Oops, we need UNIX_TIMESTAMP() instead of NOW() | Bharat Mediratta | |
| 2009-03-20 | Do some data normalization so that the install files will have stable | Bharat Mediratta | |
| ordering and known values. This way subsequent packaging runs won't have any differences unless there's a real data change. | |||
| 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 | This is the real fix to ticket #154 | Tim Almdal | |
| 2009-03-18 | Fix for ticket #154: Remove the raw count and use the ORM wrapper. | Tim Almdal | |
| 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 | Switch from using SimpleUploader to using swfUpload as our flash based | Bharat Mediratta | |
| uploader. This is modeled on http://codex.gallery2.org/Gallery3:Upload_UX but is not yet complete. Notes: * Changed #gProgressBar to .gProgressBar to support multiple progress bars on the same page * Added a bunch of CSS to the "needs a home" section in themes/default/css/screen.css | |||
| 2009-03-16 | Initialize some variables | Bharat Mediratta | |
| 2009-03-16 | Revive the install() and uninstall() functions in Scaffold_Controller | Bharat Mediratta | |
| because we need those to make a package. Fix the packaging code to ignore whatever prefix is being used by the developer who is doing the packaging. Update the install.sql file (there were a variety of small inconsistencies, probably from hand-editing. Don't hand-edit this file!) | |||
| 2009-03-16 | Move security into the constructor. Protecting the index() call is easily ↵ | Bharat Mediratta | |
| bypassed. | |||
| 2009-03-16 | Get rid of obsolete/undefined $block_adder | Bharat Mediratta | |
| 2009-03-16 | Clean up the login, maintenance login and required-top-level-login code. | Bharat Mediratta | |
| We now have two clear and separate login approaches: login/ajax login/html Choose the one that's appropriate. Totally simplified the maintenance page to be separate from the theme and dead simple, and use login/html approach there. Totally simplified the top level login (login_page.html.php) to just be a login page, not the rest of the chrome on the page and use the login/ajax approach there. Don't use access::required in albums and then catch the exception, instead use access::can and check the return code. Improve the text for maintenance mode. | |||
| 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 profiling and debugging out of the scaffolding and into the | Tim Almdal | |
| developer module. | |||
| 2009-03-11 | Force a login if everybody does not have access to the root | Tim Almdal | |
| item. ticket #118. | |||
| 2009-03-11 | Refine the task api but removing the optional parameters on the | Tim Almdal | |
| task::create method call | |||
| 2009-03-11 | Get rid of stray 'type' argument to task::get_definitions() | Bharat Mediratta | |
| 2009-03-10 | Add profiling/debugging switches in the Scaffold menu. | Bharat Mediratta | |
| 2009-03-10 | Show the album edit form for albums, not the photo edit form | Bharat Mediratta | |
| 2009-03-09 | Override the ORM_MTTP::children and ORM_MTPP::descendants methods in | Tim Almdal | |
| the item model and always pass the orderby fields. This insures that all children or descendant calls will respect the album sort order. | |||
| 2009-03-09 | Restructure the sort order to maintain the sort column and sort order | Tim Almdal | |
| as two separate columns in the item table. | |||
