You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2021/04/04 06:52:41 UTC

[isis] branch 2.0.0-M5 updated: ISIS-2484: fixes links for security guide

This is an automated email from the ASF dual-hosted git repository.

danhaywood pushed a commit to branch 2.0.0-M5
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/2.0.0-M5 by this push:
     new caa824a  ISIS-2484: fixes links for security guide
caa824a is described below

commit caa824a739002bf39b99ffbd2662d0b1abb66a89
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Sun Apr 4 07:50:27 2021 +0100

    ISIS-2484: fixes links for security guide
---
 .../security/secman/adoc/modules/secman/partials/module-nav.adoc | 1 +
 preview.sh                                                       | 9 ++++++---
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/extensions/security/secman/adoc/modules/secman/partials/module-nav.adoc b/extensions/security/secman/adoc/modules/secman/partials/module-nav.adoc
index 6a770a7..91417aa 100644
--- a/extensions/security/secman/adoc/modules/secman/partials/module-nav.adoc
+++ b/extensions/security/secman/adoc/modules/secman/partials/module-nav.adoc
@@ -6,4 +6,5 @@
 *** xref:security:secman:model.adoc[Model]
 *** xref:security:secman:jbcrypt-encryption.adoc[JBCrypt Encryption]
 *** xref:security:secman:jdo-persistence.adoc[JDO Persistence]
+*** xref:security:secman:jpa-persistence.adoc[JPA Persistence]
 *** xref:security:secman:shiro-realm.adoc[Realm (for Shiro)]
diff --git a/preview.sh b/preview.sh
index 715501e..35c0ef7 100644
--- a/preview.sh
+++ b/preview.sh
@@ -134,9 +134,12 @@ fi
 export ANTORA_CMD=antora
 
 SECONDS=0
-echo "\$PLAYBOOK_FILE = $PLAYBOOK_FILE"
-sh build-site.sh $PLAYBOOK_FILE || exit 1
-
+if [[ "$SKIP_ANTORA_GENERATION" == "true" ]]; then
+  echo "skipping antora generation"
+else
+  echo "\$PLAYBOOK_FILE = $PLAYBOOK_FILE"
+  sh build-site.sh $PLAYBOOK_FILE || exit 1
+fi
 
 if [[ "$SKIP_SERVE" == "true" ]]; then
   echo "skipping serving"