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/03/18 14:02:57 UTC

[incubator-hop] branch master updated (791abe8 -> 88659ae)

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 791abe8  Merge pull request #681 from mattcasters/master
     new 390b153  HOP-2630 : Hop VFS file dialog: Paint folders without a base name with their URL
     new 255a54d  HOP-2631 : Explorer file type handlers CSV,TXT,JSON: support VFS
     new 7d0e0d8  HOP-2633 : Action Copy Files: copying one file doesn't work
     new ec0497a  HOP-2027 : Fix button positions in dialogs
     new bc57920  HOP-2634 : Table Views : text columns with buttons are not sized correctly
     new 81c8fed  HOP-2625 : Azure Storage VFS driver: re-implement and document
     new dd13029  HOP-2633 : Action Copy Files: copying one file doesn't work
     new bce6c3e  HOP-2027 : Fix button positions in dialogs
     new c281507  HOP-2633 : Action Copy Files: copying one file doesn't work (i18n fix)
     new 61ba947  HOP-2027 : Fix button positions in dialogs
     new 2b73a52  HOP-2632 : NPE in S3 Storage VFS driver
     new 5d6b4f0  HOP-2631 : Explorer file type handlers CSV,TXT,JSON: support VFS
     new 88659ae  Merge pull request #682 from mattcasters/master

The 1795 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                    |  22 +-
 assemblies/plugins/tech/{neo4j => azure}/pom.xml   |  19 +-
 .../{vfs => tech}/azure/src/assembly/assembly.xml  |   7 +-
 .../azure/src/main/resources/version.xml           |   0
 assemblies/plugins/tech/pom.xml                    |   1 +
 assemblies/plugins/vfs/azure/pom.xml               |  60 ---
 assemblies/plugins/vfs/pom.xml                     |   1 -
 .../actions/copyfiles/ActionCopyFiles.java         | 172 ++++---
 .../actions/copyfiles/ActionCopyFilesDialog.java   | 128 ++----
 .../copyfiles/messages/messages_de_DE.properties   | 154 +++----
 .../copyfiles/messages/messages_en_US.properties   | 168 +++----
 .../copyfiles/messages/messages_es_AR.properties   | 154 +++----
 .../copyfiles/messages/messages_fr_FR.properties   | 158 +++----
 .../copyfiles/messages/messages_it_IT.properties   | 152 +++----
 .../copyfiles/messages/messages_ja_JP.properties   | 158 +++----
 .../copyfiles/messages/messages_ko_KR.properties   | 150 +++---
 .../copyfiles/messages/messages_nl_NL.properties   | 146 +++---
 .../copyfiles/messages/messages_pt_BR.properties   | 114 ++---
 .../copyfiles/messages/messages_zh_CN.properties   | 152 +++----
 .../filecompare/ActionFileCompareDialog.java       |  29 +-
 plugins/tech/{neo4j => azure}/pom.xml              |  40 +-
 .../org/apache/hop/vfs/azure/AzureFileName.java}   |  37 +-
 .../apache/hop/vfs/azure/AzureFileNameParser.java  |  79 ++++
 .../org/apache/hop/vfs/azure/AzureFileObject.java  | 505 +++++++++++++++++++++
 .../apache/hop/vfs/azure/AzureFileProvider.java    | 123 +++++
 .../org/apache/hop/vfs/azure/AzureFileSystem.java} |  48 +-
 .../org/apache/hop/vfs/azure/AzureVfsPlugin.java   |   5 +-
 .../apache/hop/vfs/azure/PageBlobInputStream.java  | 104 +++++
 .../apache/hop/vfs/azure/config/AzureConfig.java}  |  52 ++-
 .../hop/vfs/azure/config/AzureConfigPlugin.java    | 232 ++++++++++
 .../vfs/azure/config/AzureConfigSingleton.java}    |  32 +-
 .../apache/hop/vfs/gs/GoogleStorageFileObject.java |   6 +
 plugins/tech/pom.xml                               |   1 +
 .../types/JsonExplorerFileTypeHandler.java         |  41 +-
 .../types/CsvExplorerFileTypeHandler.java          |  78 ----
 ...lorerFileType.java => LogExplorerFileType.java} |  25 +-
 ...FileType.java => MarkDownExplorerFileType.java} |  23 +-
 .../types/TextExplorerFileTypeHandler.java         |  34 +-
 .../xml/types/XmlExplorerFileTypeHandler.java      |  32 +-
 plugins/vfs/azure/pom.xml                          |  55 ---
 plugins/vfs/pom.xml                                |   1 -
 .../hop/vfs/s3/s3common/S3CommonFileObject.java    |   3 +
 .../apache/hop/ui/core/vfs/HopVfsFileDialog.java   |  10 +-
 .../org/apache/hop/ui/core/widget/TableView.java   |   1 +
 .../types/base/BaseExplorerFileTypeHandler.java    |  26 ++
 45 files changed, 2181 insertions(+), 1357 deletions(-)
 copy assemblies/plugins/tech/{neo4j => azure}/pom.xml (78%)
 rename assemblies/plugins/{vfs => tech}/azure/src/assembly/assembly.xml (91%)
 rename assemblies/plugins/{vfs => tech}/azure/src/main/resources/version.xml (100%)
 delete mode 100644 assemblies/plugins/vfs/azure/pom.xml
 copy plugins/tech/{neo4j => azure}/pom.xml (81%)
 copy plugins/tech/{google/src/main/java/org/apache/hop/vfs/gs/GoogleStorageFileName.java => azure/src/main/java/org/apache/hop/vfs/azure/AzureFileName.java} (53%)
 create mode 100644 plugins/tech/azure/src/main/java/org/apache/hop/vfs/azure/AzureFileNameParser.java
 create mode 100644 plugins/tech/azure/src/main/java/org/apache/hop/vfs/azure/AzureFileObject.java
 create mode 100644 plugins/tech/azure/src/main/java/org/apache/hop/vfs/azure/AzureFileProvider.java
 copy plugins/tech/{google/src/main/java/org/apache/hop/vfs/gs/GoogleStorageFileProvider.java => azure/src/main/java/org/apache/hop/vfs/azure/AzureFileSystem.java} (50%)
 rename plugins/{vfs => tech}/azure/src/main/java/org/apache/hop/vfs/azure/AzureVfsPlugin.java (89%)
 create mode 100644 plugins/tech/azure/src/main/java/org/apache/hop/vfs/azure/PageBlobInputStream.java
 copy plugins/{misc/testing/src/main/java/org/apache/hop/testing/VariableValue.java => tech/azure/src/main/java/org/apache/hop/vfs/azure/config/AzureConfig.java} (53%)
 create mode 100644 plugins/tech/azure/src/main/java/org/apache/hop/vfs/azure/config/AzureConfigPlugin.java
 copy plugins/tech/{google/src/main/java/org/apache/hop/vfs/gs/config/GoogleCloudConfigSingleton.java => azure/src/main/java/org/apache/hop/vfs/azure/config/AzureConfigSingleton.java} (59%)
 delete mode 100644 plugins/transforms/textfile/src/main/java/org/apache/hop/pipeline/transforms/types/CsvExplorerFileTypeHandler.java
 copy plugins/transforms/textfile/src/main/java/org/apache/hop/pipeline/transforms/types/{CsvExplorerFileType.java => LogExplorerFileType.java} (72%)
 copy plugins/transforms/textfile/src/main/java/org/apache/hop/pipeline/transforms/types/{CsvExplorerFileType.java => MarkDownExplorerFileType.java} (72%)
 delete mode 100644 plugins/vfs/azure/pom.xml