summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-10Change wording to avoid breaking File_Structure_TestBharat Mediratta
2009-05-10Use a clearer query syntax for deleting extra search and exif records ↵Bharat Mediratta
(thanks Romain LE DISEZ)
2009-05-10Make the code that copies g2 derivatives more robust if the g2 data file ↵Bharat Mediratta
doesn't exist.
2009-05-10Fix a bug where when we copied over the g2 thumb or resize, we weren'tBharat Mediratta
saving its dimensions to the item. Also, import originationTimestamp as captured field.
2009-05-10Fix a copy/paste typo.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-09Remove quotes and correct typoTim Almdal
2009-05-09Sigh.. fix it the *right* way.Bharat Mediratta
2009-05-09Oops, add in a missing ] (thanks kb7sei!)Bharat Mediratta
2009-05-09Don't try to put g2_stats and g2_size into the view if g2 is not initialized.Bharat Mediratta
2009-05-09Usability and performance improvementsBharat Mediratta
Significantly speed up the process by copying Gallery2 thumbnails and resizes wherever possible instead of regenerating them. This requires us to figure out the dimensions of the original G2 derivative and make sure that it matches in some reasonable way. To allow users to take advantage of this, calculate the optimal thumb and resize size to set in G3 to match what was used in G2. While we're at it, give the user some idea of how much data is available in G2 to import.
2009-05-09Fix indentation.Bharat Mediratta
2009-05-09Apply status message display effect to admin theme. Use double rather than ↵Chad Kieffer
single quotes in JS.
2009-05-09Force the 'GD Version' key to existBharat Mediratta
2009-05-09Highlight status messages on load, fade them out after a few seconds. Make ↵Chad Kieffer
success green brighter.
2009-05-09Fix for ticket #217Tim Almdal
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 try to use mb_detect_encoding if the module isn't loaded. Not sure if ↵Bharat Mediratta
this is a great solution, but it'll probably cut down on a big class of errors opportunistically
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-07Create a thumbnail stack of selected thumbnails for the organizeTim Almdal
drawer
2009-05-071) Leave an object selected if its clicked.Tim Almdal
2) And a 1em left margin to provide more spacing, so the lasso is less inclusive
2009-05-07Don't try to use the exif/iptc values if we couldn't extract them cleanly.Bharat Mediratta
2009-05-07Improve the selection/drag handling so that drag of a single itemTim Almdal
doesn't have to be selected first
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-07Add debug log strings with the G2 stack trace when there's a failure in a g2 ↵Bharat Mediratta
call.
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-061) Improved selection processing.Tim Almdal
2) Drawer closes if no images or albums are selected
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-06Don't fail when trying to import site admin group. Resolves ticket #249Bharat Mediratta
2009-05-06Usability update: include an "Activate Toolkit Name" button with available ↵Chad Kieffer
toolkits
2009-05-05Return an array from available_tasks() when unconfigured.Bharat Mediratta
Fixes ticket #247.
2009-05-05Detect input encodings from EXIF/IPTC data and convert to utf-8 asBharat Mediratta
appropriate. This allows us to switch the exif value column back to varchar and improves the way that we deal with non-utf8 data in our embedded EXIF/IPTC data.
2009-05-03Updated for alpha 4Bharat Mediratta
2009-05-03Don't try to make a new photo the album cover unless we can edit the parent ↵Bharat Mediratta
album
2009-05-02Cache the entry in our in-memory map when we map a g2 item to a g3Bharat Mediratta
item in the database. This fixes the problem that the import fails the first time around because the various groups are mapped in the db but aren't available in the request.
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-02Remove direct call to item_before_delete since r20647 moved it into Item_ModelBharat Mediratta