aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc
Commit message (Collapse)AuthorAgeFilesLines
* Update German translations, added new strings to server.htmlbschwede2021-01-251-548/+1256
|
* Update Japanese translationsyudete2021-01-041-12/+7
|
* Fix: soft fail if the mutex is not workingArthurHoaro2020-11-241-89/+97
| | | | | | And display the error in server admin page Fixes #1650
* chmod -x russian translation fileArthurHoaro2020-11-241-0/+0
|
* Add russian language fileprog-it2020-11-151-0/+1944
|
* Server admin: do not retrieve latest version without update_checkArthurHoaro2020-11-091-38/+75
| | | | | | | | | If the setting 'updates.check_updates' is disabled, do not retrieve the latest version on server administration page. Additionally, updated default values for - updates.check_updates from false to true - updates.check_updates_branch from stable to latest
* Display error details even with dev.debug set to falseArthurHoaro2020-11-051-3/+11
| | | | | | | It makes more sense to display the error even if it's unexpected. Only for logged in users. Fixes #1606
* Fix confirm popup before bookmark deletionArthurHoaro2020-11-051-8/+13
| | | | | | Regression introduced by #1596 Fixes #1623
* Fix French translationArthurHoaro2020-11-031-39/+41
| | | | | | 2 missing key + 1 wrong translation Fixes #1571
* Feature: bulk creation of bookmarksArthurHoaro2020-10-271-35/+74
| | | | | | | | | | | | | | | | | | | | | | | | | 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
* Feature: add weekly and monthly view/RSS feed for daily pageArthurHoaro2020-10-271-109/+147
| | | | | | | | | - Heavy refactoring of DailyController - Add a banner like in tag cloud to display monthly and weekly links - Translations: t() now supports variables with optional first letter uppercase Fixes #160
* Feature: Share private bookmarks using a URL containing a private keyArthurHoaro2020-10-271-18/+22
| | | | | | | | | | - Add a share link next to « Permalink » in linklist (using share icon from fork awesome) - This link generates a private key associated to the bookmark - Accessing the bookmark while logged out with the proper key will display it Fixes #475
* Feature: add a Server administration pageArthurHoaro2020-10-211-70/+224
| | | | | | | | | | | | It contains mostly read only information about the current Shaarli instance, PHP version, extensions, file and folder permissions, etc. Also action buttons to clear the cache or sync thumbnails. Part of the content of this page is also displayed on the install page, to check server requirement before installing Shaarli config file. Fixes #40 Fixes #185
* Update translations (Japanese)yudete2020-10-191-2/+24
|
* Update translations (Japanese)yudete2020-10-191-999/+1017
|
* Improve Manage tags pageArthurHoaro2020-10-161-43/+45
| | | | Fixes #1125
* Improve default bookmarks after installArthurHoaro2020-09-101-66/+203
| | | | | | | Used @nodiscc suggestion in #1148 (slightly edited). It provides a description of what Shaarli does, Markdown rendering demo, and a thumbnail link. Fixes #1148
* Japanese translation: add language to admin configuration pageArthurHoaro2020-08-271-0/+0
| | | | Also use ISO country code (JP) instead of JA.
* Better handling of plugin incompatibilityArthurHoaro2020-08-271-31/+35
| | | | | 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.:
* Update French translationArthurHoaro2020-07-231-430/+558
|
* Update Japanese translationsyude2020-02-111-311/+292
|
* Japanese translationyude2020-02-111-0/+1312
|
* Default colors plugin - TranslationsArthurHoaro2019-07-201-10/+43
|
* Automatically retrieve description for new bookmarksArthurHoaro2019-07-061-59/+69
| | | | | | | | | | | | | | | 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
* Daily - display the current day instead of the previous oneArthurHoaro2019-05-251-310/+411
| | | | | | | Also mention if it's today or yesterday for clarity using `dayDesc` variable Fixes #1299
* add "Select all" string and French translationLuce Carević2019-03-021-0/+3
|
* Sticky feature - Add translation and display for logged out usersArthurHoaro2018-10-061-251/+197
|
* update translationllune2018-08-021-26/+26
|
* fix bouttonllune2018-08-021-1/+1
|
* Maj French translationllune2018-08-021-4/+4
|
* Bunch of improvement for thumbnails integration:ArthurHoaro2018-07-172-88/+133
| | | | | | | | - add a default thumb size value (125x90px) - improve private vertical bar visual, especially with thumbnails - translations - add a sync thumbs button in tool and empty picwall page - fixes WT download mode in JSON config
* Take code review into accountArthurHoaro2018-07-052-21/+36
| | | | Upgrade web-thumbnailer and display thumbs right after download
* Update thumbnail integration after rebasing the branchArthurHoaro2018-07-052-106/+140
|
* Use web-thumbnailer to retrieve thumbnailsArthurHoaro2018-07-051-0/+9
| | | | | | | | | | * requires PHP 5.6 * use blazy on linklist since a lot more thumbs are retrieved * thumbnails can be disabled * thumbs size is now 120x120 * thumbs are now cropped to fit the expected size Fixes #345 #425 #487 #543 #588 #590
* Merge pull request #1081 from nodiscc/doc-merge-sharingnodiscc2018-04-181-3/+8
|\ | | | | doc: merge all sharing methods under a single "Sharing content" page
| * remove duplicate translationnodiscc2018-04-141-6/+0
| |
| * update PO strings for Edit/New Shaarenodiscc2018-04-141-3/+14
| | | | | | | | update french translation
* | German language created (#1114)Buster One2018-04-151-0/+1313
|/ | | | | | | | | | | | * Added german language selection * German language file created * typo * extra space removed and typo corrected * lines 1314 through 1408 removed as suggested
* Remove minified JS libsArthurHoaro2018-03-312-9/+0
|
* Webpack / Remove frontend dependencies from tpl/ & inc/ and move them to assets/ArthurHoaro2018-03-285-948/+0
|
* Use a specific page title in all pagesArthurHoaro2018-02-241-102/+126
| | | | | | Also fixed a few French translation issues Fixes #954 #955
* Public/private filter: use two separate buttonsArthurHoaro2018-01-241-28/+33
| | | | #1038
* Add a filter to only display public linksArthurHoaro2017-12-161-35/+38
| | | | | | When the key filter is clicked once, it only displays private link. When it is clicked on again, it becomes red and only public links are displayed. Another click and all links are displayed. The current visibility status is shown in the search banner Fixes #1030
* Improve messages if there is no plugin or parameter available in the admin pageArthurHoaro2017-11-111-57/+58
| | | | Fixes #931
* Translations : Working demo example of translation extensionArthurHoaro2017-10-221-33/+37
|
* Add language selection in the configure page of the default themeArthurHoaro2017-10-221-160/+251
|
* Use makefile target to generate MO file and remove it from gitArthurHoaro2017-10-222-60/+88
|
* Shaarli's translationArthurHoaro2017-10-222-0/+1243
| | | | | | | | | * translation system and unit tests * Translations everywhere Dont use translation merge It is not available with PHP builtin gettext, so it would have lead to inconsistency.
* Remove inline JS and add LibreJS headers in JS filesArthurHoaro2017-03-122-0/+56
| | | | | Fixes #33 (wow!) Relates to #395
* Upgrade awesomplete + fix multiple autocompletion fieldsArthurHoaro2017-02-273-79/+137
|