<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in actions.php</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>984279ed0ae645656dbb84de591d1018e5390b52 - set explicit referrer-policy</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#984279ed0ae645656dbb84de591d1018e5390b52</link>
        <description>set explicit referrer-policyThis emits a referrer policy header. It will instruct browsers to sendan abbreviated (host name only) referrer header on cross-originrequests.This fixes issues with YouTube embeds reported atsplitbrain/dokuwiki-plugin-vshare#154This setting is the default in many browsers, so it doesn&apos;t changebehavior for most people.More info at:* https://github.com/splitbrain/dokuwiki-plugin-vshare/issues/154* https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Referrer-Policy

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Tue, 09 Dec 2025 07:58:14 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;gohr@cosmocode.de&gt;</dc:creator>
    </item>
<item>
        <title>d4f83172d9533c4d84f450fe22ef630816b21d75 - code style: line breaks</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#d4f83172d9533c4d84f450fe22ef630816b21d75</link>
        <description>code style: line breaks

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Thu, 31 Aug 2023 20:44:40 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>177d6836e2f75d0e404be9c566e61725852a1e07 - coding style: control flow whitespaces</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#177d6836e2f75d0e404be9c566e61725852a1e07</link>
        <description>coding style: control flow whitespaces

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Thu, 31 Aug 2023 12:22:35 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>d868eb89f182718a31113373a6272670bd7f8012 - codestyle adjustments: function declaration braces/spaces</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#d868eb89f182718a31113373a6272670bd7f8012</link>
        <description>codestyle adjustments: function declaration braces/spaces

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Wed, 30 Aug 2023 15:09:14 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>c1482d1c08360e6401534a1391da2b650c37d34d - codestyle adjustments: function argument spacing</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#c1482d1c08360e6401534a1391da2b650c37d34d</link>
        <description>codestyle adjustments: function argument spacing

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Wed, 30 Aug 2023 15:03:06 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>24870174d2ee45460ba6bcfe5f5a0ae94715efd7 - Apply rector fixes to the rest of inc</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#24870174d2ee45460ba6bcfe5f5a0ae94715efd7</link>
        <description>Apply rector fixes to the rest of inc

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Tue, 29 Aug 2023 17:42:15 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>bf8f8509c55822203064b5dd3e5cebdec0d54d7e - guard against unset parameters</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#bf8f8509c55822203064b5dd3e5cebdec0d54d7e</link>
        <description>guard against unset parametersMany string function will throw a deprecation warning in PHP 8.1 whennull is passed. This adds a few guards in some of our methods (not all,yet)

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Sat, 01 Jan 2022 11:34:45 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>cbb44eabe033d70affb048ec0daf4e579e09dd20 - deprecated trigger_event() in favor of a static method on Event</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#cbb44eabe033d70affb048ec0daf4e579e09dd20</link>
        <description>deprecated trigger_event() in favor of a static method on Event

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Fri, 15 Jun 2018 15:35:53 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>b4f2363aa1360136c8a826f09aaebc6505211c73 - remove DOKU_INC checks</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#b4f2363aa1360136c8a826f09aaebc6505211c73</link>
        <description>remove DOKU_INC checksThere is no need for this check, since these files should not have anymain code that is executed on direct call.Fixes PSR1.Files.SideEffects.FoundWithSymbols

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Fri, 27 Apr 2018 12:32:42 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>6e4577dcdbb407016f5160c0b54d5aea97be4d6b - undo unecessary action routing adjustments</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#6e4577dcdbb407016f5160c0b54d5aea97be4d6b</link>
        <description>undo unecessary action routing adjustments

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Sun, 27 Aug 2017 20:10:01 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>572dc222f8ab503392a593483bcc14fb9104f557 - Test code for workflow &apos;show - sectionedit - save/cancel&apos; (with modifications in test classes and &apos;send_redirect()&apos; and &apos;act_dispatch()&apos;.</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#572dc222f8ab503392a593483bcc14fb9104f557</link>
        <description>Test code for workflow &apos;show - sectionedit - save/cancel&apos; (with modifications in test classes and &apos;send_redirect()&apos; and &apos;act_dispatch()&apos;.

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Sun, 27 Aug 2017 13:42:12 +0000</pubDate>
        <dc:creator>LarsDW223 &lt;lars_paulsen@web.de&gt;</dc:creator>
    </item>
<item>
        <title>231f749d833d55f6d004927c171fab6a873f2a91 - handle draftdeletion in draftdel action only</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#231f749d833d55f6d004927c171fab6a873f2a91</link>
        <description>handle draftdeletion in draftdel action onlyThis was the last remaining function in inc/action.php that could bemoved to the actions.We now have quite the elegant cascade in the action handling.

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Thu, 18 May 2017 11:33:32 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>272271fce369848a156cb5cad81376522f939bbf - have all subscription handling in subscribe action</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#272271fce369848a156cb5cad81376522f939bbf</link>
        <description>have all subscription handling in subscribe actionuses the explicit redirect abort on success

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Thu, 18 May 2017 11:08:17 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>58528803ad1f586696a6719f4ed566b78eb7b1d9 - introduce a redirect action</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#58528803ad1f586696a6719f4ed566b78eb7b1d9</link>
        <description>introduce a redirect actionAction can now abort to &apos;redirect&apos; to explicitly trigger a redirectback to showing the current page. Automatic triggering for post-&gt;show isnow only done when a &apos;show&apos; action was not explicitly requested.

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Thu, 18 May 2017 10:58:50 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>2571786c763e04c7abbf27c2245a5720878dc3f1 - always redirect to correct section</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#2571786c763e04c7abbf27c2245a5720878dc3f1</link>
        <description>always redirect to correct sectionAcross workflow &apos;show - sectionedit - save/cancel&apos; explicitlytransmit header id to the server. So the server can always redirect tothe correct section even if headings have the same name. Fixes #1364.

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Thu, 18 May 2017 10:07:15 +0000</pubDate>
        <dc:creator>LarsDW223 &lt;lars_paulsen@web.de&gt;</dc:creator>
    </item>
<item>
        <title>0f9e19d90383dd0deb85e1c4ef4750811f102d0f - move draft saving to Preview action</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#0f9e19d90383dd0deb85e1c4ef4750811f102d0f</link>
        <description>move draft saving to Preview actionThis also removes duplicated code from ajax.php

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Thu, 18 May 2017 08:24:41 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>e795ba4d07c9ccc85ddbb61f86a36d83829ccf8f - removed unused action methods</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#e795ba4d07c9ccc85ddbb61f86a36d83829ccf8f</link>
        <description>removed unused action methods

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Wed, 17 May 2017 05:39:40 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>e5802cb76bfc6a2db174f805c78e339cc79a226a - make use of the ActionRouter (temporary solution)</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#e5802cb76bfc6a2db174f805c78e339cc79a226a</link>
        <description>make use of the ActionRouter (temporary solution)This is just a quick and dirty hack to try and see if the routeractually behaves as it should. I renamed the old methods to XXX_* andimplemented new ones calling the router. This has to be cleaned uplater.

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Sat, 11 Mar 2017 11:17:52 +0000</pubDate>
        <dc:creator>Andreas Gohr &lt;andi@splitbrain.org&gt;</dc:creator>
    </item>
<item>
        <title>844aec6672b8651245071f63fc153120ef4ab33f - Deactivate XSS-Protection during preview</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#844aec6672b8651245071f63fc153120ef4ab33f</link>
        <description>Deactivate XSS-Protection during previewThe motivation is to work around/fix issue #1182.Using a CSP-Header did not work.ToDo:- [ ] Implement a check for Chrome only.

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Thu, 29 Oct 2015 16:08:44 +0000</pubDate>
        <dc:creator>Michael Gro&#223;e &lt;grosse@cosmocode.de&gt;</dc:creator>
    </item>
<item>
        <title>a61966c55d9d0ac4b800d65cfc6ee1aea44899b5 - Provide a function to return admin plugin for the page request.</title>
        <link>http://127.0.0.1:8080/history/dokuwiki/inc/actions.php#a61966c55d9d0ac4b800d65cfc6ee1aea44899b5</link>
        <description>Provide a function to return admin plugin for the page request.This was previously carried out in three separate places. Refactorthat code to use the new function.Update tpl_pageTitle test to use a manager level admin plugin.

            List of files:
            /dokuwiki/inc/actions.php</description>
        <pubDate>Sat, 16 May 2015 17:07:23 +0000</pubDate>
        <dc:creator>Christopher Smith &lt;chris@jalakai.co.uk&gt;</dc:creator>
    </item>
</channel>
</rss>
