Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Feature: Share private bookmarks using a URL containing a private key | ArthurHoaro | 2020-10-27 | 1 | -0/+31 |
| | | | | | | | | | | - 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 | ||||
* | Merge pull request #1604 from ArthurHoaro/feature/server-admin-page | ArthurHoaro | 2020-10-27 | 1 | -0/+9 |
|\ | | | | | Feature: add a Server administration page | ||||
| * | Feature: add a Server administration page | ArthurHoaro | 2020-10-21 | 1 | -0/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | 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 | ||||
* | | Use PSR-3 logger for login attempts | ArthurHoaro | 2020-10-20 | 1 | -1/+1 |
|/ | | | | Fixes #1122 | ||||
* | Asynchronous retrieval of bookmark's thumbnails | ArthurHoaro | 2020-10-20 | 1 | -2/+55 |
| | | | | | | | | | 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 | ||||
* | Compatibility with PHPUnit 9 | ArthurHoaro | 2020-09-29 | 14 | -89/+110 |
| | |||||
* | Fix invalid redirection using the path of an external domain | ArthurHoaro | 2020-09-22 | 2 | -10/+41 |
| | | | | Fixes #1554 | ||||
* | Merge pull request #1539 from ArthurHoaro/feature/manual-root-url | ArthurHoaro | 2020-09-22 | 4 | -9/+43 |
|\ | |||||
| * | Fix subfolder configuration in unit tests | ArthurHoaro | 2020-09-12 | 4 | -9/+43 |
| | | |||||
* | | Properly handle 404 errors | ArthurHoaro | 2020-09-12 | 2 | -1/+81 |
|/ | | | | | | Use 404 template instead of default Slim error page if the route is not found. Fixes #827 | ||||
* | Fix feed target in UT | ArthurHoaro | 2020-09-03 | 1 | -3/+3 |
| | |||||
* | Move error handling to dedicated controller instead of middleware | ArthurHoaro | 2020-08-21 | 1 | -0/+70 |
| | |||||
* | Move all admin controller into a dedicated group | ArthurHoaro | 2020-08-13 | 1 | -0/+51 |
| | | | | Also handle authentication check in a new middleware for the admin group. | ||||
* | Remove anonymous permission and initialize bookmarks on login | ArthurHoaro | 2020-08-01 | 1 | -3/+0 |
| | |||||
* | New basePath: fix officiel plugin paths and vintage template | ArthurHoaro | 2020-07-26 | 1 | -2/+0 |
| | |||||
* | Fix: visitor are allowed to chose nb of links per page | ArthurHoaro | 2020-07-24 | 1 | -0/+71 |
| | |||||
* | Fix default link and redirection in install controller | ArthurHoaro | 2020-07-24 | 1 | -2/+2 |
| | |||||
* | Multiple small fixes | ArthurHoaro | 2020-07-23 | 1 | -0/+1 |
| | |||||
* | Process login through Slim controller | ArthurHoaro | 2020-07-23 | 2 | -4/+275 |
| | |||||
* | Process Shaarli install through Slim controller | ArthurHoaro | 2020-07-23 | 1 | -0/+264 |
| | |||||
* | Process main page (linklist) through Slim controller | ArthurHoaro | 2020-07-23 | 1 | -0/+448 |
| | | | | | Including a bunch of improvements on the container, and helper used across new controllers. | ||||
* | Use multi-level routes for existing controllers instead of 1 level everywhere | ArthurHoaro | 2020-07-23 | 2 | -6/+6 |
| | | | | Also prefix most admin routes with /admin/ | ||||
* | Explicitly define base and asset path in templates | ArthurHoaro | 2020-07-23 | 2 | -13/+11 |
| | | | | | | | With the new routes, all pages are not all at the same folder level anymore (e.g. /shaare and /shaare/123), so we can't just use './' everywhere. The most consistent way to handle this is to prefix all path with the proper variable, and handle the actual path in controllers. | ||||
* | Process configure page through Slim controller | ArthurHoaro | 2020-07-23 | 2 | -18/+19 |
| | |||||
* | Test ShaarliAdminController | ArthurHoaro | 2020-07-23 | 1 | -1/+1 |
| | |||||
* | Process password change controller through Slim | ArthurHoaro | 2020-07-23 | 9 | -99/+1 |
| | |||||
* | Initialize admin Slim controllers | ArthurHoaro | 2020-07-23 | 9 | -0/+1938 |
- Reorganize visitor controllers - Fix redirection with Slim's requests base path - Fix daily links |