Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | API: Get History endpoint | ArthurHoaro | 2017-05-07 | 1 | -0/+1 |
| | | | | See http://shaarli.github.io/api-documentation/#links-history-get | ||||
* | Merge pull request #856 from ArthurHoaro/api/delete-link | ArthurHoaro | 2017-05-07 | 1 | -0/+1 |
|\ | | | | | API: add DELETE endpoint | ||||
| * | API: add DELETE endpoint | ArthurHoaro | 2017-05-07 | 1 | -0/+1 |
| | | | | | | | | | | | | Based on #840 See http://shaarli.github.io/api-documentation/\#links-link-delete | ||||
* | | Merge pull request #840 from ArthurHoaro/api/putLink | ArthurHoaro | 2017-05-07 | 1 | -0/+1 |
|\| | | | | | REST API: implement PUT method | ||||
| * | REST API: implement PUT method | ArthurHoaro | 2017-05-07 | 1 | -0/+1 |
| | | | | | | | | | | * Related to #609 * Documentation: http://shaarli.github.io/api-documentation/#links-link-put | ||||
* | | Merge pull request #764 from ArthurHoaro/feature/history | ArthurHoaro | 2017-05-06 | 1 | -1/+22 |
|\ \ | | | | | | | History mechanism | ||||
| * | | History mechanism | ArthurHoaro | 2017-03-21 | 1 | -1/+22 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use case: rest API service * saved by default in data/history * same format as datastore.php * traced events: * save/edit/delete link * change settings or plugins settings * rename tag | ||||
* | | | Merge pull request #830 from ArthurHoaro/theme/timezone | ArthurHoaro | 2017-04-25 | 1 | -12/+9 |
|\ \ \ | | | | | | | | | Change timezone data structure send to the templates | ||||
| * | | | Change timezone data structure send to the templates | ArthurHoaro | 2017-04-03 | 1 | -12/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The goal of this is to be able to adapt the timezone form in template without hacking the HTML already rendered. * there are two arrays available: * `continents` which contains only a list of available continents * `cities` which contains a list of available timezone cities, associated with their continent Note: there are two distinct array because RainTPL doesn't support nested loop very well. | ||||
* | | | | Use raw bytes for upload size hidden input | ArthurHoaro | 2017-04-10 | 1 | -1/+16 |
| | | | | |||||
* | | | | Fix a warning generated in return_bytes function and refactor it | ArthurHoaro | 2017-04-03 | 1 | -30/+2 |
| |_|/ |/| | | | | | | | | | | | | | | It was multiplying a string containing a letter. Moved function to Utils.php and display a human readable limit size | ||||
* | | | Merge pull request #742 from ArthurHoaro/api/postLink | ArthurHoaro | 2017-04-01 | 1 | -3/+4 |
|\ \ \ | | | | | | | | | REST API: implement POST link service | ||||
| * | | | REST API: implement POST link service | ArthurHoaro | 2017-03-27 | 1 | -3/+4 |
| | | | | |||||
* | | | | Merge pull request #839 from ArthurHoaro/theme/daily-page-title | ArthurHoaro | 2017-03-29 | 1 | -0/+1 |
|\ \ \ \ | | | | | | | | | | | Display daily date in the page title (browser title) | ||||
| * | | | | Display daily date in the page title (browser title) | ArthurHoaro | 2017-03-28 | 1 | -0/+1 |
| |/ / / | | | | | | | | | | | | | | | | | Fixes #211 Depends on #838 | ||||
* / / / | Theme: use format_date function for daily date | ArthurHoaro | 2017-03-28 | 1 | -0/+1 |
|/ / / | |||||
* | | | Tags parameter for redirects #833 | philipp-r | 2017-03-25 | 1 | -3/+9 |
| | | | |||||
* | | | Merge pull request #831 from ArthurHoaro/theme/install-api-enable | ArthurHoaro | 2017-03-23 | 1 | -1/+1 |
|\ \ \ | | | | | | | | | Add API setting in the new theme during the installation | ||||
| * | | | Add API setting in the new theme during the installation | ArthurHoaro | 2017-03-22 | 1 | -1/+1 |
| | |/ | |/| | | | | | | | Also use the same variable name across template files | ||||
* | | | Fixes a bug preventing to edit link with ID 0 | ArthurHoaro | 2017-03-22 | 1 | -2/+6 |
| |/ |/| | | | | | Fixes #814 | ||||
* | | Set Shaarli's version only in shaarli_version.php file | ArthurHoaro | 2017-03-21 | 1 | -4/+3 |
| | | |||||
* | | Use 'dev' version on the master branch | ArthurHoaro | 2017-03-12 | 1 | -2/+2 |
|/ | | | | Allowed check branches are now `latest` and `stable`. | ||||
* | Link imports are now logged in `data/` folder, and can be debug using ↵ | ArthurHoaro | 2017-03-10 | 1 | -1/+1 |
| | | | | | | `dev.debug=true` setting related to #741 and #681 | ||||
* | Fix blocking namespace issue | ArthurHoaro | 2017-03-08 | 1 | -0/+1 |
| | |||||
* | Display private only filter as search parameter | ArthurHoaro | 2017-03-08 | 1 | -0/+1 |
| | |||||
* | application: introduce the Shaarli\Config namespace | VirtualTam | 2017-03-04 | 1 | -2/+1 |
| | | | | | | | | | | | Namespaces have been introduced with the REST API, and should be generalized to the whole codebase to manage object scope and benefit from autoloading. See: - https://secure.php.net/manual/en/language.namespaces.php - http://www.php-fig.org/psr/psr-4/ Signed-off-by: VirtualTam <virtualtam@flibidi.net> | ||||
* | REST API: implements getLink by ID service | ArthurHoaro | 2017-02-19 | 1 | -2/+3 |
| | | | | See http://shaarli.github.io/api-documentation/#links-link-get | ||||
* | Bump version to v0.8.3 | ArthurHoaro | 2017-01-20 | 1 | -1/+1 |
| | | | | Signed-off-by: ArthurHoaro <arthur@hoa.ro> | ||||
* | Merge pull request #768 from ArthurHoaro/feature/get-public-links | ArthurHoaro | 2017-01-17 | 1 | -2/+2 |
|\ | | | | | Update LinkFilter to be able to filter only public links | ||||
| * | Update LinkFilter to be able to filter only public links | ArthurHoaro | 2017-01-16 | 1 | -2/+2 |
| | | | | | | | | | | | | No update regarding the UI or the API for now Fixes #758 | ||||
* | | Merge pull request #767 from ArthurHoaro/feature/delete-tag-redirect | ArthurHoaro | 2017-01-17 | 1 | -1/+1 |
|\ \ | | | | | | | Stay on the changetag page after tag deletion | ||||
| * | | Stay on the changetag page after tag deletion | ArthurHoaro | 2017-01-16 | 1 | -1/+1 |
| |/ | | | | | | | | | | | + fix changetag CSS alignement relates to #756 | ||||
* / | Fix redirection after link deletion | ArthurHoaro | 2017-01-16 | 1 | -25/+9 |
|/ | | | | relates to #756 | ||||
* | Bump version to v0.8.2 | ArthurHoaro | 2017-01-16 | 1 | -2/+2 |
| | |||||
* | Merge pull request #761 from ArthurHoaro/hotfix/referrer-warning | ArthurHoaro | 2017-01-16 | 1 | -3/+13 |
|\ | | | | | Prevent warning if HTTP_REFERER isn't set | ||||
| * | Prevent warning if HTTP_REFERER isn't set | ArthurHoaro | 2017-01-15 | 1 | -3/+13 |
| | | | | | | | | Fixes #723 | ||||
* | | Merge pull request #759 from ArthurHoaro/hotfix/dup-tags | ArthurHoaro | 2017-01-16 | 1 | -7/+7 |
|\ \ | | | | | | | Prevent tag duplicate when renaming | ||||
| * | | Prevent tag duplicate when renaming | ArthurHoaro | 2017-01-15 | 1 | -7/+7 |
| |/ | | | | | | | Fixes #757 | ||||
* / | Bump expected minimal PHP version to 5.5 | VirtualTam | 2017-01-16 | 1 | -2/+2 |
|/ | | | | | | | Relates to https://github.com/shaarli/Shaarli/issues/599 Relates to db6b09b69ee265a7d775924fcff9c61aaaabf1cb Signed-off-by: VirtualTam <virtualtam@flibidi.net> | ||||
* | Merge pull request #727 from ArthurHoaro/api/getlinks | ArthurHoaro | 2017-01-15 | 1 | -0/+1 |
|\ | | | | | REST API: implement getLinks service | ||||
| * | REST API: implement getLinks service | ArthurHoaro | 2017-01-15 | 1 | -0/+1 |
| | | | | | | | | See http://shaarli.github.io/api-documentation/#links-links-collection-get | ||||
* | | Cleanup: use safe boolean comparisons | VirtualTam | 2017-01-07 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net> | ||||
* | | Merge pull request #732 from ArthurHoaro/feature/theme-manager | Arthur | 2017-01-06 | 1 | -1/+6 |
|\ \ | | | | | | | Theme manager: improvements | ||||
| * | | Minor improvements regarding #705 (coding style, unit tests, etc.) | ArthurHoaro | 2017-01-05 | 1 | -2/+2 |
| | | | |||||
| * | | Change templates set through administration UI | Knah Tsaeb | 2017-01-05 | 1 | -1/+6 |
| |/ | |||||
* / | Cleanup: remove unused variables | VirtualTam | 2017-01-05 | 1 | -1/+1 |
|/ | | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net> | ||||
* | Merge pull request #682 from ArthurHoaro/delete-button | Arthur | 2017-01-04 | 1 | -8/+8 |
|\ | | | | | Bugfixes on link deletion, and use a GET form | ||||
| * | Bugfixes on link deletion, and use a GET form | ArthurHoaro | 2016-12-16 | 1 | -8/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | Use a GET form to delete links: harmonize with edit_link and preparation for #585 Bug fixes: * LinkDB element can't be passed as reference, fix error: PHP Notice: Indirect modification of overloaded element of LinkDB has no effect * Resource cache folder setting wasn't set correctly | ||||
* | | Merge pull request #731 from virtualtam/fix/api/namespaces | VirtualTam | 2017-01-03 | 1 | -2/+2 |
|\ \ | | | | | | | API: fix Slim namespaces | ||||
| * | | API: fix Slim namespaces | VirtualTam | 2017-01-02 | 1 | -2/+2 |
| | | | | | | | | | | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net> |