mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
[480836] [ftp] cannot list directories on IBM i
Bug: 480836 Change-Id: I9c6c2c3534ee3bf48f19d080d0cd15c7ecb3490c Signed-off-by: Kaloyan Raev <kaloyan.r@zend.com>
This commit is contained in:
parent
8288fab8aa
commit
8efe8471ec
3 changed files with 15 additions and 4 deletions
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.rse.subsystems.files.ftp;singleton:=true
|
||||
Bundle-Version: 2.2.0.qualifier
|
||||
Bundle-Version: 2.2.100.qualifier
|
||||
Bundle-Activator: org.eclipse.rse.internal.subsystems.files.ftp.Activator
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
Martin Oberhuber (Wind River) - [198692] Use FTP LIST -a to list UNIX hidden files
|
||||
Javier Montalvo Orus (Symbian) - [225821] [ftp] opening "/home" fails on OS/400 IFS
|
||||
Martin Oberhuber (Wind River) - [214141] Avoid NPE if missing SYST command
|
||||
Kaloyan Raev (Zend) - [480836] cannot list directories on IBM i
|
||||
-->
|
||||
<?eclipse version="3.1"?>
|
||||
<plugin>
|
||||
|
@ -89,14 +90,24 @@
|
|||
label="%FTPParser.OS2"
|
||||
priority="100">
|
||||
</parser>
|
||||
<!-- Bug 480836: Use Unix-style format for IBM i -->
|
||||
<parser
|
||||
class="org.eclipse.rse.internal.subsystems.files.ftp.parser.RSEOS400FTPEntryParser"
|
||||
class="org.apache.commons.net.ftp.parser.UnixFTPEntryParser"
|
||||
systemTypeRegex=".*[Oo][Ss]/400.*"
|
||||
id="org.eclipse.rse.ftp.parser.OS400"
|
||||
label="%FTPParser.OS400"
|
||||
priority="100">
|
||||
<initCommand
|
||||
cmd="site namefmt 1">
|
||||
cmd="SITE LISTFMT 1">
|
||||
</initCommand>
|
||||
<initCommand
|
||||
cmd="SITE NAMEFMT 1">
|
||||
</initCommand>
|
||||
<initCommand
|
||||
cmd="CWD /">
|
||||
</initCommand>
|
||||
<initCommand
|
||||
cmd="CWD ~">
|
||||
</initCommand>
|
||||
</parser>
|
||||
<parser
|
||||
|
|
|
@ -10,6 +10,6 @@
|
|||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.subsystems.files.ftp</artifactId>
|
||||
<version>2.2.0-SNAPSHOT</version>
|
||||
<version>2.2.100-SNAPSHOT</version>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
</project>
|
||||
|
|
Loading…
Add table
Reference in a new issue