You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2020/12/25 17:53:51 UTC

[incubator-hop] branch master updated: Fix documentation url for actions abort (#492)

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

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hop.git


The following commit(s) were added to refs/heads/master by this push:
     new 176b74f  Fix documentation url for actions abort (#492)
176b74f is described below

commit 176b74f17437421d74d7ee4d9c779a7868b478db
Author: Nicolas Adment <39...@users.noreply.github.com>
AuthorDate: Fri Dec 25 18:53:40 2020 +0100

    Fix documentation url for actions abort (#492)
    
    * Fix documentation url for actions abort
    
    * Add documentation url for actions repeat and repeat-end
---
 .../main/java/org/apache/hop/workflow/actions/abort/ActionAbort.java   | 2 +-
 .../main/java/org/apache/hop/workflow/actions/repeat/EndRepeat.java    | 3 ++-
 .../src/main/java/org/apache/hop/workflow/actions/repeat/Repeat.java   | 3 ++-
 3 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/plugins/actions/abort/src/main/java/org/apache/hop/workflow/actions/abort/ActionAbort.java b/plugins/actions/abort/src/main/java/org/apache/hop/workflow/actions/abort/ActionAbort.java
index 0cda892..4044250 100644
--- a/plugins/actions/abort/src/main/java/org/apache/hop/workflow/actions/abort/ActionAbort.java
+++ b/plugins/actions/abort/src/main/java/org/apache/hop/workflow/actions/abort/ActionAbort.java
@@ -47,7 +47,7 @@ import java.util.List;
   description = "ActionAbort.Description",
   image = "Abort.svg",
   categoryDescription = "i18n:org.apache.hop.workflow:ActionCategory.Category.Utility",
-  documentationUrl = "https://hop.apache.org/manual/latest/plugins/actions/abord.html"
+  documentationUrl = "https://hop.apache.org/manual/latest/plugins/actions/abort.html"
 )
 public class ActionAbort extends ActionBase implements Cloneable, IAction {
   private static final Class<?> PKG = ActionAbort.class; // Needed by Translator
diff --git a/plugins/actions/repeat/src/main/java/org/apache/hop/workflow/actions/repeat/EndRepeat.java b/plugins/actions/repeat/src/main/java/org/apache/hop/workflow/actions/repeat/EndRepeat.java
index 226951b..0c8bc0c 100644
--- a/plugins/actions/repeat/src/main/java/org/apache/hop/workflow/actions/repeat/EndRepeat.java
+++ b/plugins/actions/repeat/src/main/java/org/apache/hop/workflow/actions/repeat/EndRepeat.java
@@ -32,7 +32,8 @@ import org.w3c.dom.Node;
     name = "End Repeat",
     description = "End repeated execution of a workflow or a transformation",
     categoryDescription = "General",
-    image = "endrepeat.svg")
+    image = "endrepeat.svg",
+    documentationUrl = "https://hop.apache.org/manual/latest/plugins/actions/repeat-end.html")
 public class EndRepeat extends ActionBase implements IAction, Cloneable {
 
   public EndRepeat(String name, String description) {
diff --git a/plugins/actions/repeat/src/main/java/org/apache/hop/workflow/actions/repeat/Repeat.java b/plugins/actions/repeat/src/main/java/org/apache/hop/workflow/actions/repeat/Repeat.java
index 4b6cf7a..15c7170 100644
--- a/plugins/actions/repeat/src/main/java/org/apache/hop/workflow/actions/repeat/Repeat.java
+++ b/plugins/actions/repeat/src/main/java/org/apache/hop/workflow/actions/repeat/Repeat.java
@@ -59,7 +59,8 @@ import java.util.Map;
     name = "Repeat",
     description = "Repeat execution of a workflow or a transformation",
     categoryDescription = "General",
-    image = "repeat.svg")
+    image = "repeat.svg",
+    documentationUrl = "https://hop.apache.org/manual/latest/plugins/actions/repeat.html")
 public class Repeat extends ActionBase implements IAction, Cloneable {
 
   public static final String REPEAT_END_LOOP = "_REPEAT_END_LOOP_";