Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 398988 | Differences between
and this patch

Collapse All | Expand All

(-)a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/internal/files/ui/view/SystemViewRemoteFileAdapter.java (-1 / +6 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2002, 2012 IBM Corporation and others.
2
 * Copyright (c) 2002, 2013 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 79-84 Link Here
79
 * Rick Sawyer      (IBM)        - [376535] RSE does not respect editor overrides
79
 * Rick Sawyer      (IBM)        - [376535] RSE does not respect editor overrides
80
 * David McKnight   (IBM)        - [389838] Fast folder transfer does not account for code page
80
 * David McKnight   (IBM)        - [389838] Fast folder transfer does not account for code page
81
 * David Mcknight   (IBM)        - [374681] Incorrect number of children on the properties page of a directory
81
 * David Mcknight   (IBM)        - [374681] Incorrect number of children on the properties page of a directory
82
 * Samuel Wu        (IBM)        - [398988] [ftp] FTP Only support to zVM
82
 *******************************************************************************/
83
 *******************************************************************************/
83
84
84
package org.eclipse.rse.internal.files.ui.view;
85
package org.eclipse.rse.internal.files.ui.view;
Lines 2153-2158 Link Here
2153
			{
2154
			{
2154
				//targetFolder.markStale(true);
2155
				//targetFolder.markStale(true);
2155
				targetFolder = targetFS.getRemoteFileObject(targetFolder.getAbsolutePath(), monitor);
2156
				targetFolder = targetFS.getRemoteFileObject(targetFolder.getAbsolutePath(), monitor);
2157
				if (targetFolder == null)
2158
					targetFolder = (IRemoteFile)target;
2156
			}
2159
			}
2157
			catch (Exception e)
2160
			catch (Exception e)
2158
			{
2161
			{
Lines 2593-2598 Link Here
2593
			{
2596
			{
2594
				//targetFolder.markStale(true);
2597
				//targetFolder.markStale(true);
2595
				targetFolder = targetFS.getRemoteFileObject(targetFolder.getAbsolutePath(), monitor);
2598
				targetFolder = targetFS.getRemoteFileObject(targetFolder.getAbsolutePath(), monitor);
2599
				if (targetFolder == null)
2600
					targetFolder = (IRemoteFile)target;
2596
			}
2601
			}
2597
			catch (Exception e)
2602
			catch (Exception e)
2598
			{
2603
			{
(-)a/rse/plugins/org.eclipse.rse.services.files.ftp/src/org/eclipse/rse/internal/services/files/ftp/FTPHostFile.java (-2 / +3 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2005, 2008 IBM Corporation and others.
2
 * Copyright (c) 2005, 2013 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 23-28 Link Here
23
 * Javier Montalvo Orus (Symbian) - [198692] FTP should mark files starting with "." as hidden
23
 * Javier Montalvo Orus (Symbian) - [198692] FTP should mark files starting with "." as hidden
24
 * David McKnight   (IBM)         - [209593] [api] add support for "file permissions" and "owner" properties for unix files
24
 * David McKnight   (IBM)         - [209593] [api] add support for "file permissions" and "owner" properties for unix files
25
 * Martin Oberhuber (Wind River) - [235360][ftp][ssh][local] Return proper "Root" IHostFile
25
 * Martin Oberhuber (Wind River) - [235360][ftp][ssh][local] Return proper "Root" IHostFile
26
 * Samuel Wu        (IBM)         - [398988] [ftp] FTP Only support to zVM
26
 *******************************************************************************/
27
 *******************************************************************************/
27
28
28
package org.eclipse.rse.internal.services.files.ftp;
29
package org.eclipse.rse.internal.services.files.ftp;
Lines 67-73 Link Here
67
		_size = size;
68
		_size = size;
68
		_isArchive = internalIsArchive();
69
		_isArchive = internalIsArchive();
69
		_canRead = true;
70
		_canRead = true;
70
		_canWrite = false;
71
		_canWrite = true;
71
		_isRoot = isRoot;
72
		_isRoot = isRoot;
72
		_exists = exists;
73
		_exists = exists;
73
	}
74
	}

Return to bug 398988