aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/front/controller/visitor/BookmarkListController.php
Commit message (Collapse)AuthorAgeFilesLines
* Apply PHP Code Beautifier on source code for linter automatic fixesArthurHoaro2020-11-091-3/+5
|
* Feature: support any tag separatorArthurHoaro2020-11-051-3/+8
| | | | | | | | So it allows to have multiple words tags. Breaking change: commas ',' are no longer a default separator. Fixes #594
* Feature: Share private bookmarks using a URL containing a private keyArthurHoaro2020-10-271-1/+3
| | | | | | | | | | - Add a share link next to « Permalink » in linklist (using share icon from fork awesome) - This link generates a private key associated to the bookmark - Accessing the bookmark while logged out with the proper key will display it Fixes #475
* Feature: add a Server administration pageArthurHoaro2020-10-211-10/+18
| | | | | | | | | | | | It contains mostly read only information about the current Shaarli instance, PHP version, extensions, file and folder permissions, etc. Also action buttons to clear the cache or sync thumbnails. Part of the content of this page is also displayed on the install page, to check server requirement before installing Shaarli config file. Fixes #40 Fixes #185
* Asynchronous retrieval of bookmark's thumbnailsArthurHoaro2020-10-201-6/+4
| | | | | | | | | This feature is based general.enable_async_metadata setting and works with existing metadata.js file. The script is compatible with any template: - the thumbnail div bloc must have attribute - the bookmark bloc must have attribute with the bookmark ID as value Fixes #1564
* Security: fix multiple XSS vulnerabilities + fix search tags with special charsArthurHoaro2020-10-061-3/+4
| | | | | | XSS vulnerabilities fixed in editlink, linklist, tag.cloud and tag.list. Also fixed tag search with special characters: urlencode function needs to be applied on raw data, before espaping, otherwise the rendered URL is wrong.
* Better support for notes permalinkArthurHoaro2020-07-281-1/+5
|
* New basePath: fix officiel plugin paths and vintage templateArthurHoaro2020-07-261-14/+2
|
* Process main page (linklist) through Slim controllerArthurHoaro2020-07-231-0/+248
Including a bunch of improvements on the container, and helper used across new controllers.