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 2022/09/30 16:48:04 UTC

[hop] branch master updated (370b847042 -> 92c14a0ec4)

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

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


    from 370b847042 Merge pull request #1710 from hansva/master
     new fc817bbf52 HOP-4250 : Hop GUI log browser NPE
     new 0f9a32a81b HOP-4024 : Create a new execution information platform (delete, bug fixes, neo4j) HOP-4248 Beam BigTable Input throws Index out of bounds error (transform,fixes,docs)
     new 47b7132766 HOP-4024 : Create a new execution information platform (docs)
     new 457d2f3bf1 HOP-4194 : GroupBy serialization error when running a workflow in a remote Hop server
     new e33c4f5ff5 HOP-4252 : execution information location editor does not use the full width and height
     new b901cb9ffb HOP-4257 : Hop Web fix
     new d009cff99b HOP-4257 : Hop Web fix
     new 35068ebb9e HOP-4257 : Hop Web fix for the new Execution Perspective
     new 92c14a0ec4 Merge pull request #1711 from mattcasters/master

The 4560 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 assemblies/plugins/dist/pom.xml                    |  13 +
 assemblies/plugins/transforms/execinfo/pom.xml     |  46 ++
 .../transforms/execinfo/src/assembly/assembly.xml  |  50 ++
 .../execinfo}/src/main/resources/version.xml       |   0
 assemblies/plugins/transforms/pom.xml              |   1 +
 .../java/org/apache/hop/core/row/IRowMeta.java     |  14 +-
 .../main/java/org/apache/hop/core/row/RowMeta.java |  10 +
 ...rmation-perspective-drill-down-toolbar-icon.png | Bin 0 -> 2460 bytes
 ...-information-perspective-left-panel-example.png | Bin 0 -> 134205 bytes
 ...formation-perspective-pipeline-toolbar-icon.png | Bin 0 -> 3165 bytes
 ...rmation-perspective-right-workflow-overview.png | Bin 0 -> 101445 bytes
 ...ormation-perspective-to-editor-toolbar-icon.png | Bin 0 -> 2614 bytes
 ...ormation-perspective-to-parent-toolbar-icon.png | Bin 0 -> 2525 bytes
 ...formation-perspective-workflow-toolbar-icon.png | Bin 0 -> 2613 bytes
 .../assets/images/transforms/icons/execinfo.svg    |   0
 .../hop-gui/perspective-execution-information.adoc | 142 ++++-
 .../ROOT/pages/pipeline/transforms/execinfo.adoc   |  79 +++
 .../hop/execution/ExecutionInfoLocation.java       |   5 +
 .../hop/execution/IExecutionInfoLocation.java      |   4 +-
 .../execution/local/FileExecutionInfoLocation.java |   6 +-
 .../remote/RemoteExecutionInfoLocation.java        |   4 +-
 .../hop/pipeline/transform/TransformMeta.java      |  13 +-
 .../transforms/avrooutput/AvroOutputDialog.java    |   1 -
 .../cassandraoutput/CassandraOutputDialog.java     |   1 -
 .../neo4j/execution/NeoExecutionInfoLocation.java  |  16 +-
 plugins/transforms/execinfo/pom.xml                |  36 ++
 .../hop/pipeline/transforms/execinfo/ExecInfo.java | 397 +++++++++++++
 .../pipeline/transforms/execinfo/ExecInfoData.java |  34 ++
 .../transforms/execinfo/ExecInfoDialog.java        | 322 ++++++++++
 .../pipeline/transforms/execinfo/ExecInfoMeta.java | 645 +++++++++++++++++++++
 .../execinfo/messages/messages_en_US.properties    |  66 +++
 .../transforms/execinfo/ExecInfoMetaTest.java      |  58 ++
 .../pipeline/transforms/groupby/Aggregation.java   | 161 +++--
 .../pipeline/transforms/groupby/GroupByMeta.java   |   2 +-
 .../groupby/messages/messages_en_US.properties     |   4 +-
 .../groupby/messages/messages_es_AR.properties     |   4 +-
 .../groupby/messages/messages_fr_FR.properties     |   4 +-
 .../groupby/messages/messages_it_IT.properties     |   4 +-
 .../groupby/messages/messages_ja_JP.properties     |   4 +-
 .../groupby/messages/messages_ko_KR.properties     |   4 +-
 .../groupby/messages/messages_zh_CN.properties     |   4 +-
 .../hop/pipeline/transforms/GroupByMetaTest.java   | 117 ++++
 .../mongodbdelete/MongoDbDeleteDialog.java         |   1 -
 plugins/transforms/pom.xml                         |   1 +
 .../bulkloader/SnowflakeBulkLoaderDialog.java      |   1 -
 .../main/java/org/apache/hop/ui/core/PropsUi.java  |   1 -
 .../ui/execution/ExecutionInfoLocationEditor.java  |   2 +
 .../ui/hopgui/file/pipeline/HopGuiLogBrowser.java  | 118 ++--
 .../perspective/execution/BaseExecutionViewer.java |  17 +-
 .../execution/PipelineExecutionViewer.java         |  11 +-
 .../execution/WorkflowExecutionViewer.java         |  10 +-
 51 files changed, 2242 insertions(+), 191 deletions(-)
 create mode 100644 assemblies/plugins/transforms/execinfo/pom.xml
 create mode 100644 assemblies/plugins/transforms/execinfo/src/assembly/assembly.xml
 copy assemblies/plugins/{actions/abort => transforms/execinfo}/src/main/resources/version.xml (100%)
 create mode 100644 docs/hop-user-manual/modules/ROOT/assets/images/execution-information-perspective-drill-down-toolbar-icon.png
 create mode 100644 docs/hop-user-manual/modules/ROOT/assets/images/execution-information-perspective-left-panel-example.png
 create mode 100644 docs/hop-user-manual/modules/ROOT/assets/images/execution-information-perspective-pipeline-toolbar-icon.png
 create mode 100644 docs/hop-user-manual/modules/ROOT/assets/images/execution-information-perspective-right-workflow-overview.png
 create mode 100644 docs/hop-user-manual/modules/ROOT/assets/images/execution-information-perspective-to-editor-toolbar-icon.png
 create mode 100644 docs/hop-user-manual/modules/ROOT/assets/images/execution-information-perspective-to-parent-toolbar-icon.png
 create mode 100644 docs/hop-user-manual/modules/ROOT/assets/images/execution-information-perspective-workflow-toolbar-icon.png
 copy ui/src/main/resources/ui/images/location.svg => docs/hop-user-manual/modules/ROOT/assets/images/transforms/icons/execinfo.svg (100%)
 create mode 100644 docs/hop-user-manual/modules/ROOT/pages/pipeline/transforms/execinfo.adoc
 create mode 100644 plugins/transforms/execinfo/pom.xml
 create mode 100644 plugins/transforms/execinfo/src/main/java/org/apache/hop/pipeline/transforms/execinfo/ExecInfo.java
 create mode 100644 plugins/transforms/execinfo/src/main/java/org/apache/hop/pipeline/transforms/execinfo/ExecInfoData.java
 create mode 100644 plugins/transforms/execinfo/src/main/java/org/apache/hop/pipeline/transforms/execinfo/ExecInfoDialog.java
 create mode 100644 plugins/transforms/execinfo/src/main/java/org/apache/hop/pipeline/transforms/execinfo/ExecInfoMeta.java
 create mode 100644 plugins/transforms/execinfo/src/main/resources/org/apache/hop/pipeline/transforms/execinfo/messages/messages_en_US.properties
 create mode 100644 plugins/transforms/execinfo/src/test/java/org/apache/hop/pipeline/transforms/execinfo/ExecInfoMetaTest.java
 create mode 100644 plugins/transforms/groupby/src/test/java/org/apache/hop/pipeline/transforms/GroupByMetaTest.java