author | llornkcor <llornkcor> | 2002-04-05 01:34:24 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-04-05 01:34:24 (UTC) |
commit | dd5bc1f9d61cdd8cfde4c7a7fbba3b53b77b2670 (patch) (unidiff) | |
tree | e8ebf3f926e3ac7e4d612964a05bce834fe6fc2e | |
parent | 8674b15e0768d5108d9a225ff2631538283e1019 (diff) | |
download | opie-dd5bc1f9d61cdd8cfde4c7a7fbba3b53b77b2670.zip opie-dd5bc1f9d61cdd8cfde4c7a7fbba3b53b77b2670.tar.gz opie-dd5bc1f9d61cdd8cfde4c7a7fbba3b53b77b2670.tar.bz2 |
fixed bug where same server was being saved multiple times
-rw-r--r-- | noncore/net/opieftp/opieftp.cpp | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/noncore/net/opieftp/opieftp.cpp b/noncore/net/opieftp/opieftp.cpp index b451925..919649e 100644 --- a/noncore/net/opieftp/opieftp.cpp +++ b/noncore/net/opieftp/opieftp.cpp | |||
@@ -95,49 +95,49 @@ OpieFtp::OpieFtp( ) | |||
95 | 95 | ||
96 | localMenu->insertItem( tr( "Show Hidden Files" ), this, SLOT( showHidden() )); | 96 | localMenu->insertItem( tr( "Show Hidden Files" ), this, SLOT( showHidden() )); |
97 | localMenu->insertSeparator(); | 97 | localMenu->insertSeparator(); |
98 | localMenu->insertItem( tr( "Upload" ), this, SLOT( localUpload() )); | 98 | localMenu->insertItem( tr( "Upload" ), this, SLOT( localUpload() )); |
99 | localMenu->insertItem( tr( "Make Directory" ), this, SLOT( localMakDir() )); | 99 | localMenu->insertItem( tr( "Make Directory" ), this, SLOT( localMakDir() )); |
100 | localMenu->insertItem( tr( "Rename" ), this, SLOT( localRename() )); | 100 | localMenu->insertItem( tr( "Rename" ), this, SLOT( localRename() )); |
101 | localMenu->insertSeparator(); | 101 | localMenu->insertSeparator(); |
102 | localMenu->insertItem( tr( "Delete" ), this, SLOT( localDelete() )); | 102 | localMenu->insertItem( tr( "Delete" ), this, SLOT( localDelete() )); |
103 | localMenu->setCheckable(TRUE); | 103 | localMenu->setCheckable(TRUE); |
104 | 104 | ||
105 | remoteMenu->insertItem( tr( "Download" ), this, SLOT( remoteDownload() )); | 105 | remoteMenu->insertItem( tr( "Download" ), this, SLOT( remoteDownload() )); |
106 | remoteMenu->insertItem( tr( "Make Directory" ), this, SLOT( remoteMakDir() )); | 106 | remoteMenu->insertItem( tr( "Make Directory" ), this, SLOT( remoteMakDir() )); |
107 | remoteMenu->insertItem( tr( "Rename" ), this, SLOT( remoteRename() )); | 107 | remoteMenu->insertItem( tr( "Rename" ), this, SLOT( remoteRename() )); |
108 | remoteMenu->insertSeparator(); | 108 | remoteMenu->insertSeparator(); |
109 | remoteMenu->insertItem( tr( "Delete" ), this, SLOT( remoteDelete() )); | 109 | remoteMenu->insertItem( tr( "Delete" ), this, SLOT( remoteDelete() )); |
110 | 110 | ||
111 | tabMenu->insertItem( tr( "Switch to Local" ), this, SLOT( switchToLocalTab() )); | 111 | tabMenu->insertItem( tr( "Switch to Local" ), this, SLOT( switchToLocalTab() )); |
112 | tabMenu->insertItem( tr( "Switch to Remote" ), this, SLOT( switchToRemoteTab() )); | 112 | tabMenu->insertItem( tr( "Switch to Remote" ), this, SLOT( switchToRemoteTab() )); |
113 | tabMenu->insertItem( tr( "Switch to Config" ), this, SLOT( switchToConfigTab() )); | 113 | tabMenu->insertItem( tr( "Switch to Config" ), this, SLOT( switchToConfigTab() )); |
114 | tabMenu->setCheckable(TRUE); | 114 | tabMenu->setCheckable(TRUE); |
115 | 115 | ||
116 | TabWidget = new QTabWidget( this, "TabWidget" ); | 116 | TabWidget = new QTabWidget( this, "TabWidget" ); |
117 | layout->addMultiCellWidget( TabWidget, 1, 1, 0, 3 ); | 117 | layout->addMultiCellWidget( TabWidget, 1, 1, 0, 3 ); |
118 | 118 | ||
119 | TabWidget->setTabShape(QTabWidget::Triangular); | 119 | // TabWidget->setTabShape(QTabWidget::Triangular); |
120 | 120 | ||
121 | tab = new QWidget( TabWidget, "tab" ); | 121 | tab = new QWidget( TabWidget, "tab" ); |
122 | tabLayout = new QGridLayout( tab ); | 122 | tabLayout = new QGridLayout( tab ); |
123 | tabLayout->setSpacing( 2); | 123 | tabLayout->setSpacing( 2); |
124 | tabLayout->setMargin( 2); | 124 | tabLayout->setMargin( 2); |
125 | 125 | ||
126 | Local_View = new QListView( tab, "Local_View" ); | 126 | Local_View = new QListView( tab, "Local_View" ); |
127 | // Local_View->setResizePolicy( QListView::AutoOneFit ); | 127 | // Local_View->setResizePolicy( QListView::AutoOneFit ); |
128 | Local_View->addColumn( tr("File"),150); | 128 | Local_View->addColumn( tr("File"),150); |
129 | Local_View->addColumn( tr("Size"),-1); | 129 | Local_View->addColumn( tr("Size"),-1); |
130 | Local_View->setColumnAlignment(1,QListView::AlignRight); | 130 | Local_View->setColumnAlignment(1,QListView::AlignRight); |
131 | Local_View->addColumn( tr("Date"),-1); | 131 | Local_View->addColumn( tr("Date"),-1); |
132 | Local_View->setColumnAlignment(2,QListView::AlignRight); | 132 | Local_View->setColumnAlignment(2,QListView::AlignRight); |
133 | Local_View->setAllColumnsShowFocus(TRUE); | 133 | Local_View->setAllColumnsShowFocus(TRUE); |
134 | Local_View->setMultiSelection( TRUE ); | 134 | Local_View->setMultiSelection( TRUE ); |
135 | Local_View->setSelectionMode(QListView::Extended); | 135 | Local_View->setSelectionMode(QListView::Extended); |
136 | 136 | ||
137 | QPEApplication::setStylusOperation( Local_View->viewport(),QPEApplication::RightOnHold); | 137 | QPEApplication::setStylusOperation( Local_View->viewport(),QPEApplication::RightOnHold); |
138 | 138 | ||
139 | tabLayout->addWidget( Local_View, 0, 0 ); | 139 | tabLayout->addWidget( Local_View, 0, 0 ); |
140 | 140 | ||
141 | connect( Local_View, SIGNAL( clicked( QListViewItem*)), | 141 | connect( Local_View, SIGNAL( clicked( QListViewItem*)), |
142 | this,SLOT( localListClicked(QListViewItem *)) ); | 142 | this,SLOT( localListClicked(QListViewItem *)) ); |
143 | // connect( Local_View, SIGNAL( doubleClicked( QListViewItem*)), | 143 | // connect( Local_View, SIGNAL( doubleClicked( QListViewItem*)), |
@@ -246,49 +246,50 @@ OpieFtp::OpieFtp( ) | |||
246 | currentDir.setFilter( QDir::Files | QDir::Dirs/* | QDir::Hidden*/ | QDir::All); | 246 | currentDir.setFilter( QDir::Files | QDir::Dirs/* | QDir::Hidden*/ | QDir::All); |
247 | currentDir.setPath( QDir::currentDirPath()); | 247 | currentDir.setPath( QDir::currentDirPath()); |
248 | // currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst); | 248 | // currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst); |
249 | 249 | ||
250 | currentPathCombo = new QComboBox( FALSE, this, "currentPathCombo" ); | 250 | currentPathCombo = new QComboBox( FALSE, this, "currentPathCombo" ); |
251 | layout->addMultiCellWidget( currentPathCombo, 3, 3, 0, 3 ); | 251 | layout->addMultiCellWidget( currentPathCombo, 3, 3, 0, 3 ); |
252 | currentPathCombo->setEditable(TRUE); | 252 | currentPathCombo->setEditable(TRUE); |
253 | currentPathCombo->lineEdit()->setText( currentDir.canonicalPath()); | 253 | currentPathCombo->lineEdit()->setText( currentDir.canonicalPath()); |
254 | 254 | ||
255 | connect( currentPathCombo, SIGNAL( activated( const QString & ) ), | 255 | connect( currentPathCombo, SIGNAL( activated( const QString & ) ), |
256 | this, SLOT( currentPathComboActivated( const QString & ) ) ); | 256 | this, SLOT( currentPathComboActivated( const QString & ) ) ); |
257 | 257 | ||
258 | connect( currentPathCombo->lineEdit(),SIGNAL(returnPressed()), | 258 | connect( currentPathCombo->lineEdit(),SIGNAL(returnPressed()), |
259 | this,SLOT(currentPathComboChanged())); | 259 | this,SLOT(currentPathComboChanged())); |
260 | 260 | ||
261 | ProgressBar = new QProgressBar( this, "ProgressBar" ); | 261 | ProgressBar = new QProgressBar( this, "ProgressBar" ); |
262 | layout->addMultiCellWidget( ProgressBar, 4, 4, 0, 3 ); | 262 | layout->addMultiCellWidget( ProgressBar, 4, 4, 0, 3 ); |
263 | 263 | ||
264 | // fillCombos(); | 264 | // fillCombos(); |
265 | 265 | ||
266 | filterStr="*"; | 266 | filterStr="*"; |
267 | b=FALSE; | 267 | b=FALSE; |
268 | populateLocalView(); | 268 | populateLocalView(); |
269 | readConfig(); | 269 | readConfig(); |
270 | ServerComboBox->setCurrentItem(currentServerConfig); | 270 | ServerComboBox->setCurrentItem(currentServerConfig); |
271 | |||
271 | TabWidget->setCurrentPage(2); | 272 | TabWidget->setCurrentPage(2); |
272 | } | 273 | } |
273 | 274 | ||
274 | OpieFtp::~OpieFtp() | 275 | OpieFtp::~OpieFtp() |
275 | { | 276 | { |
276 | } | 277 | } |
277 | 278 | ||
278 | void OpieFtp::cleanUp() | 279 | void OpieFtp::cleanUp() |
279 | { | 280 | { |
280 | if(conn) | 281 | if(conn) |
281 | FtpQuit(conn); | 282 | FtpQuit(conn); |
282 | QString sfile=QDir::homeDirPath(); | 283 | QString sfile=QDir::homeDirPath(); |
283 | if(sfile.right(1) != "/") | 284 | if(sfile.right(1) != "/") |
284 | sfile+="/._temp"; | 285 | sfile+="/._temp"; |
285 | else | 286 | else |
286 | sfile+="._temp"; | 287 | sfile+="._temp"; |
287 | QFile file( sfile); | 288 | QFile file( sfile); |
288 | if(file.exists()) | 289 | if(file.exists()) |
289 | file.remove(); | 290 | file.remove(); |
290 | exit(0); | 291 | exit(0); |
291 | } | 292 | } |
292 | 293 | ||
293 | void OpieFtp::tabChanged(QWidget *w) | 294 | void OpieFtp::tabChanged(QWidget *w) |
294 | { | 295 | { |
@@ -302,51 +303,51 @@ void OpieFtp::tabChanged(QWidget *w) | |||
302 | currentPathCombo->lineEdit()->setText( currentRemoteDir ); | 303 | currentPathCombo->lineEdit()->setText( currentRemoteDir ); |
303 | tabMenu->setItemChecked(tabMenu->idAt(1),TRUE); | 304 | tabMenu->setItemChecked(tabMenu->idAt(1),TRUE); |
304 | tabMenu->setItemChecked(tabMenu->idAt(0),FALSE); | 305 | tabMenu->setItemChecked(tabMenu->idAt(0),FALSE); |
305 | tabMenu->setItemChecked(tabMenu->idAt(2),FALSE); | 306 | tabMenu->setItemChecked(tabMenu->idAt(2),FALSE); |
306 | } | 307 | } |
307 | if (TabWidget->currentPageIndex() == 2) { | 308 | if (TabWidget->currentPageIndex() == 2) { |
308 | tabMenu->setItemChecked(tabMenu->idAt(2),TRUE); | 309 | tabMenu->setItemChecked(tabMenu->idAt(2),TRUE); |
309 | tabMenu->setItemChecked(tabMenu->idAt(0),FALSE); | 310 | tabMenu->setItemChecked(tabMenu->idAt(0),FALSE); |
310 | tabMenu->setItemChecked(tabMenu->idAt(1),FALSE); | 311 | tabMenu->setItemChecked(tabMenu->idAt(1),FALSE); |
311 | } | 312 | } |
312 | } | 313 | } |
313 | 314 | ||
314 | void OpieFtp::newConnection() | 315 | void OpieFtp::newConnection() |
315 | { | 316 | { |
316 | UsernameComboBox->lineEdit()->setText(""); | 317 | UsernameComboBox->lineEdit()->setText(""); |
317 | PasswordEdit->setText( "" ); | 318 | PasswordEdit->setText( "" ); |
318 | ServerComboBox->lineEdit()->setText( ""); | 319 | ServerComboBox->lineEdit()->setText( ""); |
319 | remotePath->setText( currentRemoteDir = "/"); | 320 | remotePath->setText( currentRemoteDir = "/"); |
320 | PortSpinBox->setValue( 21); | 321 | PortSpinBox->setValue( 21); |
321 | TabWidget->setCurrentPage(2); | 322 | TabWidget->setCurrentPage(2); |
322 | } | 323 | } |
323 | 324 | ||
324 | void OpieFtp::serverComboEdited(const QString & edit) | 325 | void OpieFtp::serverComboEdited(const QString & edit) |
325 | { | 326 | { |
326 | if( !edit.isEmpty() ) { | 327 | if( ServerComboBox->text(currentServerConfig) != edit /*edit.isEmpty() */) { |
328 | qDebug("ServerComboEdited"); | ||
327 | currentServerConfig = -1; | 329 | currentServerConfig = -1; |
328 | // qDebug("comboedited"); | ||
329 | } | 330 | } |
330 | } | 331 | } |
331 | 332 | ||
332 | void OpieFtp::connectorBtnToggled(bool On) | 333 | void OpieFtp::connectorBtnToggled(bool On) |
333 | { | 334 | { |
334 | if(On) { | 335 | if(On) { |
335 | connector(); | 336 | connector(); |
336 | } else { | 337 | } else { |
337 | disConnector(); | 338 | disConnector(); |
338 | } | 339 | } |
339 | 340 | ||
340 | } | 341 | } |
341 | 342 | ||
342 | void OpieFtp::connector() | 343 | void OpieFtp::connector() |
343 | { | 344 | { |
344 | QCopEnvelope ( "QPE/System", "busy()" ); | 345 | QCopEnvelope ( "QPE/System", "busy()" ); |
345 | // qApp->processEvents(); | 346 | // qApp->processEvents(); |
346 | currentRemoteDir=remotePath->text(); | 347 | currentRemoteDir=remotePath->text(); |
347 | if(ServerComboBox->currentText().isEmpty()) { | 348 | if(ServerComboBox->currentText().isEmpty()) { |
348 | QMessageBox::warning(this,tr("Ftp"),tr("Please set the server info"),tr("Ok"),0,0); | 349 | QMessageBox::warning(this,tr("Ftp"),tr("Please set the server info"),tr("Ok"),0,0); |
349 | TabWidget->setCurrentPage(2); | 350 | TabWidget->setCurrentPage(2); |
350 | ServerComboBox->setFocus(); | 351 | ServerComboBox->setFocus(); |
351 | connectServerBtn->setOn(FALSE); | 352 | connectServerBtn->setOn(FALSE); |
352 | connectServerBtn->setText( tr("Connect")); | 353 | connectServerBtn->setText( tr("Connect")); |
@@ -502,49 +503,49 @@ bool OpieFtp::remoteDirList(const QString &dir) | |||
502 | else | 503 | else |
503 | tmp+="._temp"; | 504 | tmp+="._temp"; |
504 | // qDebug("Listing remote dir "+tmp); | 505 | // qDebug("Listing remote dir "+tmp); |
505 | QCopEnvelope ( "QPE/System", "busy()" ); | 506 | QCopEnvelope ( "QPE/System", "busy()" ); |
506 | if (!FtpDir( tmp.latin1(), dir.latin1(), conn) ) { | 507 | if (!FtpDir( tmp.latin1(), dir.latin1(), conn) ) { |
507 | QString msg; | 508 | QString msg; |
508 | msg.sprintf(tr("Unable to list the directory\n")+dir+"\n%s",FtpLastResponse(conn) ); | 509 | msg.sprintf(tr("Unable to list the directory\n")+dir+"\n%s",FtpLastResponse(conn) ); |
509 | msg.replace(QRegExp(":"),"\n"); | 510 | msg.replace(QRegExp(":"),"\n"); |
510 | QMessageBox::message(tr("Note"),msg); | 511 | QMessageBox::message(tr("Note"),msg); |
511 | return false; | 512 | return false; |
512 | } | 513 | } |
513 | populateRemoteView() ; | 514 | populateRemoteView() ; |
514 | QCopEnvelope ( "QPE/System", "notBusy()" ); | 515 | QCopEnvelope ( "QPE/System", "notBusy()" ); |
515 | return true; | 516 | return true; |
516 | } | 517 | } |
517 | 518 | ||
518 | bool OpieFtp::remoteChDir(const QString &dir) | 519 | bool OpieFtp::remoteChDir(const QString &dir) |
519 | { | 520 | { |
520 | QCopEnvelope ( "QPE/System", "busy()" ); | 521 | QCopEnvelope ( "QPE/System", "busy()" ); |
521 | if (!FtpChdir( dir.latin1(), conn )) { | 522 | if (!FtpChdir( dir.latin1(), conn )) { |
522 | QString msg; | 523 | QString msg; |
523 | msg.sprintf(tr("Unable to change directories\n")+dir+"\n%s",FtpLastResponse(conn)); | 524 | msg.sprintf(tr("Unable to change directories\n")+dir+"\n%s",FtpLastResponse(conn)); |
524 | msg.replace(QRegExp(":"),"\n"); | 525 | msg.replace(QRegExp(":"),"\n"); |
525 | QMessageBox::message(tr("Note"),msg); | 526 | QMessageBox::message(tr("Note"),msg); |
526 | qDebug(msg); | 527 | // qDebug(msg); |
527 | QCopEnvelope ( "QPE/System", "notBusy()" ); | 528 | QCopEnvelope ( "QPE/System", "notBusy()" ); |
528 | return FALSE; | 529 | return FALSE; |
529 | } | 530 | } |
530 | QCopEnvelope ( "QPE/System", "notBusy()" ); | 531 | QCopEnvelope ( "QPE/System", "notBusy()" ); |
531 | return TRUE; | 532 | return TRUE; |
532 | } | 533 | } |
533 | 534 | ||
534 | void OpieFtp::populateLocalView() | 535 | void OpieFtp::populateLocalView() |
535 | { | 536 | { |
536 | Local_View->clear(); | 537 | Local_View->clear(); |
537 | currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst); | 538 | currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst); |
538 | currentDir.setMatchAllDirs(TRUE); | 539 | currentDir.setMatchAllDirs(TRUE); |
539 | currentDir.setNameFilter(filterStr); | 540 | currentDir.setNameFilter(filterStr); |
540 | QString fileL, fileS, fileDate; | 541 | QString fileL, fileS, fileDate; |
541 | bool isDir=FALSE; | 542 | bool isDir=FALSE; |
542 | const QFileInfoList *list = currentDir.entryInfoList( /*QDir::All*/ /*, QDir::SortByMask*/); | 543 | const QFileInfoList *list = currentDir.entryInfoList( /*QDir::All*/ /*, QDir::SortByMask*/); |
543 | QFileInfoListIterator it(*list); | 544 | QFileInfoListIterator it(*list); |
544 | QFileInfo *fi; | 545 | QFileInfo *fi; |
545 | while ( (fi=it.current()) ) { | 546 | while ( (fi=it.current()) ) { |
546 | if (fi->isSymLink() ){ | 547 | if (fi->isSymLink() ){ |
547 | QString symLink=fi->readLink(); | 548 | QString symLink=fi->readLink(); |
548 | // qDebug("Symlink detected "+symLink); | 549 | // qDebug("Symlink detected "+symLink); |
549 | QFileInfo sym( symLink); | 550 | QFileInfo sym( symLink); |
550 | fileS.sprintf( "%10li", sym.size() ); | 551 | fileS.sprintf( "%10li", sym.size() ); |
@@ -646,57 +647,57 @@ bool OpieFtp::populateRemoteView( ) | |||
646 | QListViewItem * item1 = new QListViewItem( Remote_View, "../"); | 647 | QListViewItem * item1 = new QListViewItem( Remote_View, "../"); |
647 | item1->setPixmap( 0, Resource::loadPixmap( "folder" )); | 648 | item1->setPixmap( 0, Resource::loadPixmap( "folder" )); |
648 | file.close(); | 649 | file.close(); |
649 | if( file.exists()) | 650 | if( file.exists()) |
650 | file. remove(); | 651 | file. remove(); |
651 | } else | 652 | } else |
652 | qDebug("temp file not opened successfullly "+sfile); | 653 | qDebug("temp file not opened successfullly "+sfile); |
653 | Remote_View->setSorting( 4,TRUE); | 654 | Remote_View->setSorting( 4,TRUE); |
654 | return true; | 655 | return true; |
655 | } | 656 | } |
656 | 657 | ||
657 | void OpieFtp::remoteListClicked(QListViewItem *selectedItem) | 658 | void OpieFtp::remoteListClicked(QListViewItem *selectedItem) |
658 | { | 659 | { |
659 | if( selectedItem) { | 660 | if( selectedItem) { |
660 | // QCopEnvelope ( "QPE/System", "busy()" ); | 661 | // QCopEnvelope ( "QPE/System", "busy()" ); |
661 | QString oldRemoteCurrentDir = currentRemoteDir; | 662 | QString oldRemoteCurrentDir = currentRemoteDir; |
662 | QString strItem=selectedItem->text(0); | 663 | QString strItem=selectedItem->text(0); |
663 | strItem=strItem.simplifyWhiteSpace(); | 664 | strItem=strItem.simplifyWhiteSpace(); |
664 | if(strItem == "../") { // the user wants to go ^ | 665 | if(strItem == "../") { // the user wants to go ^ |
665 | if( FtpCDUp( conn) == 0) { | 666 | if( FtpCDUp( conn) == 0) { |
666 | QString msg; | 667 | QString msg; |
667 | msg.sprintf(tr("Unable to cd up\n")+"%s",FtpLastResponse(conn)); | 668 | msg.sprintf(tr("Unable to cd up\n")+"%s",FtpLastResponse(conn)); |
668 | msg.replace(QRegExp(":"),"\n"); | 669 | msg.replace(QRegExp(":"),"\n"); |
669 | QMessageBox::message(tr("Note"),msg); | 670 | QMessageBox::message(tr("Note"),msg); |
670 | qDebug(msg); | 671 | // qDebug(msg); |
671 | } | 672 | } |
672 | char path[256]; | 673 | char path[256]; |
673 | if( FtpPwd( path,sizeof(path),conn) == 0) { //this is easier than fudging the string | 674 | if( FtpPwd( path,sizeof(path),conn) == 0) { //this is easier than fudging the string |
674 | QString msg; | 675 | QString msg; |
675 | msg.sprintf(tr("Unable to get working dir\n")+"%s",FtpLastResponse(conn)); | 676 | msg.sprintf(tr("Unable to get working dir\n")+"%s",FtpLastResponse(conn)); |
676 | msg.replace(QRegExp(":"),"\n"); | 677 | msg.replace(QRegExp(":"),"\n"); |
677 | QMessageBox::message(tr("Note"),msg); | 678 | QMessageBox::message(tr("Note"),msg); |
678 | qDebug(msg); | 679 | // qDebug(msg); |
679 | } | 680 | } |
680 | currentRemoteDir=path; | 681 | currentRemoteDir=path; |
681 | } else { | 682 | } else { |
682 | if(strItem.find("->",0,TRUE) != -1) { //symlink on some servers | 683 | if(strItem.find("->",0,TRUE) != -1) { //symlink on some servers |
683 | strItem=strItem.right( strItem.length() - strItem.find("->",0,TRUE) - 2 ); | 684 | strItem=strItem.right( strItem.length() - strItem.find("->",0,TRUE) - 2 ); |
684 | strItem = strItem.stripWhiteSpace(); | 685 | strItem = strItem.stripWhiteSpace(); |
685 | currentRemoteDir = strItem; | 686 | currentRemoteDir = strItem; |
686 | if( !remoteChDir( (const QString &)strItem)) { | 687 | if( !remoteChDir( (const QString &)strItem)) { |
687 | currentRemoteDir = oldRemoteCurrentDir; | 688 | currentRemoteDir = oldRemoteCurrentDir; |
688 | strItem=""; | 689 | strItem=""; |
689 | // qDebug("RemoteCurrentDir1 "+oldRemoteCurrentDir); | 690 | // qDebug("RemoteCurrentDir1 "+oldRemoteCurrentDir); |
690 | } | 691 | } |
691 | } else if(strItem.find("/",0,TRUE) != -1) { // this is a directory | 692 | } else if(strItem.find("/",0,TRUE) != -1) { // this is a directory |
692 | if( !remoteChDir( (const QString &)currentRemoteDir + strItem)) { | 693 | if( !remoteChDir( (const QString &)currentRemoteDir + strItem)) { |
693 | currentRemoteDir = oldRemoteCurrentDir; | 694 | currentRemoteDir = oldRemoteCurrentDir; |
694 | strItem=""; | 695 | strItem=""; |
695 | // qDebug("RemoteCurrentDir1 "+oldRemoteCurrentDir); | 696 | // qDebug("RemoteCurrentDir1 "+oldRemoteCurrentDir); |
696 | 697 | ||
697 | } else { | 698 | } else { |
698 | currentRemoteDir = currentRemoteDir+strItem; | 699 | currentRemoteDir = currentRemoteDir+strItem; |
699 | } | 700 | } |
700 | } else { | 701 | } else { |
701 | QCopEnvelope ( "QPE/System", "notBusy()" ); | 702 | QCopEnvelope ( "QPE/System", "notBusy()" ); |
702 | return; | 703 | return; |
@@ -1044,64 +1045,64 @@ void OpieFtp::currentPathComboChanged() | |||
1044 | } | 1045 | } |
1045 | } | 1046 | } |
1046 | 1047 | ||
1047 | void OpieFtp::switchToLocalTab() | 1048 | void OpieFtp::switchToLocalTab() |
1048 | { | 1049 | { |
1049 | TabWidget->setCurrentPage(0); | 1050 | TabWidget->setCurrentPage(0); |
1050 | } | 1051 | } |
1051 | 1052 | ||
1052 | void OpieFtp::switchToRemoteTab() | 1053 | void OpieFtp::switchToRemoteTab() |
1053 | { | 1054 | { |
1054 | TabWidget->setCurrentPage(1); | 1055 | TabWidget->setCurrentPage(1); |
1055 | } | 1056 | } |
1056 | 1057 | ||
1057 | void OpieFtp::switchToConfigTab() | 1058 | void OpieFtp::switchToConfigTab() |
1058 | { | 1059 | { |
1059 | TabWidget->setCurrentPage(2); | 1060 | TabWidget->setCurrentPage(2); |
1060 | } | 1061 | } |
1061 | 1062 | ||
1062 | void OpieFtp::readConfig() | 1063 | void OpieFtp::readConfig() |
1063 | { | 1064 | { |
1064 | fillCombos(); | 1065 | fillCombos(); |
1065 | Config cfg("opieftp"); | 1066 | Config cfg("opieftp"); |
1066 | cfg.setGroup("Server"); | 1067 | cfg.setGroup("Server"); |
1067 | currentServerConfig = cfg.readNumEntry("currentServer", -1); | 1068 | currentServerConfig = cfg.readNumEntry("currentServer", -1); |
1069 | // qDebug("Reading %d", currentServerConfig); | ||
1068 | serverComboSelected( currentServerConfig); | 1070 | serverComboSelected( currentServerConfig); |
1069 | } | 1071 | } |
1070 | 1072 | ||
1071 | void OpieFtp::writeConfig() | 1073 | void OpieFtp::writeConfig() |
1072 | { | 1074 | { |
1073 | Config cfg("opieftp"); | 1075 | Config cfg("opieftp"); |
1074 | cfg.setGroup("Server"); | 1076 | cfg.setGroup("Server"); |
1075 | QString username, remoteServerStr, remotePathStr, password, port, temp; | 1077 | QString username, remoteServerStr, remotePathStr, password, port, temp; |
1076 | int numberOfEntries = cfg.readNumEntry("numberOfEntries",0); | 1078 | int numberOfEntries = cfg.readNumEntry("numberOfEntries",0); |
1077 | if( currentServerConfig == -1) { | 1079 | if( currentServerConfig == -1) { |
1078 | for (int i = 1; i <= numberOfEntries; i++) { | 1080 | for (int i = 1; i <= numberOfEntries; i++) { |
1079 | temp.setNum(i); | 1081 | temp.setNum(i); |
1080 | cfg.setGroup("Server"); | 1082 | cfg.setGroup("Server"); |
1081 | QString tempStr = cfg.readEntry( temp,""); | 1083 | QString tempStr = cfg.readEntry( temp,""); |
1082 | } | 1084 | } |
1083 | |||
1084 | temp.setNum( numberOfEntries + 1); | 1085 | temp.setNum( numberOfEntries + 1); |
1085 | cfg.setGroup("Server"); | 1086 | cfg.setGroup("Server"); |
1086 | remoteServerStr = cfg.readEntry( temp,""); | 1087 | remoteServerStr = cfg.readEntry( temp,""); |
1087 | int divider = remoteServerStr.length() - remoteServerStr.find(":",0,TRUE); | 1088 | int divider = remoteServerStr.length() - remoteServerStr.find(":",0,TRUE); |
1088 | remoteServerStr = remoteServerStr.left(remoteServerStr.length()-divider); | 1089 | remoteServerStr = remoteServerStr.left(remoteServerStr.length()-divider); |
1089 | 1090 | ||
1090 | temp.setNum(numberOfEntries+1); | 1091 | temp.setNum(numberOfEntries+1); |
1091 | cfg.setGroup("Server"); | 1092 | cfg.setGroup("Server"); |
1092 | cfg.writeEntry( temp, ServerComboBox->currentText() +":"+PortSpinBox->cleanText() ); | 1093 | cfg.writeEntry( temp, ServerComboBox->currentText() +":"+PortSpinBox->cleanText() ); |
1093 | cfg.setGroup(temp); | 1094 | cfg.setGroup(temp); |
1094 | cfg.writeEntry("RemotePath", remotePath->text()); | 1095 | cfg.writeEntry("RemotePath", remotePath->text()); |
1095 | cfg.writeEntry("Username", UsernameComboBox->currentText()); | 1096 | cfg.writeEntry("Username", UsernameComboBox->currentText()); |
1096 | cfg.writeEntryCrypt( UsernameComboBox->currentText(), PasswordEdit->text()); | 1097 | cfg.writeEntryCrypt( UsernameComboBox->currentText(), PasswordEdit->text()); |
1097 | cfg.setGroup("Server"); | 1098 | cfg.setGroup("Server"); |
1098 | cfg.writeEntry("numberOfEntries", QString::number(numberOfEntries + 1 )); | 1099 | cfg.writeEntry("numberOfEntries", QString::number(numberOfEntries + 1 )); |
1099 | } | 1100 | } |
1100 | } | 1101 | } |
1101 | 1102 | ||
1102 | void OpieFtp::fillCombos() | 1103 | void OpieFtp::fillCombos() |
1103 | { | 1104 | { |
1104 | Config cfg("opieftp"); | 1105 | Config cfg("opieftp"); |
1105 | cfg.setGroup("Server"); | 1106 | cfg.setGroup("Server"); |
1106 | QString username, remoteServerStr, remotePathStr, password, port, temp; | 1107 | QString username, remoteServerStr, remotePathStr, password, port, temp; |
1107 | int numberOfEntries = cfg.readNumEntry("numberOfEntries",0); | 1108 | int numberOfEntries = cfg.readNumEntry("numberOfEntries",0); |