aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/legacy
Commit message (Collapse)AuthorAgeFilesLines
* Manually fix remaining PHPCS errorsArthurHoaro2020-11-091-1/+1
|
* Apply PHP Code Beautifier on source code for linter automatic fixesArthurHoaro2020-11-094-24/+26
|
* Feature: support any tag separatorArthurHoaro2020-11-051-1/+1
| | | | | | | | So it allows to have multiple words tags. Breaking change: commas ',' are no longer a default separator. Fixes #594
* Move utils classes to Shaarli\Helper namespace and folderArthurHoaro2020-10-272-2/+2
|
* Merge pull request #1541 from ArthurHoaro/fix/legacy-login-encodingArthurHoaro2020-09-031-1/+11
|\
| * Fix: encoding in legacy route login redirection to post bookmarkArthurHoaro2020-09-031-1/+11
| | | | | | | | | | When a bookmark is post from a logged out user, he is first redirected to the login page with 'returnurl' containing the link, then redirected again when the login is processed. We need to reencode the posted URL, otherwise the browser does not handle the fragment as a part of the posted parameter.
* | Merge pull request #1537 from ArthurHoaro/fix/back-compatible-targetsArthurHoaro2020-09-031-129/+5
|\ \ | |/ |/|
| * Improve backward compatibility for LegacyRouterArthurHoaro2020-09-031-129/+5
| | | | | | | | | | | | | | LegacyRouter is no longer used for routing, only in existing plugins to match the _PAGE_ parameter. So we change a few of its values there, to match the new ones defined in TemplatePage. @see discussion in shaarli/Shaarli#1537
* | Support redirection of legacy route 'do=configure'ArthurHoaro2020-09-011-0/+17
| |
* | Fix legacy redirection when Shaarli instance is under a subfolderArthurHoaro2020-09-011-6/+9
| |
* | Fix support for legacy route login redirectionArthurHoaro2020-09-011-3/+5
|/ | | | Makes sure that the user is properly redirected to the bookmark form after login, even with legacy routes
* Move all admin controller into a dedicated groupArthurHoaro2020-08-131-1/+1
| | | | Also handle authentication check in a new middleware for the admin group.
* Multiple small fixesArthurHoaro2020-07-231-1/+2
|
* Process main page (linklist) through Slim controllerArthurHoaro2020-07-233-0/+326
| | | | | Including a bunch of improvements on the container, and helper used across new controllers.
* Process thumbnail synchronize page through Slim controllersArthurHoaro2020-07-231-1/+1
|
* Process Daily RSS feed through Slim controllerArthurHoaro2020-07-231-1/+1
| | | | The daily RSS template has been entirely rewritten to handle the whole feed through the template engine.
* Migrate cache purge function to a proper classArthurHoaro2020-07-231-1/+3
| | | | | | And update dependencies and tests. Note that SESSION['tags'] has been removed a log ago
* Fix all relative link to work with new URLArthurHoaro2020-07-231-2/+2
|
* Introduce Bookmark object and Service layer to retrieve themArthurHoaro2020-01-173-0/+1648
See https://github.com/shaarli/Shaarli/issues/1307 for details