| 6475ad44 | 13-Apr-2017 |
David Surroca <david.tb303@gmail.com> |
translation update |
| 32b2e368 | 18-Apr-2017 |
Dharmik <dharmik8478@gmail.com> |
Fix Typo in remote API (#1938)
* Updated remote.php
Updated remote.php for retrieving all the acl details.
* Updated remote.php
By mistake changed in addAcl instead of listAcls. |
| c0f9e7c3 | 05-Apr-2017 |
Kris Charatonik <krishary@gmail.com> |
translation update |
| 43332dfd | 05-Apr-2017 |
Pavel Krupička <pajdacz@gmail.com> |
translation update |
| 20cfa168 | 02-Apr-2017 |
Zacharias Sdregas <zsdregas@sch.gr> |
translation update |
| f8b1e4e7 | 04-Apr-2017 |
Andreas Gohr <andi@splitbrain.org> |
use 403 response on bad logins. closes #1937 |
| 16d428e9 | 01-Apr-2017 |
Andreas Gohr <andi@splitbrain.org> |
removed unneeded check
the $from != $to check is handled further up already and throws an exception. |
| d773525b | 01-Apr-2017 |
Andreas Gohr <andi@splitbrain.org> |
draft action now checks that a draft exists |
| 225d36a1 | 01-Apr-2017 |
Andreas Gohr <andi@splitbrain.org> |
fixed small typo |
| 480336a3 | 31-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
no longer rely on actionOk when checking if actions are disabled
loadAction() and checkAction() are now public and could be used within actionOK(). However some weird circular references prevent tha
no longer rely on actionOk when checking if actions are disabled
loadAction() and checkAction() are now public and could be used within actionOK(). However some weird circular references prevent that. In addition, actionOK is also used to check for things that aren't Actions (yet) like 'rss' and 'top'.
show more ...
|
| ec701221 | 31-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
explicitly declare method visibility |
| 6e4bf08e | 31-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
allow actions to be initialized without an action name
also fixes the tests |
| ab680a25 | 31-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
added missing backlink action |
| bb2b4f19 | 31-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
fixed Diff action |
| 15a53894 | 31-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
added missing Revisions action |
| 33551e4e | 11-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
make use of sub action for Profile deletion |
| 73522543 | 11-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
fixed export action by supporting underscores in actions
Now underscores can be used to have sub actions. The loader will try to find an exact match first, then begin removing parts from the end unt
fixed export action by supporting underscores in actions
Now underscores can be used to have sub actions. The loader will try to find an exact match first, then begin removing parts from the end until a matching action is found.
show more ...
|
| e5802cb7 | 11-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
make use of the ActionRouter (temporary solution)
This is just a quick and dirty hack to try and see if the router actually behaves as it should. I renamed the old methods to XXX_* and implemented n
make use of the ActionRouter (temporary solution)
This is just a quick and dirty hack to try and see if the router actually behaves as it should. I renamed the old methods to XXX_* and implemented new ones calling the router. This has to be cleaned up later.
show more ...
|
| ae7bcdc7 | 11-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
fix singleton pattern in ActionRouter |
| b16ddc6e | 11-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
do not blindly assume classes in our own namespace exist |
| 50701b66 | 11-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
better action transitions
It should now catch any circular loops (by having a maxiumum recursion depth) and it handles the automatic redirect after save (and others) |
| a3f6fae6 | 11-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
Add action plugin hooks back into the ActionRouter
This is not how integration of plugins would ideally be done in this new system. Ideally an action plugin would actually implement an instance of A
Add action plugin hooks back into the ActionRouter
This is not how integration of plugins would ideally be done in this new system. Ideally an action plugin would actually implement an instance of AbstractAction and would just fall into the normal flow of actions here.
However to not break a gazillion of existing plugins, this is just add the existing two events into the new system through the use of a Plugin action.
Maybe we could add "new" action plugins later.
show more ...
|
| ab583a1b | 11-Feb-2017 |
Andreas Gohr <andi@splitbrain.org> |
more doc block fixes |
| e8aa6739 | 11-Feb-2017 |
Andreas Gohr <andi@splitbrain.org> |
some doc blocks for the exceptions |
| f21dad39 | 11-Feb-2017 |
Andreas Gohr <andi@splitbrain.org> |
all actions should have a class now
Lots of FIXMEs and the routing isn't integrated, yet |