summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2009-05-28Protect get() against missing records.Bharat Mediratta
2009-05-28Load the gallery module in load_modules(), but put it at the end ofBharat Mediratta
the module list (to match its location in the cascading filesystem)
2009-05-28Reset the cascading file path properly before reinstalling.Bharat Mediratta
2009-05-28Print out exception traces for most errorsBharat Mediratta
2009-05-28Force modules/gallery to be at the end of the module load path, soBharat Mediratta
that all other modules can override the core code.
2009-05-28Prepend all code files we copy from Gallery2 and put into var with ourBharat Mediratta
code preamble for security. Update File_Structure_Test::code_files_start_with_preamble_test to check all the php files in var, too.
2009-05-28Update tests to reflect cache-buster param on thumbnail urls.Bharat Mediratta
2009-05-28Rename Core_Installer_Test -> Gallery_Installer_Test to match theBharat Mediratta
change from application -> modules/gallery.
2009-05-28Get rid of entire gallery2 session id param from the urls that we use to alertBharat Mediratta
users about images that failed to import.
2009-05-28Flush the model cache as appropriate every time we call ORM::save().Bharat Mediratta
Fixes ticket #301
2009-05-28Label the tag input field according to the item type.Bharat Mediratta
Fixes ticket #176.
2009-05-28Fix broken html::script() and url::file() references to the newlyBharat Mediratta
moved gallery module.
2009-05-28Remove unnecessary (and broken) <form/>Bharat Mediratta
2009-05-27Commit an egregious hack to work around the fact that both Gallery 2Bharat Mediratta
and Gallery 3 have a class named Gallery. Clone a subset of the Gallery 2 files and munge them so that we can rename the Galery 2 version to G2_Gallery. Also, update the disclaimer in Admin > Settings > Gallery 2 Import.
2009-05-27Fix up another place where we were incorrectly referencing the gallery module.Bharat Mediratta
2009-05-27Normalize root update time in the installerBharat Mediratta
Rebuild install.sql
2009-05-27Fix a typo in the class nameBharat Mediratta
2009-05-27Convert a few more references of APPPATH to MODPATH/galleryBharat Mediratta
2009-05-27Show the scaffolding link if the controller is around.Bharat Mediratta
2009-05-27Update all references to the core application to now point to theBharat Mediratta
gallery module. This type of mass update is prone to some small bugs.
2009-05-27Restructure things so that the application is now just another module.Bharat Mediratta
Kohana makes this type of transition fairly straightforward in that all controllers/helpers/etc are still located in the cascading filesystem without any extra effort, except that I've temporarily added a hack to force modules/gallery into the module path. Rename what's left of "core" to be "application" so that it conforms more closely to the Kohana standard (basically, just application/config/config.php which is the minimal thing that you need in the application directory) There's still considerable work left to be done here.
2009-05-27Regenerate the session id every time through login::_auth() to avoid session ↵Bharat Mediratta
trapping.
2009-05-27Use a random value for the password reset hash to reduce the chancesBharat Mediratta
that it can be guessed by an attacker.
2009-05-26Updated Forge to r179Bharat Mediratta
2009-05-26Update Kohana to r4357Bharat Mediratta
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