summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-02-23#2012 - Clean up gallery.in_place_edit.js.shadlaws
- removed extend similar to previous jQuery updates (doesn't work the same with jQuery 1.4+)
2013-02-22Automated update of .build_number to 359 for branch masterAutomatic Build Number Updater
Last update: 2a6896e2a51833f45cd48bca0b5048cc9633c9bd (3 commits ago)
2013-02-23Merge branch 'master' of github.com:gallery/gallery3Bharat Mediratta
2013-02-23Merge branch 'jquery_190'Bharat Mediratta
2013-02-22Automated update of .build_number to 358 for branch masterAutomatic Build Number Updater
Last update: 2a6896e2a51833f45cd48bca0b5048cc9633c9bd (1 commits ago)
2013-02-20Merge pull request #155 from shadlaws/fix_2008Bharat Mediratta
#2008 - Add warnings if some active modules are obsolete.
2013-02-20#2008 - Add warnings if some active modules are obsolete.shadlaws
- added module::get_obsolete_modules_message function - put message on admin/dashboard - put message on admin/modules - put message on upgrader - updated unit test golden file xss_data
2013-02-18Automated update of .build_number to 357 for branch masterAutomatic Build Number Updater
Last update: 12d68b89feea10855ce4c779f2afb543e40f1c21 (1 commits ago)
2013-02-18Merge pull request #154 from shadlaws/masterBharat Mediratta
Follow-on to fd0051dab7258c817ff01877bd4324530ce79398 for #2006.
2013-02-18Follow-on to fd0051dab7258c817ff01877bd4324530ce79398 for #2006.shadlaws
- fix unit tests for watermarks, which check for deleted files.
2013-02-18Automated update of .build_number to 356 for branch masterAutomatic Build Number Updater
Last update: f12aaf3c345fcce39fdbe721c896c03e3b429e58 (1 commits ago)
2013-02-18Fix up some tests:Bharat Mediratta
- unlink copied files because they confused File_Structure_Test - update golden files
2013-02-18Automated update of .build_number to 355 for branch masterAutomatic Build Number Updater
Last update: e950d2f4ef52b68e1ccf1cec2e896a916af5e571 (1 commits ago)
2013-02-18Merge pull request #150 from shadlaws/fix_zend_guard_loader_issuesBharat Mediratta
#1749, 1754, 1901 - Eliminate incompatibility with Zend Guard Loader.
2013-02-18#1749, 1754, 1901 - Eliminate incompatibility with Zend Guard Loader.shadlaws
- added MY_Kohana to provide wrapper for auto_load(), which loads dummy class when none found. - revised Bootstrap to load MY_Kohana. This is based on the patch described here: http://blog.teatime.com.tw/1/post/403
2013-02-18Merge branch 'jquery_190' of github.com:gallery/gallery3 into jquery_190Bharat Mediratta
2013-02-18Automated update of .build_number to 354 for branch masterAutomatic Build Number Updater
Last update: afa61f9d0d551bc2a0c4fa903eb3f55742720c8d (1 commits ago)
2013-02-18Merge pull request #149 from shadlaws/fix_2007Bharat Mediratta
#2007 - Change search box text when only looking in the current album.
2013-02-18Merge branch 'master' into jquery_190Bharat Mediratta
2013-02-18Merge pull request #153 from shadlaws/jquery_autocomplete_compatBharat Mediratta
Moved autocomplete CSS to gallery.css to ensure it works for all themes (incl. admin_wind)
2013-02-18Merge pull request #152 from shadlaws/jquery_password_strengthBharat Mediratta
Password strength indicator fixed for new jQuery. Also cleaned up formatting.
2013-02-18Merge pull request #151 from shadlaws/jquery_context_menusBharat Mediratta
Context menus are fixed!
2013-02-18#2007 - Change search box text when only looking in the current album.shadlaws
- search.html.php - updated to use new labels. - search_link.html.php - updated to use new labels. Moved code that determines current album to top, then used it for both the new label and the hidden album input. Resulting form code looks more symmetric to search.html.php.
2013-02-18Moved autocomplete CSS to gallery.css to ensure it works for all themes ↵shadlaws
(including admin_wind).
2013-02-18Password strength indicator fixed for new jQuery. Also cleaned up formatting.shadlaws
2013-02-18Context menus are fixed! This should be fully compatible with older themesshadlaws
since only gallery.common.js is modified. Now that I understand the problem and the fix, I'm not sure I can explain why it *used* to work with older jQuery...
2013-02-17Automated update of .build_number to 353 for branch masterAutomatic Build Number Updater
Last update: 87d20c63af02ae573853da2cb82d7323a56677b5 (1 commits ago)
2013-02-17Merge pull request #148 from shadlaws/fix_2006Bharat Mediratta
#2006 - Add system::mark_file_for_delete API to delete files at shutdown.
2013-02-17#2006 - Add system::mark_file_for_delete API to delete files at shutdown.shadlaws
- added system::mark_file_for_delete to be called to mark a file - added system::delete_marked_files to be called at shutdown to delete the list - amended system::temp_filename to, by default, add the temp name to the list - updated a few other places in code where this should be used
2013-02-17Fix autocomplete for admin_g2_import.Bharat Mediratta
2013-02-17Updated for the new jQuery tabs API.Bharat Mediratta
2013-02-17Fix up autocomplete for admin_server_add - found and fixed some bugsBharat Mediratta
in gallery_autocomplete when "multiple" isn't set. Fixed some harmless syntax issues that js2-mode helpfully pointed out.
2013-02-16Merge branch 'master' into jquery_190Bharat Mediratta
2013-02-16Merge pull request #147 from shadlaws/fix_jquery_dialog_20130216Bharat Mediratta
Context menu dialog box problem: better, but still not working.
2013-02-16Automated update of .build_number to 352 for branch masterAutomatic Build Number Updater
Last update: eb5b99abb4fb50df2dc8e8125a4fc49a674bc423 (1 commits ago)
2013-02-16Merge pull request #145 from shadlaws/revert_zend_guard_checkBharat Mediratta
#1749, 1754, 1901 - revert two recent commits that check for Zend Guard code obfuscation.
2013-02-16Context menu dialog box problem: better, but still not working.shadlaws
- removed fake attr settings (possible compatibility issue with newer jQuery) - replaced with extra class - fixed formatting - still doesn't work: addClass works, but hasClass always returns false when function runs again
2013-02-16#1749, 1754, 1901 - revert two recent commits that check for Zend Guard ↵shadlaws
obfuscation level support. This is not the root of the problem for all installs, and can trigger false positives that break previously-working installs... we'll have to find a better way.
2013-02-15Automated update of .build_number to 351 for branch masterAutomatic Build Number Updater
Last update: 9346503c62a14a738dfa2efe24b8831275b73f44 (1 commits ago)
2013-02-15Follow-on to 7bdccade98e76df3a7830bc45bc42321a77c709a to excludeBharat Mediratta
directories for now.
2013-02-15Automated update of .build_number to 350 for branch masterAutomatic Build Number Updater
Last update: c97fe4bcdde3201ca416d61e38cd8afb4503dca2 (1 commits ago)
2013-02-15Follow-on to 7bdccade98e76df3a7830bc45bc42321a77c709a - point out that there'sBharat Mediratta
duplicated code in gallery_event.
2013-02-15Automated update of .build_number to 349 for branch masterAutomatic Build Number Updater
Last update: 5b6c138da1e53e93e4de8079885fcef29d12e673 (4 commits ago)
2013-02-15Merge branch 'master' of github.com:gallery/gallery3Bharat Mediratta
2013-02-15Every 500th request prune a single old file from var/tmp and var/logs.Bharat Mediratta
Might not be aggressive enough. Fixes #2005.
2013-02-15Merge pull request #144 from shadlaws/jquery_dialogsBharat Mediratta
Jquery dialogs
2013-02-15Fixed formatting in gallery.dialog.js (no functional changes).shadlaws
2013-02-15Dialog sizing, titles, and z-index. This should ensure the small <500px dialogsshadlaws
are correct, all titles are correctly sized, and the dialog boxes go to the top for older themes, too.
2013-02-15Automated update of .build_number to 348 for branch masterAutomatic Build Number Updater
Last update: 5b6c138da1e53e93e4de8079885fcef29d12e673 (2 commits ago)
2013-02-15Create an empty and secure gallery3/bin directory for use with the newBharat Mediratta
system::find_binary code. Fixes #2004.