]> git.immae.eu Git - github/shaarli/Shaarli.git/log
github/shaarli/Shaarli.git
3 years agoMerge pull request #1567 from ArthurHoaro/feature/async-title-retrieval
ArthurHoaro [Tue, 20 Oct 2020 08:14:28 +0000 (10:14 +0200)] 
Merge pull request #1567 from ArthurHoaro/feature/async-title-retrieval

3 years agoMerge pull request #1600 from yudete/master
ArthurHoaro [Tue, 20 Oct 2020 08:08:03 +0000 (10:08 +0200)] 
Merge pull request #1600 from yudete/master

3 years agoUpdate translations (Japanese) 1600/head
yudete [Mon, 19 Oct 2020 01:25:51 +0000 (10:25 +0900)] 
Update translations (Japanese)

3 years agoUpdate translations (Japanese)
yudete [Mon, 19 Oct 2020 01:17:35 +0000 (10:17 +0900)] 
Update translations (Japanese)

3 years agoMerge pull request #1588 from ArthurHoaro/feature/search-highlight
ArthurHoaro [Fri, 16 Oct 2020 18:40:49 +0000 (20:40 +0200)] 
Merge pull request #1588 from ArthurHoaro/feature/search-highlight

3 years agoadd search highlight unit tests 1588/head
ArthurHoaro [Mon, 12 Oct 2020 10:23:57 +0000 (12:23 +0200)] 
add search highlight unit tests

3 years agoFeature: highlight fulltext search results
ArthurHoaro [Mon, 12 Oct 2020 09:35:55 +0000 (11:35 +0200)] 
Feature: highlight fulltext search results

How it works:

  1. when a fulltext search is made, Shaarli looks for the first
occurence position of every term matching the search. No change here,
but we store these positions in an array, in Bookmark's additionalContent.
  2. when formatting bookmarks (through BookmarkFormatter
implementation):
    1. first we insert specific tokens at every search result positions
    2. we format the content (escape HTML, apply markdown, etc.)
    3. as a last step, we replace our token with displayable span
elements

Cons: this tightens coupling between search filters and formatters
Pros: it was absolutely necessary not to perform the
search twice. this solution has close to no impact on performances.

Fixes #205

3 years agoMerge pull request #1596 from ArthurHoaro/feature/better-rename-tag
ArthurHoaro [Fri, 16 Oct 2020 18:15:19 +0000 (20:15 +0200)] 
Merge pull request #1596 from ArthurHoaro/feature/better-rename-tag

Improve Manage tags page

3 years agoImprove Manage tags page 1596/head
ArthurHoaro [Fri, 16 Oct 2020 18:03:25 +0000 (20:03 +0200)] 
Improve Manage tags page

Fixes #1125

3 years agoMerge pull request #1593 from ArthurHoaro/fix/no-url-rewriting
ArthurHoaro [Fri, 16 Oct 2020 17:26:03 +0000 (19:26 +0200)] 
Merge pull request #1593 from ArthurHoaro/fix/no-url-rewriting

3 years agoDoc: typo 1593/head
ArthurHoaro [Fri, 16 Oct 2020 17:20:45 +0000 (19:20 +0200)] 
Doc: typo

3 years agoInject ROOT_PATH in plugin instead of regenerating it everywhere
ArthurHoaro [Fri, 16 Oct 2020 11:06:06 +0000 (13:06 +0200)] 
Inject ROOT_PATH in plugin instead of regenerating it everywhere

3 years agoSupport using Shaarli without URL rewriting
ArthurHoaro [Fri, 16 Oct 2020 10:47:11 +0000 (12:47 +0200)] 
Support using Shaarli without URL rewriting

   - Shaarli can be fully used by prefixing any URL with /index.php/
   - {$base_path} used in templates already works with this configuration
   - Assets path (outside of theme's assets) must be prefixed with {$root_url}/
   - Documentation section in « Server configuration »

Fixes #1590

3 years agoMerge pull request #1592 from ArthurHoaro/fix/strict-type-daily
ArthurHoaro [Fri, 16 Oct 2020 10:16:54 +0000 (12:16 +0200)] 
Merge pull request #1592 from ArthurHoaro/fix/strict-type-daily

Strict types: fix an issue in daily where the date could be an int

3 years agoStrict types: fix an issue in daily where the date could be an int 1592/head
ArthurHoaro [Fri, 16 Oct 2020 10:04:46 +0000 (12:04 +0200)] 
Strict types: fix an issue in daily where the date could be an int

3 years agoImprove metadata retrieval (performances and accuracy) 1567/head
ArthurHoaro [Thu, 15 Oct 2020 09:20:33 +0000 (11:20 +0200)] 
Improve metadata retrieval (performances and accuracy)

  - Use dedicated function to download headers to avoid apply multiple regexps on headers
  - Also try to extract title from meta tags

3 years agoAdd a setting to retrieve bookmark metadata asynchrounously
ArthurHoaro [Fri, 25 Sep 2020 11:29:36 +0000 (13:29 +0200)] 
Add a setting to retrieve bookmark metadata asynchrounously

  - There is a new standalone script (metadata.js) which requests
    a new controller to get bookmark metadata and fill the form async
  - This feature is enabled with the new setting: general.enable_async_metadata
    (enabled by default)
  - general.retrieve_description is now enabled by default
  - A small rotating loader animation has a been added to bookmark inputs
    when metadata is being retrieved (default template)
  - Custom JS htmlentities has been removed and  mathiasbynens/he
    library is used instead

Fixes #1563

3 years agoMerge pull request #1591 from ArthurHoaro/doc/server-conf-php-v
ArthurHoaro [Thu, 15 Oct 2020 07:06:27 +0000 (09:06 +0200)] 
Merge pull request #1591 from ArthurHoaro/doc/server-conf-php-v

Doc: add PHP 7.4 and 8.0 as supported version

3 years agoDoc: add PHP 7.4 and 8.0 as supported version 1591/head
ArthurHoaro [Thu, 15 Oct 2020 06:59:51 +0000 (08:59 +0200)] 
Doc: add PHP 7.4 and 8.0 as supported version

3 years agoMerge pull request #1583 from ArthurHoaro/feature/bookmark-strict-types
ArthurHoaro [Tue, 13 Oct 2020 11:56:07 +0000 (13:56 +0200)] 
Merge pull request #1583 from ArthurHoaro/feature/bookmark-strict-types

Add strict types for bookmarks management

3 years agoAdd strict types for bookmarks management 1583/head
ArthurHoaro [Fri, 2 Oct 2020 15:50:59 +0000 (17:50 +0200)] 
Add strict types for bookmarks management

Parameters typing and using strict types overall increase the codebase
quality by enforcing the a given parameter will have the expected type.

It also removes the need to unnecessary unit tests checking methods
behavior with invalid input.

3 years agoMerge pull request #1570 from ArthurHoaro/feature/datastore-mutex
ArthurHoaro [Tue, 13 Oct 2020 11:30:37 +0000 (13:30 +0200)] 
Merge pull request #1570 from ArthurHoaro/feature/datastore-mutex

Add mutex on datastore I/O operations

3 years agoAdd mutex on datastore I/O operations 1570/head
ArthurHoaro [Sat, 26 Sep 2020 12:18:01 +0000 (14:18 +0200)] 
Add mutex on datastore I/O operations

To make sure that there is no concurrent operation on the datastore file.

Fixes #1132

3 years agoMerge pull request #1540 from ArthurHoaro/fix/metadata-regexes
ArthurHoaro [Tue, 13 Oct 2020 10:26:55 +0000 (12:26 +0200)] 
Merge pull request #1540 from ArthurHoaro/fix/metadata-regexes

Improve regex to extract HTML metadata (title, description, etc.)

3 years agoMerge pull request #1525 from ArthurHoaro/feature/rest-api-bookmark-dates
ArthurHoaro [Tue, 13 Oct 2020 10:26:01 +0000 (12:26 +0200)] 
Merge pull request #1525 from ArthurHoaro/feature/rest-api-bookmark-dates

REST API: allow override of creation and update dates

3 years agoMerge pull request #1521 from ArthurHoaro/feature/markdown-extra
ArthurHoaro [Tue, 13 Oct 2020 10:25:12 +0000 (12:25 +0200)] 
Merge pull request #1521 from ArthurHoaro/feature/markdown-extra

Add Markdown Extra formatter

3 years agoAdd Markdown Extra formatter 1521/head
ArthurHoaro [Thu, 27 Aug 2020 13:25:18 +0000 (15:25 +0200)] 
Add Markdown Extra formatter

Library: [Parsedown Extra](https://github.com/erusev/parsedown-extra)

Also sort dependencies alphabetically.

Fixes #1169

3 years agoUpdate badge versions
ArthurHoaro [Tue, 13 Oct 2020 09:59:54 +0000 (11:59 +0200)] 
Update badge versions

3 years agoMerge pull request #1589 from ArthurHoaro/changelog/v0.12.0
ArthurHoaro [Tue, 13 Oct 2020 09:49:07 +0000 (11:49 +0200)] 
Merge pull request #1589 from ArthurHoaro/changelog/v0.12.0

CHANGELOG and AUTHORS for v0.12.0

3 years agoCHANGELOG and AUTHORS for v0.12.0 1589/head
ArthurHoaro [Tue, 13 Oct 2020 09:44:31 +0000 (11:44 +0200)] 
CHANGELOG and AUTHORS for v0.12.0

3 years agoMerge pull request #1586 from ArthurHoaro/changelog/v0.12.0-beta-2
ArthurHoaro [Thu, 8 Oct 2020 06:54:19 +0000 (08:54 +0200)] 
Merge pull request #1586 from ArthurHoaro/changelog/v0.12.0-beta-2

CHANGELOG and AUTHORS for v0.12.0-beta-2

3 years agoCHANGELOG and AUTHORS for v0.12.0-beta-2 1586/head
ArthurHoaro [Thu, 8 Oct 2020 06:41:30 +0000 (08:41 +0200)] 
CHANGELOG and AUTHORS for v0.12.0-beta-2

3 years agoMerge pull request #1585 from ArthurHoaro/fix/xss-and-tag-search
ArthurHoaro [Thu, 8 Oct 2020 06:19:06 +0000 (08:19 +0200)] 
Merge pull request #1585 from ArthurHoaro/fix/xss-and-tag-search

Security: fix multiple XSS vulnerabilities + fix search tags with special chars

3 years agoSecurity: fix multiple XSS vulnerabilities + fix search tags with special chars 1585/head
ArthurHoaro [Tue, 6 Oct 2020 15:30:18 +0000 (17:30 +0200)] 
Security: fix multiple XSS vulnerabilities + fix search tags with special chars

XSS vulnerabilities fixed in editlink, linklist, tag.cloud and tag.list.

Also fixed tag search with special characters: urlencode function needs to be applied on raw data, before espaping, otherwise the rendered URL is wrong.

3 years agoMerge pull request #1579 from sprak3000/issue-1437-tag-sort-buttons-ui
nodiscc [Sun, 4 Oct 2020 11:45:24 +0000 (11:45 +0000)] 
Merge pull request #1579 from sprak3000/issue-1437-tag-sort-buttons-ui

Fix #1437 - Make tag cloud/list views buttons more obvious

3 years agoMerge pull request #1581 from nodiscc/compose-traefik-version
nodiscc [Sun, 4 Oct 2020 11:33:57 +0000 (11:33 +0000)] 
Merge pull request #1581 from nodiscc/compose-traefik-version

docker-compose.yml: pin traefik image to 1.7-alpine

3 years agodocker-compose.yml: pin traefik image to 1.7-alpine 1581/head
nodiscc [Sat, 3 Oct 2020 12:33:15 +0000 (14:33 +0200)] 
docker-compose.yml: pin traefik image to 1.7-alpine
- fixes https://github.com/shaarli/Shaarli/issues/1493
- https://hub.docker.com/_/traefik/

3 years agoMerge pull request #1575 from ArthurHoaro/feature/php8
ArthurHoaro [Sat, 3 Oct 2020 10:59:16 +0000 (12:59 +0200)] 
Merge pull request #1575 from ArthurHoaro/feature/php8

3 years agoMerge pull request #1574 from stoeps13/hosting-fix
ArthurHoaro [Sat, 3 Oct 2020 10:59:01 +0000 (12:59 +0200)] 
Merge pull request #1574 from stoeps13/hosting-fix

3 years ago Issue #1437 - Make tag cloud/list views buttons more obvious 1579/head
sprak3000 [Fri, 2 Oct 2020 18:06:02 +0000 (14:06 -0400)] 
 Issue #1437 - Make tag cloud/list views buttons more obvious

 This work alters the markup and CSS for the tag sort UI to match the button feel filters and links per page uses.

3 years agoMerge pull request #1577 from ArthurHoaro/fix/edit-zero
ArthurHoaro [Fri, 2 Oct 2020 12:24:07 +0000 (14:24 +0200)] 
Merge pull request #1577 from ArthurHoaro/fix/edit-zero

Fix a bug preventing to edit bookmark with ID #0

3 years agoRevert unrelated changes and add unit tests 1574/head
ArthurHoaro [Wed, 30 Sep 2020 13:57:57 +0000 (15:57 +0200)] 
Revert unrelated changes and add unit tests

3 years agoFix a bug preventing to edit bookmark with ID #0 1577/head
ArthurHoaro [Wed, 30 Sep 2020 13:31:34 +0000 (15:31 +0200)] 
Fix a bug preventing to edit bookmark with ID #0

3 years agoFix identation
Christoph Stoettner [Wed, 30 Sep 2020 10:29:54 +0000 (12:29 +0200)] 
Fix identation

3 years agoChange to ->container->environment
Christoph Stoettner [Wed, 30 Sep 2020 10:27:44 +0000 (12:27 +0200)] 
Change  to ->container->environment

3 years agoMerge pull request #1576 from ArthurHoaro/release/v0.12.0-beta-1/changelog
ArthurHoaro [Wed, 30 Sep 2020 09:59:42 +0000 (11:59 +0200)] 
Merge pull request #1576 from ArthurHoaro/release/v0.12.0-beta-1/changelog

Update CHANGELOG and AUTHOR

3 years agoUpdate CHANGELOG and AUTHOR 1576/head
ArthurHoaro [Wed, 30 Sep 2020 09:55:51 +0000 (11:55 +0200)] 
Update CHANGELOG and AUTHOR

3 years agoMerge pull request #1569 from ArthurHoaro/fix/bad-encoding
ArthurHoaro [Wed, 30 Sep 2020 09:35:57 +0000 (11:35 +0200)] 
Merge pull request #1569 from ArthurHoaro/fix/bad-encoding

Fix warning if the encoding retrieved from external headers is invalid

3 years agoMerge pull request #1566 from nodiscc/makefile-composer-install
ArthurHoaro [Wed, 30 Sep 2020 09:12:17 +0000 (11:12 +0200)] 
Merge pull request #1566 from nodiscc/makefile-composer-install

doc/Makefile: remove references to composer update

3 years agoFix warning if the encoding retrieved from external headers is invalid 1569/head
ArthurHoaro [Sat, 26 Sep 2020 11:28:38 +0000 (13:28 +0200)] 
Fix warning if the encoding retrieved from external headers is invalid

Also fixed the regex to support this failing header: charset="utf-8"\r\n"

3 years agoUse assertRegExp polyfill instead of regexMatches 1575/head
ArthurHoaro [Tue, 29 Sep 2020 16:49:02 +0000 (18:49 +0200)] 
Use assertRegExp polyfill instead of regexMatches

3 years agoIgnore PHP deps when removing phpunit in PHP 8.0 environment
ArthurHoaro [Tue, 29 Sep 2020 16:44:52 +0000 (18:44 +0200)] 
Ignore PHP deps when removing phpunit in PHP 8.0 environment

3 years agoUpdate composer dependencies from PHP 7.1
ArthurHoaro [Tue, 29 Sep 2020 16:43:20 +0000 (18:43 +0200)] 
Update composer dependencies from PHP 7.1

3 years agoFix missing @expectedException convertion
ArthurHoaro [Tue, 29 Sep 2020 16:41:21 +0000 (18:41 +0200)] 
Fix missing @expectedException convertion

3 years agoCompatibility with PHP 8
ArthurHoaro [Tue, 29 Sep 2020 13:00:11 +0000 (15:00 +0200)] 
Compatibility with PHP 8

3 years agoCompatibility with PHPUnit 9
ArthurHoaro [Tue, 29 Sep 2020 12:41:40 +0000 (14:41 +0200)] 
Compatibility with PHPUnit 9

3 years agoRun CI against PHP 8.0
ArthurHoaro [Tue, 29 Sep 2020 09:43:18 +0000 (11:43 +0200)] 
Run CI against PHP 8.0

3 years agoWorkaround for hoster (ionos)
Christoph Stoettner [Tue, 29 Sep 2020 10:15:04 +0000 (12:15 +0200)] 
Workaround for hoster (ionos)

The hoster writes the environment variable with bearer token to
REDIRECT_HTTP_AUTHORIZATION and needs to provide RewriteBase / to
.htaccess

3 years agoMerge pull request #1572 from ArthurHoaro/feature/php8
ArthurHoaro [Tue, 29 Sep 2020 09:36:27 +0000 (11:36 +0200)] 
Merge pull request #1572 from ArthurHoaro/feature/php8

3 years agoConvert legacy PHPUnit @expected* to new ->expect* 1572/head
ArthurHoaro [Sun, 27 Sep 2020 12:07:08 +0000 (14:07 +0200)] 
Convert legacy PHPUnit @expected* to new ->expect*

Converted automatically using https://github.com/ArthurHoaro/convert-legacy-phpunit-expect

3 years agoComply with PHPUnit V8: setup/teardown functions must return void
ArthurHoaro [Sat, 26 Sep 2020 13:08:39 +0000 (15:08 +0200)] 
Comply with PHPUnit V8: setup/teardown functions must return void

3 years agotmp
ArthurHoaro [Sat, 26 Sep 2020 12:43:21 +0000 (14:43 +0200)] 
tmp

3 years agoTravis CI: run composer update instead of install
ArthurHoaro [Sat, 26 Sep 2020 12:33:27 +0000 (14:33 +0200)] 
Travis CI: run composer update instead of install

And ignore PHP 7.1 platform requirement, in order to get matching version of PHPUnit

3 years agoMerge pull request #1568 from ArthurHoaro/fix/vintage-linkdate
ArthurHoaro [Sat, 26 Sep 2020 09:58:32 +0000 (11:58 +0200)] 
Merge pull request #1568 from ArthurHoaro/fix/vintage-linkdate

Fix undefined linkdate variable in vintage theme

3 years agoFix undefined linkdate variable in vintage theme 1568/head
ArthurHoaro [Fri, 25 Sep 2020 16:24:53 +0000 (18:24 +0200)] 
Fix undefined linkdate variable in vintage theme

Fixes #1371

3 years agoMerge pull request #1560 from ArthurHoaro/fix/redirect-wrong-path
ArthurHoaro [Fri, 25 Sep 2020 08:59:51 +0000 (10:59 +0200)] 
Merge pull request #1560 from ArthurHoaro/fix/redirect-wrong-path

Fix invalid redirection using the path of an external domain

3 years agoMerge pull request #1558 from ArthurHoaro/fix/plugins-base-path
ArthurHoaro [Fri, 25 Sep 2020 08:59:40 +0000 (10:59 +0200)] 
Merge pull request #1558 from ArthurHoaro/fix/plugins-base-path

Fix plugin base path in core plugins

3 years agoMerge pull request #1565 from nodiscc/rm-makefile-summary
ArthurHoaro [Fri, 25 Sep 2020 08:57:25 +0000 (10:57 +0200)] 
Merge pull request #1565 from nodiscc/rm-makefile-summary

Makefile: remove static_analysis_summary from all: target

3 years agodoc/Makefile: remove references to composer update 1566/head
nodiscc [Thu, 24 Sep 2020 19:49:01 +0000 (21:49 +0200)] 
doc/Makefile: remove references to composer update
- add make composer_dependencies_dev Makefile target and use this instead
- fix composer initial installation procedure
- fix php-xdebug install instructions

3 years agoMakefile: remove static_analysis_summary from all: target 1565/head
nodiscc [Thu, 24 Sep 2020 19:45:17 +0000 (21:45 +0200)] 
Makefile: remove static_analysis_summary from all: target
static_analysis_summary was removed in 37c9c6b#diff-b67911656ef5d18c4ae36cb6741b7965 but not from the all: target dependencies. Therefore running make all always fails.
fixes https://github.com/shaarli/Shaarli/issues/1459

3 years agoMerge pull request #1561 from ArthurHoaro/feature/front-deps-upgrade
ArthurHoaro [Wed, 23 Sep 2020 13:50:23 +0000 (15:50 +0200)] 
Merge pull request #1561 from ArthurHoaro/feature/front-deps-upgrade

3 years agoFix ESLint after dependency upgrade 1561/head
ArthurHoaro [Tue, 22 Sep 2020 16:14:18 +0000 (18:14 +0200)] 
Fix ESLint after dependency upgrade

3 years agoBump NodeJS version on travis build
ArthurHoaro [Tue, 22 Sep 2020 15:57:54 +0000 (17:57 +0200)] 
Bump NodeJS version on travis build

3 years agoUpgrade front end dependencies
ArthurHoaro [Tue, 22 Sep 2020 15:49:49 +0000 (17:49 +0200)] 
Upgrade front end dependencies

Mostly in order to get rid of deprecated deps, and upgrade vulnerable ones.

  - Upgrade webpack from 3.x to 4.x
  - Moved babel package to main repo
  - Replaced deprecated extract-text-webpack-plugin with extract-text-webpack-plugin
  - Replaced deprecated babel-minify-webpack-plugin with terser-webpack-plugin
  - Replaced deprecated node-sass with (dart) sass package
  - Replaced deprecated sass-lint with stylelint (the rules might be a bit different

Related to #1531: trivy doesn't raise any more issue

3 years agoFix invalid redirection using the path of an external domain 1560/head
ArthurHoaro [Tue, 22 Sep 2020 13:17:13 +0000 (15:17 +0200)] 
Fix invalid redirection using the path of an external domain

Fixes #1554

3 years agoMerge pull request #1559 from ArthurHoaro/fix/edit-redirect
ArthurHoaro [Tue, 22 Sep 2020 12:15:13 +0000 (14:15 +0200)] 
Merge pull request #1559 from ArthurHoaro/fix/edit-redirect

Fix redirection to referer after editing a link

3 years agoMerge pull request #1539 from ArthurHoaro/feature/manual-root-url
ArthurHoaro [Tue, 22 Sep 2020 12:08:54 +0000 (14:08 +0200)] 
Merge pull request #1539 from ArthurHoaro/feature/manual-root-url

3 years agoFix redirection to referer after editing a link 1559/head
ArthurHoaro [Tue, 22 Sep 2020 12:04:10 +0000 (14:04 +0200)] 
Fix redirection to referer after editing a link

Fixes #1545

3 years agoFix plugin base path in core plugins 1558/head
ArthurHoaro [Tue, 22 Sep 2020 10:44:08 +0000 (12:44 +0200)] 
Fix plugin base path in core plugins

Also fix note check in archiveorg plugin, and regression on vintage template.
Documentation regarding relative path has been added.

Fixes #1548

3 years agoMerge pull request #1556 from kcaran/apache_methods
ArthurHoaro [Tue, 22 Sep 2020 09:45:58 +0000 (11:45 +0200)] 
Merge pull request #1556 from kcaran/apache_methods

3 years agoAdded PATCH to the allowed Apache request methods. 1556/head
Keith Carangelo [Mon, 14 Sep 2020 19:32:51 +0000 (15:32 -0400)] 
Added PATCH to the allowed Apache request methods.

3 years agoMerge pull request #1553 from ArthurHoaro/fix/404-page
ArthurHoaro [Sat, 12 Sep 2020 19:41:58 +0000 (21:41 +0200)] 
Merge pull request #1553 from ArthurHoaro/fix/404-page

Properly handle 404 errors

3 years agoMerge pull request #1551 from ArthurHoaro/fix/plugin-save-metadata
ArthurHoaro [Sat, 12 Sep 2020 19:41:24 +0000 (21:41 +0200)] 
Merge pull request #1551 from ArthurHoaro/fix/plugin-save-metadata

Plugins: do not save metadata along plugin parameters

3 years agoFix subfolder configuration in unit tests 1539/head
ArthurHoaro [Thu, 3 Sep 2020 12:52:34 +0000 (14:52 +0200)] 
Fix subfolder configuration in unit tests

3 years agoAdd manual configuration for root URL
ArthurHoaro [Thu, 3 Sep 2020 12:51:41 +0000 (14:51 +0200)] 
Add manual configuration for root URL

This new setting under 'general.root_url' allows to override automatic discovery of Shaarli instance's URL.

Fixes #1339

3 years agoMerge pull request #1389 from shaarli/doc-rework-setup
nodiscc [Sat, 12 Sep 2020 12:38:05 +0000 (12:38 +0000)] 
Merge pull request #1389 from shaarli/doc-rework-setup

doc: rework installation/setup guides, general refactoring

3 years agodoc: Docker minor improvements 1389/head
ArthurHoaro [Thu, 3 Sep 2020 09:58:09 +0000 (11:58 +0200)] 
doc: Docker minor improvements

3 years agoAdd 2 plugins to the 3rd party plugin list
Immánuel! [Sun, 30 Aug 2020 14:30:23 +0000 (16:30 +0200)] 
Add 2 plugins to the 3rd party plugin list

Besides adding 2 new plugins, also reordered the list by ABC and fixed some discrepancies in the details to restore balance in the force

3 years agodoc: nginx config: document ipv4 and ipv6 listen directives
nodiscc [Mon, 24 Aug 2020 19:33:53 +0000 (21:33 +0200)] 
doc: nginx config: document ipv4 and ipv6 listen directives

3 years agodoc: apache config: remove useless documentroot directive in HTTP-only virtualhost...
nodiscc [Mon, 24 Aug 2020 19:32:44 +0000 (21:32 +0200)] 
doc: apache config: remove useless documentroot directive in HTTP-only virtualhost (only used for redirects)

3 years agodoc: serve configuration/reverse proxy: fix apache mod_md configuration, move referen...
nodiscc [Sun, 16 Aug 2020 18:12:45 +0000 (20:12 +0200)] 
doc: serve configuration/reverse proxy: fix apache mod_md configuration, move reference links to their respective sections, shorten

3 years agodoc: server configuration: fix apache restart command
nodiscc [Sun, 16 Aug 2020 17:16:19 +0000 (19:16 +0200)] 
doc: server configuration: fix apache restart command

3 years agodoc: server configuration: enable mod_headers
nodiscc [Sun, 16 Aug 2020 17:16:01 +0000 (19:16 +0200)] 
doc: server configuration: enable mod_headers

3 years agodoc: server configuration: fix apache site config file name
nodiscc [Sun, 16 Aug 2020 17:15:56 +0000 (19:15 +0200)] 
doc: server configuration: fix apache site config file name

3 years agodoc: server configuration: add reminder to change the example domain name
nodiscc [Sun, 16 Aug 2020 17:15:11 +0000 (19:15 +0200)] 
doc: server configuration: add reminder to change the example domain name

3 years agodoc: server configuration: add asciicast of server configuration procedure (asciinema)
nodiscc [Sun, 16 Aug 2020 17:14:40 +0000 (19:14 +0200)] 
doc: server configuration: add asciicast of server configuration procedure (asciinema)

3 years agodoc: updagrde/migration: simplify permissions setup
nodiscc [Sat, 15 Aug 2020 18:12:39 +0000 (20:12 +0200)] 
doc: updagrde/migration: simplify permissions setup

3 years agodoc: installation: simplify permissions setup
nodiscc [Sat, 15 Aug 2020 18:11:04 +0000 (20:11 +0200)] 
doc: installation: simplify permissions setup

3 years agodoc: docker: update docker-compose to 1.26.2
nodiscc [Sat, 15 Aug 2020 18:10:46 +0000 (20:10 +0200)] 
doc: docker: update docker-compose to 1.26.2

3 years agodoc: installation: bump version to 0.11.1
nodiscc [Sat, 15 Aug 2020 18:05:32 +0000 (20:05 +0200)] 
doc: installation: bump version to 0.11.1