Home | History | Annotate | Download | only in ssl

Lines Matching full:drive

240  		String[] drive = new String[str.length() / 3];
250 drive[i / 3] += "\\ Floppy";
253 drive[i / 3] += "\\ Local Disk";
254 + if (drive[i/3].substring(0,1).toUpperCase().equals("C")) {
261 drive[i / 3] += "\\ CD-ROM";
263 drive[i / 3] += "\\ Network";
265 remoteDrivesComboBox.addItem(drive[i / 3]);
266 +System.out.println("ComboBox: Add " + idx + " '" + drive[i/3] + "'");
290 //sf@ - Select Drive C:as default if possible
320 return drive;
1130 - String drive = remoteDrivesComboBox.getSelectedItem().toString().substring(0,1)+ ":\\";
1131 - viewer.rfb.readServerDirectory(drive);
1132 - remoteLocation.setText(drive);
1133 +//System.out.println("changeRemoteDrive-A " + drive); // begin runge/x11vnc
1139 + String drive = instr.substring(0,1)+ ":\\";
1143 + drive = instr.substring(2, idx);
1145 + drive = instr.substring(2);
1147 + if (drive.equals("Home")) {
1148 + drive = "";
1150 + drive += "\\";
1154 + drive = saveRemoteHack(drive);
1157 + viewer.rfb.readServerDirectory(drive);
1159 + remoteLocation.setText(drive);
1167 +//System.out.println("changeRemoteDrive-B " + drive); // end runge/x11vnc
1187 localStatus.setText("WARNING: Drive " + localDrivesComboBox.getSelectedItem().toString());
1188 connectionStatus.setText(" > WARNING - Local Drive unavailable (possibly restricted access or media not present)");
1258 String drive = null;
1274 drive = remoteLocation.getText().substring(0, remoteLocation.getText().length() - 1);
1275 - // JOptionPane.showMessageDialog(null, (String)drive, "FileTransfer DEBUG", JOptionPane.INFORMATION_MESSAGE);
1276 + // JOptionPane.showMessageDialog(jContentPane, (String)drive, "FileTransfer DEBUG", JOptionPane.INFORMATION_MESSAGE);
1277 int index = drive.lastIndexOf("\\");
1278 drive = drive.substring(0, index + 1);
1280 remoteLocation.setText(drive);
1281 viewer.rfb.readServerDirectory(drive);
1289 drive = remoteLocation.getText();
1296 remoteLocation.setText(drive);
1297 viewer.rfb.readServerDirectory(drive);
1302 //remoteLocation.setText(drive);
2587 //Internally used to signify the drive requested is not ready
2589 System.out.println("Remote Drive unavailable");
2590 viewer.ftp.connectionStatus.setText(" > WARNING - Remote Drive unavailable (possibly restricted access or media not present)");
2591 viewer.ftp.remoteStatus.setText("WARNING: Remote Drive unavailable");
2592 + viewer.ftp.historyComboBox.insertItemAt(new String(" > WARNING: Remote Drive unavailable."), 0);