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 60896c1 Merge pull request #641 from bamaer/HOP-2552
new 6d2670c HOP-2550 : Docker: simplify hop-server use case
new 2e1ad02 HOP-2555 : Add support for a JSON value type
new b98ac7a HOP-2548 : Metadata Perspective: sort by metadata type name
(+code format)
new f4aa5ce HOP-2554 : Allow logging to take place with a Hop pipeline
new 91be2a7 HOP-2556 : Spark runner: missing dependency
new 1d68065 Merge pull request #642 from mattcasters/master
The 1651 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 | 26 ++
assemblies/plugins/engines/beam/pom.xml | 6 +
.../plugins/engines/beam/src/assembly/assembly.xml | 1 +
assemblies/plugins/misc/pom.xml | 1 +
assemblies/plugins/misc/{ => reflection}/pom.xml | 26 +-
.../misc/reflection/src/assembly/assembly.xml | 51 +++
.../reflection}/src/main/resources/version.xml | 0
assemblies/plugins/pom.xml | 1 +
assemblies/plugins/{ => valuetypes/json}/pom.xml | 34 +-
.../valuetypes/json/src/assembly/assembly.xml | 51 +++
.../json}/src/main/resources/version.xml | 0
assemblies/plugins/{misc => valuetypes}/pom.xml | 11 +-
docker/README.md | 15 +-
docker/resources/load-and-execute.sh | 58 ++-
plugins/misc/pom.xml | 1 +
plugins/misc/reflection/pom.xml | 114 ++++++
.../hop/reflection/pipeline/meta/PipelineLog.java | 168 ++++++++
.../pipeline/meta/PipelineLogEditor.java | 435 ++++++++++++++++++++
.../pipeline/transform/PipelineLogging.java | 212 ++++++++++
.../pipeline/transform/PipelineLoggingData.java | 27 ++
.../pipeline/transform/PipelineLoggingDialog.java | 200 ++++++++++
.../pipeline/transform/PipelineLoggingMeta.java | 194 +++++++++
.../pipeline/xp/PipelineStartLoggingXp.java | 213 ++++++++++
.../hop/reflection/workflow/meta/WorkflowLog.java | 168 ++++++++
.../workflow/meta/WorkflowLogEditor.java | 437 +++++++++++++++++++++
.../workflow/transform/WorkflowLogging.java | 211 ++++++++++
.../workflow/transform/WorkflowLoggingData.java | 25 ++
.../workflow/transform/WorkflowLoggingDialog.java | 199 ++++++++++
.../workflow/transform/WorkflowLoggingMeta.java | 189 +++++++++
.../workflow/xp/WorkflowStartLoggingXp.java | 183 +++++++++
.../meta/messages/messages_en_US.properties | 26 ++
.../transform/messages/messages_en_US.properties | 24 ++
.../meta/messages/messages_en_US.properties | 26 ++
.../transform/messages/messages_en_US.properties | 24 ++
plugins/pom.xml | 1 +
.../plugins => plugins/valuetypes/json}/pom.xml | 32 +-
.../apache/hop/core/row/value/ValueMetaJson.java | 411 +++++++++++++++++++
.../valuetypes/json/src/main/resources/json.svg | 17 +
plugins/{misc => valuetypes}/pom.xml | 37 +-
.../perspective/metadata/MetadataPerspective.java | 79 ++--
40 files changed, 3780 insertions(+), 154 deletions(-)
copy assemblies/plugins/misc/{ => reflection}/pom.xml (73%)
create mode 100644 assemblies/plugins/misc/reflection/src/assembly/assembly.xml
copy assemblies/plugins/{vfs/s3 =>
misc/reflection}/src/main/resources/version.xml (100%)
copy assemblies/plugins/{ => valuetypes/json}/pom.xml (66%)
create mode 100644 assemblies/plugins/valuetypes/json/src/assembly/assembly.xml
copy assemblies/plugins/{vfs/s3 =>
valuetypes/json}/src/main/resources/version.xml (100%)
copy assemblies/plugins/{misc => valuetypes}/pom.xml (81%)
create mode 100644 plugins/misc/reflection/pom.xml
create mode 100644
plugins/misc/reflection/src/main/java/org/apache/hop/reflection/pipeline/meta/PipelineLog.java
create mode 100644
plugins/misc/reflection/src/main/java/org/apache/hop/reflection/pipeline/meta/PipelineLogEditor.java
create mode 100644
plugins/misc/reflection/src/main/java/org/apache/hop/reflection/pipeline/transform/PipelineLogging.java
create mode 100644
plugins/misc/reflection/src/main/java/org/apache/hop/reflection/pipeline/transform/PipelineLoggingData.java
create mode 100644
plugins/misc/reflection/src/main/java/org/apache/hop/reflection/pipeline/transform/PipelineLoggingDialog.java
create mode 100644
plugins/misc/reflection/src/main/java/org/apache/hop/reflection/pipeline/transform/PipelineLoggingMeta.java
create mode 100644
plugins/misc/reflection/src/main/java/org/apache/hop/reflection/pipeline/xp/PipelineStartLoggingXp.java
create mode 100644
plugins/misc/reflection/src/main/java/org/apache/hop/reflection/workflow/meta/WorkflowLog.java
create mode 100644
plugins/misc/reflection/src/main/java/org/apache/hop/reflection/workflow/meta/WorkflowLogEditor.java
create mode 100644
plugins/misc/reflection/src/main/java/org/apache/hop/reflection/workflow/transform/WorkflowLogging.java
create mode 100644
plugins/misc/reflection/src/main/java/org/apache/hop/reflection/workflow/transform/WorkflowLoggingData.java
create mode 100644
plugins/misc/reflection/src/main/java/org/apache/hop/reflection/workflow/transform/WorkflowLoggingDialog.java
create mode 100644
plugins/misc/reflection/src/main/java/org/apache/hop/reflection/workflow/transform/WorkflowLoggingMeta.java
create mode 100644
plugins/misc/reflection/src/main/java/org/apache/hop/reflection/workflow/xp/WorkflowStartLoggingXp.java
create mode 100644
plugins/misc/reflection/src/main/resources/org/apache/hop/reflection/pipeline/meta/messages/messages_en_US.properties
create mode 100644
plugins/misc/reflection/src/main/resources/org/apache/hop/reflection/pipeline/transform/messages/messages_en_US.properties
create mode 100644
plugins/misc/reflection/src/main/resources/org/apache/hop/reflection/workflow/meta/messages/messages_en_US.properties
create mode 100644
plugins/misc/reflection/src/main/resources/org/apache/hop/reflection/workflow/transform/messages/messages_en_US.properties
copy {assemblies/plugins => plugins/valuetypes/json}/pom.xml (66%)
create mode 100644
plugins/valuetypes/json/src/main/java/org/apache/hop/core/row/value/ValueMetaJson.java
create mode 100644 plugins/valuetypes/json/src/main/resources/json.svg
copy plugins/{misc => valuetypes}/pom.xml (77%)