diff --git a/CHANGES.txt b/CHANGES.txt index 8ea4f3d..6c33b51 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,8 @@ +## Version 2.17.0 du 26/09/2015-11:51 + +552e4ba améliorer pxs pour un dépôt en mode direct +2ce66e6 maj doc + ## Version 2.16.0 du 10/09/2015-11:16 42aa7ea fonctions e*: changer l'affichage en mode NO_COLOR pour afficher les préfixes complets diff --git a/VERSION.txt b/VERSION.txt index 7524906..d76bd2b 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -2.16.0 +2.17.0 diff --git a/lib/ulib/templates/apacheconfig/README-apacheconfig.txt b/lib/ulib/templates/apacheconfig/README-apacheconfig.txt index 69ddb6f..a7f97de 100644 --- a/lib/ulib/templates/apacheconfig/README-apacheconfig.txt +++ b/lib/ulib/templates/apacheconfig/README-apacheconfig.txt @@ -44,3 +44,11 @@ optionnels: les fichiers RewriteRules*.conf de ce répertoire sont copiés dans /etc/apache2 IMPORTANT: Cette configuration n'est pour le moment supporté que sur debian + +## Configuration TLS + +Le site https://mozilla.github.io/server-side-tls/ssl-config-generator/ contient +des informations sur la façon de configurer ssl côté serveur pour la sécurité et +les navigateurs modernes + +Voir les détails sur https://wiki.mozilla.org/Security/Server_Side_TLS diff --git a/uproject b/uproject index 9df4a0a..aab39db 100755 --- a/uproject +++ b/uproject @@ -237,9 +237,16 @@ elif array_contains VCS_CMDS "$CMD"; then elif array_contains GITANNEX_CMDS "$CMD"; then function xsync() { - local direct - is_yes "$(git config --get annex.direct)" && direct=1 - git annex sync ${direct:+--content} + if is_yes "$(git config --get annex.direct)"; then + git annex sync --pull --no-commit --no-push --no-content && + git annex add && + git annex sync --no-pull --commit --no-push --no-content && + git annex sync --no-pull --no-commit --no-push --content && + git annex sync --no-pull --no-commit --push --no-content && + git annex sync + else + git annex sync + fi } use_ssh_wrapper case "$CMD" in