summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2009-04-28Change _adjust_thumb_size to adjust_thumb_size and make public so weTim Almdal
can access if from organize
2009-04-28auto install organize moduleBharat Mediratta
2009-04-24Fixed typo in comment, added docblock.Chad Kieffer
2009-04-23Disable automatic session id regeneration because ajax requests cause it to ↵Bharat Mediratta
bomb.
2009-04-22Remove the negative weighting for albums. The are now positionedTim Almdal
based on the insertion order.
2009-04-22Mark a task as stalled if it's > 15 seconds old (because tasks should ping ↵Bharat Mediratta
back much faster than that)
2009-04-22Throw an exception in graphics::resize() if the input file is emptyBharat Mediratta
2009-04-22Set the default logging to 'notice' to make it more user friendly.Bharat Mediratta
2009-04-22Make the scaling based on the target thumbnail size that was specifiedTim Almdal
at thumbnail creation. This will remove the upscaling effect
2009-04-22Added 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-22Refactor the move functionality into a helper function so it can beTim Almdal
called from organize
2009-04-21Theme the cancel-all link like the remove-all link.Bharat Mediratta
2009-04-19Fix UI stringAndy Staudacher
2009-04-18Redirect item/NN requests to absolute urlsBharat Mediratta
2009-04-18whitespace cleanupBharat Mediratta
2009-04-17Be graceful if exec() is disabledBharat Mediratta
2009-04-17Don't show the 'no toolkit found' message unless we actually didn't find oneBharat Mediratta
2009-04-17Fix for ticket 203: Don't interpolate the translation string for the l10n ↵Andy Staudacher
client translation input field
2009-04-12added icons to permissions UIJakob Hilden
2009-04-12changed 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-12Fix indentation.Bharat Mediratta
2009-04-09Missed a closing para )Tim Almdal
2009-04-09Change the weight for albums from zero, which could give usTim Almdal
indeterminate ordering, so that ablums are initially shown first.
2009-04-09Clean up delete code as per Bharat's noteTim Almdal
2009-04-09Merge the micro_thumb_tag method into thumb_tag and add a thirdTim Almdal
parameter to indicate that a micro thumb is being generated
2009-04-09Fix the spelling of "appearance_menu" and update user_menu so that theBharat Mediratta
user/groups admin menu option appears again.
2009-04-08Fixes 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-07changed the items in quickpaneoptions dropdown menu (which appears in the ↵Jakob Hilden
quickpane for albums) to be easier clickable and changed markup to use <ul> (more semantically correct)
2009-04-06Exclude lib/swfupload from our scan pathsBharat Mediratta
2009-04-06Fix 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-06Add case-sensitive versions of file extensions to the file_types listBharat Mediratta
so that .JPG works on case sensitive systems like Unix. Also add .jpeg to the list. Fixes ticket #183.
2009-04-06Rework the links section of the "Welcome to Gallery3" block so thatBharat 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-05Don't do graphics detection in core_installer::install() because thatBharat 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-05Add a weight column to the items model. Change the album ordering toTim Almdal
use this as the default instead of id. This prepares the way for manual reordering in the organize functionality.
2009-04-03Set the queue limit to 1000.Bharat Mediratta
2009-04-02Completely task-ify the localization scanning code and restore theBharat Mediratta
incoming_translation key cache. The only part of this that is not broken down is the l10n_client::fetch_updates() part.
2009-04-02Continuation of r20518. Remove all the cases were the csrf values inTim Almdal
views were being manually set. Also removed it from the Admin_View.
2009-04-02Fix the issue identified in Tim Almdal
http://gallery.menalto.com/gallery_3.0_alpha_3_released?page=1#comment-304581 ticket #195
2009-03-31Add missing 2nd argument for Theme_View()Bharat Mediratta
2009-03-31Add quick edit pane to resize images, ticket #189Chad Kieffer
2009-03-27Add a method to create a micro_thumb that is centered vertically inTim Almdal
its container (initially used for organize album view)
2009-03-27Add missing csrf value.Bharat Mediratta
2009-03-27Put csrf token into Admin_View and Theme_View by default, then use itBharat Mediratta
directly wherever possible instead of access::csrf_token().
2009-03-26Rename $block_id to $id to fix ticket #192Bharat Mediratta
2009-03-26Update comments to reflect that the results of item::children orTim Almdal
item::descendants uses the specified sort order
2009-03-26Convert 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-26Set csrf into the global theme for convenience.Bharat Mediratta
2009-03-26Replace iterators with stack based scanner, which we can serialize into the ↵Bharat Mediratta
task context.
2009-03-26Normalize code style.Bharat Mediratta
2009-03-26Convert 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.