summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAge
* plugins.lang.itpolinnia2006-05-07
| | | | | | | added all missing translations for plugins acl, config, plugin, usermanager darcs-hash:20060507160954-57bea-73636f302bdf9ae5ec48242732b6051dea461784.gz
* empty default title for inserted images #770Andreas Gohr2006-05-07
| | | | darcs-hash:20060507165308-7ad00-3526c8c4e5d8c10a8e003068008e2344e94e1739.gz
* metadata hnalding updates, header fixesAndreas Gohr2006-05-07
| | | | | | | | This removes the meta instruction again in favour of the new meta renderer. Most tests work now again, a few tweaks were done on the header handler to render certain headers as it did in earlier versions. darcs-hash:20060507153113-7ad00-bd299fbe1762482c72d109f9bca776f12bcea7c8.gz
* changed all occurances of rename() to io_rename()Andreas Gohr2006-05-07
| | | | darcs-hash:20060507101333-7ad00-e687d797fbee26e0b0bc7741ff8a1af496c101bf.gz
* url fixing in CSS compressor fixed #793Andreas Gohr2006-05-06
| | | | darcs-hash:20060506215440-7ad00-a04d6ebb428816b534b7b3636f050885bc02f266.gz
* admin plugin: fix menu option when auth module doesn't getUserschris2006-05-05
| | | | darcs-hash:20060505000630-9b6ab-eb1add597db261d8d2843435bcfa22ac8f35a6f5.gz
* fix more ';' in config valueschris2006-05-05
| | | | | | a more robust fix is needed, but this should resolve 99.9% of potential problems darcs-hash:20060505000432-9b6ab-273277892e7b7dc978f7622174de38212155f104.gz
* fix changecheck in IE FS#785Andreas Gohr2006-05-01
| | | | darcs-hash:20060430221451-7ad00-9729246270f67bcc955a42727595925e6f53a331.gz
* minor javascript cleanupAndreas Gohr2006-04-30
| | | | darcs-hash:20060430182156-7ad00-1548636dbfaa9fc0b25c26e4121f763a485c2f9c.gz
* metadata enhancementsAndreas Gohr2006-04-30
| | | | | | | | | | | This adds meta data rendering to the indexer process to build missing meta data in the background. p_get_first_heading was adjusted to make use of the new meta data mechanisms A problem with unitialized arrays in p_set_metadata and PHP5 was fixed (I think) darcs-hash:20060430181740-7ad00-8952fa6beb4fadf6b4321627998442d34febfc8d.gz
* config plugin updatechris2006-04-30
| | | | | | | - style correction, change second occurrence of textarea.default to textarea.protected - comment spelling correction darcs-hash:20060430160900-9b6ab-5d2ba348ba00880f79d0874e3128234e0cb696c0.gz
* plugin manager fix, add error suppression operator to touch call.chris2006-04-30
| | | | darcs-hash:20060430153000-9b6ab-0918d41e77e897d3b14c91de822567f8a3007779.gz
* improvements to common plugin i/fchris2006-04-30
| | | | | | | | | | | | update comments to work with DokuWiki's auto generated API docs. slight restructure of configuration functions and comments - loadConfig now loads plugin config settings into $conf['plugin'][<plugin_name>] & $this->conf. These are aliases ensuring only one copy is stored. - readDefaultSettings() reads the plugin's conf/default.php darcs-hash:20060430152308-9b6ab-9ec53e79ce5b07405acb84d19d81df9dd609612e.gz
* danish lang.php of configmanager fixed (caused broken admin page)Anika Henke2006-04-28
| | | | darcs-hash:20060427224105-d5083-505d1230b7d13dfbf1eb6ae1144b7b72313574dc.gz
* removed left over event testing code from main templateAndreas Gohr2006-04-28
| | | | darcs-hash:20060428213851-7ad00-2aebcece3effc9315645cf3164c83f2631a7f2a2.gz
* smart cache-control headers for media fetchBen Coburn2006-04-21
| | | | | | | | | | | | | | | | | | | | | The HTTP Cache-Control header output now respects the Dokuwiki media parameters 'cache', 'recache', and 'nocache'. - cache: cachetime or one hour (which ever is larger) - recache: remaining cachetime + 10 seconds so the newly recached media is used - nocache: no caching Notes: - 'proxy-revalidate' should ensure that public caches always revalidate, this will keep caches from (accidentally) ignoring Dokuwiki's ACL rules. - 'no-transform' should keep media from being modified in transit by caches. Impact: Speeds up page layout/display by browsers when they already have the media in their [memory] cache. For example the 2nd time a page is viewed. This also reduces server load by eliminating most of the overhead needed to return '304 Not Modified' responses each time an image is viewed. darcs-hash:20060421025424-05dcb-23ff26c5cb410bcd166299a840f4c500fa0d112e.gz
* bugfix fetch remote media (recache and nocache)Ben Coburn2006-04-21
| | | | | | | | | | | | | | | | | | | | | | | Fixes a major bug in fetching remote media with 'recache' and improves the efficiency of 'nocache'. Recache: - Used to reload the remote media on EVERY request. - Now it behaves as intended and only reloads the remote media into the Dokuwiki cache every $conf['cachetime'] time. Nocache: - No longer stores remote media in the Dokuwiki cache. - No longer loads, saves, and forwards remote media -- just redirects. - No longer resizes images on the server because the cached results can not be reused. Overall this is faster for Dokuwiki. The bandwidth usage for the 3rd party server is the same (less for Dokuwiki). Page loading should also be faster because data is not being forwarded through Dokuwiki (and the 3rd part server's cache control headers will be respected automatically). darcs-hash:20060421012210-05dcb-a6029baa0fad218ace28e0e3c2f442b1ca645a99.gz
* accesskey tooltip rewritingBen Coburn2006-04-28
| | | | | | | | Does client-side rewriting of accesskey tooltip text so that it will be more OS and browser specific. Dokuwiki should output all accesskey tooltips as [ALT+<key>] because this patch matches on "[ALT+". darcs-hash:20060428015158-05dcb-0102a1b2068c053e81dd21ad3927c78b6c9f349e.gz
* event system revisionchris2006-04-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a major revision of DokuWiki's event system. There are changes to class names, function names, function parameters and their order and event names. For action plugin writers the following changes are important: - <event_name> is no longer signalled, only <event_name>_BEFORE and <event_name>_AFTER. - note the case change for _BEFORE and _AFTER - calling stopPropagation while processing a _BEFORE signal no longer prevents an _AFTER signal. The events _continue value is reset before the _AFTER signal is made. - events have a new readonly property, canPreventDefault. This lets the event handling hook know whether or not the event honours preventDefault calls. - parameters have changed for the register_hook method, parameters are now $event_name, $advise (can be 'BEFORE' or 'AFTER') $object $method $param (this parameter is now optional) - parameter order has changed for the hook event handler callback functions &$event $param (can now be left off) Event names have changed, they are now structured <dokuwiki name>_<event data name>_<action_name or state if no action> DOKUWIKI_START darcs-hash:20060424220152-9b6ab-00e366288f7ec8a85b85dc83694a5f43a07aa082.gz
* Allow styles sheets that apply to "all" mediamtbrains2006-04-17
| | | | darcs-hash:20060417003153-a90f0-4792fd7b946f62d3696b979f8debfa73587d353a.gz
* action pluginschris2006-04-14
| | | | | | | | | | | | | | | | | | | | | | | | This patch adds events and a third plugin type, "action" plugins, to DokuWiki. The patch doesn't include any event signalling, that will be added in later patches. Action plugins are loaded before most Dokuwiki processing takes place and at the same time are given the opportunity to register handlers (or hooks) to receive specific dokuwiki events. Other parts of Dokuwiki (e.g. templates and syntax plugins) can also register handlers to receive events. Any part of Dokuwiki can create and signal events, including templates and plugins. This patch also revises the admin plugin class by making it an extension of a new class, DokuWiki_Plugin. The DokuWiki_Plugin_Action class also extends this new class. Further details of events, their signalling and handling, and of action plugins will be added to wiki.splitbrain.org in due course :-) darcs-hash:20060414193737-9b6ab-f23d3d9b93e4c50a3ad97ced03eabc6c0363650b.gz
* consistent filetype iconsAndreas Gohr2006-04-12
| | | | | | | Now all filetype icons have the same style and work on light and dark backgrounds. A test file was added to lib/images/fileicons/index.php darcs-hash:20060412195703-7ad00-4d31a65788e8da0255ea6e064382595e8ae183ff.gz
* pagetitle as template pagenameBen Coburn2006-04-11
| | | | | | | | Uses the first heading as the page name in the default template if $conf['useheading'] is set. Updates tpl_pagetitle() so that it can return this value. darcs-hash:20060410234311-05dcb-b4636f7c0d8f98658a6097ea9ee4dff1ee2de8b4.gz
* make alphatransparency shadows available to modern browsers onlyAndreas Gohr2006-04-10
| | | | darcs-hash:20060410192459-7ad00-4212125ec31532656030b4d80984f6b45b5cf293.gz
* Bug#680chris2006-04-10
| | | | | | | Update default plugins to ensure they exit immediately if not called from within Dokuwiki darcs-hash:20060409233841-9b6ab-555e4fced756849a5d7b9de6e4aaaea24c6da3ae.gz
* plugin manager update, fix for php warning if all plugins disabledchris2006-04-10
| | | | darcs-hash:20060409232533-9b6ab-13b2065c81b857a73b8e1175c9371978f8f76ab5.gz
* CSS and JS cache-control tweakBen Coburn2006-04-10
| | | | | | | | | | | Tells standards compliant browsers that conditional requests for CSS and JS need only be made once an hour. This should reduce page display latency on some browsers. Originated from the comment in this thread: http://www.freelists.org/archives/dokuwiki/03-2006/msg00590.html darcs-hash:20060410012723-05dcb-eccb42aefe85c9dbb4f35fdf03a9635561cf5710.gz
* spanish language updateAndreas Gohr2006-04-09
| | | | darcs-hash:20060409115740-7ad00-dd6cb62ccd4e0947ccb7566b0c0010eb807585e3.gz
* fix config plugin setting_numeric patternBen Coburn2006-03-27
| | | | | | | | | | | The old pattern (left as a comment) allowed many PHP syntax errors to be inserted into local.php for numeric values. This was breaking the wiki... see bug #769. This patch should eliminate the syntax errors by using a more restrictive definition of numeric settings. darcs-hash:20060327200700-05dcb-ccb8d532e5c123965fc6c8e79fb49c93170d827e.gz
* update config plugin metadataBen Coburn2006-03-27
| | | | darcs-hash:20060327181005-05dcb-73b7a1f4400832ba29962efc543d9959ebc6b2db.gz
* fix config plugin function name _setup_localised_plugin_promptsBen Coburn2006-03-27
| | | | darcs-hash:20060327152528-05dcb-415564ff328ca9dd1f0fbe758924a2ae6a5b74cc.gz
* plugin manager update / will now expire page, css & js caches after a plugin ↵chris2006-03-26
| | | | | | change darcs-hash:20060326122952-9b6ab-f6aef3c5b2f9e936d2f32ed148d19bbd8a9da2da.gz
* show page generation timeBen Coburn2006-03-24
| | | | darcs-hash:20060324032426-05dcb-cca609254cfef5b583510b86904f1656dea98fc7.gz
* 'Back to top' style bug fixBen Coburn2006-03-21
| | | | | | Removes some link underlining that would appear around the 'Back to top' button. darcs-hash:20060321020948-05dcb-e0e5f2d30bd05bad37ad64d587fc4dc29abcb30b.gz
* changes to config plugin needed for template and plugin configurationEsther Brunner2006-03-22
| | | | darcs-hash:20060322140525-283c4-54953a1954beba0e78c896610b33a6f3c953cbb6.gz
* methods for loading config variables in syntax and amin pluginsEsther Brunner2006-03-22
| | | | darcs-hash:20060322110832-283c4-d8e56c241f8a34827f1c188c4db7162ef658e010.gz
* Danish lang updatelarsch82006-03-21
| | | | darcs-hash:20060321005453-a08f5-274da46720f4487a03d8ba55b3ce1d48b6a5346c.gz
* fixes spellchecker problem with apostrophe in links #753Andreas Gohr2006-03-17
| | | | darcs-hash:20060317203643-7ad00-9968464c2d9c41b1d99a6b16f415082f79af7a8d.gz
* changes order of CSS loading #746Andreas Gohr2006-03-17
| | | | | | | | This changes the order of how Stylesheets are loaded, loading template styles *after* the plugin styles to allow template authors to simply override those styles. darcs-hash:20060317185142-7ad00-ac3f36a801babbbc09115124fa1472ee7470047e.gz
* fixed bug where '304 Not Modified' worked every other time because cache ↵Ben Coburn2006-03-15
| | | | | | headers were not sent darcs-hash:20060315120248-05dcb-5d5d4e06d0074a687185131cda2000b914346e19.gz
* Enable '304 Not Modified' responses for CSS and JS.Ben Coburn2006-03-15
| | | | darcs-hash:20060315115745-05dcb-6f50f3a070d2898ab51a32e59395631cab2ae09c.gz
* refactored http_conditionalRequest($timestamp) to inc/pageutils.phpBen Coburn2006-03-15
| | | | darcs-hash:20060315064506-05dcb-92833a95f37a43ef50e6b993930ac9d25caed81f.gz
* usermanager minor changes: white space & comment improvementchris2006-03-14
| | | | darcs-hash:20060314122618-9b6ab-491420f904da7fd05af83ea5a875c887a1fe5153.gz
* user manager fix : gracefully handle an attempt to edit a non-existant userchris2006-03-14
| | | | darcs-hash:20060314104843-9b6ab-538f5a0e750479e3b793162e01638c594a702bf9.gz
* experimental shadow effect for input controlsAndreas Gohr2006-03-13
| | | | | | | | | This adds a shadow effect to input fields and buttons for the default template. It uses alphatransparency PNGs so it will may look bad for IE in some cases. I think it adds some nice 3D effect making inputs and buttons easily distictable without any complicated CSS markup. darcs-hash:20060313221312-7ad00-73e0d0c23d8bb151c0e05dd1b92c7e4286da591b.gz
* Danish lang updatelarsch82006-03-12
| | | | darcs-hash:20060312214049-a08f5-181fb8115f702521bab9f2e95700f8bd9ab7316d.gz
* plugin manager upate: protect default plugins, add enable/disable functionalitychris2006-03-11
| | | | darcs-hash:20060311192655-9b6ab-c54d280d35b121730e2f8d50b15fe647d986574c.gz
* small css fix for usermanagerAnika Henke2006-03-11
| | | | darcs-hash:20060311194930-d5083-ebe898dedb3e906274a202c296bef78bededd1cf.gz
* Automatic draft savingAndreas Gohr2006-03-11
| | | | | | | | DokuWiki now automatically creates a draft file of the currently edited page. In case of an editing interuption (eg. Browsercrash) the draftfile can be continued later. darcs-hash:20060311200148-7ad00-919337a51e001136178d175a1755cd26122e9726.gz
* improved german translationAndreas Gohr2006-03-09
| | | | darcs-hash:20060309185858-7ad00-12095015b88b010b3ce56fbec3ec261b26069e5a.gz