plugins/SpecialAdmin.php
2011-09-04 Dan Fuhry SECURITY: Various security enhancements to password resets. They are now rate-limited by username and IP, and it is possible to disable username autofill for guests.
2010-08-04 Dan Fuhry Fixed no plugins showing up in sidebar create block page
2010-07-31 Dan Fuhry Fixed theme not being loaded in Admin:EditSidebar
2010-07-30 Dan Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
2010-05-17 Dan Added the ability to trust XFF (X-Forwarded-For) headers.
2010-05-03 Dan Added a box on Admin:UploadConfig showing the value of upload_max_filesize.
2010-05-01 Dan Fixed typo in that, the parameter that was supposed to go to getConfig was going to htmlspecialchars()
2010-05-01 Dan Added an ajax auto check for the path to ImageMagick in Admin:UploadConfig
2010-03-29 Dan Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
2010-03-29 Dan Introduced configurability for gzip compression. Fixes issue 18.
2009-12-19 Dan Logs: Fully integrated an author_uid column. Logs are now linked by user ID instead of just username, so they survive username changes better. Database is changed. Fixes issue 6.
2009-12-17 Dan ACP: Added lockout management feature
2009-10-01 Dan Fixed (more) output buffering bugs in Special:EditSidebar
2009-09-26 Dan A bit of refinement and consistency to "Powered by Enano" link and associated documentation
2009-09-25 Dan Whoops, it's setHook(), not getHook() (Special:Administration JS core)
2009-09-20 Dan Admin panel: added collapsible tables under GeneralConfig, with room for support on other pages.
2009-08-22 Dan A bit of shuffling around code related to determining the page title from the URL. It's done in common now, and $paths becomes more of an information repository rather than an information gatherer. Note: This BREAKS $paths->fullpage/$paths->getParam() in *_preloader!
2009-08-21 Dan Sidebar editor: fixed ob_end_clean() warning
2009-08-21 Dan Fixed some upgrade bugs; added support for choosing one's own date/time formats; rebrand as 1.1.7
2009-07-18 Dan Admin: query string is now preserved on redirect to login
2009-07-12 Dan Here we go, preload_js() officially added to admin panel. Pray with me.
2009-06-16 Dan Added support for preloading javascript libs ($template->preload_js()). Updated admin theme and Tigra Tree Menu to support this + JS_{HEADER,FOOTER} variables.
2009-05-29 Dan Fixed lack of default value in main page field on admin panel
2009-05-27 Dan Fixed a PHP warning in Admin:GeneralConfig default theme selection
2009-05-15 Dan GeneralConfig: Fixed failure to import $cache during save
2009-05-11 Dan Fixed a couple bugs with admin avatar settings and getConfig() return types
2009-05-10 Dan Added register_special_page() function, to make it much easier to create special pages. Also, rewrote Special:Memberlist to use more efficient fetch method and not use an unbuffered whole-table query.
2009-05-05 Dan Whoops, last commit broke admin stuff.
2009-05-05 Dan Made some more changes to the way namespaces are handled, for optimization purposes. This is a bit of a structural reorganization: $paths->pages is obsoleted in its entirety; calculating page existence and metadata is now the job of the Namespace_* backend class. There are many things in PageProcessor that should be reorganized, and page actions in general should really be rethought. This is probably the beginning of a long process that will be taking place over the course of the betas.
2009-04-19 Dan Fixed path to wrong line image in admin CP nav tree
2009-04-15 Dan New, beautiful, rethought Admin:Home. No, really, you'll like it.
2009-04-12 Dan When changing namespace of a File: page, associated files are now deleted. Also fixed some issues with image scaling.
2009-03-22 Dan Major revamp to sidebar editor. Some behavioral changes as well as being based on jQuery UI Sortables. Creation interface remains the same, but better strings merged in from stable.
2009-02-16 Dan Major redesign of rendering pipeline that separates pages saved with MCE from pages saved with the plaintext editor (full description in long commit message)
2009-01-26 Dan Added a few hooks to Admin:GeneralConfig (didn't I do this already?)
2009-01-26 Dan Replaced integer checks that used preg_match() to use ctype_digit() instead
2009-01-26 Dan Added (very basic) spam filtering plugin support. Plugins can mark a message as spam by hooking into the spam check API, which is documented in functions.php. No spam checking functionality is built-in.
2009-01-12 Dan Special:Administration: fixed 404 on several Tigra tree menu images
2009-01-04 Dan Two big commits in one day I know, but redid password storage to use HMAC-SHA1. Consolidated much AES processing to three core methods in session that should handle everything automagically. Installation works; upgrades should. Rebranded as 1.1.6.
2008-12-24 Dan Small speed optimization to admin panel loader
2008-12-23 Dan Updated URLs and strings to point to the new server (ktulu)
2008-11-15 Dan Added ability to have alternate main page for members
2008-11-09 Dan Added config option to grant userpage rights to new users (defaults to on, as it was hardcoded on before)
2008-10-18 Dan Fixed SpecialAdmin setting theme and style way too late (thanks Andrew Kohnken)
2008-08-24 Dan Fixed reference to $() which should be $dynano() in SpecialAdmin
2008-08-23 Dan Fixed minor (non-XSS) sanitization issue for main_page field in Admin:GeneralConfig
2008-08-12 Dan Added customizable parameters for session length and the long-missing "remember me" option (or rather, the ability to turn it off and make sessions temporary)
2008-08-12 Dan Rebranded as 1.1.5 (Caoineag alpha 5) and fixed a couple bugs related to CDN support in template_nodb and installerUI. Updated readme.
2008-08-12 Dan Fixed a couple bugs in the check-for-updates code.
2008-07-22 Dan Fixed installer path check in Admin:Home; made admin-menu more compatible with componentized JS
2008-07-20 Dan Added CDN support: a URL to a CDN can now be specified and Enano will load all images, CSS, and javascript (except TinyMCE) from that server
2008-07-10 Dan Added Gravatar support! And it's really configurable too.
2008-07-07 Dan First stab at cache management backend. Everything seems to have been tested and working so far, but a number of things require a more specialized cache and can't go through the framework (e.g. user ranks which use references to map usernames to user IDs)
2008-07-07 Dan First draft of new CacheManager admin page. Backend is yet to be implemented.
2008-07-07 Dan Added ability to hide or show sidebar blocks based on a {restrict} or {hideif} conditional in the sidebar script
2008-07-03 Dan More optimization work. Moved special page init functions to common instead of common_post hook. Allowed paths to cache page metadata on filesystem. Phased out the redundancy in $paths->pages that paired a number with every urlname as foreach loops are allowed now (and have been for some time). Fixed missing includes for several functions. Rewrote str_replace_once to be a lot more efficient.
2008-06-30 Dan Several optimization changes including getting rid of a few eval()s. Added placeholder functions for the theme manager, which should be working now
2008-06-25 Dan Majorly reworked Javascript runtime stuff to use on-demand loading.
2008-06-22 Dan Initial progress towards converting auto-completion framework to Spry. Not currently in a very working state.
2008-06-15 Dan Renamed some functions (that were new in this release anyway) due to compatibility broken with PunBB bridge
less more (0) -100 -60 tip