Skip to content

Commit

Permalink
Merge pull request #843 from nadment/HOP-2923
Browse files Browse the repository at this point in the history
HOP-2923 Some Help buttons are broken
  • Loading branch information
hansva committed Jun 2, 2021
2 parents 9b509d9 + c9a16ec commit 9f52f1d
Show file tree
Hide file tree
Showing 73 changed files with 84 additions and 85 deletions.
6 changes: 3 additions & 3 deletions docs/hop-user-manual/modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ under the License.
*** xref:pipeline/transforms/cassandra-output.adoc[Cassandra Output]
*** xref:pipeline/transforms/calldbproc.adoc[Call DB procedure]
*** xref:pipeline/transforms/changefileencoding.adoc[Change file encoding]
*** xref:pipeline/transforms/checkiffilelocked.adoc[Check if file is locked]
*** xref:pipeline/transforms/checkifwebserviceavailable.adoc[Check if webservice is available]
*** xref:pipeline/transforms/checkfilelocked.adoc[Check if file is locked]
*** xref:pipeline/transforms/checkwebserviceavailable.adoc[Check if webservice is available]
*** xref:pipeline/transforms/clonerow.adoc[Clone row]
*** xref:pipeline/transforms/closure.adoc[Closure]
*** xref:pipeline/transforms/coalesce.adoc[Coalesce]
Expand Down Expand Up @@ -121,7 +121,7 @@ under the License.
*** xref:pipeline/transforms/getfilesrowcount.adoc[Get files rowcount]
*** xref:pipeline/transforms/getrecordsfromstream.adoc[Get records from stream]
*** xref:pipeline/transforms/getrowsfromresult.adoc[Get Rows from Result]
*** xref:pipeline/transforms/getslavesequence.adoc[Get ID from slave server]
*** xref:pipeline/transforms/getserversequence.adoc[Get ID from slave server]
*** xref:pipeline/transforms/getsubfolders.adoc[Get SubFolder names]
*** xref:pipeline/transforms/getsystemdata.adoc[Get System Info]
*** xref:pipeline/transforms/gettablenames.adoc[Get table names]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
image = "AddResultFileNames.svg",
categoryDescription = "i18n:org.apache.hop.workflow:ActionCategory.Category.FileManagement",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/actions/addresultfilenames.html")
"https://hop.apache.org/manual/latest/workflow/actions/addresultfilenames.html")
public class ActionAddResultFilenames extends ActionBase implements Cloneable, IAction {
private static final Class<?> PKG = ActionAddResultFilenames.class; // For Translator

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
image = "CheckDbConnection.svg",
categoryDescription = "i18n:org.apache.hop.workflow:ActionCategory.Category.Conditions",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/actions/checkdbconnection.html")
"https://hop.apache.org/manual/latest/workflow/actions/checkdbconnection.html")
public class ActionCheckDbConnections extends ActionBase implements Cloneable, IAction {
private static final Class<?> PKG = ActionCheckDbConnections.class; // For Translator

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
image = "CopyMoveResultFilenames.svg",
categoryDescription = "i18n:org.apache.hop.workflow:ActionCategory.Category.FileManagement",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/actions/copymoveresultfilenames.html")
"https://hop.apache.org/manual/latest/workflow/actions/copymoveresultfilenames.html")
public class ActionCopyMoveResultFilenames extends ActionBase implements Cloneable, IAction {
private static final Class<?> PKG = ActionCopyMoveResultFilenames.class; // For Translator

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
image = "DeleteResultFilenames.svg",
categoryDescription = "i18n:org.apache.hop.workflow:ActionCategory.Category.FileManagement",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/actions/deleteresultfilenames.html")
"https://hop.apache.org/manual/latest/workflow/actions/deleteresultfilenames.html")
public class ActionDeleteResultFilenames extends ActionBase implements Cloneable, IAction {
private static final Class<?> PKG = ActionDeleteResultFilenames.class; // For Translator

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
image = "WebServiceAvailable.svg",
categoryDescription = "i18n:org.apache.hop.workflow:ActionCategory.Category.Conditions",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/actions/webserviceavailable.html")
"https://hop.apache.org/manual/latest/workflow/actions/webserviceavailable.html")
public class ActionWebServiceAvailable extends ActionBase implements Cloneable, IAction {
private static final Class<?> PKG = ActionWebServiceAvailable.class; // For Translator

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@
id = "PipelineLogging",
name = "i18n::PipelineLogging.Transform.Name",
description = "i18n::PipelineLogging.Transform.Description",
categoryDescription = "i18n:org.apache.hop.pipeline.transform:BaseTransform.Category.Input",
categoryDescription = "i18n:org.apache.hop.pipeline.transform:BaseTransform.Category.Input",
image = "pipeline-log.svg",
documentationUrl = "https://hop.apache.org/manual/latest/logging/logging-reflection.html",
keywords = "audit,log,metrics")
public class PipelineLoggingMeta extends BaseTransformMeta
implements ITransformMeta<PipelineLogging, PipelineLoggingData> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
name = "i18n::PipelineDataProbe.Transform.Name",
description = "i18n::PipelineDataProbe.Transform.Description",
categoryDescription = "i18n:org.apache.hop.pipeline.transform:BaseTransform.Category.Input",
documentationUrl = "https://hop.apache.org/manual/latest/logging/logging-reflection.html",
image = "probe.svg",
keywords = "audit,log,metrics,profile,probe,stream")
public class PipelineDataProbeMeta extends BaseTransformMeta
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
name = "i18n::WorkflowLogging.Transform.Name",
description = "i18n::WorkflowLogging.Transform.Description",
categoryDescription = "i18n:org.apache.hop.pipeline.transform:BaseTransform.Category.Input",
documentationUrl = "https://hop.apache.org/manual/latest/logging/logging-reflection.html",
image = "workflow-log.svg",
keywords = "audit,log,metrics")
public class WorkflowLoggingMeta extends BaseTransformMeta
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
image = "Cassandrain.svg",
name = "Cassandra input",
description = "Reads data from a Cassandra table",
documentationUrl = "Products/Cassandra_Input",
documentationUrl = "https://hop.apache.org/manual/latest/pipeline/transforms/cassandra-input.html",
categoryDescription = "Cassandra")
@InjectionSupported(localizationPrefix = "CassandraInput.Injection.")
public class CassandraInputMeta extends BaseTransformMeta
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
id = "CassandraOutput",
image = "Cassandraout.svg",
name = "Cassandra output",
description = "Writes to a Cassandra table",
documentationUrl = "Products/Cassandra_Output",
description = "Writes to a Cassandra table",
documentationUrl = "https://hop.apache.org/manual/latest/pipeline/transforms/cassandra-output.html",
categoryDescription = "Cassandra")
@InjectionSupported(localizationPrefix = "CassandraOutput.Injection.")
public class CassandraOutputMeta extends BaseTransformMeta
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
@Transform(
id = "SSTableOutput",
image = "Cassandra.svg",
name = "SSTable output",
documentationUrl = "Products/SSTable_Output",
name = "SSTable output",
documentationUrl = "https://hop.apache.org/manual/latest/pipeline/transforms/sstable-output.html",
description = "Writes to a filesystem directory as a Cassandra SSTable",
categoryDescription = "Cassandra")
@InjectionSupported(localizationPrefix = "SSTableOutput.Injection.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
name = "i18n::BaseTransform.TypeLongDesc.GoogleAnalytics",
description = "i18n::BaseTransform.TypeTooltipDesc.GoogleAnalytics",
categoryDescription = "i18n:org.apache.hop.pipeline.transform:BaseTransform.Category.Input",
documentationUrl = "https://hop.apache.org/manual/latest/plugins/transforms/googleanalytics.html"
documentationUrl = "https://hop.apache.org/manual/latest/pipeline/transforms/googleanalytics.html"
)
@InjectionSupported(
localizationPrefix = "GoogleAnalytics.Injection.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
image = "neo4j_check.svg",
categoryDescription = "i18n:org.apache.hop.workflow:ActionCategory.Category.Conditions",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/actions/neo4j-checkconnections.html")
"https://hop.apache.org/manual/latest/workflow/actions/neo4j-checkconnections.html")
public class CheckConnections extends ActionBase implements IAction {

private List<String> connectionNames;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
image = "neo4j_cypher.svg",
categoryDescription = "i18n:org.apache.hop.workflow:ActionCategory.Category.Scripting",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/actions/neo4j-cypherscript.html")
"https://hop.apache.org/manual/latest/workflow/actions/neo4j-cypherscript.html")
public class CypherScript extends ActionBase implements IAction {

private String connectionName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"Reads from or writes to Neo4j using Cypher with parameter data from input fields",
image = "neo4j_cypher.svg",
categoryDescription = "Neo4j",
documentationUrl = "https://hop.apache.org/manual/latest/plugins/transforms/neo4j-cypher.html")
documentationUrl = "https://hop.apache.org/manual/latest/pipeline/transforms/neo4j-cypher.html")
@InjectionSupported(
localizationPrefix = "Cypher.Injection.",
groups = {"PARAMETERS", "RETURNS"})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"Generate CSV files for nodes and relationships in the import/ folder for use with neo4j-import",
image = "neo4j_load.svg",
categoryDescription = "Neo4j",
documentationUrl = "https://hop.apache.org/manual/latest/plugins/transforms/generate-csvs.html")
documentationUrl = "https://hop.apache.org/manual/latest/pipeline/transforms/generate-csvs.html")
public class GenerateCsvMeta extends BaseTransformMeta
implements ITransformMeta<GenerateCsv, GenerateCsvData> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
image = "neo4j_graph_output.svg",
categoryDescription = "Neo4j",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/transforms/neo4j-graphoutput.html")
"https://hop.apache.org/manual/latest/pipeline/transforms/neo4j-graphoutput.html")
@InjectionSupported(
localizationPrefix = "GraphOutput.Injection.",
groups = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
name = "Neo4j Import",
description = "Runs an import command using the provided CSV files ",
image = "neo4j_import.svg",
categoryDescription = "Neo4j",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/transforms/neo4j-importer.html")
categoryDescription = "Neo4j",
documentationUrl = "https://hop.apache.org/manual/latest/pipeline/transforms/neo4j-import.html"
)
public class ImporterMeta extends BaseTransformMeta
implements ITransformMeta<Importer, ImporterData> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,10 @@
name = "Get Neo4j Logging Info",
description = "Queries the Neo4j logging graph and gets information back",
categoryDescription = "Neo4j",
image = "systeminfo.svg",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/transforms/neo4j-get-logging-info.html")
image = "systeminfo.svg",
documentationUrl = "https://hop.apache.org/manual/latest/pipeline/transforms/neo4j-getloginfo.html"
)

@InjectionSupported(localizationPrefix = "GetLoggingInfoMeta.Injection.")
public class GetLoggingInfoMeta extends BaseTransformMeta
implements ITransformMeta<GetLoggingInfo, GetLoggingInfoData> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
name = "Neo4JOutput.Transform.Name",
description = "Neo4JOutput.Transform.Description",
categoryDescription = "Neo4JOutput.Transform.Category",
documentationUrl = "https://hop.apache.org/manual/latest/plugins/transforms/neo4j-output.html")
documentationUrl = "https://hop.apache.org/manual/latest/pipeline/transforms/neo4j-output.html")
@InjectionSupported(
localizationPrefix = "Neo4JOutput.Injection.",
groups = {"FROM_NODE_PROPS", "FROM_LABELS", "TO_NODE_PROPS", "TO_LABELS", "REL_PROPS"})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
description = "i18n::BlockingTransform.Description",
categoryDescription = "i18n:org.apache.hop.pipeline.transform:BaseTransform.Category.Flow",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/transforms/blockingtransform.html")
"https://hop.apache.org/manual/latest/pipeline/transforms/blockingtransform.html")
public class BlockingTransformMeta extends BaseTransformMeta
implements ITransformMeta<BlockingTransform, BlockingTransformData> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
description = "i18n::BaseTransform.TypeLongDesc.BlockUntilTransformsFinish",
categoryDescription = "i18n:org.apache.hop.pipeline.transform:BaseTransform.Category.Flow",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/transforms/blockuntiltransformsfinish.html")
"https://hop.apache.org/manual/latest/pipeline/transforms/blockuntiltransformsfinish.html")
public class BlockUntilTransformsFinishMeta extends BaseTransformMeta
implements ITransformMeta<BlockUntilTransformsFinish, BlockUntilTransformsFinishData> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
description = "i18n::ChangeFileEncoding.Description",
categoryDescription = "i18n:org.apache.hop.pipeline.transform:BaseTransform.Category.Utility",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/transforms/changefileencoding.html")
"https://hop.apache.org/manual/latest/pipeline/transforms/changefileencoding.html")
public class ChangeFileEncodingMeta extends BaseTransformMeta
implements ITransformMeta<ChangeFileEncoding, ChangeFileEncodingData> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
description = "i18n::CombinationLookup.Description",
categoryDescription = "i18n:org.apache.hop.pipeline.transform:BaseTransform.Category.DataWarehouse",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/transforms/combinationlookup.html")
"https://hop.apache.org/manual/latest/pipeline/transforms/combinationlookup.html")
@InjectionSupported(localizationPrefix = "CombinationLookup.Injection.")
public class CombinationLookupMeta extends BaseTransformMeta
implements ITransformMeta<CombinationLookup, CombinationLookupData>, IProvidesModelerMeta {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
description = "i18n::BaseTransform.TypeTooltipDesc.CreditCardValidator",
categoryDescription = "i18n:org.apache.hop.pipeline.transform:BaseTransform.Category.Utility",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/transforms/creditcardvalidator.html")
"https://hop.apache.org/manual/latest/pipeline/transforms/creditcardvalidator.html")
public class CreditCardValidatorMeta extends BaseTransformMeta
implements ITransformMeta<CreditCardValidator, CreditCardValidatorData> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
description = "i18n::BaseTransform.TypeTooltipDesc.DatabaseLookup",
categoryDescription = "i18n:org.apache.hop.pipeline.transform:BaseTransform.Category.Lookup",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/transforms/databaselookup.html")
"https://hop.apache.org/manual/latest/pipeline/transforms/databaselookup.html")
public class DatabaseLookupMeta extends BaseTransformMeta
implements ITransformMeta<DatabaseLookup, DatabaseLookupData>, IProvidesModelerMeta {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
description = "i18n::BaseTransform.TypeTooltipDesc.DetectEmptyStream",
categoryDescription = "i18n:org.apache.hop.pipeline.transform:BaseTransform.Category.Flow",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/transforms/detectemptystream.html")
"https://hop.apache.org/manual/latest/pipeline/transforms/detectemptystream.html")
public class DetectEmptyStreamMeta extends BaseTransformMeta
implements ITransformMeta<DetectEmptyStream, DetectEmptyStreamData> {
private static final Class<?> PKG = DetectEmptyStreamMeta.class; // For Translator
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
description = "i18n::BaseTransform.TypeTooltipDesc.DimensionUpdate",
categoryDescription = "i18n:org.apache.hop.pipeline.transform:BaseTransform.Category.DataWarehouse",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/transforms/dimensionlookup.html")
"https://hop.apache.org/manual/latest/pipeline/transforms/dimensionlookup.html")
@InjectionSupported(
localizationPrefix = "DimensionLookup.Injection.",
groups = {"KEYS", "FIELDS"})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
description = "i18n::BaseTransform.TypeTooltipDesc.FieldsChangeSequence",
categoryDescription = "i18n:org.apache.hop.pipeline.transform:BaseTransform.Category.Transform",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/transforms/addfieldschangesequence.html")
"https://hop.apache.org/manual/latest/pipeline/transforms/addfieldschangesequence.html")
public class FieldsChangeSequenceMeta extends BaseTransformMeta
implements ITransformMeta<FieldsChangeSequence, FieldsChangeSequenceData> {
private static final Class<?> PKG = FieldsChangeSequenceMeta.class; // For Translator
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
description = "i18n::BaseTransform.TypeTooltipDesc.FilesFromResult",
categoryDescription = "i18n:org.apache.hop.pipeline.transform:BaseTransform.Category.Workflow",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/transforms/filesfromresult.html")
"https://hop.apache.org/manual/latest/pipeline/transforms/filesfromresult.html")
public class FilesFromResultMeta extends BaseTransformMeta
implements ITransformMeta<FilesFromResult, FilesFromResultData> {
private static final Class<?> PKG = FilesFromResult.class; // For Translator
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
description = "i18n::BaseTransform.TypeTooltipDesc.GetFilesRowsCount",
categoryDescription = "i18n:org.apache.hop.pipeline.transform:BaseTransform.Category.Input",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/transforms/getfilesrowcount.html")
"https://hop.apache.org/manual/latest/pipeline/transforms/getfilesrowcount.html")
public class GetFilesRowsCountMeta extends BaseTransformMeta
implements ITransformMeta<GetFilesRowsCount, GetFilesRowsCountData> {
private static final Class<?> PKG = GetFilesRowsCountMeta.class; // For Translator
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package org.apache.hop.pipeline.transforms.getserverequence;
package org.apache.hop.pipeline.transforms.getserversequence;

import org.apache.hop.core.Const;
import org.apache.hop.core.exception.HopException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package org.apache.hop.pipeline.transforms.getserverequence;
package org.apache.hop.pipeline.transforms.getserversequence;

import org.apache.hop.server.HopServer;
import org.apache.hop.core.row.IRowMeta;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package org.apache.hop.pipeline.transforms.getserverequence;
package org.apache.hop.pipeline.transforms.getserversequence;

import org.apache.hop.core.Const;
import org.apache.hop.core.util.Utils;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package org.apache.hop.pipeline.transforms.getserverequence;
package org.apache.hop.pipeline.transforms.getserversequence;

import org.apache.hop.core.CheckResult;
import org.apache.hop.core.ICheckResult;
Expand Down Expand Up @@ -45,7 +45,7 @@
description = "i18n::GetServerSequence.Description",
categoryDescription = "i18n:org.apache.hop.pipeline.transform:BaseTransform.Category.Transform",
documentationUrl =
"https://hop.apache.org/manual/latest/plugins/transforms/getserversequence.html")
"https://hop.apache.org/manual/latest/pipeline/transforms/getserversequence.html")
public class GetServerSequenceMeta extends BaseTransformMeta
implements ITransformMeta<GetServerSequence, GetServerSequenceData> {
private static final Class<?> PKG = GetServerSequenceMeta.class; // For Translator
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@
* limitations under the License.
*/

package org.apache.hop.pipeline.transforms.getserverequence;
package org.apache.hop.pipeline.transforms.getserversequence;

import org.apache.hop.core.exception.HopException;
import org.apache.hop.junit.rules.RestoreHopEngineEnvironment;
import org.apache.hop.pipeline.transforms.getserversequence.GetServerSequenceMeta;
import org.apache.hop.pipeline.transforms.loadsave.LoadSaveTester;
import org.junit.ClassRule;
import org.junit.Test;
Expand Down
Loading

0 comments on commit 9f52f1d

Please sign in to comment.