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/07/08 10:38:28 UTC

[hop] branch master updated (d009696e27 -> 4087261371)

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 d009696e27 Merge pull request #1560 from shlxue/master
     new 610d50f763 HOP-1496 : refresh the tab if the file is changed in HopDataOrchestrationPerspective and ExplorerPerspective
     new 9cf7bf0fc7 HOP-1496: code formatting
     new 4087261371 Merge pull request #1285 from uraychang/refreshFileExplorerWhileReloadFile

The 4223 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:
 .../java/org/apache/hop/pipeline/Pipeline.java     |  2 +-
 .../java/org/apache/hop/pipeline/PipelineMeta.java | 26 +++---
 .../hop/pipeline/TransformWithMappingMeta.java     |  2 +-
 .../src/main/java/org/apache/hop/run/HopRun.java   |  2 +-
 .../java/org/apache/hop/workflow/WorkflowMeta.java |  5 ++
 .../java/org/apache/hop/www/AddExportServlet.java  |  2 +-
 .../org/apache/hop/www/RegisterPackageServlet.java |  2 +-
 .../java/org/apache/hop/www/WebServiceServlet.java |  2 +-
 .../org/apache/hop/pipeline/PipelineMetaTest.java  |  2 +-
 .../workflow/actions/pipeline/ActionPipeline.java  |  2 +-
 .../apache/hop/workflow/actions/repeat/Repeat.java |  2 +-
 .../main/java/org/apache/hop/git/GitGuiPlugin.java |  2 +-
 .../git/info/GitInfoExplorerFileTypeHandler.java   |  4 +-
 .../test/java/org/apache/hop/git/HopDiffTest.java  |  4 +-
 .../search/ProjectSearchablesIterator.java         |  2 +-
 .../pipeline/xp/PipelineStartLoggingXp.java        |  2 +-
 .../reflection/probe/xp/PipelineDataProbeXp.java   |  2 +-
 .../workflow/xp/WorkflowStartLoggingXp.java        |  2 +-
 .../testing/transforms/exectests/ExecuteTests.java |  2 +-
 .../org/apache/hop/testing/util/UnitTestUtil.java  |  2 +-
 .../hop/testing/xp/PipelineMetaModifier.java       |  2 +-
 .../eventhubs/listen/AzureListenerMeta.java        |  2 +-
 .../test/java/org/apache/hop/TestUtilities.java    |  2 +-
 .../kafka/consumer/KafkaConsumerInput.java         |  2 +-
 .../transforms/mapping/SimpleMappingDialog.java    |  2 +-
 .../transforms/metainject/MetaInjectDialog.java    |  2 +-
 .../transforms/metainject/MetaInjectMeta.java      |  2 +-
 .../pipelineexecutor/PipelineExecutorDialog.java   |  2 +-
 .../hop/ui/core/metadata/MetadataManager.java      |  1 +
 .../main/java/org/apache/hop/ui/hopgui/HopGui.java |  7 +-
 .../delegates/HopGuiFileRefreshDelegate.java       | 97 ++++++++++++++++++++++
 .../hop/ui/hopgui/file/IHopFileTypeHandler.java    | 10 +++
 .../hopgui/file/pipeline/HopGuiPipelineGraph.java  | 60 +++++++++----
 .../hopgui/file/pipeline/HopPipelineFileType.java  |  2 +-
 .../hopgui/file/workflow/HopGuiWorkflowGraph.java  | 43 ++++++++--
 .../dataorch/HopDataOrchestrationPerspective.java  | 40 ++++++++-
 .../perspective/explorer/ExplorerPerspective.java  | 38 ++++++---
 .../file/types/base/BaseExplorerFileType.java      |  2 +-
 .../text/BaseTextExplorerFileTypeHandler.java      | 19 +++--
 .../perspective/metadata/MetadataPerspective.java  | 23 ++---
 .../hop/ui/www/service/WebServiceEditor.java       |  2 +-
 41 files changed, 324 insertions(+), 107 deletions(-)
 create mode 100644 ui/src/main/java/org/apache/hop/ui/hopgui/delegates/HopGuiFileRefreshDelegate.java