Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Asynchronous retrieval of bookmark's thumbnails | ArthurHoaro | 2020-10-20 | 4 | -8/+158 |
| | | | | | | | | | 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 | ||||
* | Merge pull request #1567 from ArthurHoaro/feature/async-title-retrieval | ArthurHoaro | 2020-10-20 | 4 | -150/+347 |
|\ | |||||
| * | Improve metadata retrieval (performances and accuracy) | ArthurHoaro | 2020-10-15 | 2 | -122/+146 |
| | | | | | | | | | | - Use dedicated function to download headers to avoid apply multiple regexps on headers - Also try to extract title from meta tags | ||||
| * | Add a setting to retrieve bookmark metadata asynchrounously | ArthurHoaro | 2020-10-15 | 3 | -35/+208 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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 search highlight unit tests | ArthurHoaro | 2020-10-16 | 6 | -3/+184 |
| | | |||||
* | | Strict types: fix an issue in daily where the date could be an int | ArthurHoaro | 2020-10-16 | 1 | -2/+2 |
|/ | |||||
* | Add strict types for bookmarks management | ArthurHoaro | 2020-10-13 | 7 | -109/+22 |
| | | | | | | | | Parameters typing and using strict types overall increase the codebase quality by enforcing the a given parameter will have the expected type. It also removes the need to unnecessary unit tests checking methods behavior with invalid input. | ||||
* | Add mutex on datastore I/O operations | ArthurHoaro | 2020-10-13 | 18 | -41/+92 |
| | | | | | | To make sure that there is no concurrent operation on the datastore file. Fixes #1132 | ||||
* | Merge pull request #1540 from ArthurHoaro/fix/metadata-regexes | ArthurHoaro | 2020-10-13 | 1 | -0/+89 |
|\ | | | | | Improve regex to extract HTML metadata (title, description, etc.) | ||||
| * | Improve regex to extract HTML metadata (title, description, etc.) | ArthurHoaro | 2020-09-03 | 1 | -0/+89 |
| | | | | | | | | | | | | Also added a bunch of tests to cover more use cases. Fixes #1375 | ||||
* | | Merge pull request #1525 from ArthurHoaro/feature/rest-api-bookmark-dates | ArthurHoaro | 2020-10-13 | 1 | -4/+4 |
|\ \ | | | | | | | REST API: allow override of creation and update dates | ||||
| * | | REST API: allow override of creation and update dates | ArthurHoaro | 2020-08-29 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | | | | | | Note that if they're not provided, default behaviour will apply: creation and update dates will be autogenerated, and not empty. Fixes #1223 | ||||
* | | | Add Markdown Extra formatter | ArthurHoaro | 2020-10-13 | 2 | -1/+163 |
| | | | | | | | | | | | | | | | | | | | | | | | | Library: [Parsedown Extra](https://github.com/erusev/parsedown-extra) Also sort dependencies alphabetically. Fixes #1169 | ||||
* | | | Merge pull request #1575 from ArthurHoaro/feature/php8 | ArthurHoaro | 2020-10-03 | 111 | -287/+368 |
|\ \ \ | |||||
| * | | | Use assertRegExp polyfill instead of regexMatches | ArthurHoaro | 2020-09-29 | 1 | -1/+2 |
| | | | | |||||
| * | | | Fix missing @expectedException convertion | ArthurHoaro | 2020-09-29 | 8 | -20/+14 |
| | | | | |||||
| * | | | Compatibility with PHP 8 | ArthurHoaro | 2020-09-29 | 3 | -18/+7 |
| | | | | |||||
| * | | | Compatibility with PHPUnit 9 | ArthurHoaro | 2020-09-29 | 110 | -249/+346 |
| | | | | |||||
* | | | | Merge pull request #1574 from stoeps13/hosting-fix | ArthurHoaro | 2020-10-03 | 1 | -0/+47 |
|\ \ \ \ | |||||
| * | | | | Revert unrelated changes and add unit tests | ArthurHoaro | 2020-09-30 | 1 | -0/+47 |
| |/ / / | |||||
* | | | | Fix a bug preventing to edit bookmark with ID #0 | ArthurHoaro | 2020-09-30 | 1 | -0/+24 |
| | | | | |||||
* | | | | Merge pull request #1569 from ArthurHoaro/fix/bad-encoding | ArthurHoaro | 2020-09-30 | 1 | -0/+13 |
|\ \ \ \ | |/ / / |/| | | | Fix warning if the encoding retrieved from external headers is invalid | ||||
| * | | | Fix warning if the encoding retrieved from external headers is invalid | ArthurHoaro | 2020-09-30 | 1 | -0/+13 |
| | | | | | | | | | | | | | | | | Also fixed the regex to support this failing header: charset="utf-8"\r\n" | ||||
* | | | | Convert legacy PHPUnit @expected* to new ->expect* | ArthurHoaro | 2020-09-27 | 21 | -170/+183 |
| | | | | | | | | | | | | | | | | Converted automatically using https://github.com/ArthurHoaro/convert-legacy-phpunit-expect | ||||
* | | | | Comply with PHPUnit V8: setup/teardown functions must return void | ArthurHoaro | 2020-09-26 | 47 | -72/+72 |
|/ / / | |||||
* | | | Merge pull request #1560 from ArthurHoaro/fix/redirect-wrong-path | ArthurHoaro | 2020-09-25 | 4 | -16/+47 |
|\ \ \ | | | | | | | | | Fix invalid redirection using the path of an external domain | ||||
| * | | | Fix invalid redirection using the path of an external domain | ArthurHoaro | 2020-09-22 | 4 | -16/+47 |
| | | | | | | | | | | | | | | | | Fixes #1554 | ||||
* | | | | Merge pull request #1558 from ArthurHoaro/fix/plugins-base-path | ArthurHoaro | 2020-09-25 | 2 | -21/+39 |
|\ \ \ \ | |/ / / |/| | | | Fix plugin base path in core plugins | ||||
| * | | | Fix plugin base path in core plugins | ArthurHoaro | 2020-09-22 | 2 | -21/+39 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also fix note check in archiveorg plugin, and regression on vintage template. Documentation regarding relative path has been added. Fixes #1548 | ||||
* | | | | Merge pull request #1539 from ArthurHoaro/feature/manual-root-url | ArthurHoaro | 2020-09-22 | 9 | -20/+140 |
|\ \ \ \ | |/ / / |/| | | | |||||
| * | | | Fix subfolder configuration in unit tests | ArthurHoaro | 2020-09-12 | 7 | -19/+54 |
| | | | | |||||
| * | | | Add manual configuration for root URL | ArthurHoaro | 2020-09-12 | 2 | -1/+86 |
| | | | | | | | | | | | | | | | | | | | | | | | | This new setting under 'general.root_url' allows to override automatic discovery of Shaarli instance's URL. Fixes #1339 | ||||
* | | | | Merge pull request #1553 from ArthurHoaro/fix/404-page | ArthurHoaro | 2020-09-12 | 3 | -1/+83 |
|\ \ \ \ | | | | | | | | | | | Properly handle 404 errors | ||||
| * | | | | Properly handle 404 errors | ArthurHoaro | 2020-09-12 | 3 | -1/+83 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use 404 template instead of default Slim error page if the route is not found. Fixes #827 | ||||
* | | | | | Merge pull request #1551 from ArthurHoaro/fix/plugin-save-metadata | ArthurHoaro | 2020-09-12 | 3 | -17/+35 |
|\ \ \ \ \ | |_|/ / / |/| | | | | Plugins: do not save metadata along plugin parameters | ||||
| * | | | | Plugins: do not save metadata along plugin parameters | ArthurHoaro | 2020-09-12 | 3 | -17/+35 |
| |/ / / | | | | | | | | | | | | | | | | | | | | | Also prevent the token to be saved. Fixes #1550 | ||||
* | | | | Merge pull request #1552 from ArthurHoaro/feature/better-initializer | ArthurHoaro | 2020-09-12 | 2 | -29/+59 |
|\ \ \ \ | |/ / / |/| | | | |||||
| * | | | Improve default bookmarks after install | ArthurHoaro | 2020-09-10 | 2 | -29/+59 |
| | |/ | |/| | | | | | | | | | | | | | | | | Used @nodiscc suggestion in #1148 (slightly edited). It provides a description of what Shaarli does, Markdown rendering demo, and a thumbnail link. Fixes #1148 | ||||
* | | | Merge pull request #1547 from ArthurHoaro/fix/daily-visibility | ArthurHoaro | 2020-09-06 | 2 | -2/+42 |
|\ \ \ | | | | | | | | | Fix visibility issue on daily page | ||||
| * | | | Fix visibility issue on daily page | ArthurHoaro | 2020-09-06 | 2 | -2/+42 |
| |/ / | | | | | | | | | | | | | | | | This filter (links by day) didn't apply any visibility parameter. Fixes #1543 | ||||
* | | | Merge pull request #1537 from ArthurHoaro/fix/back-compatible-targets | ArthurHoaro | 2020-09-03 | 2 | -515/+3 |
|\ \ \ | |/ / |/| | | |||||
| * | | Fix feed target in UT | ArthurHoaro | 2020-09-03 | 1 | -3/+3 |
| | | | |||||
| * | | Improve backward compatibility for LegacyRouter | ArthurHoaro | 2020-09-03 | 1 | -512/+0 |
| | | | | | | | | | | | | | | | | | | | | | 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 | ||||
* | | | Merge pull request #1523 from ArthurHoaro/fix/default-colors-generation | ArthurHoaro | 2020-09-03 | 1 | -9/+10 |
|\ \ \ | | | | | | | | | Default colors plugin: generate CSS file during initialization | ||||
| * | | | Default colors plugin: generate CSS file during initialization | ArthurHoaro | 2020-08-29 | 1 | -9/+10 |
| | |/ | |/| | | | | | | | | | | Current behaviour only generate the custom CSS file when the plugin settings are saved, which can be annoying if the file is deleted but the settings are set. Most common use case is Docker deployment, because the plugin directory is not mounted as a volume. | ||||
* | | | Merge pull request #1520 from ArthurHoaro/fix/jp-language | ArthurHoaro | 2020-09-03 | 1 | -1/+1 |
|\ \ \ | |||||
| * | | | Fix UT | ArthurHoaro | 2020-08-27 | 1 | -1/+1 |
| |/ / | |||||
* | | | Merge pull request #1524 from ArthurHoaro/fix/rss-sticky | ArthurHoaro | 2020-09-03 | 1 | -6/+6 |
|\ \ \ | | | | | | | | | Fixed: Pinned bookmarks are displayed first in ATOM/RSS feeds | ||||
| * | | | Fixed: Pinned bookmarks are displayed first in ATOM/RSS feeds | ArthurHoaro | 2020-08-29 | 1 | -6/+6 |
| |/ / | | | | | | | | | | Fixes #1485 | ||||
* | | | Merge pull request #1534 from ArthurHoaro/fix/legacy-route-post | ArthurHoaro | 2020-09-03 | 1 | -3/+5 |
|\ \ \ | |_|/ |/| | |