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

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 4bc3acf  ISIS-2464: adoc: fix (and add additional) system overview 
links
4bc3acf is described below

commit 4bc3acf9e6d6ad4f1fc1f0d6e30b84d98a5ed874
Author: Andi Huber <[email protected]>
AuthorDate: Sun Nov 22 10:38:20 2020 +0100

    ISIS-2464: adoc: fix (and add additional) system overview links
    
    commands-and-events diagram polishing
    also more renaming
---
 .../components/docs/modules/ROOT/pages/about.adoc  |   2 +-
 .../ROOT/pages/landing-page/components.adoc        |   3 ++-
 .../ROOT/partials/module-nav/components.adoc       |   4 ++++
 .../reference-services/commands-and-events.png     | Bin 156975 -> 177438 bytes
 .../reference-services/commands-and-events.pptx    | Bin 24163 -> 25197 bytes
 .../isis/applib/services/command/Command.java      |   4 ++--
 .../publish/CommandPublisherDefault.java           |   2 +-
 7 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/antora/components/docs/modules/ROOT/pages/about.adoc 
b/antora/components/docs/modules/ROOT/pages/about.adoc
index 0019897..473b5ec 100644
--- a/antora/components/docs/modules/ROOT/pages/about.adoc
+++ b/antora/components/docs/modules/ROOT/pages/about.adoc
@@ -85,7 +85,7 @@ _Other_
 [discrete]
 == Components
 
-* xref:system:ROOT:about.adoc[System Overview]
+* xref:system:ROOT:system-overview.adoc[System Overview]
 
 _Viewers_
 
diff --git 
a/antora/components/docs/modules/ROOT/pages/landing-page/components.adoc 
b/antora/components/docs/modules/ROOT/pages/landing-page/components.adoc
index 755680e..40a99a6 100644
--- a/antora/components/docs/modules/ROOT/pages/landing-page/components.adoc
+++ b/antora/components/docs/modules/ROOT/pages/landing-page/components.adoc
@@ -5,6 +5,7 @@
 
 This page provides user/config guides for each of the main components of the 
frameworks (viewer, object store and security).
 
+xref:system:ROOT:system-overview.adoc[System Overview]
 
 == Viewers
 
@@ -16,7 +17,7 @@ Provides a human-usable UI, styled using Bootstrap.
 
 * xref:vro:ROOT:about.adoc[Restful Objects (REST API)]
 +
-Presents your domain objects in JSON representations, conformant either with 
link:http://restfulobjects.org[Restful Objects] specification or one of a 
number of other representations.
+Presents your domain objects in JSON representations, compliant either with 
link:http://restfulobjects.org[Restful Objects] specification or one of a 
number of other representations.
 
 
 == Security
diff --git 
a/antora/components/docs/modules/ROOT/partials/module-nav/components.adoc 
b/antora/components/docs/modules/ROOT/partials/module-nav/components.adoc
index bfba594..fc26828 100644
--- a/antora/components/docs/modules/ROOT/partials/module-nav/components.adoc
+++ b/antora/components/docs/modules/ROOT/partials/module-nav/components.adoc
@@ -3,6 +3,10 @@
 
 * Components
 
+** Overview
+
+*** xref:system:ROOT:system-overview.adoc[System Overview]
+
 ** Viewers
 
 *** xref:vw:ROOT:about.adoc[Wicket UI]
diff --git 
a/api/applib/src/main/adoc/modules/applib-svc/images/reference-services/commands-and-events.png
 
b/api/applib/src/main/adoc/modules/applib-svc/images/reference-services/commands-and-events.png
index 1c61d1e..0da4641 100644
Binary files 
a/api/applib/src/main/adoc/modules/applib-svc/images/reference-services/commands-and-events.png
 and 
b/api/applib/src/main/adoc/modules/applib-svc/images/reference-services/commands-and-events.png
 differ
diff --git 
a/api/applib/src/main/adoc/modules/applib-svc/images/reference-services/commands-and-events.pptx
 
b/api/applib/src/main/adoc/modules/applib-svc/images/reference-services/commands-and-events.pptx
index 97e9f4d..d66923f 100644
Binary files 
a/api/applib/src/main/adoc/modules/applib-svc/images/reference-services/commands-and-events.pptx
 and 
b/api/applib/src/main/adoc/modules/applib-svc/images/reference-services/commands-and-events.pptx
 differ
diff --git 
a/api/applib/src/main/java/org/apache/isis/applib/services/command/Command.java 
b/api/applib/src/main/java/org/apache/isis/applib/services/command/Command.java
index 2e53e26..a69f14e 100644
--- 
a/api/applib/src/main/java/org/apache/isis/applib/services/command/Command.java
+++ 
b/api/applib/src/main/java/org/apache/isis/applib/services/command/Command.java
@@ -274,7 +274,7 @@ public class Command implements HasUniqueId, HasUsername, 
HasCommandDto {
      */
     // tag::refguide[]
     @Getter
-    private boolean dispatchingEnabled;
+    private boolean publishingEnabled;
     // end::refguide[]
 
     private final Updater UPDATER = new Updater();
@@ -365,7 +365,7 @@ public class Command implements HasUniqueId, HasUsername, 
HasCommandDto {
          * <b>NOT API</b>: intended to be called only by the framework.
          */
         public void setDispatchingEnabled(boolean dispatchingEnabled) {
-            Command.this.dispatchingEnabled = dispatchingEnabled;
+            Command.this.publishingEnabled = dispatchingEnabled;
         }
 
     };
diff --git 
a/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/publish/CommandPublisherDefault.java
 
b/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/publish/CommandPublisherDefault.java
index 7b2e777..af4c26e 100644
--- 
a/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/publish/CommandPublisherDefault.java
+++ 
b/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/publish/CommandPublisherDefault.java
@@ -65,7 +65,7 @@ public class CommandPublisherDefault implements 
CommandPublisher {
             return;
         }
 
-        if(!command.isDispatchingEnabled()) {
+        if(!command.isPublishingEnabled()) {
             return;
         }
         if(command.getLogicalMemberIdentifier() == null) {

Reply via email to