summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2009-05-26Since organize is now in the preview stage and will probably beTim Almdal
rewritten by beta2, pull all of its "tenticles" back into itself and out of core or tags module.
2009-05-26clean up whitespace errors introduced in last commitBharat Mediratta
2009-05-26Restructure the module lifecycle.Bharat Mediratta
Install: <module>_installer::install() is called, any necessary tables are created. Activate: <module>_installer::activate() is called. Module controllers are routable, helpers are accessible, etc. The module is in use. Deactivate: <module>_installer::deactivate() is called. Module code is not accessible or routable. Module is *not* in use, but its tables are still around. Uninstall: <module>_installer::uninstall() is called. Module is completely removed from the database. Admin > Modules will install and activate modules, but will only deactivate (will NOT uninstall modules).
2009-05-26Quick fix for ticket #144. Reapply event handler for delete link gDialog ↵Chad Kieffer
when group is refreshed.
2009-05-26Link to gallery.panel.js from the head, not body.Chad Kieffer
2009-05-26Split out re-used JavaScript for common functions (messages, valign), panel ↵Chad Kieffer
toggle, and forms to external files.
2009-05-26White space fixesChad Kieffer
2009-05-25Changed name to username in user admin form labelsChad Kieffer
2009-05-25Delete placeholder comments.Bharat Mediratta
2009-05-24Use phpass as our hashing mechanism, and check for it first (insteadBharat Mediratta
of checking G1/G2 techniquew first).
2009-05-22Implement a basic tag management interface with the organize drawerTim Almdal
2009-05-22Set a minimum distance (10px) that the cursor has to move inorder forTim Almdal
the draggable functionality to be activated
2009-05-21Changed Name label to Username, closes ticket #93Chad Kieffer
2009-05-21Change $view->action to a absolute url.Bharat Mediratta
2009-05-21Redirect after success to the absolute urlBharat Mediratta
2009-05-21Provide delete confirmations in quick pane and organize features. IfTim Almdal
I've missed any spots let me know.
2009-05-211) This provides the editting functionality for albums and photos in theTim Almdal
organize feature. 2) Remove the tag functionality at this point 3) Added a callback to handle validating conflicting names (only used by organize at this point. 4) Closes #231
2009-05-20Move the first-admin-login steps out of the user module and into an event ↵Bharat Mediratta
listener in core
2009-05-20Avoid complex inserts in available_tasks() to make admin/maintenanceBharat Mediratta
run faster. This fixes ticket #235. Incidentally, refactor exif and search to use the same patterns overall so that if you understand one, you understand the other and they generally use the same strings for localization.
2009-05-20Avoid doing an expensive insert in available_tasks(). Partial fix for ↵Bharat Mediratta
ticket #235.
2009-05-20Don't import non-viewable image types (eg: psd). Swap in a brokenBharat Mediratta
image instead so that we at least have a target for comments. Fixes ticket #294
2009-05-19Import album highlights. Fixes ticket #221.Bharat Mediratta
2009-05-19Rolled back r20813 to restore jump to comments, at least for nowChad Kieffer
2009-05-19If there's a missing source image during import, swap in our "brokenBharat Mediratta
image" placeholder and keep on trucking. Oh, and notify the admin. Fixes ticket #287
2009-05-18This takes us the next step closer to providing bulk edit. We stillTim Almdal
can't edit, but we are getting closer :-). This change sets up a framework for modules to contribute edit panels to the organize drawer. Currently implemented General (albums and photos), Sort Order (albums only) and Manage Tags
2009-05-18Get rid of trailing whitespace in security preambleBharat Mediratta
2009-05-18Get rid of trailing whitespace in preambleBharat Mediratta
2009-05-18Update preamble to avoid extra opening php blockBharat Mediratta
2009-05-18Fix security preamblesBharat Mediratta
2009-05-18Add security preambleBharat Mediratta
2009-05-18Move 3rd party PasswordHash library into the "lib" dir forBharat Mediratta
consistency. No 3rd party libs in "libraries", at least for now.
2009-05-18Remove modules/unit_test/views; we don't use themBharat Mediratta
2009-05-18Merged /gallery3/vendor/forge/modified:r20843Bharat Mediratta
Added preamble to all Forge files.
2009-05-18Remove Forge files that we don't useBharat Mediratta
2009-05-18There's a new view for CLI unit test output in the Unit_Test libraryBharat Mediratta
2009-05-18Updated kohana and modules/unit_test to upstream r4356Bharat Mediratta
2009-05-17Skip over empty import modes. Fixes ticket #227Bharat Mediratta
2009-05-14Use ternary operators to tighten up some logicBharat Mediratta
2009-05-14Get rid of the 'View comments on this item' menu option for photos.Bharat Mediratta
It doesn't fit in with the others and as Jakob points out, the scroll wheel on the mouse is perfectly sufficient. I'll leave the icon around, though.
2009-05-13Gee it's May already. Update copyright to 2009.Bharat Mediratta
2009-05-13Create a new "add" permission and require it at the controller levelBharat Mediratta
when adding photos/movies/albums
2009-05-13Set the default transparency to 1 (no transparency at all)Bharat 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-13Allow users to enter multiple tags at once, split by space, semicolonBharat Mediratta
or comma. Fixes ticket #193.
2009-05-13Log password reset attempts. Fixes ticket #251.Bharat Mediratta
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.