Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix: synchronous metadata retrieval is failing in strict mode | ArthurHoaro | 2020-12-16 | 1 | -1/+1 |
| | | | | | | Metadata can now only be string or null. Fixes #1653 | ||||
* | Apply PHP Code Beautifier on source code for linter automatic fixes | ArthurHoaro | 2020-11-09 | 1 | -5/+8 |
| | |||||
* | Feature: support any tag separator | ArthurHoaro | 2020-11-05 | 1 | -2/+10 |
| | | | | | | | | So it allows to have multiple words tags. Breaking change: commas ',' are no longer a default separator. Fixes #594 | ||||
* | Remove unnecessary escape of referer | ArthurHoaro | 2020-10-28 | 1 | -1/+1 |
| | | | | Fixes #1611 | ||||
* | Bulk creation: ignore blank lines | ArthurHoaro | 2020-10-27 | 1 | -0/+3 |
| | |||||
* | Bulk creation: improve performances using memoization | ArthurHoaro | 2020-10-27 | 1 | -9/+43 |
| | | | | Reduced additional processing time per links from ~40ms to ~5ms | ||||
* | Bulk creation: fix private status based on the first form | ArthurHoaro | 2020-10-27 | 1 | -1/+5 |
| | |||||
* | Feature: bulk creation of bookmarks | ArthurHoaro | 2020-10-27 | 1 | -0/+222 |
This changes creates a new form in addlink page allowing to create multiple bookmarks at once more easily. It focuses on re-using as much existing code and template component as possible. These changes includes: - a new form in addlink (hidden behind a button by default), containing a text area for URL, and tags/private status to apply to created links - this form displays a new template called editlink.batch, itself including editlink template multiple times - User interation in this new templates are handle by a new JS script (shaare-batch.js) making AJAX requests, and therefore does not need page reloading - ManageShaareController has been split into 3 distinct controllers: + ShaareAdd: displays addlink template + ShaareManage: various operation applied on existing shaares (change visibility, pin, deletion, etc.) + ShaarePublish: handles creation/edit forms and saving Shaare's form - Updated translations Fixes #137 |