summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-05-13Add a little JS sugar to set the album directory name to the same asBharat Mediratta
the album title.
2009-05-13Address the final point in #226. Disable the make album cover icon ifTim Almdal
the pane has the ui-state-disabled class
2009-05-13Suppress some warningsBharat Mediratta
2009-05-13Allow admins to modify variables. This way when something goes wrong,Bharat Mediratta
we can tell them what to do in the forums and we don't have to build super smart admin UIs to help users with weird edge cases. This plus r20789 is probably a good enough fix for #232.
2009-05-13I should test this stuff before I submit it, eh.Bharat Mediratta
2009-05-13Store the ffmpeg path in a variable.Bharat Mediratta
2009-05-13Fix menu typo.Bharat Mediratta
2009-05-13Gee it's May already. Update copyright to 2009.Bharat Mediratta
2009-05-13Add the "advanced settings" controller which lets you see all theBharat Mediratta
vars. We'll eventually turn this into a registry where you can edit settings directly (at your own risk).
2009-05-13Create a new "add" permission and require it at the controller levelBharat Mediratta
when adding photos/movies/albums
2009-05-13Unlink var/modules dir also when packagingBharat Mediratta
2009-05-13Set the default transparency to 1 (no transparency at all)Bharat Mediratta
2009-05-13Exclude the root album from the "dirty images" queryBharat Mediratta
Clean some HTML out of a translated string.
2009-05-13updated to reflect tinyint(2) -> smallint(6) changeBharat Mediratta
2009-05-13Clean out old dirs before packaging.Bharat Mediratta
2009-05-13Oops, use filename instead of nameBharat Mediratta
2009-05-13Empty dirBharat Mediratta
2009-05-13Don't allow admins to delete the guest user. Fixes ticket #213Bharat Mediratta
2009-05-13Make the 'this user cannot be deleted' link actually not clickable.Bharat Mediratta
2009-05-13Variety of changes to the way we do user editing:Bharat Mediratta
1) Allow admins to edit the admin bit of other admins 2) Don't allow admins to delete themselves (partial fix for ticket #213) 3) Inline user::update(). Don't do form processing in helper methods! 4) Inline user::_get_edit_form() so that we can treat edit forms differently. Trying to hard to make common functions makes for weird edge cases.
2009-05-13Colorize admin user rows to make them stand outBharat Mediratta
2009-05-13Use the name field if the full_name field is empty.Bharat Mediratta
2009-05-13Beautify the title of uploaded files. Convert underscores to spaces, ↵Bharat Mediratta
collapse multiple spaces, drop the extension. Fixes ticket #237
2009-05-13Allow users to enter multiple tags at once, split by space, semicolonBharat Mediratta
or comma. Fixes ticket #193.
2009-05-13Display the server load average in the platform block. Fixes ticket #198.Bharat Mediratta
2009-05-13Log the complete exception information for exceptions that happen in tasks ↵Bharat Mediratta
so that we have some clue as to what went wrong
2009-05-13Log password reset attempts. Fixes ticket #251.Bharat Mediratta
2009-05-13Warn the user if they're attemping to reinstall into a database thatBharat Mediratta
already has Gallery 3 tables. Otherwise, permit it to continue. We key this off of the existence of the g3_items table. Theoretically it's possible that the g3_items table is gone but other tables are still there, which could mess things up. I'm not going to worry about that for now. Fixes ticket #175
2009-05-13Fix the logical inversion of the transparency field. Now, 100% is maxBharat Mediratta
transparency and 1% is min transparency (no transparency at all). Fixes ticket #204.
2009-05-12Use the module_change event to figure out if the rss module isBharat Mediratta
inactive. If it is, we need to alert the admin user.
2009-05-12Fire off the module_change event whenever we install or uninstall a moduleBharat Mediratta
2009-05-12Simplify delete()Bharat Mediratta
2009-05-12Fix a bug where deleting an album sometimes deletes everything in var. ↵Bharat Mediratta
Fixes ticket #282
2009-05-12parent() should return null if there's no parent idBharat Mediratta
2009-05-12fix comment typo.Bharat Mediratta
2009-05-12Gracefully handle duplicate groups. Fixes ticket #280Bharat Mediratta
2009-05-12Add group::lookup_by_name()Bharat Mediratta
2009-05-12Fix a comment.Bharat Mediratta
2009-05-12Allow configurable padding optionsBharat Mediratta
2009-05-12Deal with the user-entered g2 embed.php path a little more sanely so that if ↵Bharat Mediratta
the user enters the path to G2 itself, we find the embed.php path from there.
2009-05-12Beautify the status textBharat Mediratta
2009-05-12Skip the copy if the watermark module is enabled *and* there's a watermark.Bharat Mediratta
2009-05-12Import keywords as tags.Bharat Mediratta
Refactor the general flow of g2_import_task::import() to simplify it and make it more sensible. It had gotten a little overgrown. It's still a little overgrown, but I don't see an easy way to simplify it from here.
2009-05-12Don't divide by zero if there are no photos in the Gallery.Bharat Mediratta
2009-05-12Import tags.Bharat Mediratta
2009-05-12Deal gracefully with the case that the Gallery 2 instance didn't haveBharat Mediratta
any resizes (or thumbnails). Fix a case where we were over-weighting the max dimension for square resizes and thumbs.
2009-05-11Add has_thumb() public API methodBharat Mediratta
2009-05-11Import comments. This was a lot easier than I thought it would beBharat Mediratta
2009-05-11Refactor to support pagination and simplify the code.Bharat Mediratta
- Simplify the public controller methods - Fix a bug where missing thumbnails would cause a divide by zero error - actually pay attention to the page # for pagination and limit the query accordingly.
2009-05-11Update exif lib to upstream r3901 which resolves the following tickets:Bharat Mediratta
http://www.zenphoto.org/trac/ticket/1117 http://www.zenphoto.org/trac/ticket/1118