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 f5d8596 HOP-2875 Fix doc url for workflow and pipeline action
new f716bff Merge pull request #821 from nadment/HOP-2875
f5d8596 is described below
commit f5d8596f3dfa53d30e48565e1860a2813c9e39c2
Author: nadment <[email protected]>
AuthorDate: Mon May 24 00:57:57 2021 +0200
HOP-2875 Fix doc url for workflow and pipeline action
---
.../apache/hop/workflow/actions/pipeline/ActionPipelineDialog.java | 4 ----
.../apache/hop/workflow/actions/workflow/ActionWorkflowDialog.java | 4 ----
2 files changed, 8 deletions(-)
diff --git
a/plugins/actions/pipeline/src/main/java/org/apache/hop/workflow/actions/pipeline/ActionPipelineDialog.java
b/plugins/actions/pipeline/src/main/java/org/apache/hop/workflow/actions/pipeline/ActionPipelineDialog.java
index 2f1ce86..c66453d 100644
---
a/plugins/actions/pipeline/src/main/java/org/apache/hop/workflow/actions/pipeline/ActionPipelineDialog.java
+++
b/plugins/actions/pipeline/src/main/java/org/apache/hop/workflow/actions/pipeline/ActionPipelineDialog.java
@@ -92,10 +92,6 @@ public class ActionPipelineDialog extends ActionBaseDialog
implements IActionDia
shell = new Shell(parent, SWT.DIALOG_TRIM | SWT.MIN | SWT.MAX |
SWT.RESIZE);
props.setLook(shell);
WorkflowDialog.setShellImage(shell, action);
- IPlugin plugin =
PluginRegistry.getInstance().getPlugin(ActionPluginType.class, action);
- plugin.setDocumentationUrl(
- "https://hop.apache.org/manual/latest/plugins/actions/pipeline.html");
- HelpUtils.createHelpButton(shell, HelpUtils.getHelpDialogTitle(plugin),
plugin);
backupChanged = action.hasChanged();
diff --git
a/plugins/actions/workflow/src/main/java/org/apache/hop/workflow/actions/workflow/ActionWorkflowDialog.java
b/plugins/actions/workflow/src/main/java/org/apache/hop/workflow/actions/workflow/ActionWorkflowDialog.java
index 458c321..8dc5b6c 100644
---
a/plugins/actions/workflow/src/main/java/org/apache/hop/workflow/actions/workflow/ActionWorkflowDialog.java
+++
b/plugins/actions/workflow/src/main/java/org/apache/hop/workflow/actions/workflow/ActionWorkflowDialog.java
@@ -98,10 +98,6 @@ public class ActionWorkflowDialog extends ActionBaseDialog
implements IActionDia
shell = new Shell(parent, SWT.DIALOG_TRIM | SWT.MIN | SWT.MAX |
SWT.RESIZE);
props.setLook(shell);
WorkflowDialog.setShellImage(shell, action);
- IPlugin plugin =
PluginRegistry.getInstance().getPlugin(ActionPluginType.class, action);
- plugin.setDocumentationUrl(
- "https://hop.apache.org/manual/latest/plugins/actions/workflow.html");
- HelpUtils.createHelpButton(shell, HelpUtils.getHelpDialogTitle(plugin),
plugin);
backupChanged = action.hasChanged();