aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.php
Commit message (Collapse)AuthorAgeFilesLines
* Process thumbnail synchronize page through Slim controllersArthurHoaro2020-07-231-27/+8
|
* Process token retrieve through Slim controllerArthurHoaro2020-07-231-2/+2
|
* Process plugins administration page through Slim controllersArthurHoaro2020-07-231-49/+5
|
* Process bookmarks import through Slim controllerArthurHoaro2020-07-231-45/+3
|
* Process bookmark exports through Slim controllersArthurHoaro2020-07-231-44/+3
|
* Use NetscapeBookmarkUtils object instance instead of static callsArthurHoaro2020-07-231-7/+2
|
* Pin bookmarks through Slim controllerArthurHoaro2020-07-231-14/+3
|
* Process change visibility action through Slim controllerArthurHoaro2020-07-231-47/+4
|
* Improve ManageTagController coverage and error handlingArthurHoaro2020-07-231-5/+5
|
* Use multi-level routes for existing controllers instead of 1 level everywhereArthurHoaro2020-07-231-103/+43
| | | | Also prefix most admin routes with /admin/
* Handle shaare creation/edition/deletion through Slim controllersArthurHoaro2020-07-231-158/+22
|
* Process manage tags page through Slim controllerArthurHoaro2020-07-231-32/+3
|
* Process configure page through Slim controllerArthurHoaro2020-07-231-82/+4
|
* Process password change controller through SlimArthurHoaro2020-07-231-50/+4
|
* Process tools page through Slim controllerArthurHoaro2020-07-231-14/+4
|
* Initialize admin Slim controllersArthurHoaro2020-07-231-16/+19
| | | | | | - Reorganize visitor controllers - Fix redirection with Slim's requests base path - Fix daily links
* Process session filters through Slim controllersArthurHoaro2020-07-231-41/+16
| | | | | | | Including: - visibility - links per page - untagged only
* Process remove tag endpoint through Slim controllerArthurHoaro2020-07-231-29/+2
|
* Process OpenSearch controller through SlimArthurHoaro2020-07-231-3/+2
| | | | Also it was missing on the default template feeds
* RSS/ATOM feeds: process through Slim controllerArthurHoaro2020-07-231-38/+3
|
* Make FeedBuilder instance creation independant of the request stackArthurHoaro2020-07-231-3/+1
|
* Remove legacy handling of /add-tag routeArthurHoaro2020-07-231-39/+1
|
* Process Daily RSS feed through Slim controllerArthurHoaro2020-07-231-100/+3
| | | | The daily RSS template has been entirely rewritten to handle the whole feed through the template engine.
* Slim daily: support legacy query parameterArthurHoaro2020-07-231-1/+2
|
* Process daily page through Slim controllerArthurHoaro2020-07-231-107/+4
|
* Process tag list page through Slim controllerArthurHoaro2020-07-231-22/+2
|
* Few optimizations and code readability for tag cloud controllerArthurHoaro2020-07-231-1/+1
|
* Handle tag filtering in the Bookmark serviceArthurHoaro2020-07-231-5/+0
|
* Working version before optimizationArthurHoaro2020-07-231-2/+2
|
* Process tag cloud page through Slim controllerArthurHoaro2020-07-231-43/+2
|
* Slim router: handle add tag routeArthurHoaro2020-07-231-0/+1
|
* Process logout through Slim controllerArthurHoaro2020-07-231-5/+2
|
* Migrate cache purge function to a proper classArthurHoaro2020-07-231-2/+6
| | | | | | And update dependencies and tests. Note that SESSION['tags'] has been removed a log ago
* Process picwall rendering through Slim controller + UTArthurHoaro2020-07-231-31/+2
|
* Fix all relative link to work with new URLArthurHoaro2020-07-231-11/+11
|
* Fix division by zero in tagcloudArthurHoaro2020-01-261-2/+3
| | | | It happens if we have a maximum of 1 occurrence in tags (log(1) = 0)
* Fix all existing links and redirection to ?do=loginArthurHoaro2020-01-261-9/+9
|
* Render login page through Slim controllerArthurHoaro2020-01-261-37/+29
|
* Rollback breaking change in REST API routesArthurHoaro2020-01-261-5/+5
|
* Session cookie setting being set while session is activeArthurHoaro2020-01-231-0/+2
| | | | | Trying to do will raise a warning since PHP 7.2, and it never worked as intented. See: https://bugs.php.net/bug.php\?id\=75650
* Fix an issue with private tags and fix nomarkdown tag (#1399)ArthurHoaro2020-01-181-15/+24
|\ | | | | Fix an issue with private tags and fix nomarkdown tag
| * Fix an issue with private tags and fix nomarkdown tagArthurHoaro2020-01-181-15/+24
| | | | | | | | | | | | | | | | The new bookmark service wasn't handling private tags properly. nomarkdown tag is now shown only for logged in user in bookmarks, and hidden for everyone in tag clouds/lists. Fixes #726
* | Fix an issue with bookmark visibility filterArthurHoaro2020-01-181-1/+1
|/
* Add and update unit test for the new system (Bookmark + Service)ArthurHoaro2020-01-181-3/+3
| | | | See #1307
* Apply the new system (Bookmark + Service) to the whole code baseArthurHoaro2020-01-181-277/+278
| | | | See https://github.com/shaarli/Shaarli/issues/1307
* Bump PHP version check in index.phpArthurHoaro2019-08-101-3/+1
| | | | Fixes #1249
* Fixes a Undefined index: thumbnail in daily page.kalvn2019-08-041-1/+1
|
* Persist sticky status on bookmark updateArthurHoaro2019-07-271-14/+10
| | | | Fixes #1331
* WIP - Plugin to override default template colorsArthurHoaro2019-07-081-0/+1
| | | | | | | | | | * Adds a new core plugin to override default template colors * Adds a new hook when plugin settings are saved (`save_plugin_parameters`) * Use CSS native variables for main colors instead of SASS variables * Disable SASS sort order rules due to a bug in the plugin Fixes #1312
* Automatically retrieve description for new bookmarksArthurHoaro2019-07-061-1/+4
| | | | | | | | | | | | | | | If the option is enabled, it will try to find a meta tag containing the page description and keywords, just like we do for the page title. It will either look for regular meta tag or OpenGraph ones. The option is disabled by default. Note that keywords meta tags is mostly not used. In `configure` template, the variable associated with this setting is `$retrieve_description`. Fixes #1302