aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAgeFilesLines
* Bump Shaarli version to v0.8.7v0.8.7v0.8VirtualTam2018-06-203-4/+4
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* Merge pull request #1156 from virtualtam/v0.8-dockerfileVirtualTam2018-06-2019-298/+112
|\ | | | | v0.8 - Build the Docker image from the local sources
| * travis: disable unsupported PHP 5.3VirtualTam2018-06-172-1/+4
| | | | | | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
| * docker: generate the HTML documentationVirtualTam2018-06-173-5/+22
| | | | | | | | | | | | Relates to https://github.com/shaarli/Shaarli/issues/1153 Signed-off-by: VirtualTam <virtualtam@flibidi.net>
| * docker: build the image from the local sourcesVirtualTam2018-06-167-2/+177
| | | | | | | | | | | | Relates to https://github.com/shaarli/Shaarli/issues/1153 Signed-off-by: VirtualTam <virtualtam@flibidi.net>
| * docker: remove current image build resourcesVirtualTam2018-06-1613-381/+0
|/ | | | | | Relates to https://github.com/shaarli/Shaarli/issues/1153 Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* Bump Shaarli version to v0.8.6v0.8.6VirtualTam2018-02-192-3/+3
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* Fix version check testVirtualTam2018-02-192-1/+7
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* Bump Shaarli version to v0.8.5v0.8.5VirtualTam2018-01-043-6/+6
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* Fix XSS vulnerabilityVirtualTam2018-01-041-1/+1
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* UpdaterTest: ensure PHP 5.3 compatibilityv0.8.4VirtualTam2017-03-041-6/+6
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* Bump version to 0.8.4VirtualTam2017-03-043-2/+7
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* Add markdown_escape settingArthurHoaro2017-03-046-27/+179
| | | | | | | | | | | | | This setting allows to escape HTML in markdown rendering or not. The goal behind it is to avoid XSS issue in shared instances. More info: * the setting is set to true by default * it is set to false for anyone who already have the plugin enabled (avoid breaking existing entries) * improve the HTML sanitization when the setting is set to false - but don't consider it XSS proof * mention the setting in the plugin README
* Bump version to v0.8.3v0.8.3ArthurHoaro2017-01-202-2/+2
| | | | Signed-off-by: ArthurHoaro <arthur@hoa.ro>
* Changelog v0.8.3ArthurHoaro2017-01-201-0/+6
|
* Fixes can login function call in loginform.htmlArthurHoaro2017-01-202-2/+3
| | | | Fixes #711
* Merge pull request #717 from ArthurHoaro/v0.8v0.8.2Arthur2016-12-153-4/+11
|\ | | | | Preparation of v0.8.2
| * Bump version to v0.8.2ArthurHoaro2016-12-152-3/+3
| |
| * v0.8.2 ChangelogArthurHoaro2016-12-151-0/+5
| |
| * Fix a regression: permalinks change when old links are editedArthurHoaro2016-12-151-1/+3
|/ | | | fixes #713
* Bump version to v0.8.1ArthurHoaro2016-12-1212-36/+198
| | | | Signed-off-by: ArthurHoaro <arthur@hoa.ro>
* Merge pull request #707 from ArthurHoaro/changelogArthur2016-12-121-1/+10
|\ | | | | changelog: add release date for v0.8.1 and add section v0.9.0
| * changelog: add release date for v0.8.1 and add section v0.9.0ArthurHoaro2016-12-121-1/+10
| |
* | Merge pull request #706 from ArthurHoaro/changelogArthur2016-12-121-4/+13
|\| | | | | changelog update
| * changelog updateArthurHoaro2016-12-121-4/+13
|/
* Merge pull request #697 from ArthurHoaro/feature/ids-bisArthur2016-12-1220-233/+617
|\ | | | | Link ID refactoring
| * Add a persistent 'shorturl' key to all linksArthurHoaro2016-12-1215-91/+115
| | | | | | | | | | | | | | All existing link will keep their permalinks. New links will have smallhash generated with date+id. The purpose of this is to avoid collision between links due to their creation date.
| * Unit Test for the new ID systemArthurHoaro2016-12-128-95/+306
| |
| * Apply the new ID system accros the whole codebaseArthurHoaro2016-12-129-85/+100
| |
| * Update method to use the new ID system, which replaces linkdate primary keys.ArthurHoaro2016-12-121-2/+44
| | | | | | | | | | creation and update dates are now DateTime objects. Since this update is very sensitve (changing the whole database), the datastore will be automatically backed up into the file datastore.<datetime>.php.
| * Link ID refactoringArthurHoaro2016-12-121-43/+135
| | | | | | | | | | | | | | | | | | Links now use an incremental unique numeric identifier. This ID is persistent and must never change. ArrayAccess is used to match the link ID with the array keys (see the comment in LinkDB for more details) Key 'created' added, with creation date as a DateTime object. 'updated' is now also a DateTime.
* | Merge pull request #679 from ArthurHoaro/plugins/headerArthur2016-12-1210-27/+130
|\ \ | |/ |/| Improve theme dependent plugin placeholders:
| * Improve theme dependent plugin placeholders:ArthurHoaro2016-12-0110-27/+130
| | | | | | | | | | | | | | | | | | - buttons_toolbar: now expect links represented by an array instead of HTML content - fields_toolbar: now expect a form represented by an array instead of HTML content - action_plugin: now expect links represented by an array instead of HTML content Default templates updated accordingly mprove theme dependent plugin placeholders:
* | Merge pull request #702 from ArthurHoaro/feed-cdataArthur2016-12-051-3/+1
|\ \ | | | | | | Remove new line between content tag and CDATA in ATOM feed
| * | Remove new line between content tag and CDATA in ATOM feedArthurHoaro2016-12-021-3/+1
| | | | | | | | | | | | Content not starting directly with CDATA can be misinterpreted by some feed parsers.
* | | Merge pull request #703 from ArthurHoaro/changelogArthur2016-12-051-0/+11
|\ \ \ | | | | | | | | Add latest merged changes to the CHANGELOG
| * | | Add latest merged changes to the CHANGELOGArthurHoaro2016-12-031-0/+11
|/ / /
* | | Merge pull request #701 from ArthurHoaro/plugins/md-html-docArthur2016-12-034-3/+32
|\ \ \ | |/ / |/| | Describe markdown HTML rendering and display a warning
| * | Describe markdown HTML rendering and display a warningArthurHoaro2016-12-014-3/+32
| | | | | | | | | | | | Fixes #688
* | | Merge pull request #691 from ArthurHoaro/plugins/no-md-feedArthur2016-12-013-18/+59
|\ \ \ | | | | | | | | Markdown: fixes feed rendering with nomarkdown tag
| * | | Markdown: fixes feed rendering with nomarkdown tagArthurHoaro2016-11-223-18/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * make sure we match exactly `nomarkdown` tag * pass the whole link data to stripNoMarkdownTag() to: * strip the noMD tag in taglist (array) * strip the tag in tags (string) Fixes #689 tmp
* | | | Merge pull request #700 from teromene/firefox-social-titleArthur2016-11-301-15/+17
|\ \ \ \ | | | | | | | | | | Show page title when sharing via Firefox Social.
| * | | | Show page title when sharing via Firefox Social.Teromene2016-11-291-15/+17
| | |/ / | |/| |
* | | | Merge pull request #699 from teromene/https-no-socialArthur2016-11-302-1/+6
|\ \ \ \ | |/ / / |/| | | Disable Firefox Social in the tools section if the page is not loaded using HTTPS.
| * | | Disable Firefox Social in the tools section if the page is not loaded using ↵Teromene2016-11-292-1/+6
|/ / / | | | | | | | | | HTTPS, as Firefox will deny the request.
* | | Merge pull request #692 from fpunktk/patch-1Arthur2016-11-221-1/+2
|\ \ \ | | | | | | | | add meta tag to block sending the referrer
| * | | Add meta tag to block sending the referrerFelix Kästner2016-11-211-1/+2
| | | | | | | | | | | | | | | | | | | | Add a meta tag that tells the browser not to send the referrer header to external sites.
* | | | Merge pull request #680 from ArthurHoaro/apache-htaccessArthur2016-11-087-14/+91
|\ \ \ \ | |/ / / |/| | | .htaccess files: support Apache 2.4+ syntax
| * | | .htaccess files: support Apache 2.4+ syntaxArthurHoaro2016-11-087-14/+91
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If `mod_version` is enabled, the previous syntax will apply for Apache <2.4. If not, the new syntax is used by default. Fixes #676 `mod_version` identifier is `version_module` across all Apache versions. See: * https://httpd.apache.org/docs/current/mod/mod_version.html * https://httpd.apache.org/docs/2.2/mod/mod_version.html * https://serverfault.com/questions/733910/how-do-i-load-mod-version-only-if-it-isnt-built-in-to-apache Note that version_module comes built-in with Debian (and derivatives) Apache2 packages, see https://wiki.debian.org/Apache/PackagingFor24
* | | Merge pull request #684 from virtualtam/fix/docker/nginxArthur2016-11-087-0/+29
|\ \ \ | |_|/ |/| | Docker: fix & improve nginx+php-fpm configuration