History log of /dokuwiki/inc/actions.php (Results 101 – 125 of 166)
Revision Date Author Comments
# 14a122de 29-Sep-2008 Andreas Gohr <andi@splitbrain.org>

keep undisplayed messages over redirects

When act_redirect is executed (post data was received and mode show is called)
all undisplayed messages (from calls to msg()) are saved in the session now.
T

keep undisplayed messages over redirects

When act_redirect is executed (post data was received and mode show is called)
all undisplayed messages (from calls to msg()) are saved in the session now.
These messages are then revived in inc/init.php. This makes sure no errors
that occured before the redirect are lost.

darcs-hash:20080929203831-7ad00-d0869fd3093f57c1ea64ccbaf05d7fd98f68c5e1.gz

show more ...


# 46c0ed74 01-Sep-2008 Michael Hamann <michael@content-space.de>

No more redirect on do

darcs-hash:20080901120812-fdd0b-7082d4c264f665899f56438c0d0a64137d83b3a1.gz


# f6dad9fd 28-Aug-2008 Michael Klier <chi@chimeric.de>

new event ACTION_EXPORT_POSTPROCESS

This event allows action plugins to postprocess the output of a page
requested for export.

Event data:
data[id] -- the page id
data[mode] -- reque

new event ACTION_EXPORT_POSTPROCESS

This event allows action plugins to postprocess the output of a page
requested for export.

Event data:
data[id] -- the page id
data[mode] -- requested export mode
data[headers] -- headers of the requested export mode
data[output] -- export output

darcs-hash:20080828200321-23886-6676682f33fa5c2d9f0c0a21fa26154baf4e137a.gz

show more ...


# ca12ce46 25-Aug-2008 Andreas Gohr <andi@splitbrain.org>

return show action in act_auth for logged in users and 'login' action

This triggers the new redirect event for logins as well.

darcs-hash:20080825202710-7ad00-b8cc40d7a74fd093bd79c5d7d88302c63ea9ef

return show action in act_auth for logged in users and 'login' action

This triggers the new redirect event for logins as well.

darcs-hash:20080825202710-7ad00-b8cc40d7a74fd093bd79c5d7d88302c63ea9ef3d.gz

show more ...


# 69cd1e27 23-Aug-2008 Andreas Gohr <andi@splitbrain.org>

redirect on show/POST

Now a redirect is always done when the final action is show, but the reqeuest
method is POST. This handles actions like cncel autmatically and ensures nice
URLs are reinstated.

redirect on show/POST

Now a redirect is always done when the final action is show, but the reqeuest
method is POST. This handles actions like cncel autmatically and ensures nice
URLs are reinstated.
A new event ACTION_SHOW_REDIRECT wraps the redirect.

darcs-hash:20080823174550-7ad00-4969a9467b5bca12412507fd6b177088a1c5363f.gz

show more ...


# f951a474 06-May-2008 Andreas Gohr <andi@splitbrain.org>

jump to edited section after editing FS#643

This patch adds a mecanism that tries to scroll down to the section that was
just edited when using section editing. The approach used is not failsafe, bu

jump to edited section after editing FS#643

This patch adds a mecanism that tries to scroll down to the section that was
just edited when using section editing. The approach used is not failsafe, but
should work in most cases. It will not work correctly when:

* multiple sections on the page have the same headline
* the edited section no longer starts with a headline

darcs-hash:20080506205011-7ad00-9d213d4436c4f01840d3f62277c3fee9e316d447.gz

show more ...


# 3c86d7c9 04-May-2008 Andreas Gohr <andi@splitbrain.org>

Fixed TOC for HTML export modes FS#1384

darcs-hash:20080504092410-7ad00-ec386b1e897c1afbf3fd9e9a68867c4284225f72.gz


# 613964ec 18-Mar-2008 Guy Brand <gb@isis.u-strasbg.fr>

Fix message displayed after (un)subscribens action

darcs-hash:20080318221659-19e2d-bf5088e16c3a9c65bb70dd58fff4e385b5851204.gz


# 52b0dd67 27-Feb-2008 Guy Brand <gb@isis.u-strasbg.fr>

Add namespace changes mail notifications

This patch lets DokuWiki send mail notifications when any page inside
a namespace gets modified. Two actions are introduced: subscribens and
unsubscribens an

Add namespace changes mail notifications

This patch lets DokuWiki send mail notifications when any page inside
a namespace gets modified. Two actions are introduced: subscribens and
unsubscribens and two new buttons also appear in the bundled template.

darcs-hash:20080227155024-19e2d-8ce5bd66f4e870db31d6b438516599f294365ce1.gz

show more ...


# 8fdf9406 08-Feb-2008 Andreas Gohr <andi@splitbrain.org>

removed security token requirement for login

This was discussed a while ago on the mailing list. We want to work cross-site
logins keep working.

darcs-hash:20080208200733-7ad00-a1f6164d65001586ec23

removed security token requirement for login

This was discussed a while ago on the mailing list. We want to work cross-site
logins keep working.

darcs-hash:20080208200733-7ad00-a1f6164d65001586ec23311c07fe5c277bd62a82.gz

show more ...


# 85767031 16-Oct-2007 Andreas Gohr <andi@splitbrain.org>

header support for renderer plugins

Renderer plugins now can store HTTP header information in 'format <mode>' which
will be used to send their output. Also fixes a problem with loading cache files.

header support for renderer plugins

Renderer plugins now can store HTTP header information in 'format <mode>' which
will be used to send their output. Also fixes a problem with loading cache files.

darcs-hash:20071016185626-7ad00-c0e18a90b310daf0d3a3c01d7a73f3524ced803d.gz

show more ...


# 00976812 30-Sep-2007 Andreas Gohr <andi@splitbrain.org>

don't use realpath() anymore (FS#1261 and others)

The use of realpath() to clean up relative file names caused some
trouble in certain setups relying on symlinks or having restricitve
file structure

don't use realpath() anymore (FS#1261 and others)

The use of realpath() to clean up relative file names caused some
trouble in certain setups relying on symlinks or having restricitve
file structure setups.

This patch replaces all realpath() calls with a PHP only replacement
which should solve those problems.

darcs-hash:20070930184250-7ad00-512ff04c95f57fc9eaf104f80372237a3c94286f.gz

show more ...


# 1b2a85e8 30-Aug-2007 Andreas Gohr <andi@splitbrain.org>

Part 2 of the SecurityToken patch to avaoid CSRF attacks

This patch adds a security token to all forms generated through the new
form class. However it is only checked for possible dangerous actions

Part 2 of the SecurityToken patch to avaoid CSRF attacks

This patch adds a security token to all forms generated through the new
form class. However it is only checked for possible dangerous actions like
editing or profile changes.

darcs-hash:20070830191429-7ad00-445efea47a09a4823dfe9e3434ba5b355a80daf6.gz

show more ...


# c3673e61 09-Aug-2007 Andreas Gohr <andi@splitbrain.org>

don't allow export formats in Google index FS#1219

darcs-hash:20070809212728-7ad00-485593f2658fa217f1b70b72d60dd4ef0f59b0c3.gz


# 2288dc06 16-May-2007 Guy Brand <gb@isis.u-strasbg.fr>

Redirect after login and populate breadcrumbs (FS#1063)

darcs-hash:20070516091909-19e2d-0e9379e79c11ebf090634fd6062ddc072b8ac7a2.gz


# b3510079 22-Apr-2007 Andreas Gohr <andi@splitbrain.org>

removed ACTION_REGISTER event

This event was undocumented and only used in the CAPTCHA plugin. The event is
not needed as the same action can be carried out in ACTION_ACT_PREPROCESS.
Users of the CA

removed ACTION_REGISTER event

This event was undocumented and only used in the CAPTCHA plugin. The event is
not needed as the same action can be carried out in ACTION_ACT_PREPROCESS.
Users of the CAPTCHA plugin need to update it.

darcs-hash:20070422095013-7ad00-179a3784f9edb5840cdb8fb5296015a60c79859e.gz

show more ...


# 2d5ccb39 03-Dec-2006 Andreas Gohr <andi@splitbrain.org>

pluggable renderers

Plugins can now provide their own renderer in lib/plugins/<name>/renderer.php
The class inside this file needs to inherit from Doku_Renderer and has to be
called Doku_Renderer_<n

pluggable renderers

Plugins can now provide their own renderer in lib/plugins/<name>/renderer.php
The class inside this file needs to inherit from Doku_Renderer and has to be
called Doku_Renderer_<name>

To access the renderer the export action can be used eg: ?do

darcs-hash:20061203190138-7ad00-f56b470b5dd043e1168ff2101c677eb8a9851627.gz

show more ...


# f8cc712e 03-Dec-2006 Andreas Gohr <andi@splitbrain.org>

manager user/group

This patch adds support for a manager option as suggested in
http://www.freelists.org/archives/dokuwiki/11-2006/msg00314.html

darcs-hash:20061203134104-7ad00-72ff6422bbb4f79be325

manager user/group

This patch adds support for a manager option as suggested in
http://www.freelists.org/archives/dokuwiki/11-2006/msg00314.html

darcs-hash:20061203134104-7ad00-72ff6422bbb4f79be325c7e77255e1eee32d0f6b.gz

show more ...


# c9570649 16-Nov-2006 Andreas Gohr <andi@splitbrain.org>

two more event hooks

darcs-hash:20061116212937-7ad00-2ac647a9040f75650bdbe1047e76370f9c900dff.gz


# 067c5d22 27-Oct-2006 Ben Coburn <btcoburn@silicodon.net>

fix conflicting edit cancel button

darcs-hash:20061027185046-05dcb-71c34a3fbe67c5d17dfc9400e6e668469bd91b51.gz


# 18829381 20-Oct-2006 Andreas Gohr <andi@splitbrain.org>

used named submitbuttons instead of localized labels

darcs-hash:20061020164148-7ad00-6bb857729d9004b0f9b865410c1c666e07cc03aa.gz


# bb4866bd 23-Sep-2006 chris <chris@jalakai.co.uk>

minor bugfix and boring error removal

darcs-hash:20060923203609-9b6ab-ecca679faa254a29772868508050fcf3206b0814.gz


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

cleanup undefined constant notices

Undefined constants replaced with strings, see
http://www.php.net/manual/en/language.types.array.php#language.types.array.foo-bar

darcs-hash:20060710091820-05dcb-

cleanup undefined constant notices

Undefined constants replaced with strings, see
http://www.php.net/manual/en/language.types.array.php#language.types.array.foo-bar

darcs-hash:20060710091820-05dcb-cfccff2bdd633b929470c60d8eee096f50ab4c18.gz

show more ...


# 409d7af7 02-Jul-2006 Andreas Gohr <andi@splitbrain.org>

disableactions support

This patch adds a config option to disable certain internal action commands of
DokuWiki's main dispatcher.

The options resendpasswd and openregister were removed because they

disableactions support

This patch adds a config option to disable certain internal action commands of
DokuWiki's main dispatcher.

The options resendpasswd and openregister were removed because they can now set
through this new option.

The config plugin needs to be adjusted.

darcs-hash:20060702121622-7ad00-1e80e77bcfb0ae561fe7abd79cfbe1bb158be720.gz

show more ...


# 5f312bac 06-Jun-2006 Andreas Gohr <andi@splitbrain.org>

Fix for privilege escalation bug #825

This rechecks all ACLs a second time before the template is called,
avoiding similar problems in the future.

darcs-hash:20060606182742-7ad00-375c7989c8357c8a05

Fix for privilege escalation bug #825

This rechecks all ACLs a second time before the template is called,
avoiding similar problems in the future.

darcs-hash:20060606182742-7ad00-375c7989c8357c8a051b4966d06dbfde356bedb5.gz

show more ...


1234567