History log of /dokuwiki/doku.php (Results 101 – 125 of 139)
Revision Date Author Comments
# c1b9dbaf 25-Sep-2006 Andreas Gohr <andi@splitbrain.org>

metadebug parameter added

With DokuWiki's reliance on certain page metadata, it is sometimes necessary to
view the metadata of a page. This patch allows developers to append the parameter
?metadebug

metadebug parameter added

With DokuWiki's reliance on certain page metadata, it is sometimes necessary to
view the metadata of a page. This patch allows developers to append the parameter
?metadebug

darcs-hash:20060925193202-7ad00-6a42c7458aaa1cc40df3c7a61ad70df5d64be152.gz

show more ...


# c29dc6e4 16-Sep-2006 Andreas Gohr <andi@splitbrain.org>

updatecheck feature

This patch adds a feature to let DokuWiki automatically check if updates are
available or any other important messages (like security warnings) and then
display this info to the

updatecheck feature

This patch adds a feature to let DokuWiki automatically check if updates are
available or any other important messages (like security warnings) and then
display this info to the admin user.

DokuWiki will contact the URL http://www.splitbrain.org/lib/exe/msg.php
with a parameter telling it which messages it already know (read from
conf/msg) - the server side script then will return all new messages.

The messages will be displayed until DokuWiki was upgraded or conf/msg
was updated manually. Messages are cached and only checked once a day.

The messenger URL will probably change before the next release.

darcs-hash:20060916210229-7ad00-7ac592650e171ae4144b0eb47a751a4ca480f031.gz

show more ...


# d98d4540 10-Jul-2006 Ben Coburn <btcoburn@silicodon.net>

fixing undefined variables

Fixing undefined variable notices and sometimes
the underlying error that produced them.

darcs-hash:20060710114655-05dcb-073948171847f1f43f153e96c8382abd421da36a.gz


# a4a2d4cf 07-May-2006 Andreas Gohr <andi@splitbrain.org>

metadata hnalding updates, header fixes

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

metadata hnalding updates, header fixes

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

show more ...


# 24bb549b 24-Apr-2006 chris <chris@jalakai.co.uk>

event system revision

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

event system revision

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

show more ...


# a4b5ae12 15-Apr-2006 chris <chris@jalakai.co.uk>

add events, DOKUWIKI_START & DOKUWIKI_END

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 it

add events, DOKUWIKI_START & DOKUWIKI_END

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

show more ...


# f65bfee1 14-Apr-2006 chris <chris@jalakai.co.uk>

action plugins

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 ar

action plugins

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

show more ...


# 44881d27 24-Feb-2006 Troels Liebe Bentsen <tlb@rapanden.dk>

Fix umask bug and do a code cleanup of chmod/mkdir usage so set the correct permissions, this should also fix problems with dokuwiki making setuid files on some umasks.

* Don't set the umask() any

Fix umask bug and do a code cleanup of chmod/mkdir usage so set the correct permissions, this should also fix problems with dokuwiki making setuid files on some umasks.

* Don't set the umask() anymore, this is not good form and we don't really know what is it in the old code anyway as it was not done properly.
* Retire the dmask config option introduce 2 new ones called fmode and dmode, this is more in line with posix and should make more sense.
* Use chmod for setting the correct permissions but only if it's needed.
* Set changing of permissions off by default as i should work properly in most Apache setups without and it does not make sense on windows anyway.

darcs-hash:20060224211655-ee6b9-68f7bb59417d6f0033cfd3764146923daa4dcf1b.gz

show more ...


# 98c86858 17-Feb-2006 Andreas Gohr <andi@splitbrain.org>

file cleanups

This patch cleans up the source code to satisfy the coding guidelines (see
http://wiki.splitbrain.org/wiki:development#coding_style)

It converts files to UNIX lineendings and removes

file cleanups

This patch cleans up the source code to satisfy the coding guidelines (see
http://wiki.splitbrain.org/wiki:development#coding_style)

It converts files to UNIX lineendings and removes tabs and trailing
whitespace. Not all files were cleaned yet.

darcs-hash:20060217222040-7ad00-bba3d2bee3b5aa7cbb5184258abd50805cd071bf.gz

show more ...


# 2649b1a4 25-Nov-2005 Andreas Gohr <andi@splitbrain.org>

option to send 404 header for missing pages

darcs-hash:20051125123614-7ad00-42e0ab6a594e177603175ee37467fc2bdd45d2cb.gz


# f42d1c75 27-Oct-2005 Andreas Gohr <andi@splitbrain.org>

option for disabling debug output

darcs-hash:20051027183410-7ad00-5ca48cf2d4058016f5cf07887d9eaa7b07a4043f.gz


# 8746e727 08-Jun-2005 andi <andi@splitbrain.org>

session_write_close added #364

I just learned that PHP does lock it's session objects. This is realy
bad if you have multiple images in a page as each one will call fetch.php
which locks the session

session_write_close added #364

I just learned that PHP does lock it's session objects. This is realy
bad if you have multiple images in a page as each one will call fetch.php
which locks the session, so everything can only be loaded sequentially.
The fix for this is to close the session after using it which is after doing
the auth and the breadcrumbs. I added the needed calls everywhere.

darcs-hash:20050608213514-9977f-f2dfc467ebbd06406e10e33a386fa1db6cb32dba.gz

show more ...


# 16521111 23-May-2005 andi <andi@splitbrain.org>

moved loading of languages to init.php - fixes #346

darcs-hash:20050523174804-9977f-a49e154bb89357d39eb8ddb3273650759cd74114.gz


# 2a27e99a 29-Apr-2005 andi <andi@splitbrain.org>

more cleanup

darcs-hash:20050429205436-9977f-762f3ded6f93cfb3e068f3acdc1bb80690ad658b.gz


# 6c7843b5 29-Apr-2005 andi <andi@splitbrain.org>

added internal rewriting

darcs-hash:20050429205320-9977f-6bf54f3b022104a0a9aefa882dfba09a98bc9c2a.gz


# 15cfe303 17-Apr-2005 andi <andi@splitbrain.org>

section editing fixed

darcs-hash:20050417150906-9977f-96fcdc018414606bc58252631708c8b55d82354a.gz


# c112d578 16-Apr-2005 andi <andi@splitbrain.org>

new parser now default, caching added

darcs-hash:20050416171733-9977f-61a66a56862c4126c6987cdc19609b4e5504da9b.gz


# b625487d 15-Apr-2005 andi <andi@splitbrain.org>

new parser: more hacking, RSS readded

darcs-hash:20050415204735-9977f-613d9b007452d538dcb8fce4ade5cbec389c4415.gz


# 81aafed4 20-Mar-2005 andi <andi@splitbrain.org>

backbutton fix

darcs-hash:20050320124910-9977f-737f333d5524b844011a69a4c0351c3366ecf62f.gz


# 6b13307f 06-Mar-2005 andi <andi@splitbrain.org>

template support (incomplete, maybe broken)

darcs-hash:20050306183159-9977f-22dbb69831b5fa2e28bbf62448c65053d96a2cb9.gz


# 258641c6 01-Mar-2005 andi <andi@splitbrain.org>

revison sanitizing

darcs-hash:20050301181638-9977f-212463af48be9fb6c4e2f9e738f3eb57878c30f7.gz


# 79b608ce 26-Feb-2005 andi <andi@splitbrain.org>

some feed tuning

darcs-hash:20050226133325-9977f-001fc0ae4081b812bdef84350074624bb530f6f7.gz


# 10a76f6f 20-Feb-2005 frank <frank@schokilade.de>

acl-administration rc1

darcs-hash:20050220104506-b7c55-01c85b4b688597c8405987e0f7ea30aa4fb1472f.gz


# ed7b5f09 19-Feb-2005 andi <andi@splitbrain.org>

added init.php - may have broken something! (related to #153)

darcs-hash:20050219102055-9977f-575d654e742934c911ffab855d82aa91f198b5cf.gz


# 8196db7b 17-Feb-2005 andi <andi@splitbrain.org>

some getBaseURL changes (maybe fixes #123)

darcs-hash:20050217180602-9977f-06df5b55635df223490d5baf9aafe1cb08471e86.gz


123456