| Age | Commit message (Collapse) | Author |
|
Last update: afa61f9d0d551bc2a0c4fa903eb3f55742720c8d (1 commits ago)
|
|
#2007 - Change search box text when only looking in the current album.
|
|
|
|
Moved autocomplete CSS to gallery.css to ensure it works for all themes (incl. admin_wind)
|
|
Password strength indicator fixed for new jQuery. Also cleaned up formatting.
|
|
Context menus are fixed!
|
|
- 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.
|
|
(including admin_wind).
|
|
|
|
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...
|
|
Last update: 87d20c63af02ae573853da2cb82d7323a56677b5 (1 commits ago)
|
|
#2006 - Add system::mark_file_for_delete API to delete files at shutdown.
|
|
- 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
|
|
|
|
|
|
in gallery_autocomplete when "multiple" isn't set. Fixed some
harmless syntax issues that js2-mode helpfully pointed out.
|
|
|
|
Context menu dialog box problem: better, but still not working.
|
|
Last update: eb5b99abb4fb50df2dc8e8125a4fc49a674bc423 (1 commits ago)
|
|
#1749, 1754, 1901 - revert two recent commits that check for Zend Guard code obfuscation.
|
|
- 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
|
|
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.
|
|
Last update: 9346503c62a14a738dfa2efe24b8831275b73f44 (1 commits ago)
|
|
directories for now.
|
|
Last update: c97fe4bcdde3201ca416d61e38cd8afb4503dca2 (1 commits ago)
|
|
duplicated code in gallery_event.
|
|
Last update: 5b6c138da1e53e93e4de8079885fcef29d12e673 (4 commits ago)
|
|
|
|
Might not be aggressive enough. Fixes #2005.
|
|
Jquery dialogs
|
|
|
|
are correct, all titles are correctly sized, and the dialog boxes go to
the top for older themes, too.
|
|
Last update: 5b6c138da1e53e93e4de8079885fcef29d12e673 (2 commits ago)
|
|
system::find_binary code. Fixes #2004.
|
|
people don't change the name of the directory. Follow-on to
1d7f5e3ab117a6cce8f2a1d3de5e311b74dbee81 for #1935
|
|
|
|
Last update: 6089374891407dda5da27bbceb9aa774004737b6 (1 commits ago)
|
|
will leave the module active in any existing installs that had it
active, but that shouldn't cause any negative impact. Fixes #2002.
|
|
Last update: 21acbbf549f3167d14c89270683ef06746552d75 (1 commits ago)
|
|
#2003 - Add admin/movies screen.
|
|
Added admin/movies screen analogous to the admin/graphics screen so the user can:
- see how FFmpeg is configured (path and version, similar to toolkits in admin/graphics)
- get some instructions on how to install FFmpeg if not found
- change the movie_allow_uploads setting
- ask Gallery to rebuild their movie thumbs
Specifics:
- admin_movies, admin_movies.html (new) - new Movies admin screen
- ffmpeg.png (new) - logo for admin screen
- movie::get_ffmpeg_version (new) - return version number and date of FFmpeg
- form_uploadify.html - change admin message if movie uploads are disabled
- gallery_event::admin_menu - added Movies link to Settings
- xss_data.txt - updated golden file for unit tests
|
|
Dialog centering, sizing, etc. seem to be fixed!
|
|
Updated Themeroller for wind and admin_wind.
|
|
Changing 2 library names back to (less-standardized) original names.
|
|
Last update: 3fa08f54a6cd4741646824b8ed98c14ea2d1633f (1 commits ago)
|
|
Follow-on to b01897af8deaf38d9da627b39168cb296572384f - add debugging message
|
|
Last update: db9810136381a6d74e82be10b4dbe7e4d2e344bf (1 commits ago)
|
|
Fix an issue where siblings() by itself throws an error. The problem is that
Theme_View::siblings() passes a null offset and limit to the callback which
gets passed down to search::search_within_album, which creates its query
in raw SQL and doesn't check for a null offset/limit. We want a reasonable
limit on the size of the set here (and 1000 is probably wayyy too high so
lower that to 100) so amend get_siblings to stop using default parameters
and actually check the inputs.
Author: Bharat Mediratta <bharat@menalto.com>
Date: Sat Feb 9 14:53:34 2013 -0500
Extend siblings callbacks to take a $limit and an $offset for navigating
large sibling sets. Useful for the thumbnav module since we don't want to
iterate a thousand siblings to find the one we care about. Fixes #1999.
|
|
Last update: e5ed05004f005bdccdbf68e199ae2324ad97e895 (1 commits ago)
|
|
Follow-on to 0312d1b071bd4434ddb3f82888b0323da6bf3732 for #1994.
|