summaryrefslogtreecommitdiff
path: root/modules/gallery
AgeCommit message (Collapse)Author
2011-05-18Removing an unused file.Chad Parry
2011-05-18Behave reasonably if the image cannot be resized.Chad Parry
2011-05-18Adding an image representing a broken thumbnail.Chad Parry
This image was derived from the equivalent Gallery2 icon. It uses the same washed-out gray color scheme as the Gallery3 missing_movie icon.
2011-05-18Initialize legal file arrays correctly.Chad Parry
2011-05-18Correction for the merge conflict markers I accidentally committed.Chad Parry
2011-05-18Expand the legal_file events to include separate photo and movie events, and ↵Chad Parry
to support MIME types.
2011-05-18Merge branch 'master' of https://github.com/gallery/gallery3 into rawphotoChad Parry
Conflicts: modules/gallery/helpers/system.php modules/gallery/tests/System_Helper_Test.php
2011-05-06Merge pull request #52 from chadparry/tempnamBharat Mediratta
Fixes #1732
2011-05-05Follow-on to 6f916e49d5b431c2c1961a13d1a61fef8c02d628 -- don't makeBharat Mediratta
database calls if Gallery isn't installed, else we fail to bounce the user to the installer on fresh packages. #1637.
2011-05-04Remove a newline I accidentally introduced.Chad Parry
2011-05-04Simplified the temp_filename implementation and removed the mocks.Chad Parry
2011-05-04Avoid "self::" because Kohana can't override it.Chad Parry
2011-04-30Explain the conditional rename in item::save() with a comment.Chad Parry
2011-04-30Improve the comment explaining why the data_file extension is important.Chad Parry
2011-04-30The data_file field is public, so we don't need to supply an accessor method.Chad Parry
2011-04-30Change the signature of system::tempnam to something more appropriate for ↵Chad Parry
Gallery.
2011-04-30Create a tempnam substitute that safely creates files with a given extension.Chad Parry
2011-04-30Change the signature of system::tempnam to something more appropriate for ↵Chad Parry
Gallery.
2011-04-30Change the name of the extensions helper to legal_file.Chad Parry
2011-04-30Change the name of the extensions helper to legal_file.Chad Parry
2011-04-27Remove a newline at the end of the file that I accidentally introduced.Chad Parry
2011-04-27Merge branch 'master' of https://github.com/gallery/gallery3 into rawphotoChad Parry
2011-04-27Move the extensions helpers out of the Kohana system directory and into ↵Chad Parry
their own Gallery Extensions class.
2011-04-26Stop using Pagination() and instead use $theme->pager() in views.Bharat Mediratta
Move the pager() function up to Gallery_View and replace themes/admin_wind/views/pager.html.php (Pagination based) with a modified version from the wind theme in themes/admin_wind/views/paginator.html.php. Fixes #1718.
2011-04-25Move random::string() to be test::random_string() and have it return aBharat Mediratta
random string of any length. Also introduce test::lorem_ipsum() and use that in places where we want strings of words. Fixes #1713.
2011-04-25Fix a bug introduced in 526859d9605d137ebe053ecbd80f46ca6a331194 whereBharat Mediratta
we changed the behavior of the slug code and included the file extension, not just the name. This broke Item_Model_Test::move_photo_with_conflicting_target_gets_uniqified_test so yay for unit tests! #1668
2011-04-25Update test golden files.Bharat Mediratta
2011-04-25Add appropriate preamble. #1696, #1698Bharat Mediratta
2011-04-24Don't put the Admin > Theme Options Save button in a fieldset.Chad Kieffer
2011-04-24Third times the charm. Rethink unordered lists and bullets. Revert to ↵Chad Kieffer
turning them off by default and provide a new class, g-text, to define a list or a section of text as needing to display bullets.
2011-04-24Merge branch 'master' of https://github.com/gallery/gallery3 into rawphotoChad Parry
2011-04-24Expose the data file field.Chad Parry
2011-04-24Don't assign to the item->name field if the name is unchanged, because the ↵Chad Parry
save method will crash.
2011-04-23Preserve old data files long enough for them to be available to event handlers.Chad Parry
2011-04-23Create a tempnam substitute that safely creates files with a given extension.Chad Parry
2011-04-23Revert 0235c2062e9d980a4778c4b22678238c525e1cd7 and instead apply the fix fromBharat Mediratta
iptox.net listed here: http://gallery.menalto.com/node/98768#comment-372398 Fixes for #1681, #1625
2011-04-23Support data files that change their extension and MIME type.Chad Parry
2011-04-23Resolve an infinite recursion that happens when the path caches are updated ↵Chad Parry
during saving.
2011-04-23Merge branch 'master' of github.com:gallery/gallery3Bharat Mediratta
2011-04-23Partially revert the CSS change in 76a7ad3161be0994d7ba98e9dff9b317b2430bb3Bharat Mediratta
to center the "Select..." button because it was causing the SWF object to vanish in Firefox. #1638.
2011-04-23Set the width of the information column to 60px to prevent icon wrapTim Almdal
2011-04-23Oops, fix broken codex urls. For #1698.Bharat Mediratta
2011-04-23Merge branch 'master' of github.com:gallery/gallery3Bharat Mediratta
2011-04-23module.info and theme.info files now support author name, author url,Bharat Mediratta
info url and discussion url fields. Those fields show up in the Admin > Modules and Admin > Appearance > Theme Choice pages. All official modules and themes updated to contain these values. Fixes #1696, #1698.
2011-04-23Fix for ticket #1699. Make the link to return to the gallery installation ↵Tim Almdal
clearer.
2011-04-23Merge branch 'upgrade_flowplayer' of git://github.com/alindeman/gallery3 ↵Bharat Mediratta
into andy
2011-04-23Add iPad/iPhone support for video playbackAndy Lindeman
* Resolves #1634
2011-04-23Merge branch 'alindeman/1628' of git://github.com/alindeman/gallery3 into andyBharat Mediratta
2011-04-23Use an absolute url for the upgrader link. Also, clear the upgrade_nowBharat Mediratta
site status message every time we go to Admin > Modules. Fixes #1695.
2011-04-23Set the default value for gallery.timezone to null so that each install usesBharat Mediratta
date_default_timezone_get() in modules/gallery/config/locale.php but it's still overrideable in Admin > Settings > Advanced. Follow on fix for #1637.