aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/container
Commit message (Collapse)AuthorAgeFilesLines
* New plugin hook: ability to add custom filters to Shaarli search engineArthurHoaro2021-02-041-0/+1
| | | | | | | A new plugin hook has been added: hook_test_filter_search_entry This hook allows to filter out bookmark with custom plugin code when a search is performed. Related to #143
* Plugin system: allow plugins to provide custom routesArthurHoaro2020-11-151-11/+6
| | | | | | | | | | - each route will be prefixed by `/plugin/<plugin_name>` - add a new template for plugins rendering - add a live example in the demo_plugin Check out the "Plugin System" documentation for more detail. Related to #143
* Manually fix remaining PHPCS errorsArthurHoaro2020-11-091-1/+1
|
* Use PSR-3 logger for login attemptsArthurHoaro2020-10-202-1/+11
| | | | Fixes #1122
* Add a setting to retrieve bookmark metadata asynchrounouslyArthurHoaro2020-10-152-0/+7
| | | | | | | | | | | | | | - There is a new standalone script (metadata.js) which requests a new controller to get bookmark metadata and fill the form async - This feature is enabled with the new setting: general.enable_async_metadata (enabled by default) - general.retrieve_description is now enabled by default - A small rotating loader animation has a been added to bookmark inputs when metadata is being retrieved (default template) - Custom JS htmlentities has been removed and mathiasbynens/he library is used instead Fixes #1563
* Add mutex on datastore I/O operationsArthurHoaro2020-10-131-0/+2
| | | | | | To make sure that there is no concurrent operation on the datastore file. Fixes #1132
* Properly handle 404 errorsArthurHoaro2020-09-122-4/+9
| | | | | | Use 404 template instead of default Slim error page if the route is not found. Fixes #827
* Better handling of plugin incompatibilityArthurHoaro2020-08-272-2/+5
| | | | | If a PHP is raised while executing plugin hook, Shaarli will display an error instead of rendering the error page (or just ending in fatal error for default hooks). Also added phpErrorHandler which is handled differently that regular errorHandler by Slim.:
* Move error handling to dedicated controller instead of middlewareArthurHoaro2020-08-211-0/+5
|
* Better support for notes permalinkArthurHoaro2020-07-281-1/+4
|
* Multiple small fixesArthurHoaro2020-07-231-1/+0
|
* Process Shaarli install through Slim controllerArthurHoaro2020-07-232-0/+10
|
* Process main page (linklist) through Slim controllerArthurHoaro2020-07-232-2/+16
| | | | | Including a bunch of improvements on the container, and helper used across new controllers.
* Process plugins administration page through Slim controllersArthurHoaro2020-07-231-1/+6
|
* Use NetscapeBookmarkUtils object instance instead of static callsArthurHoaro2020-07-232-0/+7
|
* Use multi-level routes for existing controllers instead of 1 level everywhereArthurHoaro2020-07-232-15/+12
| | | | Also prefix most admin routes with /admin/
* Explicitly define base and asset path in templatesArthurHoaro2020-07-231-0/+1
| | | | | | | 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.
* Handle shaare creation/edition/deletion through Slim controllersArthurHoaro2020-07-232-0/+14
|
* RSS/ATOM feeds: process through Slim controllerArthurHoaro2020-07-232-0/+12
|
* Process Daily RSS feed through Slim controllerArthurHoaro2020-07-231-1/+4
| | | | The daily RSS template has been entirely rewritten to handle the whole feed through the template engine.
* Slim router: handle add tag routeArthurHoaro2020-07-231-0/+1
|
* Process logout through Slim controllerArthurHoaro2020-07-232-2/+21
|
* Process picwall rendering through Slim controller + UTArthurHoaro2020-07-232-0/+7
|
* Execute common plugin hooks before rendering login pageArthurHoaro2020-01-262-0/+6
|
* Render login page through Slim controllerArthurHoaro2020-01-262-0/+105