Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-05-30 | Add transparency for overlay in IE 7 and 8 | Chad Kieffer | |
2009-05-30 | gate $can_edit and $can_add on whether or not we have an $item at all | Bharat Mediratta | |
(fixes a bug where search doesn't render because it has no item). | |||
2009-05-30 | White space fixes | Chad Kieffer | |
2009-05-29 | remove scaffolding code | tim almdal | |
2009-05-29 | Use the relative_path_cache to look up items which should be a faster | Bharat Mediratta | |
query than using the level + the components. | |||
2009-05-29 | Don't show "edit permissions" for non-albums. | Bharat Mediratta | |
2009-05-29 | Move credits message into a variable, which can be changed in Admin > | Bharat Mediratta | |
Settings > Advanced. It's stored in the variable as an internationalized string and localized at output time. | |||
2009-05-29 | Require "add" permission to show the add form. | Bharat Mediratta | |
2009-05-29 | Don't show the add photo/album options to users who don't have the | Bharat Mediratta | |
permission. This isn't a security hole, since they can't actually add stuff.. but they can try and fail which is a bad user experience. Also fix it up so that we show the option menu only if there's stuff to show, and cache some of the permissions for performance (which I'm guessing at-- didn't benchmark it). | |||
2009-05-29 | Remove a completed @todo | Bharat Mediratta | |
2009-05-29 | Revert test code inserted in 88a3d43ba9b9377ba6bbe21a4547220ae3a37276 | Bharat Mediratta | |
which showed stack traces to non-admins. | |||
2009-05-29 | Update Kohana to r4374 | Bharat Mediratta | |
2009-05-28 | Restore calls to module::load_modules() after ↵ | Bharat Mediratta | |
install/activate/deactivate/uninstall events. | |||
2009-05-28 | Tweak path slightly | Bharat Mediratta | |
2009-05-28 | Protect get() against missing records. | Bharat Mediratta | |
2009-05-28 | Load the gallery module in load_modules(), but put it at the end of | Bharat Mediratta | |
the module list (to match its location in the cascading filesystem) | |||
2009-05-28 | Reset the cascading file path properly before reinstalling. | Bharat Mediratta | |
2009-05-28 | Print out exception traces for most errors | Bharat Mediratta | |
2009-05-28 | Force modules/gallery to be at the end of the module load path, so | Bharat Mediratta | |
that all other modules can override the core code. | |||
2009-05-28 | Prepend all code files we copy from Gallery2 and put into var with our | Bharat 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-28 | Update tests to reflect cache-buster param on thumbnail urls. | Bharat Mediratta | |
2009-05-28 | Rename Core_Installer_Test -> Gallery_Installer_Test to match the | Bharat Mediratta | |
change from application -> modules/gallery. | |||
2009-05-28 | Get rid of entire gallery2 session id param from the urls that we use to alert | Bharat Mediratta | |
users about images that failed to import. | |||
2009-05-28 | Flush the model cache as appropriate every time we call ORM::save(). | Bharat Mediratta | |
Fixes ticket #301 | |||
2009-05-28 | Label the tag input field according to the item type. | Bharat Mediratta | |
Fixes ticket #176. | |||
2009-05-28 | Fix broken html::script() and url::file() references to the newly | Bharat Mediratta | |
moved gallery module. | |||
2009-05-28 | Remove unnecessary (and broken) <form/> | Bharat Mediratta | |
2009-05-27 | Commit an egregious hack to work around the fact that both Gallery 2 | Bharat 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-27 | Fix up another place where we were incorrectly referencing the gallery module. | Bharat Mediratta | |
2009-05-27 | Normalize root update time in the installer | Bharat Mediratta | |
Rebuild install.sql | |||
2009-05-27 | Fix a typo in the class name | Bharat Mediratta | |
2009-05-27 | Convert a few more references of APPPATH to MODPATH/gallery | Bharat Mediratta | |
2009-05-27 | Show the scaffolding link if the controller is around. | Bharat Mediratta | |
2009-05-27 | Update all references to the core application to now point to the | Bharat Mediratta | |
gallery module. This type of mass update is prone to some small bugs. | |||
2009-05-27 | Restructure 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-27 | Regenerate the session id every time through login::_auth() to avoid session ↵ | Bharat Mediratta | |
trapping. | |||
2009-05-27 | Use a random value for the password reset hash to reduce the chances | Bharat Mediratta | |
that it can be guessed by an attacker. | |||
2009-05-26 | Updated Forge to r179 | Bharat Mediratta | |
2009-05-26 | Update Kohana to r4357 | Bharat Mediratta | |
2009-05-26 | Since organize is now in the preview stage and will probably be | Tim Almdal | |
rewritten by beta2, pull all of its "tenticles" back into itself and out of core or tags module. | |||
2009-05-26 | clean up whitespace errors introduced in last commit | Bharat Mediratta | |
2009-05-26 | Restructure 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-26 | Quick fix for ticket #144. Reapply event handler for delete link gDialog ↵ | Chad Kieffer | |
when group is refreshed. | |||
2009-05-26 | Link to gallery.panel.js from the head, not body. | Chad Kieffer | |
2009-05-26 | Split out re-used JavaScript for common functions (messages, valign), panel ↵ | Chad Kieffer | |
toggle, and forms to external files. | |||
2009-05-26 | White space fixes | Chad Kieffer | |
2009-05-25 | Changed name to username in user admin form labels | Chad Kieffer | |
2009-05-25 | Delete placeholder comments. | Bharat Mediratta | |
2009-05-24 | Use phpass as our hashing mechanism, and check for it first (instead | Bharat Mediratta | |
of checking G1/G2 techniquew first). | |||
2009-05-22 | Implement a basic tag management interface with the organize drawer | Tim Almdal | |