You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(98) |
Sep
(138) |
Oct
(100) |
Nov
(49) |
Dec
(131) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(94) |
Feb
(65) |
Mar
(100) |
Apr
(83) |
May
(72) |
Jun
(29) |
Jul
(167) |
Aug
(127) |
Sep
(131) |
Oct
(269) |
Nov
(122) |
Dec
(100) |
2005 |
Jan
(228) |
Feb
(266) |
Mar
(63) |
Apr
(135) |
May
(157) |
Jun
(52) |
Jul
(25) |
Aug
(49) |
Sep
(184) |
Oct
(159) |
Nov
(75) |
Dec
(37) |
2006 |
Jan
(60) |
Feb
(129) |
Mar
(110) |
Apr
(34) |
May
(31) |
Jun
(42) |
Jul
(72) |
Aug
(90) |
Sep
(57) |
Oct
(66) |
Nov
(42) |
Dec
(90) |
2007 |
Jan
(106) |
Feb
(54) |
Mar
(93) |
Apr
(27) |
May
(21) |
Jun
(17) |
Jul
(19) |
Aug
(22) |
Sep
(25) |
Oct
(2) |
Nov
(1) |
Dec
(1) |
2008 |
Jan
(65) |
Feb
(70) |
Mar
(29) |
Apr
(45) |
May
(91) |
Jun
(20) |
Jul
(11) |
Aug
(24) |
Sep
(23) |
Oct
(13) |
Nov
(23) |
Dec
(39) |
2009 |
Jan
(23) |
Feb
(39) |
Mar
(15) |
Apr
(56) |
May
(5) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Shie E. <er...@us...> - 2004-06-17 14:50:27
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15621/krusader/Panel Modified Files: listpanel.cpp Log Message: single click selection was broken Index: listpanel.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/listpanel.cpp,v retrieving revision 1.63 retrieving revision 1.64 diff -C2 -d -r1.63 -r1.64 *** listpanel.cpp 6 Jun 2004 12:32:51 -0000 1.63 --- listpanel.cpp 17 Jun 2004 14:50:17 -0000 1.64 *************** *** 839,844 **** slotFocusOnMe(); // return focus to us! return ; ! } else ! e->ignore(); break; --- 839,845 ---- slotFocusOnMe(); // return focus to us! return ; ! //} else if (e->state() == ShiftButton) { ! // krApp->mainView->leftMng->changePanel(e->key() == Key_Left); ! } else e->ignore(); break; |
From: Shie E. <er...@us...> - 2004-06-17 14:46:55
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12504/krusader/Panel Modified Files: krdetailedview.cpp Log Message: single click selection was broken Index: krdetailedview.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.cpp,v retrieving revision 1.82 retrieving revision 1.83 diff -C2 -d -r1.82 -r1.83 *** krdetailedview.cpp 7 Jun 2004 17:39:46 -0000 1.82 --- krdetailedview.cpp 17 Jun 2004 14:46:45 -0000 1.83 *************** *** 112,119 **** krConfig->setGroup( "Look&Feel" ); setFont( _config->readFontEntry( "Filelist Font", _FilelistFont ) ); ! // a change in the selection needs to update totals connect( this, SIGNAL( clicked( QListViewItem* ) ), this, SLOT( slotClicked( QListViewItem* ) ) ); ! connect( this, SIGNAL( doubleClicked( QListViewItem* ) ), this, SLOT( slotDoubleClicked( QListViewItem* ) ) ); ! connect( this, SIGNAL( returnPressed( QListViewItem* ) ), this, SIGNAL( executed( QListViewItem* ) ) ); connect( this, SIGNAL( onItem( QListViewItem* ) ), this, SLOT( slotItemDescription( QListViewItem* ) ) ); connect( this, SIGNAL( contextMenuRequested( QListViewItem*, const QPoint&, int ) ), --- 112,126 ---- krConfig->setGroup( "Look&Feel" ); setFont( _config->readFontEntry( "Filelist Font", _FilelistFont ) ); ! // decide on single click/double click selection ! if ( _config->readBoolEntry( "Single Click Selects", _SingleClickSelects ) ) { ! connect( this, SIGNAL(executed(QListViewItem*)), this, SLOT(slotExecuted(QListViewItem*))); ! } else { ! connect( this, SIGNAL( doubleClicked( QListViewItem* ) ), this, SLOT( slotDoubleClicked( QListViewItem* ) ) ); ! } ! #if 0 connect( this, SIGNAL( clicked( QListViewItem* ) ), this, SLOT( slotClicked( QListViewItem* ) ) ); ! ! #endif ! // a change in the selection needs to update totals connect( this, SIGNAL( onItem( QListViewItem* ) ), this, SLOT( slotItemDescription( QListViewItem* ) ) ); connect( this, SIGNAL( contextMenuRequested( QListViewItem*, const QPoint&, int ) ), *************** *** 393,417 **** } - void KrDetailedView::slotClicked( QListViewItem *item ) { - if ( !item ) return ; - - KConfigGroupSaver grpSvr( _config, nameInKConfig() ); - QString tmp = dynamic_cast<KrViewItem*>( item ) ->name(); - - krConfig->setGroup( "Look&Feel" ); - if ( _config->readBoolEntry( "Single Click Selects", _SingleClickSelects ) ) { - emit executed( tmp ); - } - } - void KrDetailedView::slotDoubleClicked( QListViewItem *item ) { - KConfigGroupSaver grpSvr( _config, nameInKConfig() ); - krConfig->setGroup( "Look&Feel" ); - if ( !_config->readBoolEntry( "Single Click Selects", _SingleClickSelects ) ) { if ( !item ) return ; QString tmp = dynamic_cast<KrViewItem*>( item ) ->name(); emit executed( tmp ); - } } --- 400,408 ---- *************** *** 716,720 **** if ( e->state() & ControlButton ) // let the panel handle it e->ignore(); ! else { KrViewItem * i = getCurrentKrViewItem(); QString tmp = i->name(); --- 707,711 ---- if ( e->state() & ControlButton ) // let the panel handle it e->ignore(); ! else { KrViewItem * i = getCurrentKrViewItem(); QString tmp = i->name(); *************** *** 733,737 **** break; case Key_Right : ! if ( e->state() == ControlButton ) { // let the panel handle it e->ignore(); break; --- 724,728 ---- break; case Key_Right : ! if ( e->state() == ControlButton || e->state() == ShiftButton ) { // let the panel handle it e->ignore(); break; *************** *** 750,754 **** case Key_Backspace : // Terminal Emulator bugfix case Key_Left : ! if ( e->state() == ControlButton ) { // let the panel handle it e->ignore(); break; --- 741,745 ---- case Key_Backspace : // Terminal Emulator bugfix case Key_Left : ! if ( e->state() == ControlButton || e->state() == ShiftButton) { // let the panel handle it e->ignore(); break; *************** *** 972,976 **** if ( button == Qt::MidButton ) emit middleButtonClicked( item ); ! } void KrDetailedView::refreshColors() --- 963,967 ---- if ( button == Qt::MidButton ) emit middleButtonClicked( item ); ! } void KrDetailedView::refreshColors() |
From: Shie E. <er...@us...> - 2004-06-17 14:46:31
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12079/krusader/Panel Modified Files: krdetailedview.h Log Message: single click selection was broken Index: krdetailedview.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.h,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** krdetailedview.h 31 May 2004 11:10:28 -0000 1.26 --- krdetailedview.h 17 Jun 2004 14:46:20 -0000 1.27 *************** *** 106,110 **** protected slots: void rename(QListViewItem *item, int c); - void slotClicked( QListViewItem *item ); void slotDoubleClicked( QListViewItem *item ); void slotItemDescription( QListViewItem *item ); --- 106,109 ---- *************** *** 116,124 **** void handleQuickSearchEvent(QKeyEvent*); void setNameToMakeCurrent(QListViewItem *it); /** * used internally to produce the signal middleButtonClicked() */ void slotMouseClicked( int button, QListViewItem * item, const QPoint & pos, int c ); ! public slots: void refreshColors(); --- 115,128 ---- void handleQuickSearchEvent(QKeyEvent*); void setNameToMakeCurrent(QListViewItem *it); + /** * used internally to produce the signal middleButtonClicked() */ void slotMouseClicked( int button, QListViewItem * item, const QPoint & pos, int c ); ! inline void slotExecuted(QListViewItem* i) { ! QString tmp = dynamic_cast<KrViewItem*>( i ) ->name(); ! emit executed(tmp); ! } ! public slots: void refreshColors(); |
From: Shie E. <er...@us...> - 2004-06-17 14:44:14
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Konfigurator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9684/krusader/Konfigurator Modified Files: kglookfeel.cpp Log Message: single-click selection was broken Index: kglookfeel.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Konfigurator/kglookfeel.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** kglookfeel.cpp 7 Mar 2004 18:35:36 -0000 1.12 --- kglookfeel.cpp 17 Jun 2004 14:44:05 -0000 1.13 *************** *** 63,80 **** {"Look&Feel","Mark Dirs", _MarkDirs, i18n( "Automark directories" ), false, ""}, {"Look&Feel","Case Sensative Sort", _CaseSensativeSort, i18n( "Case sensitive sorting" ), false, ""}, ! {"Look&Feel","Single Click Selects", false, i18n( "Single click executes" ), false, ""}, {"Look&Feel","New Style Quicksearch", _NewStyleQuicksearch, i18n( "New style quicksearch" ), false, ""}, {"Look&Feel","Case Sensitive Quicksearch", _CaseSensitiveQuicksearch, i18n( "Case sensitive quicksearch" ), false, ""}, }; ! cbs = createCheckBoxGroup( 2, 0, settings, 8, lookFeelGrp ); lookFeelGrid->addWidget( cbs, 0, 0 ); connect( cbs->find( "New Style Quicksearch" ), SIGNAL( stateChanged( int ) ), this, SLOT( slotDisable() ) ); ! lookFeelGrid->addWidget( createLine( lookFeelGrp, "lookSep1" ), 1, 0 ); ! ! addLabel( lookFeelGrid, 6, 0, i18n( "Mouse Selection Mode:" ), lookFeelGrp, "lookAndFeelLabel4" ); - KONFIGURATOR_NAME_VALUE_PAIR mouseSelection[] = {{ i18n( "Classic (both keys combined)" ), "0" }, --- 63,91 ---- {"Look&Feel","Mark Dirs", _MarkDirs, i18n( "Automark directories" ), false, ""}, {"Look&Feel","Case Sensative Sort", _CaseSensativeSort, i18n( "Case sensitive sorting" ), false, ""}, ! //{"Look&Feel","Single Click Selects", false, i18n( "Single click executes" ), false, ""}, {"Look&Feel","New Style Quicksearch", _NewStyleQuicksearch, i18n( "New style quicksearch" ), false, ""}, {"Look&Feel","Case Sensitive Quicksearch", _CaseSensitiveQuicksearch, i18n( "Case sensitive quicksearch" ), false, ""}, }; ! cbs = createCheckBoxGroup( 2, 0, settings, 7/*8*/, lookFeelGrp ); lookFeelGrid->addWidget( cbs, 0, 0 ); connect( cbs->find( "New Style Quicksearch" ), SIGNAL( stateChanged( int ) ), this, SLOT( slotDisable() ) ); ! lookFeelGrid->addWidget( createLine( lookFeelGrp, "lookSep1" ), 1, 0 ); ! ! addLabel( lookFeelGrid, 7, 0, i18n( "Single click / Double click Selection:" ), ! lookFeelGrp, "lookAndFeelLabel0" ); ! ! KONFIGURATOR_NAME_VALUE_PAIR singleOrDoubleClick[] = ! {{ i18n( "Double-click selects (classic)" ), "0" }, ! { i18n( "Obey KDE's global selection policy" ), "1" }}; ! KonfiguratorRadioButtons *clickRadio = createRadioButtonGroup( "Look&Feel", "Single Click Selects", "0", 1, 0, singleOrDoubleClick, 2, lookFeelGrp, "myLook&FeelRadio0", true ); ! lookFeelGrid->addWidget( clickRadio, 8, 0 ); ! ! ! lookFeelGrid->addWidget( createLine( lookFeelGrp, "lookSep2" ), 9, 0 ); ! ! addLabel( lookFeelGrid, 10, 0, i18n( "Mouse Selection Mode:" ), lookFeelGrp, "lookAndFeelLabel4" ); KONFIGURATOR_NAME_VALUE_PAIR mouseSelection[] = {{ i18n( "Classic (both keys combined)" ), "0" }, *************** *** 83,90 **** KonfiguratorRadioButtons *mouseRadio = createRadioButtonGroup( "Look&Feel", "Mouse Selection", "0", 1, 0, mouseSelection, 3, lookFeelGrp, "myLook&FeelRadio", false ); ! lookFeelGrid->addWidget( mouseRadio, 7, 0 ); for( int i=0; i!=3; i++ ) mouseRadio->find(i)->setEnabled( false ); /* disable all buttons */ ! lookAndFeelLayout->addWidget( lookFeelGrp, 0, 0 ); --- 94,101 ---- KonfiguratorRadioButtons *mouseRadio = createRadioButtonGroup( "Look&Feel", "Mouse Selection", "0", 1, 0, mouseSelection, 3, lookFeelGrp, "myLook&FeelRadio", false ); ! lookFeelGrid->addWidget( mouseRadio, 11, 0 ); for( int i=0; i!=3; i++ ) mouseRadio->find(i)->setEnabled( false ); /* disable all buttons */ ! lookAndFeelLayout->addWidget( lookFeelGrp, 0, 0 ); |
From: Rafi Y. <ya...@us...> - 2004-06-17 14:33:17
|
Update of /cvsroot/krusader/krusader_kde3/krusader/VFS In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv570/krusader/VFS Modified Files: ftp_vfs.cpp Log Message: Fixed the "follow links in sftp" fix... Index: ftp_vfs.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/ftp_vfs.cpp,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** ftp_vfs.cpp 14 Jun 2004 11:25:07 -0000 1.31 --- ftp_vfs.cpp 17 Jun 2004 14:33:05 -0000 1.32 *************** *** 139,143 **** // Open the directory marked by origin krConfig->setGroup("Look&Feel"); ! vfs_origin.adjustPath(+1); KIO::Job *job = KIO::listDir(vfs_origin,false, krConfig->readBoolEntry("Show Hidden",_ShowHidden)); --- 139,143 ---- // Open the directory marked by origin krConfig->setGroup("Look&Feel"); ! //vfs_origin.adjustPath(+1); KIO::Job *job = KIO::listDir(vfs_origin,false, krConfig->readBoolEntry("Show Hidden",_ShowHidden)); *************** *** 247,251 **** if( !vf ) return KURL(); // empty ! return vf->vfile_getUrl(); } --- 247,253 ---- if( !vf ) return KURL(); // empty ! KURL url = vf->vfile_getUrl(); ! if( vf->vfile_isDir() ) url.adjustPath(+1); ! return url; } |
From: Rafi Y. <ya...@us...> - 2004-06-17 14:33:17
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv570/krusader/Panel Modified Files: panelfunc.cpp Log Message: Fixed the "follow links in sftp" fix... Index: panelfunc.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/panelfunc.cpp,v retrieving revision 1.66 retrieving revision 1.67 diff -C2 -d -r1.66 -r1.67 *** panelfunc.cpp 30 May 2004 14:43:20 -0000 1.66 --- panelfunc.cpp 17 Jun 2004 14:33:04 -0000 1.67 *************** *** 115,119 **** while( true ){ KURL u = urlStack.pop(); ! u.adjustPath(-1); // remove trailing "/" u.cleanPath(); // Resolves "." and ".." components in path. v = KrVfsHandler::getVfs(u,panel,files()); --- 115,119 ---- while( true ){ KURL u = urlStack.pop(); ! //u.adjustPath(-1); // remove trailing "/" u.cleanPath(); // Resolves "." and ".." components in path. v = KrVfsHandler::getVfs(u,panel,files()); |
From: Shie E. <er...@us...> - 2004-06-16 08:31:49
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Dialogs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31240 Modified Files: newftpgui.cpp Log Message: added resizing control for new ftp gui. thanks jonas Index: newftpgui.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Dialogs/newftpgui.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** newftpgui.cpp 8 Jun 2004 21:17:30 -0000 1.7 --- newftpgui.cpp 16 Jun 2004 08:31:37 -0000 1.8 *************** *** 14,17 **** --- 14,19 ---- #include <qspinbox.h> #include <qlayout.h> + #include <qhbox.h> + #include <qgrid.h> #include <qvariant.h> #include <qtooltip.h> *************** *** 677,683 **** * TRUE to construct a modal dialog. */ newFTPGUI::newFTPGUI( QWidget* parent, const char* name, bool modal, WFlags fl ) : QDialog( parent, name, modal, fl ){ ! QPixmap image0( ( const char** ) image0_data ); if ( !name ) --- 679,691 ---- * TRUE to construct a modal dialog. */ + + #define SIZE_MINIMUM QSizePolicy( (QSizePolicy::SizeType)0, (QSizePolicy::SizeType)0 ) + newFTPGUI::newFTPGUI( QWidget* parent, const char* name, bool modal, WFlags fl ) : QDialog( parent, name, modal, fl ){ ! ! QVBoxLayout * layout = new QVBoxLayout( this, 11, 6, "newFTPGUI_layout" ); ! layout->setAutoAdd(true); ! QPixmap image0( ( const char** ) image0_data ); if ( !name ) *************** *** 685,699 **** resize( 342, 261 ); setCaption( i18n( "New FTP Connection" ) ); ! setSizeGripEnabled( TRUE ); setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)5, (QSizePolicy::SizeType)5, sizePolicy().hasHeightForWidth() ) ); setMinimumSize( QSize( 342, 261 ) ); ! TextLabel1 = new QLabel( this, "TextLabel1" ); ! TextLabel1->setGeometry( QRect( 10, 50, 60, 20 ) ); ! TextLabel1->setText( i18n( "Host:" ) ); QStringList protocols = KProtocolInfo::protocols(); ! prefix = new KComboBox( FALSE, this, "protocol" ); if( protocols.contains("ftp") ) prefix->insertItem( i18n( "ftp://" ) ); --- 693,723 ---- resize( 342, 261 ); setCaption( i18n( "New FTP Connection" ) ); ! // setSizeGripEnabled( TRUE ); setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)5, (QSizePolicy::SizeType)5, sizePolicy().hasHeightForWidth() ) ); setMinimumSize( QSize( 342, 261 ) ); ! ! QHBox* hbox_image = new QHBox( this, "hbox_image" ); ! hbox_image->setSpacing( 6 ); ! ! PixmapLabel1 = new QLabel( hbox_image, "PixmapLabel1" ); ! PixmapLabel1->setPixmap( image0 ); ! PixmapLabel1->setSizePolicy( SIZE_MINIMUM ); ! ! TextLabel3 = new QLabel( i18n( "About to connect to..." ), hbox_image, "TextLabel3" ); ! QFont TextLabel3_font( TextLabel3->font() ); ! TextLabel3_font.setBold( TRUE ); ! TextLabel3->setFont( TextLabel3_font ); ! ! ! QGrid* grid_host = new QGrid( 3, this, "grid_host" ); ! ! TextLabel1 = new QLabel( i18n( "Host:" ), grid_host, "TextLabel1" ); ! QLabel* dummylabel = new QLabel( grid_host ); //FIXME: after 1.40 i18n-freeze: put "host" here and replace the host above with "protocol" ! TextLabel1_3 = new QLabel( i18n( "Port:" ), grid_host, "TextLabel1_3" ); QStringList protocols = KProtocolInfo::protocols(); ! prefix = new KComboBox( FALSE, grid_host, "protocol" ); if( protocols.contains("ftp") ) prefix->insertItem( i18n( "ftp://" ) ); *************** *** 704,727 **** if( protocols.contains("sftp") ) prefix->insertItem( i18n( "sftp://" )); - prefix->setGeometry( QRect( 10, 70, 70, 22 ) ); prefix->setAcceptDrops( FALSE ); prefix->setEnabled( TRUE ); connect( prefix,SIGNAL(activated(const QString& )), this,SLOT(slotTextChanged(const QString& ))); ! TextLabel1_2_2 = new QLabel( this, "TextLabel1_2_2" ); ! TextLabel1_2_2->setGeometry( QRect( 10, 150, 150, 20 ) ); ! TextLabel1_2_2->setText( i18n( "Password:" ) ); ! ! TextLabel1_2 = new QLabel( this, "TextLabel1_2" ); ! TextLabel1_2->setGeometry( QRect( 10, 100, 150, 20 ) ); ! TextLabel1_2->setText( i18n( "Username:" ) ); ! ! TextLabel1_3 = new QLabel( this, "TextLabel1_3" ); ! TextLabel1_3->setGeometry( QRect( 230, 50, 80, 20 ) ); ! TextLabel1_3->setText( i18n( "Port:" ) ); ! ! port = new QSpinBox( this, "port" ); ! port->setGeometry( QRect( 280, 70, 50, 21 ) ); port->setMaxValue( 65535 ); #if QT_VERSION < 300 --- 728,752 ---- if( protocols.contains("sftp") ) prefix->insertItem( i18n( "sftp://" )); prefix->setAcceptDrops( FALSE ); prefix->setEnabled( TRUE ); + prefix->setSizePolicy( SIZE_MINIMUM ); connect( prefix,SIGNAL(activated(const QString& )), this,SLOT(slotTextChanged(const QString& ))); + + QFont font; + font.setPointSize( 9 ); + url = new KHistoryCombo( grid_host, "url" ); + url->setFont( font ); + url->setMaximumHeight( 20 ); + connect( url, SIGNAL( activated( const QString& )), + url, SLOT( addToHistory( const QString& ))); + // load the history and completion list after creating the history combo + krConfig->setGroup("Private"); + QStringList list = krConfig->readListEntry( "newFTP Completion list" ); + url->completionObject()->setItems( list ); + list = krConfig->readListEntry( "newFTP History list" ); + url->setHistoryItems( list ); ! port = new QSpinBox( grid_host, "port" ); port->setMaxValue( 65535 ); #if QT_VERSION < 300 *************** *** 729,789 **** #endif port->setValue( 21 ); password = new QLineEdit( this, "password" ); - password->setGeometry( QRect( 10, 170, 320, 22 ) ); password->setEchoMode( QLineEdit::Password ); QWidget* Layout6 = new QWidget( this, "Layout6" ); - Layout6->setGeometry( QRect( 10, 210, 420, 34 ) ); hbox = new QHBoxLayout( Layout6 ); hbox->setSpacing( 6 ); hbox->setMargin( 0 ); ! connectBtn = new QPushButton( Layout6, "connectBtn" ); ! connectBtn->setText( i18n( "&Connect" ) ); connectBtn->setAutoDefault( TRUE ); connectBtn->setDefault( TRUE ); hbox->addWidget( connectBtn ); ! saveBtn = new QPushButton( Layout6, "saveBtn" ); ! saveBtn->setText( i18n( "&Save" ) ); saveBtn->setAutoDefault( TRUE ); hbox->addWidget( saveBtn ); ! cancelBtn = new QPushButton( Layout6, "cancelBtn" ); ! cancelBtn->setText( i18n( "&Cancel" ) ); cancelBtn->setAutoDefault( TRUE ); hbox->addWidget( cancelBtn ); - PixmapLabel1 = new QLabel( this, "PixmapLabel1" ); - PixmapLabel1->setGeometry( QRect( 10, 10, 40, 40 ) ); - PixmapLabel1->setPixmap( image0 ); - PixmapLabel1->setScaledContents( TRUE ); - - TextLabel3 = new QLabel( this, "TextLabel3" ); - TextLabel3->setGeometry( QRect( 60, 10, 300, 31 ) ); - TextLabel3->setText( i18n( "About to connect to..." ) ); - QFont TextLabel3_font( TextLabel3->font() ); - TextLabel3_font.setBold( TRUE ); - TextLabel3->setFont( TextLabel3_font ); - - username = new QLineEdit( this, "username" ); - username->setGeometry( QRect( 10, 120, 320, 22 ) ); - - QFont font; - font.setPointSize( 9 ); - url = new KHistoryCombo( this, "url" ); - url->setFont( font ); - url->setMaximumHeight( 20 ); - url->setGeometry( QRect( 80, 70, 200, 22 ) ); - connect( url, SIGNAL( activated( const QString& )), - url, SLOT( addToHistory( const QString& ))); - // load the history and completion list after creating the history combo - krConfig->setGroup("Private"); - QStringList list = krConfig->readListEntry( "newFTP Completion list" ); - url->completionObject()->setItems( list ); - list = krConfig->readListEntry( "newFTP History list" ); - url->setHistoryItems( list ); - // signals and slots connections connect( connectBtn, SIGNAL( clicked() ), this, SLOT( accept() ) ); --- 754,785 ---- #endif port->setValue( 21 ); + port->setSizePolicy( SIZE_MINIMUM ); + + TextLabel1_2 = new QLabel( i18n( "Username:" ), this, "TextLabel1_2" ); + username = new QLineEdit( this, "username" ); + TextLabel1_2_2 = new QLabel( i18n( "Password:" ), this, "TextLabel1_2_2" ); password = new QLineEdit( this, "password" ); password->setEchoMode( QLineEdit::Password ); + QWidget* Layout6 = new QWidget( this, "Layout6" ); hbox = new QHBoxLayout( Layout6 ); hbox->setSpacing( 6 ); hbox->setMargin( 0 ); ! connectBtn = new QPushButton( i18n( "&Connect" ), Layout6, "connectBtn" ); connectBtn->setAutoDefault( TRUE ); connectBtn->setDefault( TRUE ); hbox->addWidget( connectBtn ); ! saveBtn = new QPushButton( i18n( "&Save" ), Layout6, "saveBtn" ); saveBtn->setAutoDefault( TRUE ); hbox->addWidget( saveBtn ); ! cancelBtn = new QPushButton( i18n( "&Cancel" ), Layout6, "cancelBtn" ); cancelBtn->setAutoDefault( TRUE ); hbox->addWidget( cancelBtn ); // signals and slots connections connect( connectBtn, SIGNAL( clicked() ), this, SLOT( accept() ) ); |
From: Shie E. <er...@us...> - 2004-06-16 08:30:56
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30674 Modified Files: Makefile.am Log Message: removed x-ace.desktop file. thanks frank! Index: Makefile.am =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Makefile.am,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** Makefile.am 20 Mar 2004 09:27:23 -0000 1.16 --- Makefile.am 16 Jun 2004 08:30:45 -0000 1.17 *************** *** 9,13 **** SUBDIRS = BookMan Dialogs GUI Konfigurator KViewer MountMan Panel RemoteMan VFS Search Splitter Synchronizer UserMenu Locate ! EXTRA_DIST = krusader.desktop defaults.h kicons.cpp kicons.h krslots.cpp krslots.h krusader.cpp krusader.h krusaderui.rc krusaderview.cpp krusaderview.h main.cpp resources.h x-ace.desktop krservices.cpp krservices.h panelmanager.cpp panelmanager.h paneltabbar.cpp paneltabbar.h 16-blue-krusader.png 22-blue-krusader.png 32-blue-krusader.png 48-blue-krusader.png 64-blue-krusader.png 16-red-krusader.png 22-red-krusader.png 32-red-krusader.png 48-red-krusader.png 64-red-krusader.png install-data-local: --- 9,13 ---- SUBDIRS = BookMan Dialogs GUI Konfigurator KViewer MountMan Panel RemoteMan VFS Search Splitter Synchronizer UserMenu Locate ! EXTRA_DIST = krusader.desktop defaults.h kicons.cpp kicons.h krslots.cpp krslots.h krusader.cpp krusader.h krusaderui.rc krusaderview.cpp krusaderview.h main.cpp resources.h krservices.cpp krservices.h panelmanager.cpp panelmanager.h paneltabbar.cpp paneltabbar.h 16-blue-krusader.png 22-blue-krusader.png 32-blue-krusader.png 48-blue-krusader.png 64-blue-krusader.png 16-red-krusader.png 22-red-krusader.png 32-red-krusader.png 48-red-krusader.png 64-red-krusader.png install-data-local: *************** *** 16,21 **** $(mkinstalldirs) $(kde_datadir)/krusader/ $(INSTALL_DATA) $(srcdir)/krusaderui.rc $(kde_datadir)/krusader/krusaderui.rc - $(mkinstalldirs) $(kde_mimedir)/application/ - $(INSTALL_DATA) $(srcdir)/x-ace.desktop $(kde_mimedir)/application/x-ace.desktop $(mkinstalldirs) $(kde_icondir)/hicolor/16x16/apps/ $(INSTALL_DATA) $(srcdir)/16-blue-krusader.png $(kde_icondir)/hicolor/16x16/apps/krusader.png --- 16,19 ---- *************** *** 42,46 **** -rm -f $(kde_appsdir)/Applications/krusader.desktop -rm -f $(kde_datadir)/krusader/krusaderui.rc - -rm -f $(kde_mimedir)/application/x-ace.desktop -rm -f $(kde_icondir)/hicolor/16x16/apps/krusader.png -rm -f $(kde_icondir)/hicolor/22x22/apps/krusader.png --- 40,43 ---- *************** *** 85,89 **** # Uncomment the following two lines if you add a ui.rc file for your application to make use of ! # KDE´s XML GUI builing rcdir = $(kde_datadir)/krusader rc_DATA = krusaderui.rc --- 82,86 ---- # Uncomment the following two lines if you add a ui.rc file for your application to make use of ! # KDEs XML GUI builing rcdir = $(kde_datadir)/krusader rc_DATA = krusaderui.rc |
From: Rafi Y. <ya...@us...> - 2004-06-14 11:25:26
|
Update of /cvsroot/krusader/krusader_kde3/krusader/VFS In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10393/krusader/VFS Modified Files: ftp_vfs.cpp Log Message: Fixed a bug with following links in sftp ? - I hope so... Index: ftp_vfs.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/ftp_vfs.cpp,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** ftp_vfs.cpp 1 Jun 2004 07:23:24 -0000 1.30 --- ftp_vfs.cpp 14 Jun 2004 11:25:07 -0000 1.31 *************** *** 139,142 **** --- 139,143 ---- // Open the directory marked by origin krConfig->setGroup("Look&Feel"); + vfs_origin.adjustPath(+1); KIO::Job *job = KIO::listDir(vfs_origin,false, krConfig->readBoolEntry("Show Hidden",_ShowHidden)); |
From: Frank S. <cod...@us...> - 2004-06-10 19:04:48
|
Update of /cvsroot/krusader/krusader_kde3/doc/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28044/doc/en Modified Files: credits.sgml faq.sgml index.docbook installation.sgml krusader-tools.sgml using-krusader.sgml Log Message: Handbook 1.40.01 Index: credits.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/credits.sgml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** credits.sgml 15 May 2004 19:47:58 -0000 1.11 --- credits.sgml 10 Jun 2004 19:04:38 -0000 1.12 *************** *** 22,28 **** <title>Credits and License</title> ! <para>&krusader;</para> ! <para>Program copyright 2000-2004 Shie Erlich and Rafi Yanai <email>kru...@us...</email></para> --- 22,28 ---- <title>Credits and License</title> ! <para><emphasis role="bold">&krusader;</emphasis></para> ! <para>Program copyright 2000-2004 Shie Erlich and Rafi Yanai, 2004 Krusader Krew <email>kru...@us...</email></para> *************** *** 43,47 **** </listitem> <listitem><para>Heiner Eichmann, developer <email>h.e...@gm...</email></para> ! </listitem> <listitem><para>Frank Schoolmeesters, documentation coordinator <email>cod...@us...</email></para> --- 43,47 ---- </listitem> <listitem><para>Heiner Eichmann, developer <email>h.e...@gm...</email></para> ! </listitem> <listitem><para>Frank Schoolmeesters, documentation coordinator <email>cod...@us...</email></para> *************** *** 67,76 **** panel toolbar buttons</para> </listitem> ! <listitem><para>Jan Willem ! icons for &krusader;</para> </listitem> ! <listitem><para>Hans Loffler ! directory history list</para> </listitem> <listitem><para>Jan Halasa <email>jan...@us...</email> --- 67,74 ---- panel toolbar buttons</para> </listitem> ! <listitem><para>Jan Willem (Adios), icons for &krusader;</para> </listitem> ! <listitem><para>Hans Loffler, directory history list</para> </listitem> <listitem><para>Jan Halasa <email>jan...@us...</email> *************** *** 133,137 **** <para>If your native language is not listed above, you maybe like to translate &krusader; to your native ! language, please read the &i18howto_url;.</para> <para>See for more credits in the &online_changelog_url; file or in the <filename>ChangeLog</filename> --- 131,135 ---- <para>If your native language is not listed above, you maybe like to translate &krusader; to your native ! language, please read the &i18nhowto_url;.</para> <para>See for more credits in the &online_changelog_url; file or in the <filename>ChangeLog</filename> Index: index.docbook =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/index.docbook,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** index.docbook 25 May 2004 20:17:18 -0000 1.13 --- index.docbook 10 Jun 2004 19:04:38 -0000 1.14 *************** *** 51,55 **** '<ulink url="http://krusader.sourceforge.net/text.php?note=cvs.changelog&path=dev">online <filename>ChangeLog</filename></ulink>'> <!ENTITY online_docchangelog_url '<ulink url="http://cvs.sourceforge.net/viewcvs.py/krusader/krusader_kde3/doc">online documentation <filename>ChangeLog</filename></ulink>'> ! <!ENTITY i18howto_url '<ulink url="http://krusader.sourceforge.net/phpBB/viewtopic.php?t=389">Krusader translation howto</ulink>'> <!ENTITY krudownload_url '<ulink url="http://krusader.sourceforge.net/down.php">&krusader; downloadpage</ulink>'> <!ENTITY krunews_url '<ulink url="http://lists.sourceforge.net/lists/listinfo/krusader-news">&krusader;-news</ulink>'> --- 51,55 ---- '<ulink url="http://krusader.sourceforge.net/text.php?note=cvs.changelog&path=dev">online <filename>ChangeLog</filename></ulink>'> <!ENTITY online_docchangelog_url '<ulink url="http://cvs.sourceforge.net/viewcvs.py/krusader/krusader_kde3/doc">online documentation <filename>ChangeLog</filename></ulink>'> ! <!ENTITY i18nhowto_url '<ulink url="http://krusader.sourceforge.net/phpBB/viewtopic.php?t=389">Krusader translation howto</ulink>'> <!ENTITY krudownload_url '<ulink url="http://krusader.sourceforge.net/down.php">&krusader; downloadpage</ulink>'> <!ENTITY krunews_url '<ulink url="http://lists.sourceforge.net/lists/listinfo/krusader-news">&krusader;-news</ulink>'> Index: faq.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/faq.sgml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** faq.sgml 25 May 2004 20:17:18 -0000 1.12 --- faq.sgml 10 Jun 2004 19:04:38 -0000 1.13 *************** *** 35,39 **** (bug reports, forum, mailing list, ...)</para></listitem> </itemizedlist> ! If you have the feeling that a &FAQ; question is missing or if something is not clear to you, please <link linkend="editors_note">let us know</link>. </para> --- 35,39 ---- (bug reports, forum, mailing list, ...)</para></listitem> </itemizedlist> ! If you have the feeling that a &FAQ; is missing or if something is not clear to you, please <link linkend="editors_note">let us know</link>. </para> *************** *** 110,116 **** <answer> <para><orderedlist> ! <listitem><para>Set the right permissions to ! <filename class="directory">/usr/src/RPM/</filename> and all recursive directories ! so that your normal user can read-write-execute in these directories. </para></listitem> <listitem><para>To produce the binary RPM for your computer, do this: --- 110,116 ---- <answer> <para><orderedlist> ! <listitem><para>Check the ownership and the permissions on ! <filename class="directory">/usr/src/RPM/</filename> and all recursive directories, ! that your normal user can read-write-execute in these directories. </para></listitem> <listitem><para>To produce the binary RPM for your computer, do this: *************** *** 123,127 **** <listitem><para>Test the binary RPM before installing: <screen><prompt>$</prompt> <userinput><command>rpm</command> <option>-i --test</option> <replaceable></path/to/rpmfile> krusader-x.xx.dist.rpm</replaceable></userinput></screen> ! If the prompt returns without a message, than everything is ok. </para></listitem> <listitem><para>Install the binary RPM as usual, for example: --- 123,127 ---- <listitem><para>Test the binary RPM before installing: <screen><prompt>$</prompt> <userinput><command>rpm</command> <option>-i --test</option> <replaceable></path/to/rpmfile> krusader-x.xx.dist.rpm</replaceable></userinput></screen> ! If the prompt returns without any message, than everything is ok. </para></listitem> <listitem><para>Install the binary RPM as usual, for example: *************** *** 132,135 **** --- 132,136 ---- </para></listitem> </orderedlist></para> + <para> </para> <!-- Empty line to make it more readable --> <tip><para>For more information about RPM, take a look at the &maxrpm_url;. This book is verry good but it dates from the year 2000, so some issues are *************** *** 147,153 **** <answer> <para>Since we only provide (and use) the source, we don't know. ! Try to find another binary at &Linux; software archives such as &freshmeat_url; or &kde_apps_url;. ! If you can't find a RPM package for your &Linux; distribution, we recommend searching for it with ! &rpmfind_url; or &rpmpbone_url;. Or better, please read next question. </para> <para> </para> <!-- Empty line to make it more readable --> --- 148,166 ---- <answer> <para>Since we only provide (and use) the source, we don't know. ! Please test the binary RPM before installing: ! <screen><prompt>$</prompt> <userinput><command>rpm</command> <option>-i --test</option> <replaceable></path/to/rpmfile> krusader-x.xx.dist.rpm</replaceable></userinput></screen> ! If the prompt returns without any message, than everything is ok.</para> ! <para>If it is not ok, try to find another package at &Linux; software archives such as &freshmeat_url; ! or &kde_apps_url;. If you still can't find a package for your &Linux; distribution, we recommend searching for it with ! &rpmfind_url; or &rpmpbone_url;.</para> ! <para>In general, a package for an older version of your distrubution or even for an ! other distribution might work on your computer, but it is always the best that ! it matches your distribution. ! If you can't find a package that matches your distribution version, architecture or distribution, ! than use a source RPM. ! Because when you use a source RPM, the Krusader sources will be build on your computer, ! it will build a suitable binary RPM for your distribution and architecture. ! Please read the previous question, it explains howto install a source RPM. ! The best solution is explained in the next question. </para> <para> </para> <!-- Empty line to make it more readable --> *************** *** 157,161 **** <qandaentry> <question id="rpm_notfound"> ! <para>I can't find a RPM package for &krusader;, What now?</para> </question> <answer> --- 170,174 ---- <qandaentry> <question id="rpm_notfound"> ! <para>I can't find a RPM or DEB package for &krusader;, What now?</para> </question> <answer> *************** *** 280,294 **** Follow the next steps to build an RPM. </para> <para><orderedlist> <listitem><para>Compile &krusader; from source to check that the compilation works fine. </para></listitem> ! <listitem><para>Set the right permissions to ! <filename class="directory">/usr/src/RPM/</filename> and all recursive directories ! so that your normal user can read-write-execute in these directories. </para></listitem> ! <listitem><para>copy <filename>kusader1.xx.tar.gz</filename> to <filename class="directory">/usr/scr/RPM/SOURCE</filename> </para></listitem> ! <listitem><para>copy <filename>kusader.spec</filename> to <filename class="directory">/usr/scr/RPM/SPECS</filename> Tip: the latest <filename>kusader.spec</filename> can be found in CVS. --- 293,309 ---- Follow the next steps to build an RPM. </para> + <warning><para>Never, ever build RPMs when logged in as root. Mistakes in buildings packages (⪚ a bad + <filename>krusader.spec</filename> file) can serious damage your system when logged in as root.</para></warning> <para><orderedlist> <listitem><para>Compile &krusader; from source to check that the compilation works fine. </para></listitem> ! <listitem><para>Check the ownership and the permissions on ! <filename class="directory">/usr/src/RPM/</filename> and all recursive directories, ! that your normal user can read-write-execute in these directories. </para></listitem> ! <listitem><para>Copy <filename>kusader1.xx.tar.gz</filename> to <filename class="directory">/usr/scr/RPM/SOURCE</filename> </para></listitem> ! <listitem><para>Copy <filename>kusader.spec</filename> to <filename class="directory">/usr/scr/RPM/SPECS</filename> Tip: the latest <filename>kusader.spec</filename> can be found in CVS. *************** *** 298,303 **** Maybe other changes are needed if <command>rpmbuild</command> fails. </para></listitem> ! <listitem><para>Build the binary an source RPM: ! <screen><prompt>/usr/scr/RPM/SPECS $</prompt> <userinput><command>rpmbuild</command> <option>-ba</option> <replaceable>krusader.spec</replaceable></userinput></screen> If everything went ok you will have a binaryRPM in <filename class="directory">/usr/src/RPM/RPMS/i586</filename> (depending on your architecture) --- 313,318 ---- Maybe other changes are needed if <command>rpmbuild</command> fails. </para></listitem> ! <listitem><para>Build the binary and the source RPM with: ! <screen><prompt>$</prompt> <userinput><command>rpmbuild</command> <option>-ba</option> <replaceable>/usr/scr/RPM/SPECS/krusader.spec</replaceable></userinput></screen> If everything went ok you will have a binaryRPM in <filename class="directory">/usr/src/RPM/RPMS/i586</filename> (depending on your architecture) *************** *** 535,539 **** </qandaentry> ! <qandaentry> <question id="faqq_kru_forum"> <para>How does the &krusader; forum work?</para> --- 550,554 ---- </qandaentry> ! <qandaentry> <question id="faqq_kru_forum"> <para>How does the &krusader; forum work?</para> *************** *** 558,562 **** This also allows us also to spend more time in developing &krusader;.</para> ! <para>The &kruforum_url; is split up in three major sections: <itemizedlist> <listitem><para>&bugforum_url;: discussions about bugs, please DO NOT use the forum for &faqbugreports_lnk; --- 573,577 ---- This also allows us also to spend more time in developing &krusader;.</para> ! <para>The &kruforum_url; is split up in three major sections: <itemizedlist> <listitem><para>&bugforum_url;: discussions about bugs, please DO NOT use the forum for &faqbugreports_lnk; *************** *** 570,575 **** <para>Thanks for your cooperation!</para> <para> </para> <!-- Empty line to make it more readable --> </answer> ! </qandaentry> </qandaset> --- 585,603 ---- <para>Thanks for your cooperation!</para> <para> </para> <!-- Empty line to make it more readable --> + </answer> + </qandaentry> + + <qandaentry> + <question id="faqq_i18n"> + <para>How can i translate &krusader; to my native language?</para> + </question> + <answer> + <para>Please read the &i18nhowto_url;. It's not difficult to translate! Everyone can do it, it just takes some time. + </para> + <para> </para> <!-- Empty line to make it more readable --> </answer> ! </qandaentry> ! ! </qandaset> Index: krusader-tools.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/krusader-tools.sgml,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** krusader-tools.sgml 23 Apr 2004 08:57:19 -0000 1.10 --- krusader-tools.sgml 10 Jun 2004 19:04:38 -0000 1.11 *************** *** 330,333 **** --- 330,336 ---- <itemizedlist> <listitem><para> + <userinput><command>man:/</command></userinput> views the manpages. + </para></listitem> + <listitem><para> <userinput><command>man:/</command><replaceable>krusader</replaceable></userinput> views a manpage. ⪚ <ulink url="http://krusader.sourceforge.net/handbook/kru_manpage.html">&krusader;'s manpage</ulink> *************** *** 335,338 **** --- 338,344 ---- </para></listitem> <listitem><para> + <userinput><command>info:/</command></userinput> views the infopages. + </para></listitem> + <listitem><para> <userinput><command>http://</command><replaceable>krusader.sourceforce.net/</replaceable></userinput> views a webpage. *************** *** 342,345 **** --- 348,363 ---- views a ftp-server. </para></listitem> + <listitem><para> + <userinput><command>sftp://</command><replaceable>sftp.foo/</replaceable></userinput> + views a secure ftp-server. + </para></listitem> + <listitem><para> + <userinput><command>file:/</command><replaceable>home/frank</replaceable></userinput> + views the homedirectory of Frank. + </para></listitem> + <listitem><para> + <userinput><replaceable>/home/frank/archive.tar.gz</replaceable></userinput> + views a tar.gz archive. + </para></listitem> </itemizedlist> </para> *************** *** 357,363 **** start &krusader;'s internal editor (which is basically the same application). </para> ! ! <para>btw. The embedded viewer is not written by us, it is supplied via &kde; (libs) and we ! cannot change it (read: we don't want to change it because it works fine).</para> </sect2> --- 375,382 ---- start &krusader;'s internal editor (which is basically the same application). </para> ! ! <note><para>The embedded viewer is not written by us, it is supplied via &kde; (libs) and &kioslave_url; ! We cannot and don't want to change it, usings these libraries reduces the amount of written code. ! So we don't have to reinvent the weel ;-)</para></note> </sect2> Index: using-krusader.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/using-krusader.sgml,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** using-krusader.sgml 25 May 2004 20:17:18 -0000 1.13 --- using-krusader.sgml 10 Jun 2004 19:04:38 -0000 1.14 *************** *** 1182,1189 **** <row> <entry><para><keycombo action="simul">&Ctrl;<keycap>Left</keycap></keycombo> or <keycombo><keycap>Right arrow</keycap></keycombo></para></entry> ! <entry><para>On a file: the unactive panel gets the same path as the active ! <link linkend="panels">panel</link></para> ! <para>On a directory: refreshes the unactive panel with the contents of the directory</para></entry> ! </row> <row> <entry><para><keycombo action="simul">&Ctrl;<keycap>b</keycap></keycombo></para></entry> --- 1182,1196 ---- <row> <entry><para><keycombo action="simul">&Ctrl;<keycap>Left</keycap></keycombo> or <keycombo><keycap>Right arrow</keycap></keycombo></para></entry> ! <entry><para>Focus a file or directory on the left panel, press <keycombo action="simul">&Ctrl;<keycap>Left arrow</keycap></keycombo> ! and the right <link linkend="panels">panel</link> changes: ! <itemizedlist> ! <listitem><para>on a file: the right panel gets the same path as the left ! <link linkend="panels">panel</link></para></listitem> ! <listitem><para>on a directory: refreshes the right panel with the contents of the ! directory</para></listitem> ! </itemizedlist> ! For the right panel: press <keycombo action="simul">&Ctrl;<keycap>Right arrow</keycap></keycombo> and ! the left panel will change.</para> ! </entry></row> <row> <entry><para><keycombo action="simul">&Ctrl;<keycap>b</keycap></keycombo></para></entry> Index: installation.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/installation.sgml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** installation.sgml 25 May 2004 20:17:18 -0000 1.12 --- installation.sgml 10 Jun 2004 19:04:38 -0000 1.13 *************** *** 60,85 **** <para><filename>krusader-x.xx-betax.tar.gz</filename></para> <para> ! The most updated development version can be found on the &krudownload_url;. It contains the source tarballs and sometimes even RPM packages to whatever distro we are currently ! using.</para> <warning><para>This releases are beta releases and will probably contain some bugs.</para></warning> ! <para>This version has 2 goals: <itemizedlist> <listitem> ! <para>Provide the latest new features to &krusader; users, but these new features might lead to ! some unfortunate bugs.</para> </listitem> <listitem> <para>Have feedback from &krusader; users so that we can fix the bugs.</para> </listitem> </itemizedlist> </para> - <para>Before every stable release we release at least one development version, so that we can hunt down - the bugs. This is the ideal moment for updating the translations, so that the stable version is 100% - translated.</para> - </sect2> --- 60,86 ---- <para><filename>krusader-x.xx-betax.tar.gz</filename></para> <para> ! The latest development version can be found on the &krudownload_url;. It contains the source tarballs and sometimes even RPM packages to whatever distro we are currently ! using. Before every stable release we release at least one development version, so that we can hunt down ! the bugs.</para> <warning><para>This releases are beta releases and will probably contain some bugs.</para></warning> ! <para>This version has 3 goals: <itemizedlist> <listitem> ! <para>Apply a feature-freeze until the stable is released, only bugs will be fixed. ! New features have to wait until the stable is released.</para> </listitem> <listitem> <para>Have feedback from &krusader; users so that we can fix the bugs.</para> </listitem> + <listitem> + <para>Give translators the time to update the translations, for the comming stable. + Please read the &i18nhowto_url;</para> + </listitem> </itemizedlist> </para> </sect2> *************** *** 93,97 **** <para> ! We provide daily (sometimes weekly) builds of &krusader;'s CVS version. For those who are interested. The <emphasis role="bold">nightly tarball</emphasis> can be found on the &krucutedge_url;. --- 94,98 ---- <para> ! We provide daily builds of &krusader;'s CVS version. For those who are interested. The <emphasis role="bold">nightly tarball</emphasis> can be found on the &krucutedge_url;. *************** *** 104,112 **** <orderedlist numeration="arabic"> <listitem> ! <para><command>make -f Makefile.cvs</command> must be run before the <command>./configure</command> script is available</para> </listitem> <listitem> ! <para>for users who have problems with the <command>make -f Makefile.cvs</command> command, we have already done this for you and the <command>./configure</command> script is included in the tarball (This tarball is a bit bigger then the first one). --- 105,113 ---- <orderedlist numeration="arabic"> <listitem> ! <para><filename>krusader-cvs-yyyy-mm-dd.tar.gz</filename>: <command>make -f Makefile.cvs</command> must be run before the <command>./configure</command> script is available</para> </listitem> <listitem> ! <para><filename>krusader-cvs2-yyyy-mm-dd.tar.gz</filename>: for users who have problems with the <command>make -f Makefile.cvs</command> command, we have already done this for you and the <command>./configure</command> script is included in the tarball (This tarball is a bit bigger then the first one). *************** *** 117,122 **** <para><emphasis role="bold">Checkout from CVS</emphasis>. ! This projects SourceForge CVS repository can be checked out through anonymous (pserver) CVS with ! the following instruction set. The module you wish to check out must be specified as the modulename. When prompted for a password for anonymous, simply press the Enter key.</para> <para>Currently there are two module options: --- 118,123 ---- <para><emphasis role="bold">Checkout from CVS</emphasis>. ! &krusader; can be checked out through anonymous (pserver) CVS with the following instruction set. ! The module you wish to check out must be specified as the modulename. When prompted for a password for anonymous, simply press the Enter key.</para> <para>Currently there are two module options: *************** *** 124,131 **** <listitem><para>krusader_kde2: the KDE2 branch, stable but it's basically v1.01 and there are no planned changes</para></listitem> ! <listitem><para>krusader_kde3: the KDE3 branch</para></listitem> </itemizedlist></para> ! <para>To checkout the &krusader; KDE3 version from CVS: <screen><prompt>$</prompt> <userinput><command>cvs</command> <option>-d:pserver:ano...@cv...:/cvsroot/krusader login</option></userinput></screen> <screen><prompt>$</prompt> <userinput><command>cvs</command> <option>-z3 -d:pserver:ano...@cv...:/cvsroot/krusader co krusader_kde3</option></userinput></screen> --- 125,132 ---- <listitem><para>krusader_kde2: the KDE2 branch, stable but it's basically v1.01 and there are no planned changes</para></listitem> ! <listitem><para>krusader_kde3: the KDE3 branch, that we currently use</para></listitem> </itemizedlist></para> ! <para>To checkout &krusader; from CVS: <screen><prompt>$</prompt> <userinput><command>cvs</command> <option>-d:pserver:ano...@cv...:/cvsroot/krusader login</option></userinput></screen> <screen><prompt>$</prompt> <userinput><command>cvs</command> <option>-z3 -d:pserver:ano...@cv...:/cvsroot/krusader co krusader_kde3</option></userinput></screen> *************** *** 152,162 **** <para><remark>For &kde; 2.x.x there is &krusader; v1.01, stable but there are no planned changes.</remark></para> ! <para>Note: all versions >=1.02 are &kde; 3.x.x only.</para> <para>A FreeBSD port of &krusader; is available.</para> ! <para>&krusader; uses about 16 megs of memory to run, but this may vary depending ! on your platform and configuration. ! In order to handle archives the archivers must be installed to your <envar>PATH</envar>.</para> <para>A package of popular (un)packers, &krusader; itself and addons can be found on the &krudownload_url;.</para> --- 153,164 ---- <para><remark>For &kde; 2.x.x there is &krusader; v1.01, stable but there are no planned changes.</remark></para> ! <para>Note: all &krusader; versions >=1.02 are &kde; 3.x.x only.</para> <para>A FreeBSD port of &krusader; is available.</para> ! <para>&krusader; uses about 3-4 MByte of memory to run ! (and about 15 Mbyte shared memory which is also used by more processes), ! but this may vary depending on your platform and configuration. ! In order to handle archives the archivers must be configured <link linkend="konfig-dependencies">here</link>.</para> <para>A package of popular (un)packers, &krusader; itself and addons can be found on the &krudownload_url;.</para> *************** *** 436,441 **** <para>If nothing went wrong, you can now install &krusader;. ! <screen> ! <prompt>$</prompt> <userinput><command>su -c 'make</command> <option>install'</option></userinput> </screen> You will be asked to enter your root password.</para> --- 438,442 ---- <para>If nothing went wrong, you can now install &krusader;. ! <screen><prompt>$</prompt> <userinput><command>su -c 'make</command> <option>install'</option></userinput> </screen> You will be asked to enter your root password.</para> *************** *** 470,475 **** <listitem> <para>If you ever want to uninstall &krusader;, just use ! <screen> ! <prompt>$</prompt> <userinput><command>su -c 'make</command> <option>uninstall'</option></userinput> </screen> You will be asked to enter your root password.</para> --- 471,475 ---- <listitem> <para>If you ever want to uninstall &krusader;, just use ! <screen><prompt>$</prompt> <userinput><command>su -c 'make</command> <option>uninstall'</option></userinput> </screen> You will be asked to enter your root password.</para> *************** *** 513,516 **** --- 513,521 ---- they can be used for debugging &krusader;.</para></note> + <para>If &krusader; is installed by an RPM (and if the packager dit use the <filename>krusader.spec</filename> file that + we provide), than &krusader; can be started at <emphasis role="bold"><menuchoice><guimenu>KDE menu</guimenu> + <guimenuitem>Applications</guimenuitem><guimenuitem>File tools</guimenuitem> + <guimenuitem>&krusader;</guimenuitem></menuchoice></emphasis>.</para> + <para><option>--left</option> <replaceable><path></replaceable> start left panel at *************** *** 562,569 **** <title>Configurate &krusader;</title> ! <para> When your run &krusader; for the first time the &krusader; configuration module ! <link linkend="konfigurator">Konfigurator</link> will show up and allow you to ! configure &krusader; as well as detect installed packers and tools. You can always run ! Konfigurator again from the &settingsmenu_lnk;.</para> </sect1> --- 567,574 ---- <title>Configurate &krusader;</title> ! <para>When your run &krusader; for the first time the &krusader; configuration module ! <link linkend="konfigurator">Konfigurator</link> will show up and allow you to ! configure &krusader; as well as detect installed packers and tools. You can always run ! Konfigurator again from the &settingsmenu_lnk;.</para> </sect1> |
From: Frank S. <cod...@us...> - 2004-06-10 19:03:48
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27533 Modified Files: INSTALL Log Message: Handbook 1.40.01 Index: INSTALL =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/INSTALL,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** INSTALL 25 May 2004 20:16:00 -0000 1.4 --- INSTALL 10 Jun 2004 19:03:39 -0000 1.5 *************** *** 1,674 **** ! Compilation and installation ! ============================ ! ! This text is extracted from Krusader Handbook version 1.40.01 (17/05/2004) ! The Krusader Handbook is available in the Help menu of Krusader ! (after installing Krusader). ! ! For the HTML version look at: ! http://krusader.sourceforge.net/handbook/installation.html ! [...1334 lines suppressed...] ! debugging `configure'. ! ! `--help' ! Print a summary of the options to `configure', and exit. ! ! `--quiet' ! `--silent' ! `-q' ! Do not print messages saying which checks are being made. ! ! `--srcdir=DIR' ! Look for the package's source code in directory DIR. Usually ! `configure' can determine that directory automatically. ! ! `--version' ! Print the version of Autoconf used to generate the `configure' ! script, and exit. ! ! `configure' also accepts some other, not widely useful, options. ! |
From: Frank S. <cod...@us...> - 2004-06-10 19:03:12
|
Update of /cvsroot/krusader/krusader_kde3/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27020/doc Modified Files: krusader.1 Log Message: Chinese Index: krusader.1 =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/krusader.1,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** krusader.1 29 Mar 2004 19:47:03 -0000 1.5 --- krusader.1 10 Jun 2004 19:03:03 -0000 1.6 *************** *** 1,3 **** ! .TH krusader 1 "5 February 2004" Linux "Krusader Manpage" .SH "NAME" krusader \- advanced twin-panel file manager and ftp client for KDE 3.x --- 1,3 ---- ! .TH krusader 1 "17 May 2004" Linux "Krusader Manpage" .SH "NAME" krusader \- advanced twin-panel file manager and ftp client for KDE 3.x *************** *** 55,58 **** --- 55,59 ---- .I $KDEDIR/share/apps/krusader/krusaderui.rc or + .I ~/.kde/share/apps/krusader/krusaderui.rc *************** *** 133,143 **** Krusader supports the at this moment following languages: ! .I Bulgarian, English, Czech, Danish, Dutch, French, German, Hungarian, ! .I Italian, Japanese, Polish, Russian, Slovak, Spanish, Swedish. Read the Krusader translation howto if you want translate Krusader in your native language. ! .SH "FAQ'S" ! The latest version of the KRUSADER FAQ'S can be found at the Krusader website. .SH "SEE ALSO" The Krusader Handbook, at the krusader help menu. --- 134,144 ---- Krusader supports the at this moment following languages: ! .I Bulgarian, English, Chinese, Czech, Danish, Dutch, French, German, ! .I Hungarian, Italian, Japanese, Polish, Russian, Slovak, Spanish, Swedish. Read the Krusader translation howto if you want translate Krusader in your native language. ! .SH "FAQ" ! The latest version of the KRUSADER FAQ can be found at the Krusader website. .SH "SEE ALSO" The Krusader Handbook, at the krusader help menu. |
From: Karai C. <ck...@us...> - 2004-06-08 21:18:03
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Dialogs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22056/krusader_kde3/krusader/Dialogs Modified Files: krspwidgets.cpp newftpgui.cpp Log Message: FIXED: the new ftp dialog URLs are saved into a stochastic config group Index: newftpgui.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Dialogs/newftpgui.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** newftpgui.cpp 21 May 2004 16:17:19 -0000 1.6 --- newftpgui.cpp 8 Jun 2004 21:17:30 -0000 1.7 *************** *** 780,783 **** --- 780,784 ---- url, SLOT( addToHistory( const QString& ))); // load the history and completion list after creating the history combo + krConfig->setGroup("Private"); QStringList list = krConfig->readListEntry( "newFTP Completion list" ); url->completionObject()->setItems( list ); Index: krspwidgets.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Dialogs/krspwidgets.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** krspwidgets.cpp 29 Dec 2003 17:27:12 -0000 1.7 --- krspwidgets.cpp 8 Jun 2004 21:17:30 -0000 1.8 *************** *** 146,149 **** --- 146,150 ---- // save the history and completion list when the history combo is // destroyed + krConfig->setGroup("Private"); QStringList list = url->completionObject()->items(); krConfig->writeEntry( "newFTP Completion list", list ); |
From: Karai C. <ck...@us...> - 2004-06-08 21:17:55
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22056/krusader_kde3 Modified Files: ChangeLog Log Message: FIXED: the new ftp dialog URLs are saved into a stochastic config group Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.240 retrieving revision 1.241 diff -C2 -d -r1.240 -r1.241 *** ChangeLog 3 Jun 2004 22:45:11 -0000 1.240 --- ChangeLog 8 Jun 2004 21:17:14 -0000 1.241 *************** *** 1,4 **** --- 1,5 ---- ====================== ADDED: Chinese Simplified translation + FIXED: the new ftp dialog URLs are saved into a stochastic configuration group FIXED: [ 960003 ] Swapped letters in quick-search FIXED: KIO::Slave url redirection handling (e.g. now devices:/ and settings:/ works !) |
From: Karai C. <ck...@us...> - 2004-06-07 17:40:05
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1648/krusader_kde3/krusader/Panel Modified Files: krdetailedview.cpp Log Message: FIXED: consequent space key behaviour Index: krdetailedview.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.cpp,v retrieving revision 1.81 retrieving revision 1.82 diff -C2 -d -r1.81 -r1.82 *** krdetailedview.cpp 31 May 2004 11:09:40 -0000 1.81 --- krdetailedview.cpp 7 Jun 2004 17:39:46 -0000 1.82 *************** *** 464,469 **** } } ! ! void KrDetailedView::slotCurrentChanged( QListViewItem * item ) { if ( !item ) --- 464,469 ---- } } ! ! void KrDetailedView::slotCurrentChanged( QListViewItem * item ) { if ( !item ) *************** *** 775,779 **** KrDetailedViewItem * viewItem = dynamic_cast<KrDetailedViewItem *> ( getCurrentKrViewItem() ); if ( !viewItem || viewItem->name()==".." ) { ! KListView::keyPressEvent( new QKeyEvent( QKeyEvent::KeyPress, Key_Space, 0, 0 ) ); return ; // wrong type, just mark(unmark it) } --- 775,779 ---- KrDetailedViewItem * viewItem = dynamic_cast<KrDetailedViewItem *> ( getCurrentKrViewItem() ); if ( !viewItem || viewItem->name()==".." ) { ! KListView::keyPressEvent( new QKeyEvent( QKeyEvent::KeyPress, Key_Insert, 0, 0 ) ); return ; // wrong type, just mark(unmark it) } *************** *** 794,798 **** // did we succeed to calcSpace? we'll fail if we don't have permissions if ( totalSize == 0 ) { // just mark it, and bail out ! KListView::keyPressEvent( new QKeyEvent( QKeyEvent::KeyPress, Key_Space, 0, 0 ) ); return ; } --- 794,798 ---- // did we succeed to calcSpace? we'll fail if we don't have permissions if ( totalSize == 0 ) { // just mark it, and bail out ! KListView::keyPressEvent( new QKeyEvent( QKeyEvent::KeyPress, Key_Insert, 0, 0 ) ); return ; } *************** *** 800,804 **** viewItem->repaintItem(); } ! KListView::keyPressEvent( new QKeyEvent( QKeyEvent::KeyPress, Key_Space, 0, 0 ) ); } break; --- 800,804 ---- viewItem->repaintItem(); } ! KListView::keyPressEvent( new QKeyEvent( QKeyEvent::KeyPress, Key_Insert, 0, 0 ) ); } break; *************** *** 819,823 **** ( e->key() == Key_Backspace ) || ( e->key() == Key_Down ) || ! ( e->key() == Key_Period ) ) */{ // are we doing quicksearch? if not, send keys to panel if ( _config->readBoolEntry( "Do Quicksearch", _DoQuicksearch ) ) { --- 819,823 ---- ( e->key() == Key_Backspace ) || ( e->key() == Key_Down ) || ! ( e->key() == Key_Period ) ) */{ // are we doing quicksearch? if not, send keys to panel if ( _config->readBoolEntry( "Do Quicksearch", _DoQuicksearch ) ) { |
From: Shie E. <er...@us...> - 2004-06-06 12:32:59
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23527 Modified Files: listpanel.cpp Log Message: fix: when user==root, no need to check permissions on drag'n'drop Index: listpanel.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/listpanel.cpp,v retrieving revision 1.62 retrieving revision 1.63 diff -C2 -d -r1.62 -r1.63 *** listpanel.cpp 12 May 2004 06:22:09 -0000 1.62 --- listpanel.cpp 6 Jun 2004 12:32:51 -0000 1.63 *************** *** 483,487 **** } ! if ( !isWritable ) { e->ignore(); KMessageBox::sorry( 0, i18n( "Can't drop here, no write permissions." ) ); --- 483,487 ---- } ! if ( !isWritable && getuid()!=0 ) { e->ignore(); KMessageBox::sorry( 0, i18n( "Can't drop here, no write permissions." ) ); |
From: Dirk E. <des...@us...> - 2004-06-05 12:12:30
|
Update of /cvsroot/krusader/krusader_kde3/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11750/po Modified Files: dk.po Log Message: krusader-1.40 Index: dk.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/dk.po,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** dk.po 3 Jun 2004 22:43:31 -0000 1.4 --- dk.po 5 Jun 2004 12:12:19 -0000 1.5 *************** *** 12,16 **** "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" ! "PO-Revision-Date: 2004-06-03 23:43+0200\n" "Last-Translator: Anders Bruun Olsen <an...@br...>\n" "Language-Team: Danish\n" --- 12,16 ---- "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-04-26 13:50+0200\n" ! "PO-Revision-Date: 2004-06-04 08:32+0200\n" "Last-Translator: Anders Bruun Olsen <an...@br...>\n" "Language-Team: Danish\n" *************** *** 550,556 **** #: Panel/panelfunc.cpp:303 - #, fuzzy msgid "Moving into archive is disabled" ! msgstr "'Flyt-ind-i-pakkede-filer' er slået fra i Konfigurator!" #: Panel/panelfunc.cpp:312 --- 550,555 ---- #: Panel/panelfunc.cpp:303 msgid "Moving into archive is disabled" ! msgstr "'Flyt-ind-i-pakkede-filer' er slået fra" #: Panel/panelfunc.cpp:312 *************** *** 744,749 **** #: krusader.cpp:207 ! msgid "" ! "Status bar will show basic informations about file below mouse pointer." msgstr "Statuslinien vil vise basis informationer om filen under musepilen." --- 743,747 ---- #: krusader.cpp:207 ! msgid "Status bar will show basic informations about file below mouse pointer." msgstr "Statuslinien vil vise basis informationer om filen under musepilen." *************** *** 1058,1063 **** #: KViewer/krviewer.cpp:353 ! msgid "" ! "The Document has been changed. Do you want to quit loosing the modifications?" msgstr "" "Dokumentet har ændringer der ikke er gemt, ønsker du alligevel at afslutte? " --- 1056,1060 ---- #: KViewer/krviewer.cpp:353 ! msgid "The Document has been changed. Do you want to quit loosing the modifications?" msgstr "" "Dokumentet har ændringer der ikke er gemt, ønsker du alligevel at afslutte? " *************** *** 1590,1597 **** #: MountMan/kmountmangui.cpp:218 ! msgid "" ! "MountMan has an internal error. Please notify the developers. Thank you." ! msgstr "" ! "MountMan har en intern fejl. Underret venligst udviklerne. På forhånd tak." #: MountMan/kmountmangui.cpp:223 --- 1587,1592 ---- #: MountMan/kmountmangui.cpp:218 ! msgid "MountMan has an internal error. Please notify the developers. Thank you." ! msgstr "MountMan har en intern fejl. Underret venligst udviklerne. På forhånd tak." #: MountMan/kmountmangui.cpp:223 *************** *** 2485,2490 **** #: Konfigurator/kggeneral.cpp:64 msgid "Mimetype magic allows better distinction of file types, but is slower" ! msgstr "" ! "Mimetype magi gør det nemmere at skelne mellem filer, men tager længere tid" #: Konfigurator/kggeneral.cpp:70 --- 2480,2484 ---- #: Konfigurator/kggeneral.cpp:64 msgid "Mimetype magic allows better distinction of file types, but is slower" ! msgstr "Mimetype magi gør det nemmere at skelne mellem filer, men tager længere tid" #: Konfigurator/kggeneral.cpp:70 *************** *** 2983,2989 **** #: Konfigurator/kgcolors.cpp:99 Konfigurator/kgcolors.cpp:129 - #, fuzzy msgid "Same as background" ! msgstr "Samme som markeret baggrund" #: Konfigurator/kgcolors.cpp:100 Konfigurator/kgcolors.cpp:130 --- 2977,2982 ---- #: Konfigurator/kgcolors.cpp:99 Konfigurator/kgcolors.cpp:129 msgid "Same as background" ! msgstr "Samme som baggrund" #: Konfigurator/kgcolors.cpp:100 Konfigurator/kgcolors.cpp:130 *************** *** 3000,3006 **** #: Konfigurator/kgcolors.cpp:103 Konfigurator/kgcolors.cpp:133 - #, fuzzy msgid "Same as alt. background" ! msgstr "Samme som markeret baggrund" #: Konfigurator/kgcolors.cpp:104 Konfigurator/kgcolors.cpp:135 --- 2993,2998 ---- #: Konfigurator/kgcolors.cpp:103 Konfigurator/kgcolors.cpp:133 msgid "Same as alt. background" ! msgstr "Samme som alternativ baggrund" #: Konfigurator/kgcolors.cpp:104 Konfigurator/kgcolors.cpp:135 *************** *** 3182,3189 **** #: Konfigurator/kgarchives.cpp:93 ! msgid "" ! "If checked, Krusader will test the archive's intergrity after packing it." ! msgstr "" ! "Hvis markeret tester Krusader den pakkede fils integritet efter pakning." #: Konfigurator/kgarchives.cpp:94 --- 3174,3179 ---- #: Konfigurator/kgarchives.cpp:93 ! msgid "If checked, Krusader will test the archive's intergrity after packing it." ! msgstr "Hvis markeret tester Krusader den pakkede fils integritet efter pakning." #: Konfigurator/kgarchives.cpp:94 *************** *** 3192,3197 **** #: Konfigurator/kgarchives.cpp:94 ! msgid "" ! "Some corrupted archives might cause a crash, therefore testing is suggested" msgstr "" "Visse pakkede filer kan resultere i et crash, derfor foreslås det at teste " --- 3182,3186 ---- #: Konfigurator/kgarchives.cpp:94 ! msgid "Some corrupted archives might cause a crash, therefore testing is suggested" msgstr "" "Visse pakkede filer kan resultere i et crash, derfor foreslås det at teste " *************** *** 3568,3573 **** #: Splitter/combiner.cpp:138 ! msgid "" ! "Validity checking is impossible without a good CRC file. Continue combining?" msgstr "Validitetstjek er umuligt uden en god CRC fil. Fortsæt kombineringen?" --- 3557,3561 ---- #: Splitter/combiner.cpp:138 ! msgid "Validity checking is impossible without a good CRC file. Continue combining?" msgstr "Validitetstjek er umuligt uden en god CRC fil. Fortsæt kombineringen?" *************** *** 4270,4271 **** --- 4258,4260 ---- #~ msgid "Can't find " #~ msgstr "Kan ikke finde " + |
From: Dirk E. <des...@us...> - 2004-06-03 22:45:21
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12950 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.239 retrieving revision 1.240 diff -C2 -d -r1.239 -r1.240 *** ChangeLog 31 May 2004 11:11:25 -0000 1.239 --- ChangeLog 3 Jun 2004 22:45:11 -0000 1.240 *************** *** 2,6 **** ADDED: Chinese Simplified translation FIXED: [ 960003 ] Swapped letters in quick-search ! FIXED: KIO::Slave url redirection handling (e.g. now devices:/ and settings:/ works !) FIXED: [ 962598 ] viewer didn't display XML files FIXED: [ 960595 ] problem with paths containing more '@' characters (FTP proxy hack) --- 2,6 ---- ADDED: Chinese Simplified translation FIXED: [ 960003 ] Swapped letters in quick-search ! FIXED: KIO::Slave url redirection handling (e.g. now devices:/ and settings:/ works !) FIXED: [ 962598 ] viewer didn't display XML files FIXED: [ 960595 ] problem with paths containing more '@' characters (FTP proxy hack) *************** *** 35,38 **** --- 35,39 ---- UPDATED: Bulgarian translation UPDATED: Czech translation + UPDATED: Danish translation UPDATED: Dutch translation UPDATED: French translation |
From: Dirk E. <des...@us...> - 2004-06-03 22:43:41
|
Update of /cvsroot/krusader/krusader_kde3/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12228/po Modified Files: dk.po Log Message: krusader-1.40 (needs minor update) Index: dk.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/dk.po,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** dk.po 22 May 2004 15:09:43 -0000 1.3 --- dk.po 3 Jun 2004 22:43:31 -0000 1.4 *************** *** 4,9 **** # Copyright (C) 2000-2003, Shie Erlich, Rafi Yanai # Copyright (C) 2004, Krusader Krew - # Anders Bruun Olsen <an...@br...>, 2001, 2004. # Proofread by Christian Sonne <fre...@ge...>, 2004. # msgid "" --- 4,9 ---- # Copyright (C) 2000-2003, Shie Erlich, Rafi Yanai # Copyright (C) 2004, Krusader Krew # Proofread by Christian Sonne <fre...@ge...>, 2004. [...4917 lines suppressed...] ! #~ msgid "left" ! #~ msgstr "venstre" ! #~ msgid "out of" ! #~ msgstr "ud af" ! #~ msgid "right" ! #~ msgstr "højre" ! ! #~ msgid "selected" ! #~ msgstr "de markerede" ! ! #~ msgid "trash " ! #~ msgstr "Slettede filer " ! ! #~ msgid "Permission*" ! #~ msgstr "Rettigheder*" #~ msgid "Can't read" |
From: Rafi Y. <ya...@us...> - 2004-06-01 07:23:33
|
Update of /cvsroot/krusader/krusader_kde3/krusader/VFS In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12070/krusader/VFS Modified Files: ftp_vfs.cpp Log Message: Removed debug code (thanx Csaba) Index: ftp_vfs.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/ftp_vfs.cpp,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** ftp_vfs.cpp 30 May 2004 14:43:20 -0000 1.29 --- ftp_vfs.cpp 1 Jun 2004 07:23:24 -0000 1.30 *************** *** 88,93 **** { symDest = kfi.linkDest(); ! if ( kfi.isDir() || mime.contains("directory") ); ! perm[0] = 'd'; } --- 88,92 ---- { symDest = kfi.linkDest(); ! if ( kfi.isDir() || mime.contains("directory") ) perm[0] = 'd'; } |
From: Shie E. <er...@us...> - 2004-05-31 11:11:36
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9976 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.238 retrieving revision 1.239 diff -C2 -d -r1.238 -r1.239 *** ChangeLog 30 May 2004 14:49:13 -0000 1.238 --- ChangeLog 31 May 2004 11:11:25 -0000 1.239 *************** *** 1,5 **** ====================== ADDED: Chinese Simplified translation ! FIXED: KIO::Slave url redirection handling (e.g. now devices:/ and settings:/ works !) FIXED: [ 962598 ] viewer didn't display XML files FIXED: [ 960595 ] problem with paths containing more '@' characters (FTP proxy hack) --- 1,6 ---- ====================== ADDED: Chinese Simplified translation ! FIXED: [ 960003 ] Swapped letters in quick-search ! FIXED: KIO::Slave url redirection handling (e.g. now devices:/ and settings:/ works !) FIXED: [ 962598 ] viewer didn't display XML files FIXED: [ 960595 ] problem with paths containing more '@' characters (FTP proxy hack) |
From: Shie E. <er...@us...> - 2004-05-31 11:10:38
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9806/krusader/Panel Modified Files: krdetailedview.h Log Message: [ 960003 ] Swapped letters in quick-search Index: krdetailedview.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.h,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** krdetailedview.h 18 Apr 2004 19:25:59 -0000 1.25 --- krdetailedview.h 31 May 2004 11:10:28 -0000 1.26 *************** *** 112,116 **** void handleContextMenu( QListViewItem*, const QPoint&, int ); void inplaceRenameFinished( QListViewItem *it, int col ); - void delayedQuickSearchEventHandling(); void quickSearch(const QString &, int = 0); void stopQuickSearch(QKeyEvent*); --- 112,115 ---- *************** *** 132,136 **** QString _nameInKConfig; bool &_left; - QKeyEvent * delayedQuickSearchEvent; }; --- 131,134 ---- |
From: Shie E. <er...@us...> - 2004-05-31 11:09:53
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9600/krusader/Panel Modified Files: krdetailedview.cpp Log Message: [ 960003 ] Swapped letters in quick-search Index: krdetailedview.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.cpp,v retrieving revision 1.80 retrieving revision 1.81 diff -C2 -d -r1.80 -r1.81 *** krdetailedview.cpp 23 May 2004 20:08:35 -0000 1.80 --- krdetailedview.cpp 31 May 2004 11:09:40 -0000 1.81 *************** *** 81,85 **** KrDetailedView::KrDetailedView( QWidget *parent, bool &left, KConfig *cfg, const char *name ) : KListView( parent, name ), KrView( cfg ), _focused( false ), _currDragItem( 0L ), ! _nameInKConfig( QString( "KrDetailedView" ) + QString( ( left ? "Left" : "Right" ) ) ), _left( left ), delayedQuickSearchEvent( 0 ) { if ( ColumnName[ 0 ].isEmpty() ) { --- 81,85 ---- KrDetailedView::KrDetailedView( QWidget *parent, bool &left, KConfig *cfg, const char *name ) : KListView( parent, name ), KrView( cfg ), _focused( false ), _currDragItem( 0L ), ! _nameInKConfig( QString( "KrDetailedView" ) + QString( ( left ? "Left" : "Right" ) ) ), _left( left ) { if ( ColumnName[ 0 ].isEmpty() ) { *************** *** 834,840 **** } // now, send the key to the quicksearch ! //krApp->mainView->activePanel->quickSearch->myKeyPressEvent( e ); ! delayedQuickSearchEvent = new QKeyEvent( *e ); ! QTimer::singleShot ( 0, this, SLOT( delayedQuickSearchEventHandling() ) ); } } else --- 834,838 ---- } // now, send the key to the quicksearch ! krApp->mainView->activePanel->quickSearch->myKeyPressEvent( e ); } } else *************** *** 928,939 **** } - void KrDetailedView::delayedQuickSearchEventHandling() { - if ( delayedQuickSearchEvent ) { - krApp->mainView->activePanel->quickSearch->myKeyPressEvent( delayedQuickSearchEvent ); - delete delayedQuickSearchEvent; - delayedQuickSearchEvent = 0; - } - } - void KrDetailedView::quickSearch( const QString & str, int direction ) { KrViewItem * item = getCurrentKrViewItem(); --- 926,929 ---- |
From: Rafi Y. <ya...@us...> - 2004-05-30 14:52:33
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Splitter In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9128/krusader/Splitter Modified Files: splittergui.cpp Log Message: changed isMalfored to !isValid since the former is deprecated Index: splittergui.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Splitter/splittergui.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** splittergui.cpp 27 Dec 2003 16:50:17 -0000 1.2 --- splittergui.cpp 30 May 2004 14:52:19 -0000 1.3 *************** *** 187,191 **** void SplitterGUI::splitPressed() { ! if( vfs::fromPathOrURL( urlReq->url() ).isMalformed() ) { KMessageBox::error( this, i18n("The directory path URL is malformed!") ); --- 187,191 ---- void SplitterGUI::splitPressed() { ! if( !vfs::fromPathOrURL( urlReq->url() ).isValid() ) { KMessageBox::error( this, i18n("The directory path URL is malformed!") ); |
From: Rafi Y. <ya...@us...> - 2004-05-30 14:49:22
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8524 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.237 retrieving revision 1.238 diff -C2 -d -r1.237 -r1.238 *** ChangeLog 30 May 2004 14:20:44 -0000 1.237 --- ChangeLog 30 May 2004 14:49:13 -0000 1.238 *************** *** 1,5 **** ====================== ADDED: Chinese Simplified translation ! FIXED: [ 962598 ] viewer didn't display XML files FIXED: [ 960595 ] problem with paths containing more '@' characters (FTP proxy hack) FIXED: [ 957145 ] krusader closes editor without asking --- 1,6 ---- ====================== ADDED: Chinese Simplified translation ! FIXED: KIO::Slave url redirection handling (e.g. now devices:/ and settings:/ works !) ! FIXED: [ 962598 ] viewer didn't display XML files FIXED: [ 960595 ] problem with paths containing more '@' characters (FTP proxy hack) FIXED: [ 957145 ] krusader closes editor without asking |