summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* GeShi Update to 1.0.7.9Andreas Gohr2006-04-24
| | | | darcs-hash:20060424213806-7ad00-05b1ae64e442ef72b94f0cc900530336ea70f3bd.gz
* events.php require added to feed.phpalexander.krause2006-04-19
| | | | darcs-hash:20060419162307-0ad7b-b0d52123d32f81c024a0ac9e336baedff95b8738.gz
* inc.lang.it-patchSilvia S2006-04-18
| | | | | | | spelling and gender corrections - added all missing translations for dir. inc/lang/it darcs-hash:20060418173433-6f5f9-090be4bcb32b4075358de113941cf491e2cde215.gz
* added missing SimplePie.phpAndreas Gohr2006-04-18
| | | | darcs-hash:20060418201132-7ad00-fd1a73238470a55a245ee873479fa391a4a4bb53.gz
* faroese translationAndreas Gohr2006-04-18
| | | | darcs-hash:20060418183353-7ad00-4a5f2fbe0bf1524cf279d15110d80688d31bfe0f.gz
* changed man> interwikilink to reflect recent changesAndreas Gohr2006-04-17
| | | | darcs-hash:20060417164547-7ad00-7270f4d88b027d179b1f600fc347eea8db8a8f83.gz
* Allow styles sheets that apply to "all" mediamtbrains2006-04-17
| | | | darcs-hash:20060417003153-a90f0-4792fd7b946f62d3696b979f8debfa73587d353a.gz
* add missing FeedParser.php #782Andreas Gohr2006-04-17
| | | | darcs-hash:20060417160453-7ad00-e54322159dbe1c1c75cd2c8494fda14a3f4bc021.gz
* event ACTION_TEMPLATE minor updatechris2006-04-15
| | | | darcs-hash:20060415162247-9b6ab-d6c05736c0e4fb05331bc1cf06e48c5d61c64d5b.gz
* events TPL_ACTION_HTML & TPL_DISPLAY_HTMLchris2006-04-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | event TPL_ACTION_HTML data $ACT action tpl_content_core (formerly tpl_content) This event is a wrapper for tpl_content() (now tpl_content_core()) and as such is a full trigger, meaning it issues three advises: - TPL_ACTION_HTML_before - TPL_ACTION_HTML - TPL_ACTION_HTML_after Event handlers can output HTML before and/or after the main Dokuwiki page output and can prevent the default dokuwiki page generation taking place. Example uses could include: - replacements for dokuwiki command handlers like index. - appending a discussion section to the page by handling TPL_ACTION_HTML_after event TPL_DISPLAY_HTML data html output produced by tpl_content_core[1] action send output to browser Event handlers can post process the HTML output before it is sent to the client browser. This is a full trigger, meaning it issues three advises - TPL_DISPLAY_HTML_before - TPL_DISPLAY_HTML - TPL_DISPLAY_HTML_after darcs-hash:20060415160847-9b6ab-d7affcb1aaf49aecfaf9bc1e78a82ceb8ae409f7.gz
* event SEND_HEADERSchris2006-04-15
| | | | | | | | | | | | | | | | | Event data an array of headers dokuwiki will send[1]. The default action is to output all the headers in order using the header() function. This event is a full trigger, meaning there are three advises: - SEND_HEADERS_before - SEND_HEADERS - SEND_HEADERS_after Handlers of this event can add/modify/delete the headers in the event data. The event data must remain an array, even if emptied. [1] There is one dokuwiki header 'Content-Type: text/html; charset darcs-hash:20060415160210-9b6ab-841bd034b797c7f1b8d4bbc66f90185a16e5a043.gz
* add events, DOKUWIKI_START & DOKUWIKI_ENDchris2006-04-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | event DOKUWIKI_START This event is advisory only. There is no event data There is no default action The event is signalled after Dokuwiki has completed its initialisation phase and before it closes the session. Most Dokuwiki globals will have been created and populated, the global $_SESSION var will still be in existence. Note: Even after $_SESSION has been closed a plugin can reopen the session to access session data - as long as headers have not already been sent. For more information refer to lib/plugins/config/admin.php. event DOKUWIKI_END This event is advisory only. There is no event data There is no default action The event is signalled after all processing has been completed as the last thing doku.php does before exiting. It is possible that under certain circumstances dokuwiki will exit without returning to doku.php and this event may not then be signalled. darcs-hash:20060415152444-9b6ab-1e41d0265f2a6660ad497dd387c7930251dc4030.gz
* new metadata renderer; functions p_get_metadata() and p_set_metadata()Esther Brunner2006-04-15
| | | | darcs-hash:20060415104627-283c4-c7d35620fc9dbc21b8a47089692b76d35a9f9ca8.gz
* event ACTION_TEMPLATEchris2006-04-14
| | | | | | | | | | | | | This event is advisory only. Event data is the $ACT variable The default action is to display an "unknown action" message The event is triggered by tpl_content if it does not recognise the $ACT value. It is the complement to event 'ACTION_DISPATCH'. Handlers of this event can output XHTML which will be displayed in the main dokuwiki window - ie. where the wiki page would normally be displayed. darcs-hash:20060414201705-9b6ab-f8ede6a2fb601d734c115ee09bb57195ad7d1e2b.gz
* event HANDLER_FINALISEDchris2006-04-14
| | | | | | | | | | | | | | | This event is advisory only. Event data is the handler object. There is no default action to prevent. The event is signalled by the handler during its finalisation of the instruction list. At the time of signalling the instruction list is complete except for three instrucitons, meta, document_start & document_end. Syntax plugins could register for this event to finalise processing of their data knowing it is complete, e.g. an alternate footnote plugin. darcs-hash:20060414201101-9b6ab-eba2d096ed3b82e1ec6b24ee90caaa9849f16093.gz
* add ACTION_DISPATCH eventchris2006-04-14
| | | | | | | | | | | | | | | | The 'ACTION_DISPATCH' event[1] is triggered prior to any processing of the $ACT variable[2]. This gives custom content the opportunity to add new "do" commands and to process any custom form data. This event is advisory only (there are no '_before' or '_after' advise) Preventing default action will skip Dokuwiki's own processing of the $ACT value, this includes its cleansing of the $ACT variable. [1] also refer ACTION_TEMPLATE event [2] $ACT is the do variable from the query string darcs-hash:20060414195601-9b6ab-8ae62d2c3a7c6f8c09c77436d9adbaba5404f51b.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
* relative upper linksAndreas Gohr2006-04-14
| | | | | | Now allows links like [[..:..:page]] darcs-hash:20060414150358-7ad00-88394caabc6ee2ce7137694e2a0c0c98e7534ea5.gz
* magpie files removedAndreas Gohr2006-04-14
| | | | darcs-hash:20060414110517-7ad00-a942f845647f301255365b162a22826cd9a983f6.gz
* feed aggregation revampedAndreas Gohr2006-04-14
| | | | | | Feeds are now parsed with SimplePie. The feed syntax was enhanced darcs-hash:20060414110047-7ad00-6dd4b96845baab8683a2f837d6ad6fcb2fd53131.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
* even faster header parsing using strspnAndreas Gohr2006-04-12
| | | | darcs-hash:20060412184125-7ad00-e51f8d531bf3011d230f62cb99fd18de8f150c41.gz
* releaxed header syntaxAndreas Gohr2006-04-11
| | | | darcs-hash:20060411182721-7ad00-0f34803c6228eb2918f0049284e6290a47ce51bd.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
* reverted method to determine the header levelAndreas Gohr2006-04-10
| | | | darcs-hash:20060410194333-7ad00-abb8bc33f647ccd8587edbcc151bc60895dd3ae0.gz
* Parser Update:chris2006-04-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - revisions to header class and section handling header pattern simplified header class now writes section open and close instructions section call writer removed check for and update meta['first_header'] if required (see below) - meta instruction added written by _finalize to front of instruction stack holds first header information plugins can now write first header information, or other page meta information to this data structure. - get_first_heading updated to make use of meta['first_header'] - plugin instruction structure changed to include lexer state in the data portion of the instruction. OLD INSTRUCTION: array('plugin', array(<plugin name>,<plugin_data>,$pos), $pos) NEW INSTRUCTION: array('plugin', array(<plugin name>,<plugin_data>,$state), $pos) - block handler/call writer update to better handle plugin PTypes 'block' & 'stack'. Lexer states are mapped as follows: DOKU_LEXER_ENTER, DOKU_LEXER_SPECIAL : block_open, stack_open DOKU_LEXER_EXIT, DOKU_LEXER_SPECIAL : block_close, stack_close DOKU_LEXER_MATCHED, DOKU_LEXER_UNMATCHED : plugin must handle <p> Plugin writers can now use these PTypes as intended ! darcs-hash:20060409214958-9b6ab-cd2cef97a6a2521e3a02175075b8ff4648035f69.gz
* make alphatransparency shadows available to modern browsers onlyAndreas Gohr2006-04-10
| | | | darcs-hash:20060410192459-7ad00-4212125ec31532656030b4d80984f6b45b5cf293.gz
* small fix for getRevisionInfoYann2006-04-10
| | | | darcs-hash:20060410190409-919ab-f77447b1cb1b8de6e2a5790519d4aafc7baa577b.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
* feedcreator changes for ATOM1.0Andreas Gohr2006-04-09
| | | | | | | | | | This patch updates the feedcreator.class.php with a few non official changes found at [1] - the download link didn't work at this page so [2] was used. Some additional minor modifications were done. feed.php now accepts the type darcs-hash:20060409132507-7ad00-8e5986631146eca9606aa1fb48278cb045a5db0a.gz
* cleanup export mode errorsBen Coburn2006-04-09
| | | | | | | | - Using the export modes 'handler', 'lexer', 'parser', or 'renderer' now produces a nicer non-fatal error. - The export mode 'wiki' is now ignored to avoid fatal errors. darcs-hash:20060409045546-05dcb-89f4c56c23d9798f4cb2dd000804cb8c03524b6d.gz
* spanish language updateAndreas Gohr2006-04-09
| | | | darcs-hash:20060409115740-7ad00-dd6cb62ccd4e0947ccb7566b0c0010eb807585e3.gz
* rewrite export URLsBen Coburn2006-04-05
| | | | | | | | | | | | | | | | | | | This patch rewrites export urls so that robots.txt can be used to request that some (or all) export types are ignored by robots when indexing the wiki. For example: User-agent: * Disallow: _export/ or for example: User-agent: * Disallow: _export/raw/ Note: This rewriting is only done when $conf['userewrite'] is set to '1' for using the rewrite rules from '.htaccess.dist'. darcs-hash:20060405025621-05dcb-b1b5f48681f78d75d25b1e75fab79346fcc8b84e.gz
* move hsc() & ptln() functions from template.php to common.phpchris2006-04-03
| | | | darcs-hash:20060403202815-9b6ab-1b499148333458ee8acb68b5e38ca72d3b1c9b3c.gz
* more efficient mb_string checking in utf8.phpAndreas Gohr2006-04-03
| | | | darcs-hash:20060403194930-7ad00-499940017f74cfe297f2aa4e65d441243f8572a1.gz
* better utf8_substr functionAndreas Gohr2006-04-03
| | | | darcs-hash:20060403192537-7ad00-72b129ce494066bce491821a0396db7576873ec2.gz
* moved toolbar out of form scope #757Andreas Gohr2006-03-31
| | | | | | | This ensures that the save button stays the default button of the form again. darcs-hash:20060331085543-7ad00-8db519b51a7bc65479ebc6b303f3cf016f8088be.gz
* fix for diff links in feed.php #761Andreas Gohr2006-03-31
| | | | darcs-hash:20060331082125-7ad00-f7038baf83932614ba07fa1617463b24b2f1b6be.gz
* ldap auth fix #762Andreas Gohr2006-03-31
| | | | darcs-hash:20060331081201-7ad00-ad95897fb68ce105c586c80ce7b1ff0ccb4840a6.gz
* fix for icons in mediamanager #771Andreas Gohr2006-03-31
| | | | darcs-hash:20060331080812-7ad00-45251cae2920cf73930be91f2b4f5768619b1b9c.gz
* typo in dwpage.php help screen fixedAndreas Abeck2006-03-31
| | | | darcs-hash:20060331075506-c38b2-1d316be73f07301c1b2862ff65278d2be65a5f0a.gz
* bt-br updateFrederico Goncalves Guimaraes2006-03-31
| | | | darcs-hash:20060331075028-5b00b-0a2a7b04653731991564f78004a2ffa24b2e84ab.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
* GeShi update to 1.0.7.8Andreas Gohr2006-03-27
| | | | darcs-hash:20060327133738-7ad00-d9b2615cc73c0924c25ef6039449ff66ef88aae1.gz
* plugin manager update / will now expire page, css & js caches after a plugin ↵chris2006-03-26
| | | | | | change darcs-hash:20060326122952-9b6ab-f6aef3c5b2f9e936d2f32ed148d19bbd8a9da2da.gz
* RSS update time and 304 Not ModifiedBen Coburn2006-03-24
| | | | | | | | - Gives the wiki administrator control over how often the RSS feed is regenerated. - The RSS feed now handles conditional requests and returns HTTP '304 Not Modified' responses when possible. darcs-hash:20060324133315-05dcb-3b814e28523f2a0717222a4940d6fbbb28576cf5.gz