summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
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-13Exclude the root album from the "dirty images" queryBharat Mediratta
Clean some HTML out of a translated string.
2009-05-13Clean out old dirs before packaging.Bharat Mediratta
2009-05-13Oops, use filename instead of nameBharat 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-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-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-12Allow configurable padding optionsBharat Mediratta
2009-05-11Add has_thumb() public API methodBharat Mediratta
2009-05-11Fix for #226Tim Almdal
2009-05-11Save and Restore the $_POST variable in tests that manipulate it soTim Almdal
other tests don't fail unexpectedly
2009-05-11Avoid using ORM_MPTT::parents() in relative_path() so that we're notBharat Mediratta
calling ORM just to get paths. This is a 10x performance increase.
2009-05-10remove_rule() should mark thumbs/resizes dirty also. Resolves ticket #269, ↵Bharat Mediratta
thanks jstricker!
2009-05-10Beautify the error message.Bharat Mediratta
2009-05-10Warn users if they have suhosin.session.encrypt enabled that it'll break the ↵Bharat Mediratta
uploader
2009-05-10Document why we skip the parent state for the root album.Bharat Mediratta
2009-05-10Disable default sorting for performance. (thanks Romain LE DISEZ)Bharat Mediratta
2009-05-10Change TINYINT(2) to SMALLINT for compliance (thanks Romain LE DISEZ)Bharat Mediratta
2009-05-09Move the thumb_proportion method into Theme_View and set it by defaultTim Almdal
if the page type is album. Leave a todo if we ever set up a theme default API
2009-05-09Force the 'GD Version' key to existBharat Mediratta
2009-05-09Fix for ticket #255Tim Almdal
2nd iteration
2009-05-09Fix for ticket #255Tim Almdal
2009-05-08Don't rely on the file to have an extension (or better: don't throw anBharat Mediratta
error if we can't find one-- just assume its a photo).
2009-05-08Don't do ORM::factory() lookups on non-ints (thanks Romain LE DISEZ)Bharat Mediratta
2009-05-08Fix whitespace issuesBharat Mediratta
2009-05-08Use lower-case aliases for greater portability (thanks Romain LE DISEZ)Bharat Mediratta
2009-05-07Allow sorting by Capture Date.Bharat Mediratta
2009-05-07Grab photo capture date and captions from EXIF/IPTC data.Bharat Mediratta
- Add a "captured" column to the items table. - Pull the DateTime EXIF field and put it into the captured column - Pull the Caption EXIF & IPTC fields and put them into the description field if there was not already a value there
2009-05-07Don't throw up a warning if we can't detect whether or not the logs dir is ↵Bharat Mediratta
writable.
2009-05-06Fix for ticket #72Tim Almdal
2009-05-06Show the 'activate gd' button even when there's a warning about missing rotationBharat Mediratta
2009-05-06Usability update: include an "Activate Toolkit Name" button with available ↵Chad Kieffer
toolkits
2009-05-03Don't try to make a new photo the album cover unless we can edit the parent ↵Bharat Mediratta
album
2009-05-02Remove some unnecessary blank lines.Bharat Mediratta
2009-05-02Mark functions as staticBharat Mediratta
2009-05-02Revert r20668; if we call our helper 'gallery' then it interferes with ↵Bharat Mediratta
g2_import since it uses the Gallery2 embed interface which loads up G2's Gallery class as well. Grumble.
2009-05-02Rename core helper to gallery helper to indicate that it's more of an ↵Bharat Mediratta
app-wide helper. 'core' doesn't make as much sense
2009-05-02Create item helper and move move_item(), remove_album_cover() andBharat Mediratta
make_album_cover() functions into it.
2009-05-02Move make_album_cover and remove_album_cover out of Item_Model andBharat Mediratta
into the core helper. Clean up interactions so that when we remove an album cover we pick a new one, or clean out the old album cover if there are no other choices.
2009-05-02Clean up API to be organized around the functionality it provides, not the ↵Bharat Mediratta
feature its provided for.
2009-05-01Forgot these when i created the make_album_cover methodTim Almdal