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 2021/02/26 11:54:41 UTC

[incubator-hop] branch master updated (ba93a81 -> 30cac33)

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/incubator-hop.git.


    from ba93a81  Merge pull request #645 from bamaer/HOP-2204
     new b05edb1  HOP-2569 : Bring back space while mousing over transform
     new 324d67b  HOP-2579 : Allow a metadata editor to be set to changed or not from outside the editor
     new c396b1b  HOP-2571 : Expose getter/setter for metadata in IMetadataEditor
     new 1febc89  HOP-2572 : TableView: when a row is inserted the view is not flagged as modified
     new 71b2092  HOP-2567 : Allow output rows from any transform to be streamed to another pipeline
     new 30cac33  Merge pull request #647 from mattcasters/master

The 1675 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:
 .../pipeline/meta/PipelineLogEditor.java           |   2 +-
 .../reflection/probe/gui/DataProbeGuiPlugin.java   | 184 ++++++++++++++
 .../reflection/probe/meta/DataProbeLocation.java   |  87 +++++++
 .../hop/reflection/probe/meta/PipelineProbe.java   | 104 ++++++++
 .../meta/PipelineProbeEditor.java}                 | 274 ++++++++-------------
 .../probe/transform/PipelineDataProbe.java         | 161 ++++++++++++
 .../transform/PipelineDataProbeData.java}          |   5 +-
 .../transform/PipelineDataProbeDialog.java}        |  40 +--
 .../probe/transform/PipelineDataProbeMeta.java     | 146 +++++++++++
 .../reflection/probe/xp/PipelineDataProbeXp.java   | 244 ++++++++++++++++++
 .../workflow/meta/WorkflowLogEditor.java           |   2 +-
 .../meta/messages/messages_en_US.properties        |   1 +
 .../transform/messages/messages_en_US.properties   |   9 +-
 .../probe/meta/messages/messages_en_US.properties  |  11 +-
 .../transform/messages/messages_en_US.properties   |   9 +-
 .../hop/ui/core/metadata/IMetadataEditor.java      |  35 ++-
 .../hop/ui/core/metadata/MetadataEditor.java       |  14 +-
 .../org/apache/hop/ui/core/widget/TableView.java   |  24 +-
 .../hopgui/file/pipeline/HopGuiPipelineGraph.java  |   2 +-
 19 files changed, 1115 insertions(+), 239 deletions(-)
 create mode 100644 plugins/misc/reflection/src/main/java/org/apache/hop/reflection/probe/gui/DataProbeGuiPlugin.java
 create mode 100644 plugins/misc/reflection/src/main/java/org/apache/hop/reflection/probe/meta/DataProbeLocation.java
 create mode 100644 plugins/misc/reflection/src/main/java/org/apache/hop/reflection/probe/meta/PipelineProbe.java
 copy plugins/misc/reflection/src/main/java/org/apache/hop/reflection/{pipeline/meta/PipelineLogEditor.java => probe/meta/PipelineProbeEditor.java} (53%)
 create mode 100644 plugins/misc/reflection/src/main/java/org/apache/hop/reflection/probe/transform/PipelineDataProbe.java
 copy plugins/misc/reflection/src/main/java/org/apache/hop/reflection/{pipeline/transform/PipelineLoggingData.java => probe/transform/PipelineDataProbeData.java} (85%)
 copy plugins/misc/reflection/src/main/java/org/apache/hop/reflection/{pipeline/transform/PipelineLoggingDialog.java => probe/transform/PipelineDataProbeDialog.java} (74%)
 create mode 100644 plugins/misc/reflection/src/main/java/org/apache/hop/reflection/probe/transform/PipelineDataProbeMeta.java
 create mode 100644 plugins/misc/reflection/src/main/java/org/apache/hop/reflection/probe/xp/PipelineDataProbeXp.java
 copy integration-tests/scripting/0002-shell-test.sh => plugins/misc/reflection/src/main/resources/org/apache/hop/reflection/probe/meta/messages/messages_en_US.properties (67%)
 mode change 100755 => 100644
 copy integration-tests/scripting/0002-shell-test.sh => plugins/misc/reflection/src/main/resources/org/apache/hop/reflection/probe/transform/messages/messages_en_US.properties (71%)
 mode change 100755 => 100644