summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-05-20Add a cache buster to thumbnail urls, using the item update time.Bharat Mediratta
Fixes ticket #121.
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-20Add a default image quality level. There's no UI for it, except AdminBharat Mediratta
> Settings > Advanced. The default is 75.
2009-05-20Replace the old "add photo" form with the simple uploader version inBharat Mediratta
the "add a photo" quick menu option.
2009-05-20Fix a typo; swapped uninstalled and installed.Bharat Mediratta
2009-05-19Import album highlights. Fixes ticket #221.Bharat Mediratta
2009-05-19Collate install/uninstall messages. Fixes ticket #288Bharat Mediratta
2009-05-19Rolled back r20813 to restore jump to comments, at least for nowChad Kieffer
2009-05-19Added the nice new icons for the view buttons. No need to have them in a ↵Chad Kieffer
jQuery UI button, they stand well on their own. Thx to Ben Dunkle!
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-18Turn on IN_PRODUCTION mode now across the board. Create our own errorBharat Mediratta
page where we'll show whatever information is useful. Get rid of the IN_PRODUCTION hack in MY_View.php that we no longer need.
2009-05-18Update filtersBharat Mediratta
2009-05-18update PasswordHash pathBharat Mediratta
2009-05-18verify csrf when installing/uninstalling modulesBharat Mediratta
2009-05-18Clean up tmp when packagingBharat Mediratta
2009-05-18Restructure the code preamble checking tests to check all PHP files,Bharat Mediratta
not just the ones that we created ourselves.
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-18Define KOHANA as the front controller .php file.Bharat Mediratta
2009-05-18Add preamble. http://dev.kohanaphp.com/issues/1661Bharat 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-18Fix preambleBharat Mediratta
2009-05-17Update preamble test to list all broken files at onceBharat Mediratta
2009-05-17Update tests to reflect the new code that allows changing file and directory ↵Bharat Mediratta
names
2009-05-17Make our dependency on json_encode() an explicit requirementBharat Mediratta
2009-05-17Define TMPPATHBharat Mediratta
2009-05-17Add var/tmpBharat Mediratta
2009-05-17Rollback some of the changes from r20822. But still pull theTim Almdal
determination of the function name and arguments to outside the module loop
2009-05-17Skip over empty import modes. Fixes ticket #227Bharat Mediratta
2009-05-16Silently drop trailing periods in the album name so that we don't haveBharat Mediratta
to throw up an error message (since we don't accept them in album names).
2009-05-16Don't allow photos, albums or movies to have a trailing period to avoidBharat Mediratta
security problems. Ref http://dev.kohanaphp.com/issues/684). This plus r20823 resolves ticket #248.
2009-05-16Don't allow albums/photos/movies to end in "." because it risksBharat Mediratta
securit issues (and so Kohana won't route them, see http://dev.kohanaphp.com/issues/684). Partial fix for ticket #248.
2009-05-16Modify the module::event method to accept 2 additional parametersTim Almdal
instead of a variable list and then pass both of these parameters by reference to the event handlers. 2 parameters cover 100% of our existing event calls.
2009-05-16Support renaming albums, photos and movies.Bharat Mediratta
Fixes ticket #278.
2009-05-16Don't allow the various ::create() methods to take "/" in the name.Bharat Mediratta
2009-05-16Item_Model::rename() cannot accept new filenames that contain "/"Bharat Mediratta
2009-05-16Implement Item_Model::rename(), with unit tests.Bharat Mediratta
2009-05-16Rename the theme menu options under the Appearance menu.Bharat Mediratta
2009-05-15Only cache rows if they are objects, which assumes also that they are ↵Bharat Mediratta
instances of ORM.