summaryrefslogtreecommitdiff
path: root/admin_media.php
AgeCommit message (Collapse)AuthorFilesLines
2012-10-24Refactor media handling - move logic for finding random media to the random ↵fisharebest1-1/+1
media block itself, and use SQL for better performance on sites with a small percentage of visible media objects.
2012-10-21Simplify media handling - the admin page now shows thumbnails that only ↵fisharebest1-4/+10
exist in the protected directory
2012-10-21Simplify media handling - the options USE_MEDIA_FIREWALL, ↵fisharebest1-17/+11
MEDIA_FIREWALL_THUMBS and MEDIA_EXTERNAL are now always true.
2012-09-14Assume PHP time is the same as MySQL time. Both should use the same ↵fisharebest1-3/+3
underlying OS function. Saves a DB query. Only call time() once. For consistency, and for a very minor performance tweak.
2012-09-14Performance: fetch all the wt_site_setting values in one query.fisharebest1-2/+2
2012-08-26After we have sent the headers (and closed the session), it is no longer ↵fisharebest1-3/+2
possible to update $_SESSION. Therefore the code that tries to remember the latest "upload directory" cannot work. A better solution may be to use wt_user_setting. This will need a little extra code/validation - e.g. what happens when the previously saved folder no longer exists.
2012-07-09Remove old/unused code relating to JS menus. Also fixes #1016225 - fisharebest1-4/+4
change flags not working in admin_places, which is caused by a conflicting function name - change_icon()
2012-07-07Tidy up the "showchanges()" logic. The option to hide/show changes was ↵fisharebest1-4/+0
removed a very long time ago.
2012-06-16Defer loading of external javascript (and most inline javascript) to the ↵fisharebest1-5/+3
bottom of the page. This improves responsiveness, as the page can be rendered before the scripts are parsed.
2012-04-29Bug #990706 - formatting delete icon in media adminNigel Osborne1-14/+14
2012-04-26add lightbox init function to module classŁukasz Wilenski1-1/+2
2012-04-07Missing "Delete" icon from admin-media folder listNigel Osborne1-2/+2
2012-04-06Add JavaScript using the controller, so we can defer loading until the end ↵fisharebest1-12/+0
of the page
2012-04-06Move repeated JavaScript code to webtrees.jsfisharebest1-5/+0
2012-03-26Replace $WT_IMAGES array of images with CSS.fisharebest1-3/+1
2012-03-24Replace $WT_IMAGES array of images with CSS.fisharebest1-3/+0
2012-02-29Use HTML5 markup instead of PrintReady(), hasRTLText(), utf8_direction(), ↵fisharebest1-27/+22
etc. The browser will do a much faster and better job than we can. Unfortunately, only Webkit supports this at the moment. Presto and Gecko should support it soon. Trident support is unknown.
2012-02-13Provide better sizes for popup windows.fisharebest1-4/+4
2012-02-01#924582 - Correct read/write/execute permissionsfisharebest1-1/+1
2012-01-18Popup windows do not need to hard-code the session-ID in the URL. This is ↵fisharebest1-1/+1
probably very old code for use with cookie-free logins.
2012-01-16#909637 - Can't move media to/from protected directory on windows systemfisharebest1-3/+3
2011-12-12HTML validation - use html5-style for self-closing tags, instead of xhtml-stylefisharebest1-63/+63
2011-12-11fix bad linkfisharebest1-1/+1
2011-12-11fix bad linkŁukasz Wilenski1-2/+2
2011-11-23I18N: move datatables translations to the same placefisharebest1-14/+1
2011-11-21I18N: Multimedia -> Mediafisharebest1-1/+1
2011-11-19Remove classes .rtl and .lrt - these exist to correct the alignment when we ↵fisharebest1-15/+15
apply "center" at a parent element. We have now removed the "center", and no longer need this markup.
2011-11-18#739079 - Help text 1481 on upload of media files inaccuratfisharebest1-1/+1
2011-11-14Use round brackets () instead of square brackets []. Round brackets are ↵fisharebest1-12/+12
used to indicate extra information. Square brackets are used to indicate something that is missing.
2011-11-11Use consistent style for <a href="#" onclick="foo();"> the various ↵fisharebest1-3/+3
combinations of javascript:XXX are non-standard, and cause problems with some browsers.
2011-11-05(part). (1) Only load datatables.js on pages that use it. (2) move ↵fisharebest1-29/+30
JavaScript to end of page
2011-11-05Implement "fluid" interface for controller - allows requests to be chained.fisharebest1-2/+3
2011-11-05Major MVC refactoring. Every page now has a controller.fisharebest1-10/+7
2011-10-30Change "Search" to "Filter" on all lists, to avoid confusion.Nigel Osborne1-2/+1
https://bugs.launchpad.net/webtrees/+bug/883521
2011-10-28Make datatables header/footer in admin consistent with main lists, and ↵Nigel Osborne1-2/+2
adjust page length options
2011-10-27#836264 - Linkage of media to source is not stored (version 1.2.3)fisharebest1-27/+27
2011-10-26#821562 - Failed to load media in admin after upgradefisharebest1-1/+0
2011-10-06Add initial support for serving static files from a content delivery network.fisharebest1-1/+1
2011-09-27Use prefered terminology in new messages. http://wiki.webtrees.net/Terminologyfisharebest1-4/+4
2011-09-07Remove the "enable multimedia" option. Multimedia is always enabled. Add a ↵fisharebest1-12/+2
new configuration option to restrict who can upload new media files.
2011-07-05XHTML validation <img border="none"> is not valid. In any case the border ↵fisharebest1-1/+1
is set with CSS
2011-06-15Update the WT_Menu constructor to include the menu ID. Most menu items will ↵fisharebest1-3/+3
have one.
2011-06-14bug 796841 - better error message when online editing is disabledLarry Meaney1-5/+20
2011-06-11Lightbox module: stop loading config everywhere - just where it is used.fisharebest1-1/+0
2011-06-10I18N - use consistent markup for "label: value"fisharebest1-1/+1
2011-06-09I18N: Improve English texts. Refer to sort options consistently. Remove ↵fisharebest1-3/+3
"SHOW_MEDIA_FILENAME" configuration option, and use standardised behaviour.
2011-06-09I18N: Improve English texts. (Multi-)media items => "Media objects"fisharebest1-1/+1
2011-06-09Remove the option to hide/show pending changes. The option didn't work ↵fisharebest1-1/+1
properly (it wasn't "sticky"), wasn't applied consistently, and was rarely used.
2011-06-03Remove pointless / circular help textfisharebest1-1/+1
2011-05-23bug 786618 - undefined variable in admin_media.php when filter returns no ↵Larry Meaney1-1/+1
results