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-07-27 22:33:31
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7007/krusader Modified Files: krslots.cpp Log Message: code cleanup: remove compiler warnings Index: krslots.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krslots.cpp,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** krslots.cpp 23 Jul 2004 23:41:18 -0000 1.55 --- krslots.cpp 27 Jul 2004 22:33:22 -0000 1.56 *************** *** 475,479 **** void KRslots::configKeys(){ ! KKeyDialog::configureKeys(krApp->actionCollection(),"krusaderui.rc"); } --- 475,479 ---- void KRslots::configKeys(){ ! KKeyDialog::configure(krApp->actionCollection(), 0, true); } *************** *** 749,753 **** void KRslots::updatePopupPanel(QListViewItem *it) { // which panel to display on? ! ListPanel *lp; if (ACTIVE_PANEL->popup->isHidden() && ACTIVE_PANEL->otherPanel->popup->isHidden()) return; --- 749,753 ---- void KRslots::updatePopupPanel(QListViewItem *it) { // which panel to display on? ! ListPanel *lp = 0; if (ACTIVE_PANEL->popup->isHidden() && ACTIVE_PANEL->otherPanel->popup->isHidden()) return; |
From: Shie E. <er...@us...> - 2004-07-27 22:33:02
|
Update of /cvsroot/krusader/krusader_kde3/krusader/MountMan In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6889/krusader/MountMan Modified Files: kmountmangui.cpp Log Message: code cleanup: remove compiler warnings Index: kmountmangui.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/MountMan/kmountmangui.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** kmountmangui.cpp 30 Dec 2003 20:39:32 -0000 1.8 --- kmountmangui.cpp 27 Jul 2004 22:32:53 -0000 1.9 *************** *** 48,51 **** --- 48,52 ---- #include <kdebug.h> #include <qcursor.h> + #include <kguiitem.h> using namespace MountMan; *************** *** 57,61 **** connect((QObject*)&krMtMan,SIGNAL(updated()),this,SLOT(updateList())); // <> ! setButtonOKText(i18n("&Close"),i18n("Close the Mount.Man window."),0); showButtonApply(false); showButtonCancel(false); setPlainCaption(i18n("MountMan - Your Mount-Manager")); --- 58,62 ---- connect((QObject*)&krMtMan,SIGNAL(updated()),this,SLOT(updateList())); // <> ! setButtonOK(i18n("&Close")); showButtonApply(false); showButtonCancel(false); setPlainCaption(i18n("MountMan - Your Mount-Manager")); |
From: Shie E. <er...@us...> - 2004-07-27 22:32:35
|
Update of /cvsroot/krusader/krusader_kde3/krusader/MountMan In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6775/krusader/MountMan Modified Files: kmountman.cpp Log Message: code cleanup: remove compiler warnings Index: kmountman.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/MountMan/kmountman.cpp,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** kmountman.cpp 22 Jul 2004 09:09:19 -0000 1.28 --- kmountman.cpp 27 Jul 2004 22:32:26 -0000 1.29 *************** *** 329,333 **** tempFile->setAutoDelete( true ); dfProc.clearArguments(); ! dfProc.setExecutable( KrServices::fullPathName( "df" ) ); #if defined(BSD) --- 329,333 ---- tempFile->setAutoDelete( true ); dfProc.clearArguments(); ! dfProc << KrServices::fullPathName( "df" ); #if defined(BSD) |
From: Shie E. <er...@us...> - 2004-07-27 22:32:10
|
Update of /cvsroot/krusader/krusader_kde3/krusader/VFS In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6701/krusader/VFS Modified Files: krpermhandler.cpp Log Message: code cleanup: remove compiler warnings Index: krpermhandler.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/krpermhandler.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** krpermhandler.cpp 23 Jul 2004 20:44:54 -0000 1.13 --- krpermhandler.cpp 27 Jul 2004 22:32:01 -0000 1.14 *************** *** 264,267 **** --- 264,269 ---- } + #if 0 + // ===> Defined in the code but never used. commented our to drop compiler warnings static QString round(int i) { QString t; *************** *** 270,273 **** --- 272,276 ---- return t; } + #endif QString KRpermHandler::parseSize(KIO::filesize_t val){ |
From: Shie E. <er...@us...> - 2004-07-27 22:31:39
|
Update of /cvsroot/krusader/krusader_kde3/krusader/VFS In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6574/krusader/VFS Modified Files: krarchandler.cpp Log Message: code cleanup: remove compiler warnings Index: krarchandler.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/krarchandler.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** krarchandler.cpp 24 May 2004 07:27:49 -0000 1.8 --- krarchandler.cpp 27 Jul 2004 22:31:28 -0000 1.9 *************** *** 35,39 **** #include <klocale.h> #include <kmessagebox.h> ! #include <klineeditdlg.h> // Krusader includes #include "krarchandler.h" --- 35,39 ---- #include <klocale.h> #include <kmessagebox.h> ! #include <kinputdialog.h> // Krusader includes #include "krarchandler.h" *************** *** 358,363 **** if ( password.lower().contains( "password" ) ) { bool ok; ! password = KLineEditDlg::getText( ! "This archive is encrypted, please supply the password:", "", &ok, krApp ); if ( !ok ) password = "123"; // no way someone will use this pass --- 358,363 ---- if ( password.lower().contains( "password" ) ) { bool ok; ! password = KInputDialog::getText(i18n("Password Needed"), ! i18n("This archive is encrypted, please supply the password:"), "", &ok, krApp ); if ( !ok ) password = "123"; // no way someone will use this pass |
From: Shie E. <er...@us...> - 2004-07-27 22:31:09
|
Update of /cvsroot/krusader/krusader_kde3/krusader/UserAction In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6459/krusader/UserAction Modified Files: kraction.cpp Log Message: code cleanup: remove compiler warnings Index: kraction.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/UserAction/kraction.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** kraction.cpp 23 Jul 2004 00:03:19 -0000 1.1 --- kraction.cpp 27 Jul 2004 22:31:00 -0000 1.2 *************** *** 20,26 **** #include <kaction.h> #include <kurl.h> ! #include "kraction.h" - #include "expander.h" #include "useractionproperties.h" --- 20,25 ---- #include <kaction.h> #include <kurl.h> ! #include <kmessagebox.h> #include "kraction.h" #include "expander.h" #include "useractionproperties.h" *************** *** 34,41 **** KDialogBase( parent, 0, false, caption, KDialogBase::Ok | KDialogBase::Cancel, KDialogBase::Cancel ) { ! setButtonOKText( "Close", i18n( "Close this window" ) ); enableButtonOK( false ); // disable the close button, until the process finishes ! setButtonCancelText( "Kill", i18n( "Kill the running process" ) ); QVBox *page = makeVBoxMainWidget(); --- 33,40 ---- KDialogBase( parent, 0, false, caption, KDialogBase::Ok | KDialogBase::Cancel, KDialogBase::Cancel ) { ! setButtonOK( i18n( "Close" ) ); enableButtonOK( false ); // disable the close button, until the process finishes ! setButtonCancel( KGuiItem(i18n("Kill"), i18n( "Kill the running process" )) ); QVBox *page = makeVBoxMainWidget(); *************** *** 61,69 **** } ! void KrActionProcDlg::addStderr( KProcess *proc, char *buffer, int buflen ) { _stderr->append( QString::fromLatin1( buffer, buflen ) ); } ! void KrActionProcDlg::addStdout( KProcess *proc, char *buffer, int buflen ) { _stdout->append( QString::fromLatin1( buffer, buflen ) ); } --- 60,68 ---- } ! void KrActionProcDlg::addStderr( KProcess *, char *buffer, int buflen ) { _stderr->append( QString::fromLatin1( buffer, buflen ) ); } ! void KrActionProcDlg::addStdout( KProcess *, char *buffer, int buflen ) { _stdout->append( QString::fromLatin1( buffer, buflen ) ); } *************** *** 90,94 **** } - #include <kmessagebox.h> bool KrActionProc::start( QStringList cmdLineList ) { _proc->clearArguments(); --- 89,92 ---- *************** *** 130,134 **** } ! void KrActionProc::processExited( KProcess *proc ) { // enable the 'close' button on the dialog (if active), disable 'kill' button if ( _output ) { --- 128,132 ---- } ! void KrActionProc::processExited( KProcess * ) { // enable the 'close' button on the dialog (if active), disable 'kill' button if ( _output ) { |
From: Shie E. <er...@us...> - 2004-07-27 22:30:45
|
Update of /cvsroot/krusader/krusader_kde3/krusader/UserMenu In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6360/krusader/UserMenu Modified Files: usermenu.cpp Log Message: code cleanup: remove compiler warnings Index: usermenu.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/UserMenu/usermenu.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** usermenu.cpp 23 Jul 2004 00:03:19 -0000 1.17 --- usermenu.cpp 27 Jul 2004 22:30:32 -0000 1.18 *************** *** 43,47 **** ////////////////////////////////////////////////////////////////////////////////////////////////////// ! UserMenuGui::UserMenuGui( UserMenu *menu, QWidget * parent ) : KPopupMenu( parent ) { createMenu(); --- 43,47 ---- ////////////////////////////////////////////////////////////////////////////////////////////////////// ! UserMenuGui::UserMenuGui( UserMenu *, QWidget * parent ) : KPopupMenu( parent ) { createMenu(); |
From: Dirk E. <des...@us...> - 2004-07-27 21:36:05
|
Update of /cvsroot/krusader/krusader_kde3/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27397/po Modified Files: de.po krusader.pot Log Message: krusader-1.50-cvs Index: krusader.pot =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/krusader.pot,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** krusader.pot 25 Jul 2004 15:36:12 -0000 1.14 --- krusader.pot 27 Jul 2004 21:35:55 -0000 1.15 *************** *** 9,13 **** "Project-Id-Version: Krusader 1.40\n" "Report-Msgid-Bugs-To: \n" ! "POT-Creation-Date: 2004-07-25 15:22+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" --- 9,13 ---- "Project-Id-Version: Krusader 1.40\n" "Report-Msgid-Bugs-To: \n" ! "POT-Creation-Date: 2004-07-27 23:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" [...1293 lines suppressed...] msgid "" "Cound't import all actions because of name-conflicts. Check the action-list " --- 3687,3703 ---- msgstr "" ! #: Konfigurator/kguseractions.cpp:203 msgid "Remove this action?" msgstr "" ! #: Konfigurator/kguseractions.cpp:253 msgid "The file you've choosen don't seem to be a valid action-file." msgstr "" ! #: Konfigurator/kguseractions.cpp:261 msgid "No actions found in this file." msgstr "" ! #: Konfigurator/kguseractions.cpp:289 msgid "" "Cound't import all actions because of name-conflicts. Check the action-list " Index: de.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/de.po,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** de.po 25 Jul 2004 15:36:10 -0000 1.15 --- de.po 27 Jul 2004 21:35:55 -0000 1.16 *************** *** 11,16 **** "Project-Id-Version: krusader-1.40\n" "Report-Msgid-Bugs-To: \n" ! "POT-Creation-Date: 2004-07-25 15:22+0200\n" ! "PO-Revision-Date: 2004-07-25 17:31+0200\n" "Last-Translator: Dirk Eschler <des...@us...>\n" "Language-Team: German\n" --- 11,16 ---- "Project-Id-Version: krusader-1.40\n" "Report-Msgid-Bugs-To: \n" ! "POT-Creation-Date: 2004-07-27 23:04+0200\n" [...1399 lines suppressed...] ! #: Konfigurator/kguseractions.cpp:289 msgid "" "Cound't import all actions because of name-conflicts. Check the action-list " *************** *** 3834,3839 **** "Konfigurator now!" msgstr "" ! "Aufgrund von Namenskonflikten konnten nicht alle Aktionen importiert werden. Ãberprüfen Sie die Aktionsliste auf der linken Seite um sie zu beheben.\n" ! "Bitte beachten Sie, dass die Aktionen nicht importiert werden, falls Sie den Konfigurator jetzt schlieÃen!" #: krslots.cpp:106 --- 3874,3881 ---- "Konfigurator now!" msgstr "" ! "Aufgrund von Namenskonflikten konnten nicht alle Aktionen importiert werden. " ! "Ãberprüfen Sie die Aktionsliste auf der linken Seite um sie zu beheben.\n" ! "Bitte beachten Sie, dass die Aktionen nicht importiert werden, falls Sie den " ! "Konfigurator jetzt schlieÃen!" #: krslots.cpp:106 |
From: Dirk E. <des...@us...> - 2004-07-27 21:26:38
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25493/krusader/Panel Modified Files: krcalcspacedialog.cpp Log Message: Added missing i18n() Index: krcalcspacedialog.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krcalcspacedialog.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** krcalcspacedialog.cpp 15 Mar 2004 14:40:29 -0000 1.4 --- krcalcspacedialog.cpp 27 Jul 2004 21:26:29 -0000 1.5 *************** *** 93,97 **** KrCalcSpaceDialog::KrCalcSpaceDialog(QWidget *parent, ListPanel * files, const QStringList & items, bool autoclose) : ! KDialogBase(parent, "KrCalcSpaceDialog", true, "Calculate Occupied Space", Ok|Cancel), m_autoClose(autoclose), m_canceled(false), m_timerCounter(0){ // the dialog: The Ok button is hidden until it is needed --- 93,97 ---- KrCalcSpaceDialog::KrCalcSpaceDialog(QWidget *parent, ListPanel * files, const QStringList & items, bool autoclose) : ! KDialogBase(parent, "KrCalcSpaceDialog", true, i18n("Calculate Occupied Space"), Ok|Cancel), m_autoClose(autoclose), m_canceled(false), m_timerCounter(0){ // the dialog: The Ok button is hidden until it is needed |
From: Dirk E. <des...@us...> - 2004-07-27 21:26:38
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Konfigurator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25493/krusader/Konfigurator Modified Files: kglookfeel.cpp Log Message: Added missing i18n() Index: kglookfeel.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Konfigurator/kglookfeel.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** kglookfeel.cpp 27 Jul 2004 17:00:55 -0000 1.14 --- kglookfeel.cpp 27 Jul 2004 21:26:29 -0000 1.15 *************** *** 197,201 **** connect( panelToolbarActive->find( "Panel Toolbar visible" ), SIGNAL( stateChanged( int ) ), this, SLOT( slotEnablePanelToolbar() ) ); ! QGroupBox * panelToolbarGrp = createFrame("Panel Toolbar buttons", tab_4, "panelToolbarGrp"); QGridLayout * panelToolbarGrid = createGridLayout( panelToolbarGrp->layout() ); --- 197,201 ---- connect( panelToolbarActive->find( "Panel Toolbar visible" ), SIGNAL( stateChanged( int ) ), this, SLOT( slotEnablePanelToolbar() ) ); ! QGroupBox * panelToolbarGrp = createFrame( i18n( "Panel Toolbar buttons" ), tab_4, "panelToolbarGrp"); QGridLayout * panelToolbarGrid = createGridLayout( panelToolbarGrp->layout() ); |
From: Karai C. <ck...@us...> - 2004-07-27 19:22:51
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv386/krusader_kde3/krusader Modified Files: paneltabbar.cpp paneltabbar.h Log Message: ADDED: tooltips for squeezed tabs Index: paneltabbar.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/paneltabbar.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** paneltabbar.cpp 14 Apr 2004 13:00:44 -0000 1.7 --- paneltabbar.cpp 27 Jul 2004 19:22:42 -0000 1.8 *************** *** 76,80 **** // make sure all tabs lengths are correct for (int i=0; i<count(); i++) ! tabAt(i)->setText(squeeze(dynamic_cast<PanelTab*>(tabAt(i))->panel->virtualPath)); layoutTabs(); setCurrentTab(newId); --- 76,80 ---- // make sure all tabs lengths are correct for (int i=0; i<count(); i++) ! tabAt(i)->setText(squeeze(dynamic_cast<PanelTab*>(tabAt(i))->panel->virtualPath, i)); layoutTabs(); setCurrentTab(newId); *************** *** 98,102 **** for (int i=0; i<count(); i++) ! tabAt(i)->setText(squeeze(dynamic_cast<PanelTab*>(tabAt(i))->panel->virtualPath)); layoutTabs(); --- 98,102 ---- for (int i=0; i<count(); i++) ! tabAt(i)->setText(squeeze(dynamic_cast<PanelTab*>(tabAt(i))->panel->virtualPath, i)); layoutTabs(); *************** *** 117,121 **** for (int i=0; i<count(); i++) { if (dynamic_cast<PanelTab*>(tabAt(i))->panel == panel) { ! tabAt(i)->setText(squeeze(panel->virtualPath)); break; } --- 117,121 ---- for (int i=0; i<count(); i++) { if (dynamic_cast<PanelTab*>(tabAt(i))->panel == panel) { ! tabAt(i)->setText(squeeze(panel->virtualPath,i)); break; } *************** *** 132,136 **** } ! QString PanelTabBar::squeeze(QString text) { QFontMetrics fm(fontMetrics()); --- 132,136 ---- } ! QString PanelTabBar::squeeze(QString text, int index) { QFontMetrics fm(fontMetrics()); *************** *** 173,176 **** --- 173,179 ---- } + if( index >= 0 ) + setToolTip( tabAt(index)->identifier(), text ); + if (letters < 5) { // too few letters added -> we give up squeezing *************** *** 180,191 **** return squeezedText; } - - QToolTip::add( this, text ); - } else { return text; - - QToolTip::remove( this ); - QToolTip::hide(); }; } --- 183,191 ---- return squeezedText; } } else { + if( index >= 0 ) + removeToolTip( tabAt(index)->identifier() ); + return text; }; } Index: paneltabbar.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/paneltabbar.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** paneltabbar.h 14 Apr 2004 13:04:57 -0000 1.6 --- paneltabbar.h 27 Jul 2004 19:22:42 -0000 1.7 *************** *** 81,85 **** void mousePressEvent( QMouseEvent* ); void insertAction( KAction* ); ! QString squeeze(QString text); virtual void dragEnterEvent(QDragEnterEvent *); virtual void dragMoveEvent(QDragMoveEvent *); --- 81,85 ---- void mousePressEvent( QMouseEvent* ); void insertAction( KAction* ); ! QString squeeze(QString text, int index=-1); virtual void dragEnterEvent(QDragEnterEvent *); virtual void dragMoveEvent(QDragMoveEvent *); |
From: Karai C. <ck...@us...> - 2004-07-27 19:22:51
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv386/krusader_kde3 Modified Files: ChangeLog Log Message: ADDED: tooltips for squeezed tabs Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.263 retrieving revision 1.264 diff -C2 -d -r1.263 -r1.264 *** ChangeLog 26 Jul 2004 22:21:25 -0000 1.263 --- ChangeLog 27 Jul 2004 19:22:42 -0000 1.264 *************** *** 1,3 **** --- 1,4 ---- ====================== + ADDED: tooltips for squeezed tabs ADDED: sync-browse mode (if on, a directory-change in the active is also performed in the inactive panel) ADDED: beta-state incremental refresh. test it with fam enabled! |
From: Jonas B. <jb...@us...> - 2004-07-27 17:50:15
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13637 Modified Files: CVSNEWS Log Message: Moved syncBrowseButton to the panel-level toolbar Index: CVSNEWS =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/CVSNEWS,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** CVSNEWS 27 Jul 2004 11:35:04 -0000 1.1 --- CVSNEWS 27 Jul 2004 17:50:06 -0000 1.2 *************** *** 4,8 **** Sync-browsing: ! With a little toggle-button unter the panels scrollbar the syncbrowse-mode is de-/activated. when active, each directory-change in the specific panel is performed in the other too. --- 4,8 ---- Sync-browsing: ! With a little toggle-button in the panel-level toolbar the syncbrowse-mode is de-/activated. when active, each directory-change in the specific panel is performed in the other too. |
From: Jonas B. <jb...@us...> - 2004-07-27 17:01:16
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3550/krusader/Panel Modified Files: listpanel.cpp Log Message: Moved syncBrowseButton to the panel-level toolbar Index: listpanel.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/listpanel.cpp,v retrieving revision 1.74 retrieving revision 1.75 diff -C2 -d -r1.74 -r1.75 *** listpanel.cpp 26 Jul 2004 22:21:17 -0000 1.74 --- listpanel.cpp 27 Jul 2004 17:00:56 -0000 1.75 *************** *** 144,150 **** connect( totals, SIGNAL( clicked() ), this, SLOT( slotFocusOnMe() ) ); - // ... creates the button for sync-browsing - syncBrowseButton = new SyncBrowseButton( this ); - // a quick button to open the popup panel popupBtn = new QToolButton( this, "popupbtn" ); --- 144,147 ---- *************** *** 155,159 **** totalsLayout->addWidget(totals); totalsLayout->addWidget(popupBtn); - totalsLayout->addWidget(syncBrowseButton); quickSearch = new KrQuickSearch( this ); --- 152,155 ---- *************** *** 204,207 **** --- 200,206 ---- connect( cdRootButton, SIGNAL( clicked() ), this, SLOT( slotFocusAndCDRoot() ) ); + // ... creates the button for sync-browsing + syncBrowseButton = new SyncBrowseButton( hbox ); + setPanelToolbar(); *************** *** 306,309 **** --- 305,313 ---- else origin->button() ->hide(); + + if ( panelToolBarVisible && ( krConfig->readBoolEntry( "SyncBrowse Button Visible", _syncBrowseButton ) ) ) + syncBrowseButton->show(); + else + syncBrowseButton->hide(); } |
From: Jonas B. <jb...@us...> - 2004-07-27 17:01:16
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Konfigurator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3550/krusader/Konfigurator Modified Files: kglookfeel.cpp Log Message: Moved syncBrowseButton to the panel-level toolbar Index: kglookfeel.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Konfigurator/kglookfeel.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** kglookfeel.cpp 17 Jun 2004 14:44:05 -0000 1.13 --- kglookfeel.cpp 27 Jul 2004 17:00:55 -0000 1.14 *************** *** 208,215 **** {"Look&Feel", "Home Button Visible", _cdHome, i18n( "Home button (~) visible" ), true , ""}, {"Look&Feel", "Root Button Visible", _cdRoot, i18n( "Root button (/) visible" ), true , ""}, }; ! pnlcbs = createCheckBoxGroup(1, 0, panelToolbarCheckboxes, 5, panelToolbarGrp, "panelToolbarChecks"); --- 208,216 ---- {"Look&Feel", "Home Button Visible", _cdHome, i18n( "Home button (~) visible" ), true , ""}, {"Look&Feel", "Root Button Visible", _cdRoot, i18n( "Root button (/) visible" ), true , ""}, + {"Look&Feel", "SyncBrowse Button Visible", _syncBrowseButton, i18n( "Toggle-button for synchron-browsing visible" ), true , ""}, }; ! pnlcbs = createCheckBoxGroup(1, 0, panelToolbarCheckboxes, 6, panelToolbarGrp, "panelToolbarChecks"); |
From: Jonas B. <jb...@us...> - 2004-07-27 17:01:06
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3550/krusader Modified Files: defaults.h Log Message: Moved syncBrowseButton to the panel-level toolbar Index: defaults.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/defaults.h,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** defaults.h 22 Mar 2004 06:15:47 -0000 1.12 --- defaults.h 27 Jul 2004 17:00:57 -0000 1.13 *************** *** 95,98 **** --- 95,100 ---- // Open directory is turned on #define _Open true + // syncBrowseButton is turned on + #define _syncBrowseButton true // Use the default colors of KDE #define _KDEDefaultColors true |
From: Jonas B. <jb...@us...> - 2004-07-27 11:35:14
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6051 Added Files: CVSNEWS Log Message: introducing CVSNEWS, as discussed in forum/mailinglist --- NEW FILE: CVSNEWS --- This file is only itended for the CVS. It should contain a brief description of new features; in some way an extension to the changelog. Sync-browsing: With a little toggle-button unter the panels scrollbar the syncbrowse-mode is de-/activated. when active, each directory-change in the specific panel is performed in the other too. User-actions: With the useraction-system the user can make its own actions on files in the panel or to access krusader-internal functions with parameter directly using placeholder. The actions integrate seamless into KDE's action-system, so the std. edit-toolbar/shortcut-dialogs can will show/manipulate the useractions too. The useractions are stored in ~/.kde/share/apps/krusader/useraction.xml (the file-structure is ducomentated in doxygen-headers of UserActionXML) Useractions can be edit/add/im-/export using a new Konfigurator-module (although I plan to move all action-related to a new ActionMan. for more info see http://www.jonas-baehr.de/forum/Krusader-ideas.txt) Currently theese placeholder are implemented (for details see UserAction/expander.cpp or doxygen): Path replaced by the panels path Count replaced by the number of <first parameter> Filter replaced by the panels filter-mask Current replaced bythe current item List replaced by a list of all <first paremeter> Select manipulates the selection in a panel Bookmark changes the panels's path to <first parameter> Ask asks the user for a some text and is replaced by the answer Clipboard manipulates the clipboard A GUI-based helper for placholder-adding is provided. |
From: Dirk E. <des...@us...> - 2004-07-27 09:19:18
|
Update of /cvsroot/krusader/krusader_kde3/doc/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17185/doc/en Modified Files: using-krusader.sgml Log Message: handbook should compile again Index: using-krusader.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/using-krusader.sgml,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** using-krusader.sgml 10 Jun 2004 19:04:38 -0000 1.14 --- using-krusader.sgml 27 Jul 2004 09:19:09 -0000 1.15 *************** *** 41,46 **** <listitem><para>The <link linkend="commands">Menu Bar</link> that has a chapter of its own.</para> </listitem> ! <listitem><para>The <emphasis role="bold">Status Bar</emphasis> which the only thing worth mentioning about ! it is that it shows the properties of the file currently under the mouse cursor.</para> </listitem> </itemizedlist> --- 41,46 ---- <listitem><para>The <link linkend="commands">Menu Bar</link> that has a chapter of its own.</para> </listitem> ! <listitem><para>The <emphasis role="bold">Status Bar</emphasis> which the only thing worth ! mentioning about it is that it shows the properties of the current file that has the focus.</para> </listitem> </itemizedlist> *************** *** 80,84 **** from the <guilabel>menu-bar</guilabel> or <guilabel>toolbar</guilabel> then usually the command will act on the selected files/directories in the active panel and redirect the result to the inactive one. ! You can switch between panels using the <keycap>Tab</keycap> key or by clicking on the origin button. Not all combinations of panels are allowed, you can only choose from the following combinations: (list,list),(list,tree),(tree,list),(list,quickview),(quickview,list). --- 80,85 ---- from the <guilabel>menu-bar</guilabel> or <guilabel>toolbar</guilabel> then usually the command will act on the selected files/directories in the active panel and redirect the result to the inactive one. ! You can switch between panels using the 	 key or by clicking on the ! <guilabel>Information or Totals labels</guilabel>. Not all combinations of panels are allowed, you can only choose from the following combinations: (list,list),(list,tree),(tree,list),(list,quickview),(quickview,list). *************** *** 87,110 **** </para> - <para>Some useful panel &keybindigs_lnk;: - <itemizedlist> - <listitem><para><keycombo action="simul">&Ctrl;<keycap>r</keycap></keycombo> will refresh the panel.</para> - </listitem> - <listitem><para><keycombo action="simul">&Ctrl;<keycap>Left arrow</keycap></keycombo> or - <keycombo action="simul">&Ctrl;<keycap>Right arrow</keycap></keycombo> - <itemizedlist> - <listitem><para>on a file: the inactive panel gets the same path as the active panel.</para> - </listitem> - <listitem><para>on a directory: refreshes the inactive panel with the contents of the directory - of the active panel.</para> - </listitem> - </itemizedlist> - </para></listitem> - <listitem><para><keycombo action="simul">&Ctrl;<keycap>Backspace</keycap></keycombo> - jumps to the root directory.</para> - </listitem> - </itemizedlist> - </para> - <screenshot><screeninfo>List Panel</screeninfo><mediaobject> <imageobject><imagedata fileref="listpanel.png" format="PNG"/></imageobject> --- 88,91 ---- *************** *** 119,131 **** This is the default panel and the one you'll probably use most of the time. This panel shows the contents of one directory which can be local (part of your mounted file systems), remote (accessed via &FTP; or Samba) ! or inside an archive. The following items are available: <itemizedlist> ! <listitem><para><emphasis><guibutton>Origin Button</guibutton></emphasis> : tells where the panel is currently pointing to. If the path where the panel is pointing to is too long, it will be shortened and a ".." will replace the middle part. Also when entering archives the path will consist of the ! "archive name:/directory/archive_filename/the directory inside the archive".</para></listitem> ! <listitem><para><emphasis><guibutton>Panel level toolbar</guibutton></emphasis> : has three buttons: ! <guibutton>".."</guibutton>, <guibutton>"/"</guibutton> and the <guibutton>"Open"</guibutton> ! button.</para></listitem> <listitem><para><emphasis><guilabel>Information Label</guilabel></emphasis> : shows how much free space is physically available on the file system, the file system capacity and where it is mounted. --- 100,133 ---- This is the default panel and the one you'll probably use most of the time. This panel shows the contents of one directory which can be local (part of your mounted file systems), remote (accessed via &FTP; or Samba) ! or inside an archive.</para> ! ! <para>The following items are available: <itemizedlist> ! <listitem><para><emphasis><guibutton>Location Toolbar</guibutton></emphasis> : shows the path where the panel is currently pointing to. If the path where the panel is pointing to is too long, it will be shortened and a ".." will replace the middle part. Also when entering archives the path will consist of the ! "archive name:/directory/archive_filename/the directory inside the archive". ! With a mouse click you can enter the desired path ⪚ ! <itemizedlist> ! <listitem><para><userinput><replaceable>/mnt/cdrom/</replaceable></userinput></para> ! </listitem> ! <listitem><para><userinput><command>ftp://</command><replaceable>ftp.kde.org/pub/kde/</replaceable></userinput></para> ! </listitem> ! <listitem><para><userinput><command>sftp://</command><replaceable>sftp.foo.org/</replaceable></userinput></para> ! </listitem> ! <listitem><para><userinput><command>fish://</command><replaceable>fish.foo.org/</replaceable></userinput></para> ! </listitem> ! <listitem><para><userinput><command>smb://</command><replaceable>smb.foo/</replaceable></userinput></para> ! </listitem> ! <listitem><para><userinput><command>settings:/</command></userinput> will browse and open entries of the ! <application>KDE control center</application></para> ! </listitem> ! </itemizedlist> ! You can copy-paste an &URL; in the <guibutton>Location Toolbar</guibutton>. ! With the right-click menu you can configure the autocomplete function. ! </para></listitem> ! <listitem><para><link linkend="paneltoolbar"><emphasis><guibutton>Panel toolbar</guibutton></emphasis></link> : ! can have up to five <link linkend="konfig-looknfeel-ptoolbar">configurable</link> buttons. ! </para></listitem> <listitem><para><emphasis><guilabel>Information Label</guilabel></emphasis> : shows how much free space is physically available on the file system, the file system capacity and where it is mounted. *************** *** 133,150 **** displayed with the reason instead of the information.</para></listitem> <listitem><para><emphasis><guilabel>Column Headers</guilabel></emphasis> : ! the files are sorted by the <guilabel>Column Headers</guilabel> ! in the <guilabel>"File List"</guilabel> by <guilabel>name, extension, size, and date</guilabel>. ! The default sorting is by <guilabel>name</guilabel>. The sort order can be changed by clicking on one of the <guilabel>Column Headers</guilabel>. ! To reverse the sort order, click a second time on the header. An arrow will apear on the left of the column header text, this will show the sort direction (Up arrow = a to z sorting, Down arrow = z to a sorting). The width <guilabel>Column Headers</guilabel> can be changed with the mouse. ! Several more optional <guilabel>Column Headers</guilabel> are ! <link linkend="konfig-looknfeel-panel">available</link>.</para></listitem> <listitem><para><emphasis><guilabel>File List</guilabel></emphasis> : displays the files and directories in the browsed directory. The &quick_search_lnk; allows you to search for files by typing their names. ! Pressing <keycap>Enter</keycap> or double clicking on a file will open/execute that file. You can mark/unmark files using the mouse with the <keycap>Insert</keycap> key or the &markmenu_lnk;.</para></listitem> --- 135,154 ---- displayed with the reason instead of the information.</para></listitem> <listitem><para><emphasis><guilabel>Column Headers</guilabel></emphasis> : ! here you can change the sort order of the files and directories. ! The default sort order is by <guilabel>name</guilabel>. The sort order can be changed by clicking on one of the <guilabel>Column Headers</guilabel>. ! To reverse the sort order, click a second time on the header. An arrow will apear on the right of the column header text, this will show the sort direction (Up arrow = a to z sorting, Down arrow = z to a sorting). + The default <guilabel>Column Headers</guilabel> are: <guilabel>name, extension, size, and date</guilabel>. + More <link linkend="konfig-looknfeel-panel">optional <guilabel>Column Headers</guilabel></link> are + available. The width <guilabel>Column Headers</guilabel> can be changed with the mouse. ! Both <guilabel>List Panels</guilabel> remember the sort order and column width. ! </para></listitem> <listitem><para><emphasis><guilabel>File List</guilabel></emphasis> : displays the files and directories in the browsed directory. The &quick_search_lnk; allows you to search for files by typing their names. ! Pressing &Enter; or double clicking on a file will open/execute that file. You can mark/unmark files using the mouse with the <keycap>Insert</keycap> key or the &markmenu_lnk;.</para></listitem> *************** *** 156,162 **** --- 160,193 ---- that displays information for the whole file system).</para></listitem> </itemizedlist> + When using the "&kde; default <link linkend="konfig-color">colors</link>", + then the marked files are shown in blue and the current file is surrounded by a fine rectangle. + By default a icon is shown according to the filetype. + Use &konfiglookandfeel_lnk; to change the default configuration. </para> + + <para>Some useful <guilabel>List panel</guilabel> &keybindigs_lnk;: + <itemizedlist> + <listitem><para><keycombo action="simul">&Ctrl;<keycap>r</keycap></keycombo> will refresh the panel.</para> + </listitem> + <listitem><para>Focus a file or directory on the left panel, press + <keycombo action="simul">&Ctrl;<keycap>Left arrow</keycap></keycombo> + and the right panel changes: + <itemizedlist> + <listitem><para>on a file: the right panel gets the same path as the left panel.</para> + </listitem> + <listitem><para>on a directory: refreshes the right panel with the contents of the directory.</para> + </listitem> + </itemizedlist> + </para></listitem> + <listitem><para>For the right panel: press + <keycombo action="simul">&Ctrl;<keycap>Right arrow</keycap></keycombo> + and the left panel will change.</para> + </listitem> + </itemizedlist> + </para> + </sect3> + <sect3 id="tree_panel"> <title>Tree Panel</title> *************** *** 164,168 **** <para>This panel is used to quickly browse the local directory tree. The panel behaves like the list panel but only one directory may be selected at a time and double clicking or pressing ! <keycap>Enter</keycap> on a directory will open that directory in the other panel.</para> &disablenote; </sect3> --- 195,199 ---- <para>This panel is used to quickly browse the local directory tree. The panel behaves like the list panel but only one directory may be selected at a time and double clicking or pressing ! &Enter; on a directory will open that directory in the other panel.</para> &disablenote; </sect3> *************** *** 179,183 **** <note><para>The quick view panel is inactive most of the time, in fact when you switch to quick view mode the focus is transfered to the other panel. The view area itself does not change the active panel ! when you click on it, so make sure you click on the origin button before trying to exit quick view mode.</para></note> </sect3> --- 210,214 ---- <note><para>The quick view panel is inactive most of the time, in fact when you switch to quick view mode the focus is transfered to the other panel. The view area itself does not change the active panel ! when you click on it, so make sure you click on the Location Toolbar before trying to exit quick view mode.</para></note> </sect3> *************** *** 187,191 **** <para>Both panels have a <link linkend="konfig-looknfeel-ptoolbar">configurable</link> Panel Toolbar. ! The complete Panel Toolbar can be visible/hidden, or some buttons of it can be made visible/hidden. <itemizedlist> <listitem><para><guibutton>"OpenDir Button"</guibutton>: opens the directory browser.</para> --- 218,222 ---- <para>Both panels have a <link linkend="konfig-looknfeel-ptoolbar">configurable</link> Panel Toolbar. ! The complete Panel Toolbar or some buttons can be made visible or hidden. <itemizedlist> <listitem><para><guibutton>"OpenDir Button"</guibutton>: opens the directory browser.</para> *************** *** 194,202 **** other panel directory.</para> </listitem> ! <listitem><para><guibutton>"Up Button (..)"</guibutton>: the panel steps into the parent directory. </para></listitem> ! <listitem><para><guibutton>"Home Button (~)"</guibutton>: the panel steps into the home directory</para> </listitem> ! <listitem><para><guibutton>"Root Button (/)"</guibutton>: the panel steps into the root directory.</para> </listitem> </itemizedlist> --- 225,233 ---- other panel directory.</para> </listitem> ! <listitem><para><guibutton>"Up Button (..)"</guibutton>: changes the panel directory to the parent directory. </para></listitem> ! <listitem><para><guibutton>"Home Button (~)"</guibutton>: changes the panel directory to the home directory</para> </listitem> ! <listitem><para><guibutton>"Root Button (/)"</guibutton>: changes the panel directory to the root directory.</para> </listitem> </itemizedlist> *************** *** 207,216 **** <title>Folder history</title> ! <para>Both panels remember the last visited folder which is stored in the Folder history menu. ! Click on the <guibutton>"Folder history"</guibutton> button ("watch" symbol) to open this menu. ! With this menu you can quickly change to previously visited directories. ! The current directory in the history menu is checked. Every new start the history menu is empty. ! (The <guibutton>"Folder history"</guibutton> button is not visible on the List Panel screenshot because the ! screenshot is taken from an older &krusader; version, this will be updated later) </para> --- 238,245 ---- <title>Folder history</title> ! <para>Both panels remember the recently visited folders. ! Click on the <guibutton>"Folder history"</guibutton> button ("watch" symbol) to open the Folder history list. ! Here you can quickly change to previously visited folders, the current focussed folder is checked. ! Every new start the history list is empty. </para> *************** *** 234,238 **** <guibutton>"command history"</guibutton> (down arrow) to the right of the input line. When you start typing your commands the command line "auto completion" feature will make its offers according to ! what you choose in the &kde; control center. If you want to change the way auto complete behaves in the current &krusader; session then <keycap>right click</keycap> on command line and change it. To the left of the input line you can find the local path that the active panel is currently is pointing to, --- 263,267 ---- <guibutton>"command history"</guibutton> (down arrow) to the right of the input line. When you start typing your commands the command line "auto completion" feature will make its offers according to ! what you choose in the &kcontrolcenter;. If you want to change the way auto complete behaves in the current &krusader; session then <keycap>right click</keycap> on command line and change it. To the left of the input line you can find the local path that the active panel is currently is pointing to, *************** *** 255,259 **** When you drag a file from the <interface>"List Panel"</interface>, you will get to choose between: "Paste", <command>cd</command>, <command>mv</command> and <command>ln</command>. ! If you drag multiple files - then will cd not be available. You can close the emulator by typing <userinput><command>exit</command></userinput>.</para> <para>You can choose your mode of operation (command line, emulator, both or none) --- 284,288 ---- When you drag a file from the <interface>"List Panel"</interface>, you will get to choose between: "Paste", <command>cd</command>, <command>mv</command> and <command>ln</command>. ! If you drag multiple files, then <command>cd</command> will not be available. You can close the emulator by typing <userinput><command>exit</command></userinput>.</para> <para>You can choose your mode of operation (command line, emulator, both or none) *************** *** 272,287 **** </screenshot> ! <para>This bar gets its name from the function (FN) keys it represents. For each button on this ! bar there is a corresponding function key that performs the same action. This bar is derived from the ! design of the first twin-panel file managers and the FN keys usually act the same with two changes: ! the <keycap>F2</keycap> key will open a terminal at the last local path that the active panel pointed to, ! and the <keycap>F9</keycap> key is used to rename files. You can choose to display (or not) the ! <guilabel>FN keys bar</guilabel> when starting up &krusader; via the &konfigstartpg_lnk;, and you can ! toggle its use in the current session with the &viewmenu_lnk;. The actions performed by the function keys ! cannot be changed and they will remain active with or without the <guilabel>FN keys bar</guilabel>.</para> </sect2> ! <sect2 id="tabbrowsing"> ! <title>Tabbed Browsing</title> <screenshot><screeninfo>Tabbed browsing</screeninfo><mediaobject> <imageobject><imagedata fileref="tabbed_browsing.png" format="PNG"/></imageobject> --- 301,319 ---- </screenshot> ! <para>This bar gets its name from the function (FN) keys it represents. ! For each button on this bar there is a corresponding function key that performs the same action. ! This bar is derived from the design of the first twin-panel file managers and the FN keys usually act ! the same with two changes: the <keycap>F2</keycap> key will open a terminal at the last local path that ! the active panel pointed to, and the <keycap>F9</keycap> key is used to rename files. ! You can choose to display <link linkend="resize">or not</link> the <guilabel>FN keys bar</guilabel> ! when starting up &krusader; via the &konfigstartpg_lnk;, and you can toggle its use in the current ! session with the &viewmenu_lnk;.</para> ! ! <note><para>The actions performed by the function keys are currently hard coded and cannot be changed, ! they will remain active with or without the <guilabel>FN keys bar</guilabel>.</para></note> </sect2> ! <sect2 id="folder_tabs"> ! <title>Folder Tabs</title> <screenshot><screeninfo>Tabbed browsing</screeninfo><mediaobject> <imageobject><imagedata fileref="tabbed_browsing.png" format="PNG"/></imageobject> *************** *** 291,312 **** </screenshot> ! <para>With the tabbed browsing bar you can quickly change to another directory by clicking on the ! <guilabel>tab</guilabel>. <itemizedlist> ! <listitem><para>To <keycap>create a tab</keycap>: <keycap>Right-click</keycap> on a ! directory and select <keycap>open in a new tab</keycap>, or use the <mousebutton>middle</mousebutton> ! mouse button, or use ! <keycombo><keycap>Alt</keycap><keycap>Ctrl</keycap><keycap>n</keycap></keycombo>. </para></listitem> <listitem><para>To <keycap>duplicate a tab</keycap>: <keycap>right-click</keycap> on the tab and select <keycap>duplicate tab</keycap>, or use ! <keycombo><keycap>Alt</keycap><keycap>Ctrl</keycap><keycap>Shift</keycap><keycap>n</keycap></keycombo>. </para></listitem> <listitem><para>To <keycap>close a tab</keycap> (except the left tab): <keycap>right-click</keycap> on the ! tab and select <keycap>close tab</keycap>, or use the <mousebutton>middle</mousebutton> mouse button, ! or use the Tabbed Browsing <guibutton>"red cross"</guibutton> button, or use ! <keycombo><keycap>Alt</keycap><keycap>Ctrl</keycap><keycap>c</keycap></keycombo>. </para></listitem> --- 323,345 ---- </screenshot> ! ! <para>With <guibutton>Folder Tabs</guibutton> you can quickly change to multiple folders, each panel has is own ! <guibutton>Folder Tabs</guibutton>. Some settings like the selections are preserved. ! To switch between tabs, click them with the mouse. <guibutton>Folder Tabs</guibutton> operations: <itemizedlist> ! <listitem><para>To <keycap>open a new tab</keycap> and keep the current directory: <keycap>Right-click</keycap> on a ! directory and select <keycap>open in a new tab</keycap>, or use the &MMB;, or use ! <keycombo action="simul">&Alt;&Ctrl;<keycap>n</keycap></keycombo>. </para></listitem> <listitem><para>To <keycap>duplicate a tab</keycap>: <keycap>right-click</keycap> on the tab and select <keycap>duplicate tab</keycap>, or use ! <keycombo action="simul">&Alt;&Ctrl;&Shift;<keycap>n</keycap></keycombo>. </para></listitem> <listitem><para>To <keycap>close a tab</keycap> (except the left tab): <keycap>right-click</keycap> on the ! tab and select <keycap>close tab</keycap>, or use the &MMB;, ! or use the Folder tabs <guibutton>"red cross"</guibutton> button, or use ! <keycombo action="simul">&Alt;&Ctrl;<keycap>c</keycap></keycombo>. </para></listitem> *************** *** 340,346 **** of the &krusader; <link linkend="mainwindow">main window</link>. The focus can be in one of five places: the left or right panel, the menu bar, the command line or the terminal emulator. ! A panel that have the focus is called the active panel, an active panel will remain active ! until another panel receives the focus (&ie;: if the left panel was active and you clicked on ! the command line - the left panel remains the active panel).</para> <para>The most common way to transfer the focus to a specific part is to use the mouse to click on that part. --- 373,379 ---- of the &krusader; <link linkend="mainwindow">main window</link>. The focus can be in one of five places: the left or right panel, the menu bar, the command line or the terminal emulator. ! The panel that has the focus is called the active panel, an active panel will remain active ! until the other panel receives the focus (&ie;: if the left panel was active and you clicked on ! the command line - then the left panel remains the active panel).</para> <para>The most common way to transfer the focus to a specific part is to use the mouse to click on that part. *************** *** 350,355 **** focus.</para></listitem> <listitem><para>The display part of the quick view panel does not accept clicks so you should click on the ! origin button of this panel if you want it to have focus.</para></listitem> ! <!-- FRANK The information and totals labels of the tree and list panels don't accept clicks as well. --> <listitem><para>Pushing the <guibutton>"history"</guibutton> or the <guibutton>"run in terminal"</guibutton> buttons in the command line will not transfer the focus so --- 383,387 ---- focus.</para></listitem> <listitem><para>The display part of the quick view panel does not accept clicks so you should click on the ! Location Toolbar of this panel if you want it to have focus.</para></listitem> <listitem><para>Pushing the <guibutton>"history"</guibutton> or the <guibutton>"run in terminal"</guibutton> buttons in the command line will not transfer the focus so *************** *** 362,366 **** <para>There are of course ways to use the keyboard to change the focus <itemizedlist> ! <listitem><para>The <keycap>Tab</keycap> key will switch panels if one of the panel has the focus, or rotate between all the commands in a menu if the menu bar is active.</para> </listitem> --- 394,398 ---- <para>There are of course ways to use the keyboard to change the focus <itemizedlist> ! <listitem><para>The 	 key will switch panels if one of the panel has the focus, or rotate between all the commands in a menu if the menu bar is active.</para> </listitem> *************** *** 370,374 **** back from the command line to the active panel.</para> </listitem> ! <listitem><para>The <keycap>Esc</keycap> key will make the menu bar loose the focus if it has it.</para> </listitem> <listitem><para>If you happen to be inside the terminal emulator, the mouse is your only way out.</para> --- 402,406 ---- back from the command line to the active panel.</para> </listitem> ! <listitem><para>The &Esc; key will make the menu bar loose the focus if it has it.</para> </listitem> <listitem><para>If you happen to be inside the terminal emulator, the mouse is your only way out.</para> *************** *** 424,429 **** </listitem> <!-- ! ! <listitem><para>Moving the mouse while holding the <keycap>right mouse button</keycap> will mark all the files the cursor moves over, but will unmark all the rest.</para></listitem> --- 456,461 ---- </listitem> <!-- ! TODO ! <listitem><para>Moving the mouse while holding the &RMB; will mark all the files the cursor moves over, but will unmark all the rest.</para></listitem> *************** *** 442,446 **** </sect2> ! <!-- For the moment there is only one method of 3 for using the mouse This must be rewritten when the 3 mouse methods are working again <sect2 id="mouse_usage"> --- 474,480 ---- </sect2> ! <!-- ! TODO ! For the moment there is only one method of 3 for using the mouse This must be rewritten when the 3 mouse methods are working again <sect2 id="mouse_usage"> *************** *** 448,455 **** <para>There are several methods of using the mouse with &krusader;, the default one should be ! familiar from other file managers and include the use of the <keycap>Shift</keycap> key or the ! <keycap>Ctrl</keycap> key to select multiple files. However, notice that left clicking will mark the file under the cursor but will unmark all other files. ! ## Holding the right mouse button while dragging will mark all the files the mouse passes over (and unmarks the rest) and holding down the mouse button without moving it ## --- 482,489 ---- <para>There are several methods of using the mouse with &krusader;, the default one should be ! familiar from other file managers and include the use of the &Shift; key or the ! &Ctrl; key to select multiple files. However, notice that left clicking will mark the file under the cursor but will unmark all other files. ! ## Holding the &RMB; while dragging will mark all the files the mouse passes over (and unmarks the rest) and holding down the mouse button without moving it ## *************** *** 461,465 **** <title>Executing commands</title> <para>There isn't a lot to say here, all you need to do is mark some files (if you don't &krusader; will treat ! the current file under the cursor as marked), choose a <link linkend="commands">command</link> from the menu bar or use a keyboard shortcut (or the right click menu) and you're done. See also <link linkend="executing_files">Executing files</link>. --- 495,499 ---- <title>Executing commands</title> <para>There isn't a lot to say here, all you need to do is mark some files (if you don't &krusader; will treat ! the file or directory that has the focus), choose a <link linkend="commands">command</link> from the menu bar or use a keyboard shortcut (or the right click menu) and you're done. See also <link linkend="executing_files">Executing files</link>. *************** *** 485,489 **** which begins with "ab". The <keycap>Up/Down arrow</keycap> will jump to the next or previous match. ! <keycap>Esc</keycap> will close the quicksearch line. The cursor will stay on the last found quick search file. </para></listitem> --- 519,523 ---- which begins with "ab". The <keycap>Up/Down arrow</keycap> will jump to the next or previous match. ! &Esc; will close the quicksearch line. The cursor will stay on the last found quick search file. </para></listitem> *************** *** 498,505 **** <sect2 id="right-click"> ! <title>Right click menu</title> <para>&krusader; has many right-click menu's that allows you to do fast operations with the mouse. ! This list gives an overview of all the available right-click menu's, play with them to discover the available commands. <itemizedlist> --- 532,539 ---- <sect2 id="right-click"> ! <title>Right click menu's</title> <para>&krusader; has many right-click menu's that allows you to do fast operations with the mouse. ! This list gives an overview of the most important right-click menu's, use them to discover the available commands. <itemizedlist> *************** *** 508,512 **** <listitem><para>&cmdline_lnk; (undo, paste, text completion, ...)</para></listitem> <listitem><para>&termemu_lnk; (send signal, font, history, ...)</para></listitem> ! <listitem><para>&tabbrowse_lnk; (new, duplicate, close)</para></listitem> <listitem><para><link linkend="krusearcher">KruSearcher</link> Search results file list (F3 View, F4 Edit)</para></listitem> --- 542,546 ---- <listitem><para>&cmdline_lnk; (undo, paste, text completion, ...)</para></listitem> <listitem><para>&termemu_lnk; (send signal, font, history, ...)</para></listitem> ! <listitem><para>&foldertabs_lnk; (new, duplicate, close)</para></listitem> <listitem><para><link linkend="krusearcher">KruSearcher</link> Search results file list (F3 View, F4 Edit)</para></listitem> *************** *** 545,549 **** destination is the other-panel browsed directory. If you enter a partial &URL; &krusader; will use the current panel directory as the &URL; base. Deleting files is done by marking them and ! pressing <keycap>F8</keycap> or <keycap>Delete.</keycap>A dialog will ask for your confirmation and will warn you when deleting non-empty directories. Of course only operations that you are permitted to do will be performed - you will be notified otherwise. --- 579,583 ---- destination is the other-panel browsed directory. If you enter a partial &URL; &krusader; will use the current panel directory as the &URL; base. Deleting files is done by marking them and ! pressing <keycap>F8</keycap> or <keycap>Delete</keycap>. A dialog will ask for your confirmation and will warn you when deleting non-empty directories. Of course only operations that you are permitted to do will be performed - you will be notified otherwise. *************** *** 770,774 **** <para>Select a file and use <emphasis role="bold"><menuchoice><guimenu>right-click menu</guimenu> <guimenuitem>Send by email</guimenuitem></menuchoice></emphasis>. ! Selecting this option will open a new <application>KMail</application> window with the file already attached. Just fill in the subject and recipient(s) and send it. </para> --- 804,808 ---- <para>Select a file and use <emphasis role="bold"><menuchoice><guimenu>right-click menu</guimenu> <guimenuitem>Send by email</guimenuitem></menuchoice></emphasis>. ! Selecting this option will open a new &kmail; window with the file already attached. Just fill in the subject and recipient(s) and send it. </para> *************** *** 925,929 **** opens the <guimenuitem>User Menu</guimenuitem>, here you can create and use your own often used commands. It can run things via terminal, via an output-collection window or just run it. ! It allows you to use normal strings or URL's, and select where to pop the certain entry (in what directory). </para> --- 959,963 ---- opens the <guimenuitem>User Menu</guimenuitem>, here you can create and use your own often used commands. It can run things via terminal, via an output-collection window or just run it. ! It allows you to use normal strings or &URL;'s, and select where to pop the certain entry (in what directory). </para> *************** *** 1016,1022 **** By default &krusader; has the following key bindings:</para> ! <tip><para>Look at the &konfiglookandfeel_lnk; to configure the key-bindings the way you want them, ! ⪚ if you are used to use other Key Bindings. Here you will find even more ! actions who can be linked to a Key Binding.</para></tip> <para><emphasis role="bold">Function (FN) Keys</emphasis></para> --- 1050,1056 ---- By default &krusader; has the following key bindings:</para> ! <tip><para>If you are used to use other Key Bindings then the default ones listed below, change ! them with the &konfiglookandfeel_lnk;. Here you will find even more actions who can be ! linked to a Key Binding.</para></tip> <para><emphasis role="bold">Function (FN) Keys</emphasis></para> *************** *** 1131,1138 **** <row> <entry><para><keycombo action="simul">&Alt;&Ctrl;<keycap>c</keycap></keycombo></para></entry> ! <entry><para><link linkend="tabbrowsing">Close tab</link></para></entry></row> <row> <entry><para><keycombo action="simul">&Alt;&Ctrl;<keycap>n</keycap></keycombo></para></entry> ! <entry><para><link linkend="tabbrowsing">New tab</link></para></entry></row> <row> <entry><para><keycombo action="simul">&Alt;&Ctrl;<keycap>Left Arrow</keycap></keycombo></para></entry> --- 1165,1172 ---- <row> <entry><para><keycombo action="simul">&Alt;&Ctrl;<keycap>c</keycap></keycombo></para></entry> ! <entry><para><link linkend="folder_tabs">Close tab</link></para></entry></row> <row> <entry><para><keycombo action="simul">&Alt;&Ctrl;<keycap>n</keycap></keycombo></para></entry> ! <entry><para><link linkend="folder_tabs">New tab</link></para></entry></row> <row> <entry><para><keycombo action="simul">&Alt;&Ctrl;<keycap>Left Arrow</keycap></keycombo></para></entry> *************** *** 1143,1147 **** <row> <entry><para><keycombo action="simul">&Alt;&Ctrl;&Shift;<keycap>n</keycap></keycombo></para></entry> ! <entry><para><link linkend="tabbrowsing">Duplicate a tab</link></para></entry></row> <row> <entry><para><keycombo action="simul">&Alt;<keycap>F1..F12</keycap></keycombo></para></entry> --- 1177,1181 ---- <row> <entry><para><keycombo action="simul">&Alt;&Ctrl;&Shift;<keycap>n</keycap></keycombo></para></entry> ! <entry><para><link linkend="folder_tabs">Duplicate a tab</link></para></entry></row> <row> <entry><para><keycombo action="simul">&Alt;<keycap>F1..F12</keycap></keycombo></para></entry> *************** *** 1207,1211 **** <row> <entry><para><keycombo action="simul">&Ctrl;<keycap>n</keycap></keycombo></para></entry> ! <entry><para><link linkend="remote-man">New Net Connection</link> (enter URL or host address)</para></entry></row> <row> <entry><para><keycombo action="simul">&Ctrl;<keycap>p</keycap></keycombo></para></entry> --- 1241,1245 ---- <row> <entry><para><keycombo action="simul">&Ctrl;<keycap>n</keycap></keycombo></para></entry> ! <entry><para><link linkend="remote-man">New Net Connection</link> (enter &URL; or host address)</para></entry></row> <row> <entry><para><keycombo action="simul">&Ctrl;<keycap>p</keycap></keycombo></para></entry> *************** *** 1224,1228 **** <entry><para>Quit &krusader;</para></entry></row> <row> ! <entry><para><keycombo action="simul">&Ctrl;<keycap>Backspace</keycap></keycombo></para></entry> <entry><para>Jumps to the Root directory</para></entry></row> <row> --- 1258,1262 ---- <entry><para>Quit &krusader;</para></entry></row> <row> ! <entry><para><keycombo action="simul">&Ctrl;&Backspace;</keycombo></para></entry> <entry><para>Jumps to the Root directory</para></entry></row> <row> *************** *** 1266,1278 **** <entry><para>&quick_search_lnk;</para></entry></row> <row> ! <entry><para><keycap>TAB</keycap></para></entry> <entry><para><link linkend="panels">Switch between the panels</link></para></entry></row> <row> ! <entry><para><keycap>ENTER</keycap></para></entry> <entry><para><link linkend="executing_files">On a file:</link> open/execute that file</para> <para><link linkend="browsing-archives">On an archive file:</link> browse the archive as if it was a directory</para></entry></row> <row> ! <entry><para><keycap>ESC</keycap></para></entry> <entry><para><link linkend="moving-around">Will make the menu bar loose the focus if it has it</link></para> </entry></row> --- 1300,1312 ---- <entry><para>&quick_search_lnk;</para></entry></row> <row> ! <entry><para>	</para></entry> <entry><para><link linkend="panels">Switch between the panels</link></para></entry></row> <row> ! <entry><para>&Enter;</para></entry> <entry><para><link linkend="executing_files">On a file:</link> open/execute that file</para> <para><link linkend="browsing-archives">On an archive file:</link> browse the archive as if it was a directory</para></entry></row> <row> ! <entry><para>&Esc;</para></entry> <entry><para><link linkend="moving-around">Will make the menu bar loose the focus if it has it</link></para> </entry></row> *************** *** 1317,1325 **** <entry><para>jumps from the active panel to the command line.</para></entry></row> <row> ! <entry><para><keycombo action="simul">&Ctrl;<keycap>Enter</keycap></keycombo></para></entry> <entry><para>inserts current file / directory name without path to current command line position.</para> </entry></row> <row> ! <entry><para><keycombo action="simul">&Ctrl;&Shift;<keycap>Enter</keycap></keycombo></para></entry> <entry><para>inserts current file / directory with full path name to current command line position.</para></entry></row> <!-- "Backspace" key in terminal, /* Shortcut disabled because of the Terminal Emulator bug. */ krusader.cpp --> --- 1351,1359 ---- <entry><para>jumps from the active panel to the command line.</para></entry></row> <row> ! <entry><para><keycombo action="simul">&Ctrl;&Enter;</keycombo></para></entry> <entry><para>inserts current file / directory name without path to current command line position.</para> </entry></row> <row> ! <entry><para><keycombo action="simul">&Ctrl;&Shift;&Enter;</keycombo></para></entry> <entry><para>inserts current file / directory with full path name to current command line position.</para></entry></row> <!-- "Backspace" key in terminal, /* Shortcut disabled because of the Terminal Emulator bug. */ krusader.cpp --> *************** *** 1338,1342 **** </listitem> <listitem> ! <para>&kde; Control center -> Accessibility -> Keyboard Shortcuts</para> </listitem> </itemizedlist> --- 1372,1376 ---- </listitem> <listitem> ! <para>&kcontrolcenter; -> Accessibility -> Keyboard Shortcuts</para> </listitem> </itemizedlist> |
From: Jonas B. <jb...@us...> - 2004-07-26 22:21:56
|
Update of /cvsroot/krusader/krusader_kde3/krusader/GUI In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15620/krusader/GUI Modified Files: Makefile.am Added Files: syncbrowsebutton.cpp syncbrowsebutton.h Log Message: ADDED: sync-browse mode --- NEW FILE: syncbrowsebutton.h --- (This appears to be a binary file; contents omitted.) Index: Makefile.am =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/GUI/Makefile.am,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Makefile.am 23 Jul 2004 00:03:17 -0000 1.5 --- Makefile.am 26 Jul 2004 22:21:16 -0000 1.6 *************** *** 8,12 **** libGUI_a_SOURCES = dirhistoryqueue.cpp dirhistorybutton.cpp krusaderstatus.cpp \ kfnkeys.cpp kcmdline.cpp actionproperty.cpp actionpropertybase.ui \ ! addplaceholderpopup.cpp --- 8,13 ---- libGUI_a_SOURCES = dirhistoryqueue.cpp dirhistorybutton.cpp krusaderstatus.cpp \ kfnkeys.cpp kcmdline.cpp actionproperty.cpp actionpropertybase.ui \ ! addplaceholderpopup.cpp \ ! syncbrowsebutton.cpp --- NEW FILE: syncbrowsebutton.cpp --- (This appears to be a binary file; contents omitted.) |
From: Jonas B. <jb...@us...> - 2004-07-26 22:21:34
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15620 Modified Files: ChangeLog Log Message: ADDED: sync-browse mode Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.262 retrieving revision 1.263 diff -C2 -d -r1.262 -r1.263 *** ChangeLog 26 Jul 2004 18:49:57 -0000 1.262 --- ChangeLog 26 Jul 2004 22:21:25 -0000 1.263 *************** *** 1,3 **** --- 1,4 ---- ====================== + ADDED: sync-browse mode (if on, a directory-change in the active is also performed in the inactive panel) ADDED: beta-state incremental refresh. test it with fam enabled! ADDED: synchronizer: ability to give more files in the file filter (ex. '*.cpp *.h') |
From: Jonas B. <jb...@us...> - 2004-07-26 22:21:33
|
Update of /cvsroot/krusader/krusader_kde3/pics In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15620/pics Modified Files: Makefile.am Added Files: kr_syncbrowse_off16x16.png kr_syncbrowse_on16x16.png Log Message: ADDED: sync-browse mode --- NEW FILE: kr_syncbrowse_on16x16.png --- (This appears to be a binary file; contents omitted.) Index: Makefile.am =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/pics/Makefile.am,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Makefile.am 5 Feb 2004 20:30:45 -0000 1.5 --- Makefile.am 26 Jul 2004 22:21:25 -0000 1.6 *************** *** 2,6 **** ! EXTRA_DIST = about.png arc_pack16x16.png arc_pack22x22.png arc_pack32x32.png arc_test16x16.png arc_test22x22.png arc_test32x32.png arc_unpack16x16.png arc_unpack22x22.png arc_unpack32x32.png calc16x16.png calc22x22.png calc32x32.png compare16x16.png compare22x22.png compare32x32.png comparedirs16x16.png comparedirs22x22.png comparedirs32x32.png ftp_connect16x16.png ftp_connect22x22.png ftp_connect32x32.png ftp_disconnect16x16.png ftp_disconnect22x22.png ftp_disconnect32x32.png ftp_new16x16.png ftp_new22x22.png ftp_new32x32.png konfig_small.jpg kr_addbookmark16x16.png kr_addbookmark22x22.png kr_addbookmark32x32.png kr_bookman16x16.png kr_bookman22x22.png kr_bookman32x32.png kr_bookmark16x16.png kr_bookmark22x22.png kr_bookmark32x32.png kr_fullview16x16.png kr_fullview22x22.png kr_fullview32x32.png kr_hwinfo16x16.png kr_hwinfo22x22.png kr_hwinfo32x32.png kr_invert16x16.png kr_invert22x22.png kr_invert32x32.png kr_treeview16x16.png kr_treeview22x22.png kr_treeview32x32.png kr_unselect16x16.png kr_unselect22x22.png kr_unselect32x32.png Makefile Makefile.am Makefile.in mountman16x16.png mountman22x22.png mountman32x32.png properties16x16.png properties22x22.png properties32x32.png select16x16.png select22x22.png select32x32.png selectall16x16.png selectall22x22.png selectall32x32.png terminal16x16.png terminal22x22.png terminal32x32.png unselectall16x16.png unselectall22x22.png unselectall32x32.png kr_split16x16.png kr_split22x22.png kr_split32x32.png kr_combine16x16.png kr_combine22x22.png kr_combine32x32.png kr_dependencies.png kr_syncdirs16x16.png kr_syncdirs22x22.png kr_syncdirs32x32.png install-data-local: --- 2,6 ---- ! EXTRA_DIST = about.png arc_pack16x16.png arc_pack22x22.png arc_pack32x32.png arc_test16x16.png arc_test22x22.png arc_test32x32.png arc_unpack16x16.png arc_unpack22x22.png arc_unpack32x32.png calc16x16.png calc22x22.png calc32x32.png compare16x16.png compare22x22.png compare32x32.png comparedirs16x16.png comparedirs22x22.png comparedirs32x32.png ftp_connect16x16.png ftp_connect22x22.png ftp_connect32x32.png ftp_disconnect16x16.png ftp_disconnect22x22.png ftp_disconnect32x32.png ftp_new16x16.png ftp_new22x22.png ftp_new32x32.png konfig_small.jpg kr_addbookmark16x16.png kr_addbookmark22x22.png kr_addbookmark32x32.png kr_bookman16x16.png kr_bookman22x22.png kr_bookman32x32.png kr_bookmark16x16.png kr_bookmark22x22.png kr_bookmark32x32.png kr_fullview16x16.png kr_fullview22x22.png kr_fullview32x32.png kr_hwinfo16x16.png kr_hwinfo22x22.png kr_hwinfo32x32.png kr_invert16x16.png kr_invert22x22.png kr_invert32x32.png kr_treeview16x16.png kr_treeview22x22.png kr_treeview32x32.png kr_unselect16x16.png kr_unselect22x22.png kr_unselect32x32.png Makefile Makefile.am Makefile.in mountman16x16.png mountman22x22.png mountman32x32.png properties16x16.png properties22x22.png properties32x32.png select16x16.png select22x22.png select32x32.png selectall16x16.png selectall22x22.png selectall32x32.png terminal16x16.png terminal22x22.png terminal32x32.png unselectall16x16.png unselectall22x22.png unselectall32x32.png kr_split16x16.png kr_split22x22.png kr_split32x32.png kr_combine16x16.png kr_combine22x22.png kr_combine32x32.png kr_dependencies.png kr_syncdirs16x16.png kr_syncdirs22x22.png kr_syncdirs32x32.png kr_syncbrowse_off16x16.png kr_syncbrowse_on16x16.png install-data-local: *************** *** 167,170 **** --- 167,174 ---- $(mkinstalldirs) $(kde_datadir)/krusader/icons/hicolor/32x32/actions/ $(INSTALL_DATA) $(srcdir)/kr_syncdirs32x32.png $(kde_datadir)/krusader/icons/hicolor/32x32/actions/kr_syncdirs.png + $(mkinstalldirs) $(kde_datadir)/krusader/icons/hicolor/16x16/actions/ + $(INSTALL_DATA) $(srcdir)/kr_syncbrowse_off16x16.png $(kde_datadir)/krusader/icons/hicolor/16x16/actions/kr_syncbrowse_off.png + $(mkinstalldirs) $(kde_datadir)/krusader/icons/hicolor/16x16/actions/ + $(INSTALL_DATA) $(srcdir)/kr_syncbrowse_on16x16.png $(kde_datadir)/krusader/icons/hicolor/16x16/actions/kr_syncbrowse_on.png uninstall-local: *************** *** 250,253 **** --- 254,259 ---- -rm -f $(kde_datadir)/krusader/icons/hicolor/22x22/actions/kr_syncdirs.png -rm -f $(kde_datadir)/krusader/icons/hicolor/32x32/actions/kr_syncdirs.png + -rm -f $(kde_datadir)/krusader/icons/hicolor/16x16/actions/kr_syncbrowse_off.png + -rm -f $(kde_datadir)/krusader/icons/hicolor/16x16/actions/kr_syncbrowse_on.png ####### kdevelop will overwrite this part!!! (end)############ --- NEW FILE: kr_syncbrowse_off16x16.png --- (This appears to be a binary file; contents omitted.) |
From: Jonas B. <jb...@us...> - 2004-07-26 22:21:33
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15620/krusader/Panel Modified Files: listpanel.cpp listpanel.h panelfunc.cpp Log Message: ADDED: sync-browse mode Index: listpanel.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/listpanel.h,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** listpanel.h 25 Jul 2004 22:55:13 -0000 1.21 --- listpanel.h 26 Jul 2004 22:21:20 -0000 1.22 *************** *** 67,70 **** --- 67,71 ---- class DirHistoryQueue; class PanelPopup; + class SyncBrowseButton; class ListPanel : public QWidget { *************** *** 155,158 **** --- 156,160 ---- DirHistoryQueue* dirHistoryQueue; DirHistoryButton* historyButton; + SyncBrowseButton *syncBrowseButton; private: Index: panelfunc.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/panelfunc.cpp,v retrieving revision 1.71 retrieving revision 1.72 diff -C2 -d -r1.71 -r1.72 *** panelfunc.cpp 25 Jul 2004 22:54:36 -0000 1.71 --- panelfunc.cpp 26 Jul 2004 22:21:24 -0000 1.72 *************** *** 66,69 **** --- 66,74 ---- #include "../resources.h" #include "../krservices.h" + #include "../GUI/syncbrowsebutton.h" + + + #define OTHER_FUNC (panel->otherPanel->func) + ////////////////////////////////////////////////////////// *************** *** 83,86 **** --- 88,105 ---- void ListPanelFunc::openUrl( const KURL& url,const QString& nameToMakeCurrent) { //kdDebug() << "openUrl: " << url.url() << endl; + + //prevents that the sync-browsing circles itself to death + static bool bMaster = true; + + // first the other dir, then the active! Else the focus changes and the other becomes active + if ( panel->syncBrowseButton->state() == SYNCBROWSE_CD && bMaster) { + bMaster = false; + //do sync-browse stuff.... + //QString relative_path = KURL::relativeURL( panel->getPath()+"/", url.url() ); + //kdDebug() << "Sync: from: " << panel->getPath()+"/" << " to: " << url.url() << " -> relativeURL: " << relative_path << endl; + //OTHER_FUNC->openUrl( relative_path ); + OTHER_FUNC->openUrl( KURL::relativeURL( panel->getPath()+"/", url.url() ) ); // the trailing slash is nessesary because krusader provides Dir's without it + bMaster = true; + } // check for special cases: Index: listpanel.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/listpanel.cpp,v retrieving revision 1.73 retrieving revision 1.74 diff -C2 -d -r1.73 -r1.74 *** listpanel.cpp 25 Jul 2004 22:56:18 -0000 1.73 --- listpanel.cpp 26 Jul 2004 22:21:17 -0000 1.74 *************** *** 84,87 **** --- 84,88 ---- #include "../GUI/dirhistorybutton.h" #include "../GUI/dirhistoryqueue.h" + #include "../GUI/syncbrowsebutton.h" #include "../krservices.h" #include "panelpopup.h" *************** *** 142,145 **** --- 143,149 ---- "how many did you select and the bytes math" ) ); connect( totals, SIGNAL( clicked() ), this, SLOT( slotFocusOnMe() ) ); + + // ... creates the button for sync-browsing + syncBrowseButton = new SyncBrowseButton( this ); // a quick button to open the popup panel *************** *** 151,155 **** totalsLayout->addWidget(totals); totalsLayout->addWidget(popupBtn); ! quickSearch = new KrQuickSearch( this ); krConfig->setGroup( "Look&Feel" ); --- 155,160 ---- totalsLayout->addWidget(totals); totalsLayout->addWidget(popupBtn); ! totalsLayout->addWidget(syncBrowseButton); ! quickSearch = new KrQuickSearch( this ); krConfig->setGroup( "Look&Feel" ); *************** *** 258,261 **** --- 263,267 ---- delete cdUpButton; delete cdOtherButton; + delete syncBrowseButton; delete layout; } |
From: Frank S. <cod...@us...> - 2004-07-26 19:34:44
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14021 Modified Files: krusader.spec Log Message: 1.40 stable on Mandrake 10.0 Index: krusader.spec =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader.spec,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** krusader.spec 2 Jul 2004 19:32:57 -0000 1.6 --- krusader.spec 26 Jul 2004 19:34:35 -0000 1.7 *************** *** 1,4 **** # krusader.spec use rpmbuild to build a Krusader RPM package ! # this spec file works on Mandrake 9.2 for krusader 1.40 # other distributions may need todo some modifications # If you have comments or suggestions about this spec file please send it to --- 1,4 ---- # krusader.spec use rpmbuild to build a Krusader RPM package ! # this spec file works on Mandrake 10.0 for krusader 1.40 # other distributions may need todo some modifications # If you have comments or suggestions about this spec file please send it to *************** *** 6,10 **** # Thanks for your cooperation! ! %define beta beta2 # Package information --- 6,10 ---- # Thanks for your cooperation! ! #%define beta beta2 # Package information *************** *** 12,19 **** Name: krusader Version: 1.40 ! Release: %{beta}.mdk92 ! Distribution: Mandrake Linux 9.2 ! Source0: %{name}-%{version}-%{beta}.tar.gz ! #Source0: %{name}-%{version}.tar.gz License: GPL Group: File tools --- 12,20 ---- Name: krusader Version: 1.40 ! #Release: %{beta}.mdk10.0 ! Release: mdk10.0 ! Distribution: Mandrake Linux 10.0 ! #Source0: %{name}-%{version}-%{beta}.tar.gz ! Source0: %{name}-%{version}.tar.gz License: GPL Group: File tools *************** *** 62,67 **** # changes to the build dir /usr/src/RPM/BUILD/krusader-%version on Mandrake # -q: run quitely ! %setup -q -n %{name}-%{version}-%{beta} ! # commands to build the software in /usr/src/RPM/BUILD/krusader-%version on Mandrake --- 63,68 ---- # changes to the build dir /usr/src/RPM/BUILD/krusader-%version on Mandrake # -q: run quitely ! #%setup -q -n %{name}-%{version}-%{beta} ! %setup -q -n %{name}-%{version} # commands to build the software in /usr/src/RPM/BUILD/krusader-%version on Mandrake *************** *** 97,108 **** %makeinstall KDEDIR=$RPM_BUILD_ROOT%{_prefix} kde_minidir=$RPM_BUILD_ROOT%{_miconsdir} # menu ! mkdir -p $RPM_BUILD_ROOT%{_menudir} # adds krusader in the KDE menu with the file /usr/lib/menu/krusader on Mandrake ! # Kmenu -> "Applications/File tools" -> krusader # /usr/bin/kdedesktop2mdkmenu.pl is a Mandrake Perl script to generate the Kmenu entry ! kdedesktop2mdkmenu.pl krusader "Applications/File tools" %{buildroot}/%{_datadir}/applnk/Applications/krusader.desktop %{buildroot}/%{_menudir}/krusader ! # removes /usr/share/mimelnk/application/x-ace.desktop on Mandrake # because x-ace.desktop is now provided by KDE --- 98,125 ---- %makeinstall KDEDIR=$RPM_BUILD_ROOT%{_prefix} kde_minidir=$RPM_BUILD_ROOT%{_miconsdir} # menu ! #mkdir -p $RPM_BUILD_ROOT%{_menudir} # adds krusader in the KDE menu with the file /usr/lib/menu/krusader on Mandrake ! # Kmenu -> "System/File tools" -> krusader # /usr/bin/kdedesktop2mdkmenu.pl is a Mandrake Perl script to generate the Kmenu entry ! #kdedesktop2mdkmenu.pl krusader "System/File tools" %{buildroot}/%{_datadir}/applnk/Applications/krusader.desktop %{buildroot}/%{_menudir}/krusader + # menu + # creates the file /usr/lib/menu/krusader on Mandrake, this adds krusader in the KDE menu + # in the "System/File tools" section + mkdir -p %{buildroot}/%{_menudir} + cat > %{buildroot}/%{_menudir}/%name << EOF + ?package(%name): \ + needs="x11" \ + kde_filename="%name" \ + section="System/File tools" \ + title="%name" \ + icon="%name.png" \ + command="%{_bindir}/%name" \ + kde_command="%name -caption \"%c\" %i %m " \ + longtitle="%summary" \ + kde_opt="\\\nMiniIcon=%name.png\\\nDocPath=%name/index.html\\\nTerminal=0" + EOF + # obsolete since 1.40 stable # removes /usr/share/mimelnk/application/x-ace.desktop on Mandrake # because x-ace.desktop is now provided by KDE *************** *** 208,211 **** --- 225,236 ---- %changelog + * Thu Jul 26 2004 Frank Schoolmeesters <fra...@fa...> + - 1.40-mdk10 + Mandrake 10.0 has changed the KDE-menu entries + Former KDE menu entry "Applications/File tools" in Mdk 9.2 is now "System/File tools/" + Using now a distro independent script to create create the file "/usr/lib/menu/krusader" + and not the Mandrake Perl script kdedesktop2mdkmenu.pl + This adds krusader in the KDE menu in the "System/File tools" section. + * Fri Jun 25 2004 Frank Schoolmeesters <fra...@fa...> - 1.40-beta2.mdk92 |
From: Frank S. <cod...@us...> - 2004-07-26 19:32:35
|
Update of /cvsroot/krusader/krusader_kde3/doc/pics In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13726/doc/pics Modified Files: krusader1.png listpanel.png mainwindow.png toolbar.png Log Message: Handbook 1.40.02 Index: listpanel.png =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/pics/listpanel.png,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvsGw820d and /tmp/cvsp5j0kB differ Index: krusader1.png =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/pics/krusader1.png,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvspmSt1j and /tmp/cvsYuT2nH differ Index: toolbar.png =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/pics/toolbar.png,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsqFZF6m and /tmp/cvsjcsXuK differ Index: mainwindow.png =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/pics/mainwindow.png,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvse52Gcn and /tmp/cvstBiMCK differ |
Update of /cvsroot/krusader/krusader_kde3/doc/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13597/doc/en Modified Files: commands.sgml credits.sgml faq.sgml index.docbook installation.sgml introduction.sgml konfigurator.sgml krusader-tools.sgml Log Message: Handbook 1.40.02 Index: credits.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/credits.sgml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** credits.sgml 10 Jun 2004 19:04:38 -0000 1.12 --- credits.sgml 26 Jul 2004 19:31:26 -0000 1.13 *************** *** 44,47 **** --- 44,49 ---- <listitem><para>Heiner Eichmann, developer <email>h.e...@gm...</email></para> </listitem> + <listitem><para>Jonas Baëhr, developer <email>jon...@we...</email></para> + </listitem> <listitem><para>Frank Schoolmeesters, documentation coordinator <email>cod...@us...</email></para> *************** *** 92,138 **** <para>Thanks to the translators: <itemizedlist> ! <listitem><para>Bulgarian translation: Milen Ivanov <email>ke...@ma...</email></para> ! </listitem> ! <listitem><para>Chinese translation: Jinghua Luo <email>luo...@ms...</email></para> </listitem> ! <listitem><para>Czech translation: Mitek <email>mi...@em...</email></para> </listitem> ! <listitem><para>Updated Czech translation: Martin Sixta <email>luk...@se...</email></para> </listitem> ! <listitem><para>Danish translation: Anders Bruun Olsen <email>an...@br...</email></para> </listitem> ! <listitem><para>Dutch translation: Frank Schoolmeesters <email>cod...@us...</email></para> </listitem> ! <listitem><para>French translation: René-Pierre Lehmann <email>ri...@le...</email></para> </listitem> ! <listitem><para>German translation: Christoph Thielecke <email>cri...@gm...</email></para> </listitem> ! <listitem><para>Hungarian translation: Kukk Zoltan <email>kuk...@fr...</email></para> </listitem> ! <listitem><para>Italian translation: Giuseppe Bordoni <email>ge...@ge...</email></para> </listitem> ! <listitem><para>Japanese translation: UTUMI Hirosi <email>utu...@ya...</email></para> </listitem> ! <listitem><para>Polish translation: Lukasz Janyst <email>lj...@wp...</email></para> </listitem> ! <listitem><para>Russian translation: Dmitry V. Chernyak <email>dv...@ma...</email></para> </listitem> ! <listitem><para>Slovak translation: Zdenko Podobna <email>zd...@ma...</email></para> </listitem> ! <listitem><para>Spanish translation: Rafael Munoz Rodriguez <email>mu...@ho...</email></para> </listitem> ! <listitem><para>Swedish translation: Eric Johanssen <email>er...@te...</email></para> </listitem> ! <listitem><para>Updated Swedish translation: Anders Lindén <email>con...@gm...</email></para> </listitem> </itemizedlist> ! And all the translators who submitted some minor fixes, sorry we can't mention you all. </para> ! <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> ! file of the &krusader; sources</para> <para>Documentation copyright 2000-2004 Shie Erlich, Rafi Yanai and the &krusader; Krew --- 94,142 ---- <para>Thanks to the translators: <itemizedlist> ! <listitem><para>Bulgarian: Milen Ivanov <email>ke...@ma...</email></para> </listitem> ! <listitem><para>Catalan: Quim Perez <email>no...@os...</email></para> ! </listitem> ! <listitem><para>Chinese: Jinghua Luo <email>luo...@ms...</email></para> </listitem> ! <listitem><para>Czech: Mitek <email>mi...@em...</email></para> </listitem> ! <listitem><para>Czech (updated): Martin Sixta <email>luk...@se...</email></para> </listitem> ! <listitem><para>Danish: Anders Bruun Olsen <email>an...@br...</email></para> </listitem> ! <listitem><para>Dutch: Frank Schoolmeesters <email>cod...@us...</email></para> </listitem> ! <listitem><para>French: René-Pierre Lehmann <email>ri...@le...</email></para> </listitem> ! <listitem><para>German: Christoph Thielecke <email>cri...@gm...</email></para> </listitem> ! <listitem><para>Hungarian: Kukk Zoltan <email>kuk...@fr...</email></para> </listitem> ! <listitem><para>Italian: Giuseppe Bordoni <email>ge...@ge...</email></para> </listitem> ! <listitem><para>Japanese: UTUMI Hirosi <email>utu...@ya...</email></para> </listitem> ! <listitem><para>Polish: Lukasz Janyst <email>lj...@wp...</email></para> </listitem> ! <listitem><para>Russian: Dmitry V. Chernyak <email>dv...@ma...</email></para> </listitem> ! <listitem><para>Slovak: Zdenko Podobna <email>zd...@ma...</email></para> </listitem> ! <listitem><para>Spanish: Rafael Munoz Rodriguez <email>mu...@ho...</email></para> </listitem> ! <listitem><para>Swedish: Eric Johanssen <email>er...@te...</email></para> ! </listitem> ! <listitem><para>Swedish (updated): Anders Lindén <email>con...@gm...</email></para> </listitem> </itemizedlist> ! And all other translators ... sorry we can't mention you all, ! please take a look in the headers of the <filename>foo.po</filename> files to see &i18n_credits_url;. </para> ! <para>If your native language is not listed above, you maybe like to translate &krusader; in your native language, please read the &i18nhowto_url;.</para> ! <para>For more credits, read the <filename>ChangeLog</filename> file in the Krusader sources or &online_changelog_url;.</para> <para>Documentation copyright 2000-2004 Shie Erlich, Rafi Yanai and the &krusader; Krew Index: introduction.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/introduction.sgml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** introduction.sgml 23 Apr 2004 08:57:18 -0000 1.11 --- introduction.sgml 26 Jul 2004 19:31:27 -0000 1.12 *************** *** 114,128 **** external batch renamer for &kde; 3.x.</para> </listitem> ! </itemizedlist> </para> <para> <itemizedlist> ! <title>New &krusader; Features</title> ! <listitem> ! <para>&tabbrowse_lnk;.</para> ! </listitem> ! <listitem> ! <para>New &rootmode_lnk;.</para> </listitem> <listitem> --- 114,128 ---- external batch renamer for &kde; 3.x.</para> </listitem> ! <listitem> ! <para>&foldertabs_lnk;.</para> ! </listitem> ! </itemizedlist> </para> <para> <itemizedlist> ! <title>New features in version 1.40</title> ! <listitem> ! <para>&rootmode_lnk;.</para> </listitem> <listitem> *************** *** 136,140 **** </listitem> <listitem> ! <para>New <link linkend="konfig-startup">Konfigurator</link>.</para> </listitem> <listitem> --- 136,140 ---- </listitem> <listitem> ! <para><link linkend="konfig-startup">Konfigurator</link>.</para> </listitem> <listitem> *************** *** 146,150 **** <listitem> <para><link linkend="konfig-color">Color support</link>.</para> ! </listitem> <listitem> <para><link linkend="mount-man">Quickmode for MountMan</link>.</para> --- 146,151 ---- <listitem> <para><link linkend="konfig-color">Color support</link>.</para> ! </listitem> ! <listitem> <para><link linkend="mount-man">Quickmode for MountMan</link>.</para> *************** *** 157,160 **** --- 158,162 ---- </para> + <screenshot> <screeninfo>&krusader; screenshot</screeninfo> Index: konfigurator.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/konfigurator.sgml,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** konfigurator.sgml 23 Apr 2004 08:57:18 -0000 1.8 --- konfigurator.sgml 26 Jul 2004 19:31:27 -0000 1.9 *************** *** 115,118 **** --- 115,126 ---- <sect1 id="konfig-looknfeel"> <title>Look & Feel page</title> + + <para>Here you can determine the look & feel of things - which basically means fine-tuning the + application to your needs. The page is divided into five tabs: <guilabel>Operation</guilabel>, + <guilabel>Panel</guilabel>, <guilabel>Toolbar</guilabel>, <guilabel>Key-bindings</guilabel> and + <guilabel>Panel Toolbar</guilabel>. Since <guilabel>Toolbar</guilabel> + and <guilabel>Key-bindings</guilabel> are &kde; standard tools we'll focus on + the other sections:</para> + <screenshot> <screeninfo>Konfigurator Look & Feel page</screeninfo> *************** *** 125,136 **** </screenshot> - - <para>Here you can determine the look & feel of things - which basically means fine-tuning the - application to your needs. The page is divided into three tabs: <guilabel>General</guilabel>, - <guilabel>Toolbar</guilabel> and <guilabel>Key-bindings</guilabel>. Since <guilabel>Toolbar</guilabel> - and <guilabel>Key-bindings</guilabel> are &kde;'s standard toolbar and keyboard editor, we'll focus on - the <guilabel>General</guilabel> section:</para> - - <sect2 id="konfig-looknfeel-operation"> <title>Operation</title> --- 133,136 ---- *************** *** 149,153 **** than directories matching the select criteria will also be marked. Otherwise, only files will be marked.</para></listitem> ! <listitem><para><guilabel>"Case sensitive sorting"</guilabel>: if checked (the Unix default), all files beginning with capital letters appear before files beginning with non-capital letters, otherwise, all files beginning with a specified letter (capital or otherwise) will appear --- 149,153 ---- than directories matching the select criteria will also be marked. Otherwise, only files will be marked.</para></listitem> ! <listitem><para><guilabel>"Case sensitive sorting"</guilabel>: if checked (the &UNIX; default), all files beginning with capital letters appear before files beginning with non-capital letters, otherwise, all files beginning with a specified letter (capital or otherwise) will appear *************** *** 158,162 **** <link linkend="quicksearch">Quicksearch</link> feature is used.</para></listitem> <listitem><para><guilabel>"Case sensitive quicksearch"</guilabel>: When using the ! <link linkend="quicksearch">Quicksearch</link> feature: if checked (the Unix default), all files beginning with capital letters appear before files beginning with non-capital letters, otherwise, all files beginning with a specified letter (capital or otherwise) will appear --- 158,162 ---- <link linkend="quicksearch">Quicksearch</link> feature is used.</para></listitem> <listitem><para><guilabel>"Case sensitive quicksearch"</guilabel>: When using the ! <link linkend="quicksearch">Quicksearch</link> feature: if checked (the &UNIX; default), all files beginning with capital letters appear before files beginning with non-capital letters, otherwise, all files beginning with a specified letter (capital or otherwise) will appear *************** *** 177,193 **** <listitem><para><guilabel>Classic</guilabel>: the way &krusader; used to work from day one. Both keys allow selecting files. To select more than one file, hold the ! &Ctrl; key and click the <keycap>left</keycap> mouse button. Right-click ! menu is invoked using a short click on the <keycap>right</keycap> mouse ! button.</para></listitem> <listitem><para><guilabel>"Left mouse button selects":</guilabel> this way, pressing the ! <keycap>left</keycap> mouse button selects files - you can click and select multiple files. ! Right-click menu is invoked using a short click on the <keycap>right</keycap> mouse ! button.</para></listitem> <listitem><para><guilabel>"Right button selects"</guilabel>: this way (sometimes referred to as ! 'total (windows) commander style') the <keycap>left</keycap> mouse button does not select, but sets the current file without affecting the current selection. The ! <keycap>right</keycap> mouse button selects multiple files and the right-click menu is ! invoked by <guilabel>pressing and holding</guilabel> the <keycap>right</keycap> mouse ! button.</para></listitem> </itemizedlist> </para></listitem> --- 177,193 ---- <listitem><para><guilabel>Classic</guilabel>: the way &krusader; used to work from day one. Both keys allow selecting files. To select more than one file, hold the ! &Ctrl; key and click the &LMB;. Right-click ! menu is invoked using a short click on the &RMB;. ! </para></listitem> <listitem><para><guilabel>"Left mouse button selects":</guilabel> this way, pressing the ! &LMB; selects files - you can click and select multiple files. ! Right-click menu is invoked using a short click on the &RMB;. ! </para></listitem> <listitem><para><guilabel>"Right button selects"</guilabel>: this way (sometimes referred to as ! 'total (windows) commander style') the &LMB; does not select, but sets the current file without affecting the current selection. The ! &RMB; selects multiple files and the right-click menu is ! invoked by <guilabel>pressing and holding</guilabel> the &RMB;. ! </para></listitem> </itemizedlist> </para></listitem> *************** *** 203,216 **** lists.</para></listitem> <listitem><para><guilabel>"Filelist icon size"</guilabel>: allows you to change the size of the icons in ! the file lists. available sizes are 16x16, 22x22, 32x32 and 48x48 pixels.</para></listitem> <listitem><para><guilabel>"Extension Column"</guilabel>: if checked, show the extension field (part after the last dot of the filename).</para></listitem> <listitem><para><guilabel>"Permission Column"</guilabel>: if checked, ! show the full perissions field.</para></listitem> <listitem><para><guilabel>"Mimetype Column"</guilabel>: if checked, show the mimetype field.</para></listitem> <listitem><para><guilabel>"&krusader; Permission Column"</guilabel>: if checked, ! show the &krusader; permission field ! (only the rights of the current user).</para></listitem> <listitem><para><guilabel>"Size Column"</guilabel>: if checked, show the size field.</para></listitem> --- 203,215 ---- lists.</para></listitem> <listitem><para><guilabel>"Filelist icon size"</guilabel>: allows you to change the size of the icons in ! the file lists. The available sizes are 16x16, 22x22, 32x32 and 48x48 pixels.</para></listitem> <listitem><para><guilabel>"Extension Column"</guilabel>: if checked, show the extension field (part after the last dot of the filename).</para></listitem> <listitem><para><guilabel>"Permission Column"</guilabel>: if checked, ! show the full perissions ⪚ "-rw-r--r--".</para></listitem> <listitem><para><guilabel>"Mimetype Column"</guilabel>: if checked, show the mimetype field.</para></listitem> <listitem><para><guilabel>"&krusader; Permission Column"</guilabel>: if checked, ! show only the rights of the current user ⪚ "-rw".</para></listitem> <listitem><para><guilabel>"Size Column"</guilabel>: if checked, show the size field.</para></listitem> *************** *** 222,227 **** show the group field.</para></listitem> <listitem><para><guilabel>"Use icons in filenames"</guilabel>: if checked, ! show the icons in filenames.</para></listitem> </itemizedlist> </sect2> --- 221,230 ---- show the group field.</para></listitem> <listitem><para><guilabel>"Use icons in filenames"</guilabel>: if checked, ! show the icons in filenames and folders.</para></listitem> </itemizedlist> + + <tip><para>Uncheck the not used columns, this allows to have more space for the used columns. + </para></tip> + </sect2> *************** *** 237,241 **** <sect2 id="konfig-looknfeel-keybindings"> <title>Key-bindings</title> ! <para>Here you can configure the Key-bindings. Configure the Key-bindings of your favourite functions the way you want.</para> </sect2> --- 240,244 ---- <sect2 id="konfig-looknfeel-keybindings"> <title>Key-bindings</title> ! <para>Here you can configure the &keybindigs_lnk;. Configure the Key-bindings of your favourite functions the way you want.</para> </sect2> *************** *** 246,260 **** <para><guilabel>"Panel Toolbar visible"</guilabel>: if checked, &krusader; will display the Panel Toolbar.</para> ! <para>Panel Toolbar buttons can be made visible/hidden <itemizedlist> ! <listitem><para><guilabel>"Open"</guilabel> button (in)visible</para> </listitem> ! <listitem><para><guilabel>"Equal (=)"</guilabel> button (in)visible</para> </listitem> ! <listitem><para><guilabel>"Up (..)"</guilabel> button (in)visible</para> </listitem> ! <listitem><para><guilabel>"Home (~)"</guilabel> button (in)visible</para> </listitem> ! <listitem><para><guilabel>"Root (/)"</guilabel> button (in)visible</para> </listitem> </itemizedlist> --- 249,263 ---- <para><guilabel>"Panel Toolbar visible"</guilabel>: if checked, &krusader; will display the Panel Toolbar.</para> ! <para>The buttons on the <guilabel>Panel Toolbar</guilabel> can be made visible or hidden: <itemizedlist> ! <listitem><para><guilabel>"Open"</guilabel> button</para> </listitem> ! <listitem><para><guilabel>"Equal (=)"</guilabel> button</para> </listitem> ! <listitem><para><guilabel>"Up (..)"</guilabel> button</para> </listitem> ! <listitem><para><guilabel>"Home (~)"</guilabel> button</para> </listitem> ! <listitem><para><guilabel>"Root (/)"</guilabel> button</para> </listitem> </itemizedlist> *************** *** 269,273 **** <title>Colors page</title> ! <para>This page configures the <link linkend="krusader_screenshot">colors</link> in the list panel.</para> <variablelist> --- 272,291 ---- <title>Colors page</title> ! <para>This page configures the <link linkend="krusader_screenshot">colors</link> in the list panel. ! The <guilabel>"KDE default colors"</guilabel> is the default color configuration, ! <guilabel>"Use alternate background color"</guilabel> checkbox will enable/disable the alternate &kde; colors. ! </para> ! ! <!--HTML_PARSING ! <screenshot> ! <screeninfo>Konfigurator color page</screeninfo> ! <mediaobject> ! <imageobject><imagedata fileref="kgcolor.png" format="PNG"/></imageobject> ! <imageobject><imagedata fileref="kgcolor.eps" format="EPS"/></imageobject> ! <textobject><phrase>Konfigurator color page</phrase></textobject> ! <caption><para>Konfigurator color page.</para></caption> ! </mediaobject> ! </screenshot> ! HTML_PARSING--> <variablelist> *************** *** 275,288 **** <listitem> <itemizedlist> - <listitem><para><guilabel>"Use the KDE default colors"</guilabel>: - this is the default color configuration of &krusader;.</para> - </listitem> <listitem><para><guilabel>"Use alternate background color"</guilabel>: If checked, the <guilabel>"Background"</guilabel> color and the <guilabel>"Alternate background"</guilabel> color alternates line by line. ! </para> </listitem> <listitem><para><guilabel>"Show current item even if not focused"</guilabel>: ! If checked, show the latest cursor position in the non active list panel.</para> </listitem> </itemizedlist> --- 293,305 ---- <listitem> <itemizedlist> <listitem><para><guilabel>"Use alternate background color"</guilabel>: If checked, the <guilabel>"Background"</guilabel> color and the <guilabel>"Alternate background"</guilabel> color alternates line by line. ! When you don't use the &kde; default colors, you can configure the ! alternate colors in the <guilabel>Colors</guilabel> box.</para> </listitem> <listitem><para><guilabel>"Show current item even if not focused"</guilabel>: ! If checked, show the latest cursor position in the non active list panel. ! This option is available when you don't use the &kde; default colors.</para> </listitem> </itemizedlist> *************** *** 291,318 **** <varlistentry><term><guilabel>Colors</guilabel></term> ! <listitem><para>Configures the colors the way you like, ! if <guilabel>"Use the KDE default colors"</guilabel> is unchecked.</para> <itemizedlist> ! <listitem><para><guilabel>"Active"</guilabel> tab: color settings for the active panel ! (the panel who has the focus).</para></listitem> ! <listitem><para><guilabel>"Inactive"</guilabel> tab: color settings for the inactive panel ! (the panel who does not have the focus).</para></listitem> ! <listitem><para><guilabel>"Foreground"</guilabel>: general foreground color.</para></listitem> ! <listitem><para><guilabel>"Directory foreground"</guilabel>: directory color.</para></listitem> ! <listitem><para><guilabel>"Executable foreground"</guilabel>: executable color.</para></listitem> ! <listitem><para><guilabel>"Symbolic link foreground"</guilabel>: symbolic link color.</para></listitem> ! <listitem><para><guilabel>"Invalid symlink foreground"</guilabel>: ! invalid symlink color.</para></listitem> ! <listitem><para><guilabel>"Background"</guilabel>: general background color.</para></listitem> ! <listitem><para><guilabel>"Alternate background"</guilabel>: ! general alternate background color.</para></listitem> ! <listitem><para><guilabel>"Marked foreground"</guilabel>: marked color.</para></listitem> ! <listitem><para><guilabel>"Marked background"</guilabel>: marked background color.</para></listitem> ! <listitem><para><guilabel>"Alternate marked background"</guilabel>: ! alternate marked background color.</para></listitem> ! <listitem><para><guilabel>"Current foreground"</guilabel>: ! cursor position foreground color in the active list panel.</para></listitem> ! <listitem><para><guilabel>"Current background"</guilabel>: ! cursor position background color in the active list panel.</para></listitem> </itemizedlist> </listitem> --- 308,327 ---- <varlistentry><term><guilabel>Colors</guilabel></term> ! <listitem><para>Chose the colors the way you like. In the <guilabel>"Preview"</guilabel> section you can ! see the result. The colors of the active and inactive panel can be configured. The following items can ! be configured</para> <itemizedlist> ! <listitem><para><guilabel>Foreground</guilabel></para></listitem> ! <listitem><para><guilabel>Directory foreground</guilabel></para></listitem> ! <listitem><para><guilabel>Executable foreground</guilabel></para></listitem> ! <listitem><para><guilabel>Symbolic link foreground</guilabel></para></listitem> ! <listitem><para><guilabel>Invalid symlink foreground</guilabel></para></listitem> ! <listitem><para><guilabel>Background"</guilabel></para></listitem> ! <listitem><para><guilabel>Alternate background</guilabel></para></listitem> ! <listitem><para><guilabel>Marked foreground</guilabel></para></listitem> ! <listitem><para><guilabel>Marked background</guilabel></para></listitem> ! <listitem><para><guilabel>Alternate marked background</guilabel></para></listitem> ! <listitem><para><guilabel>Current foreground</guilabel></para></listitem> ! <listitem><para><guilabel>Current background</guilabel></para></listitem> </itemizedlist> </listitem> *************** *** 329,332 **** --- 338,343 ---- <sect1 id="konfig-general"> <title>General page</title> + <para>Here you configure the basic operations.</para> + <screenshot> <screeninfo>Konfigurator General page</screeninfo> *************** *** 368,371 **** --- 379,385 ---- <sect1 id="konfig-advanced"> <title>Advanced page</title> + <para>This page handles more advanced issues, so you should double-check what you do here, since modifying + things around here <remark>makes &krusader; a more powerful AND dangerous tool.</remark></para> + <screenshot> <screeninfo>Konfigurator Advanced page</screeninfo> *************** *** 378,383 **** </screenshot> - <para>This page handles more advanced issues, so you should double-check what you do here, since modifying - things around here <remark>makes &krusader; a more powerful AND dangerous tool.</remark></para> <para>The page is divided into three parts:</para> --- 392,395 ---- *************** *** 400,406 **** <varlistentry><term><guilabel>Confirmations</guilabel></term> <listitem><para>By checking the options in this section, you'll make &krusader; ask for confirmation ! before doing a specific action. Otherwise, the actions will be done without warning.</para> ! <para>These operations are: deleting non empty directorie(s), deleting file(s), copying file(s) and ! moving file(s).</para> </listitem></varlistentry> --- 412,422 ---- <varlistentry><term><guilabel>Confirmations</guilabel></term> <listitem><para>By checking the options in this section, you'll make &krusader; ask for confirmation ! before doing a specific action. Otherwise, the following actions will be done without warning.</para> ! <itemizedlist> ! <listitem><para>deleting non empty directorie(s)</para></listitem> ! <listitem><para>deleting file(s)</para></listitem> ! <listitem><para>copying file(s)</para></listitem> ! <listitem><para>moving file(s)</para></listitem> ! </itemizedlist> </listitem></varlistentry> *************** *** 412,417 **** bigger.</para></listitem> <listitem><para><guilabel>"Arguments of updatedb"</guilabel>: sets additional arguments for ! <command>updatedb</command>, please read ! <command>man updatedb</command>.</para></listitem> </itemizedlist> </listitem></varlistentry> --- 428,432 ---- bigger.</para></listitem> <listitem><para><guilabel>"Arguments of updatedb"</guilabel>: sets additional arguments for ! <command>updatedb</command>, please read the manpages for more information.</para></listitem> </itemizedlist> </listitem></varlistentry> *************** *** 422,425 **** --- 437,449 ---- <sect1 id="konfig-archives"> <title>Archives page</title> + <para>This page handles the way &krusader; works with archives. In the <guilabel>General</guilabel> section + you'll see a list of archive formats. Some are checked and some are grayed-out. The ones that are available + (not grayed-out) are supported by &krusader;. If you check them, then &krusader; will handle them transparently + and let you open them as folders. Otherwise, &krusader; will attempt to invoke an application which opens that + type of archive. If a certain archive is grayed-out, it means that &krusader; couldn't find the appropriate + executables in the configured path. Please configures the full path of the packagers in the + <link linkend="konfig-dependencies">Konfigurator Dependencies page</link> (⪚ to handle ZIP archives, &krusader; + needs the <command>unzip</command> and <command>zip</command> executables).</para> + <screenshot> <screeninfo>Konfigurator Archives page</screeninfo> *************** *** 432,447 **** </screenshot> ! <para>This page handles the way &krusader; works with archives. In the <guilabel>General</guilabel> section ! you'll see a list of archive formats. Some are checked and some are grayed-out. The ones that are available ! (not grayed-out) are supported by &krusader;. If you check them, then &krusader; will handle them transparently ! and let you open them as folders. Otherwise, &krusader; will attempt to invoke an application which opens that ! type of archive. If a certain archive is grayed-out, it means that &krusader; couldn't find the appropriate ! executables in the <envar>PATH</envar> (to handle ZIP archives, &krusader; needs 'unzip' and 'zip' executables).</para> ! ! <para>If you've installed a certain archive application (let's say 'arj') and want &krusader; to know about ! it, just click the <guibutton>"Auto Configure"</guibutton> button. &krusader; will search for all supported executables and print a report listing the archive formats that can be handled. If all went well the new archive should be available and checked. ! <note><para>Please install new archives to your <envar>PATH</envar> (&ie;: <filename>/usr/bin</filename> or ! <filename>/usr/local/bin</filename> &etc;)</para></note></para> <para><guilabel>Fine-Tuning</guilabel> --- 456,466 ---- </screenshot> ! <para>If you've installed a certain archive application (let's say <command>arj</command>) and want &krusader; ! to know about it, just click the <guibutton>"Auto Configure"</guibutton> button. &krusader; will search for all ! supported executables and print a report listing the archive formats that can be handled. If all went well the ! new archive should be available and checked.</para> ! <note><para>Please install new packagers to your <envar>PATH</envar> (&ie;: <filename>/usr/bin</filename> or ! <filename>/usr/local/bin</filename> &etc;)</para></note> <para><guilabel>Fine-Tuning</guilabel> *************** *** 452,456 **** packed into the archive. <note><para> If such thing happens, the file(s) are NOT LOST. They were actually moved into a subfolder in the ! &krusader;'s temp directory. You can search that directory and find your files, safe and sound. </para></note></para></listitem> <listitem><para><guilabel>"Test archives when finished packing"</guilabel>: this option automatically --- 471,476 ---- packed into the archive. <note><para> If such thing happens, the file(s) are NOT LOST. They were actually moved into a subfolder in the ! &krusader;'s <link linkend="konfig-general">temp directory</link>. ! You can search that directory and find your files, safe and sound. </para></note></para></listitem> <listitem><para><guilabel>"Test archives when finished packing"</guilabel>: this option automatically Index: commands.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/commands.sgml,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** commands.sgml 23 Apr 2004 08:57:17 -0000 1.10 --- commands.sgml 26 Jul 2004 19:31:26 -0000 1.11 *************** *** 353,357 **** Open the <link linkend="remote-man">&FTP; connection manager</link>.</para> <para><keycap>Important: RemoteMan has been replaced by our new bookmark manager since Krusader 1.25-beta1. ! The new manager handles local files and remote URL's the same way. RemoteMan is being left around to allow an easier transition and give you a chance to move your bookmarks. IT WILL BE REMOVED SOON!</keycap></para> --- 353,357 ---- Open the <link linkend="remote-man">&FTP; connection manager</link>.</para> <para><keycap>Important: RemoteMan has been replaced by our new bookmark manager since Krusader 1.25-beta1. ! The new manager handles local files and remote &URL;'s the same way. RemoteMan is being left around to allow an easier transition and give you a chance to move your bookmarks. IT WILL BE REMOVED SOON!</keycap></para> Index: faq.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/faq.sgml,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** faq.sgml 10 Jun 2004 19:04:38 -0000 1.13 --- faq.sgml 26 Jul 2004 19:31:26 -0000 1.14 *************** *** 173,179 **** </question> <answer> ! <para>Compile &krusader; from source :) Even when you think that you have no skills, you will probably succeed in compiling &krusader;! ! We provide a verry detailled &install_proc_lnk;. This will allow that even newcomers will be able to compile &krusader; from source, even when you dit never before a compilation from source. Feel free to post a &help_request_lnk; if you encounter problems. --- 173,181 ---- </question> <answer> ! <para> ! Dit you take a look at the &URL;'s on the &install_proc_lnk; page? Yes, and noting found? ! Then you will have to compile &krusader; from source :) Even when you think that you have no skills, you will probably succeed in compiling &krusader;! ! We provide a verry detailled &install_proc_lnk;. This howto allows that even newcomers will be able to compile &krusader; from source, even when you dit never before a compilation from source. Feel free to post a &help_request_lnk; if you encounter problems. *************** *** 243,247 **** to compile &krusader;. If you know how this can be solved, please let us know. Install <filename>libfam0-devel-foo.rpm</filename>. ! Note: when you install <application>Mandrake 9.1</application> with the default settings, this package is not installed. If you need more information take a look at &missing_libs_lnk;. --- 245,249 ---- to compile &krusader;. If you know how this can be solved, please let us know. Install <filename>libfam0-devel-foo.rpm</filename>. ! Note: when you install &Mandrake;-&Linux; 9.2 with the default settings, this package is not installed. If you need more information take a look at &missing_libs_lnk;. *************** *** 446,450 **** <answer> <para>You are probably behind a firewall/proxy and haven't enabled "Passive Mode". ! Enable "Passive &FTP;" through &kde;'s <application>Control Center</application> and try again. <emphasis role="bold"><menuchoice><guimenu>KDE Control Center</guimenu> <guimenuitem>Network</guimenuitem><guimenuitem>Preferences</guimenuitem></menuchoice></emphasis> , --- 448,452 ---- <answer> <para>You are probably behind a firewall/proxy and haven't enabled "Passive Mode". ! Enable "Passive &FTP;" through &kde;'s &kcontrolcenter; and try again. <emphasis role="bold"><menuchoice><guimenu>KDE Control Center</guimenu> <guimenuitem>Network</guimenuitem><guimenuitem>Preferences</guimenuitem></menuchoice></emphasis> , *************** *** 463,467 **** <answer> <para>The reason of this error is that '&FTP; via &HTTP; proxy' feature is not yet supported by &krusader;. ! This error can occur at misconfiguring the proxy settings in &kde; (Control Center). Modify the proxy setting to not use &HTTP; proxy and &FTP; will work. </para> --- 465,469 ---- <answer> <para>The reason of this error is that '&FTP; via &HTTP; proxy' feature is not yet supported by &krusader;. ! This error can occur at misconfiguring the proxy settings in &kcontrolcenter;. Modify the proxy setting to not use &HTTP; proxy and &FTP; will work. </para> *************** *** 520,526 **** </orderedlist></para> <para>Thanks for your cooperation!</para> ! <note><para>If possible try todo the same operation with &konqueror;, if you have the same problem than it is ! probably a &kioslave_url; (kdelibs) bug, and not a &krusader; bug. ! &krusader; uses the &kde; libraries and the &kioslaves_url; for several operations. </para></note> <para> </para> <!-- Empty line to make it more readable --> --- 522,531 ---- </orderedlist></para> <para>Thanks for your cooperation!</para> ! <note><para>If possible, try todo the same operation with &konqueror; or an other &kde; application. ! If you encounter the same problem than it is possibly a &kioslave_url; or &kde; (kdelibs) bug, ! and not a &krusader; bug. ! &krusader; uses the &kde; libraries and the &kioslaves_url; for many operations. ! In some cases you can encounter problems when your distribution is bad configured, please test it first ! as explained above, thanks! </para></note> <para> </para> <!-- Empty line to make it more readable --> Index: krusader-tools.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/krusader-tools.sgml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** krusader-tools.sgml 10 Jun 2004 19:04:38 -0000 1.11 --- krusader-tools.sgml 26 Jul 2004 19:31:27 -0000 1.12 *************** *** 20,100 **** * MA 02111-1307, USA. * *********************************************************************** --> <title>&krusader; Tools</title> <sect1 id = "remote-man"> - <title>RemoteMan: the &FTP;/SMB connection manager</title> - <screenshot> - <screeninfo>RemoteMan</screeninfo> - <mediaobject> - <imageobject><imagedata fileref="remoteman.png" format="PNG"/></imageobject> - <imageobject><imagedata fileref="remoteman.eps" format="EPS"/></imageobject> - <textobject><phrase>RemoteMan</phrase></textobject> - <caption><para>RemoteMan.</para></caption> - </mediaobject> - </screenshot> - <para><emphasis role="bold"> - Important: RemoteMan has been replaced by our new bookmark manager since Krusader 1.25-beta1. - The new manager handles local files and remote &URL;'s the same way. - RemoteMan is being left around to allow an easier transition and - give you a chance to move your bookmarks. IT WILL BE REMOVED SOON!</emphasis></para> ! <para>Try the new bookmark-manager: open a new remote connection. once ! done, press the <guibutton>"Bookmark"</guibutton> button, select ! <guimenuitem>"Add bookmark"</guimenuitem> and that's it! ! </para> ! <para> ! RemoteMan is a central place for all your &FTP;/SMB needs. It is a tree-like list of remote locations ! each with its own username and password. You can create new "folders" (or groups) in the tree and place ! remote sessions inside these groups. Each session includes a name (something that best describes the &URL;) ! and a host. A hostname is a &URL; which can begin with 'ftp://' or 'smb://'. Additional information that ! can be filled is the username and password. Not filling these values will trigger an anonymous login. You ! can also click the 'anonymous' checkbox, which will force an anonymous login. One can also decide on a ! different port - or keep the default (port 21). If you choose a 'smb://' host, you cannot change the port. ! Optional are the description (a freetext area) and remote directory. If you enter a remote directory, ! &krusader; will try, upon connection, to cd into that directory.</para> ! <itemizedlist> ! <listitem><para><keycap>Double clicking</keycap> on a session makes &krusader; connect to that host. ! You can also use the <guibutton>"Connect"</guibutton> button for that purpose.</para></listitem> ! <listitem><para>The <guibutton>"More"</guibutton> button does nothing for now. We keep some tricks for &krusader; ! 2.</para></listitem> ! </itemizedlist> </sect1> <sect1 id = "mount-man"> ! <title>MountMan: handle your mounted filesystems</title> ! <screenshot> ! <screeninfo>MountMan</screeninfo> ! <mediaobject> ! <imageobject><imagedata fileref="mountman.png" format="PNG"/></imageobject> ! <imageobject><imagedata fileref="mountman.eps" format="EPS"/></imageobject> ! <textobject><phrase>MountMan</phrase></textobject> ! <caption><para>MountMan.</para></caption> ! </mediaobject> ! </screenshot> ! <para>MountMan is a tool which helps you manage your mounted filesystems. Once invoked, it displays ! a list of every mounted filesystem. For each filesystem, MountMan displays its name (which is the ! actual device name - &ie; /dev/fd0 for a floppy), its type (vfat, ext2 ...) and its mount-point ! (the directory on which the filesystem is mounted). MountMan also displays usage information using ! total size, free size and percentage free. If those numbers say "N/A", it usually means that the filesystem ! isn't mounted. Left clicking on a filesystem displays a pie chart on the left of the window, this ! graphically displays the usage information for the filesystem. Clicking on a non-mounted filesystem will ! display "not mounted" instead of the graph.</para> ! <itemizedlist> ! <listitem><para><keycap>Double clicking</keycap> on a filesystem will close MountMan and open ! that filesystem inside &krusader;'s active panel.</para></listitem> ! <listitem><para><keycap>Right clicking</keycap> on a filesystem will open a small menu which ! displays what actions can be performed on that filesystem. For now you can only mount, unmount and ! eject (if clicking on a removable filesystem - e.g. a cdrom).</para></listitem> ! </itemizedlist> ! <note><para>We plan to expand MountMan in the next evolution of &krusader;. It will be able to format floppies, ! edit <filename class="directory">/etc/fstab</filename>, create new filesystems and more... ! btw. we have started working on it, see "Quickmode for MountMan"</para></note> <para><emphasis role="bold">Quickmode for MountMan</emphasis></para> ! <note><para>This new feature will be the future MountMan, but for now it is still under development therefore unfinished. &hesbugreport_lnk; ! If you have a good idea, don't hesitate to send us <link linkend="faqq_wish_patch">User feedback</link>.</para></note> ! <para>Quickmode for MountMan is only available on &kde; 3.2 - earlier versions will see no difference.</para> <para>To activate Quickmode for MountMan, click AND HOLD the MountMan button on the &toolbar_lnk;</para> --- 20,120 ---- * MA 02111-1307, USA. * *********************************************************************** --> + <title>&krusader; Tools</title> <sect1 id = "remote-man"> ! <title>RemoteMan: the &FTP;/SMB connection manager</title> ! <screenshot> ! <screeninfo>RemoteMan</screeninfo> ! <mediaobject> ! <imageobject><imagedata fileref="remoteman.png" format="PNG"/></imageobject> ! <imageobject><imagedata fileref="remoteman.eps" format="EPS"/></imageobject> ! <textobject><phrase>RemoteMan</phrase></textobject> ! <caption><para>RemoteMan.</para></caption> ! </mediaobject> ! </screenshot> ! ! <para><emphasis role="bold">Important: RemoteMan has been replaced by our new bookmark manager since Krusader 1.25-beta1. ! The new manager handles local files and remote &URL;'s the same way. ! RemoteMan is being left around to allow an easier transition and ! give you a chance to move your bookmarks. IT WILL BE REMOVED SOON!</emphasis></para> ! ! <para>Try the new bookmark-manager: open a new remote connection. once ! done, press the <guibutton>"Bookmark"</guibutton> button, select ! <guimenuitem>"Add bookmark"</guimenuitem> and that's it!</para> ! ! <para>RemoteMan is a central place for all your &FTP;/SMB needs. ! It is a tree-like list of remote locations each with its own username and password. ! You can create new "folders" (or groups) in the tree and place remote sessions inside these groups. ! Each session includes a name (something that best describes the &URL;) and a host. ! A hostname is a &URL; which can begin with <replaceable>'ftp://'</replaceable> or ! <replaceable>'smb://'</replaceable>. ! Additional information that can be filled is the username and password. ! Not filling these values will trigger an anonymous login. ! You can also click the 'anonymous' checkbox, which will force an anonymous login. ! One can also decide on a different port - or keep the default (port 21). ! If you choose a <replaceable>'smb://'</replaceable> host, you cannot change the port. ! Optional are the description (a freetext area) and remote directory. ! If you enter a remote directory, &krusader; will try, upon connection, to cd into that directory.</para> ! <itemizedlist> ! <listitem><para><keycap>Double clicking</keycap> on a session makes &krusader; connect to that host. ! You can also use the <guibutton>"Connect"</guibutton> button for that purpose. ! </para></listitem> ! <listitem><para>The <guibutton>"More"</guibutton> button does nothing for now. ! </para></listitem> ! </itemizedlist> </sect1> + <sect1 id = "mount-man"> ! <title>MountMan: handle your mounted filesystems</title> ! <para>MountMan is a tool which helps you manage your mounted filesystems. ! Once invoked, it displays a list of every mounted filesystem. ! For each filesystem, MountMan displays its name (which is the actual device name - &ie; ! <filename class="directory">/dev/fd0</filename> for a <hardware>floppy</hardware>), ! its type (vfat, ext3, ReiserFS ...) and its mount-point ! (the directory on which the filesystem is mounted).</para> ! ! <screenshot> ! <screeninfo>MountMan</screeninfo> ! <mediaobject> ! <imageobject><imagedata fileref="mountman.png" format="PNG"/></imageobject> ! <imageobject><imagedata fileref="mountman.eps" format="EPS"/></imageobject> ! <textobject><phrase>MountMan</phrase></textobject> ! <caption><para>MountMan.</para></caption> ! </mediaobject> ! </screenshot> ! ! <para>MountMan also displays usage information using total size, free size and percentage free. ! If those numbers say <guilabel>"N/A"</guilabel>, it usually means that the filesystem isn't mounted. ! Left clicking on a filesystem displays a pie chart on the left of the window, this ! graphically displays the usage information for the filesystem. ! Clicking on a non-mounted filesystem will display <guilabel>"not mounted"</guilabel> ! instead of the graph.</para> ! <itemizedlist> ! <listitem><para><keycap>Double clicking</keycap> on a filesystem will close MountMan and open ! that filesystem inside &krusader;'s active panel. ! </para></listitem> ! <listitem><para><keycap>Right clicking</keycap> on a filesystem will open a small menu which ! displays what actions can be performed on that filesystem. ! For now you can only mount, unmount and eject (if clicking on a removable filesystem ! - e.g. a <hardware>cdrom</hardware>). ! </para></listitem> ! </itemizedlist> ! ! <note><para>We plan to expand MountMan in the next evolution of &krusader;. ! It will be able to format floppies, edit <filename class="directory">/etc/fstab</filename>, ! create new filesystems and more... ! btw. we have started working on it, see "Quickmode for MountMan"</para></note> <para><emphasis role="bold">Quickmode for MountMan</emphasis></para> ! <note><para>This new feature will be the future MountMan, but for now it is still under development ! and therefore unfinished. ! &hesbugreport_lnk; ! If you have a good idea, don't hesitate to send us <link linkend="faqq_wish_patch">User feedback</link>.</para></note> ! <para>"Quickmode for MountMan" is only available on &kde; 3.2 - earlier versions will see no difference.</para> <para>To activate Quickmode for MountMan, click AND HOLD the MountMan button on the &toolbar_lnk;</para> *************** *** 102,106 **** <para>General idea: display a list of all possible mountpoints. Each time the menu is displayed, it determines if a mountpoint is mounted or not and associated the correct ! action (mount or umount). This offers a quick interface to MountMan. It is working, and currently uses KMountMan::mount and unmount, we think that it can replace the "old" MountMan. It uses the new &kde; services for fstab-reading and this will enable us to remove A LOT of code --- 122,126 ---- <para>General idea: display a list of all possible mountpoints. Each time the menu is displayed, it determines if a mountpoint is mounted or not and associated the correct ! action (mount or umount). This offers a quick interface to MountMan. It is working, and currently uses KMountMan::mount and unmount, we think that it can replace the "old" MountMan. It uses the new &kde; services for fstab-reading and this will enable us to remove A LOT of code *************** *** 109,289 **** </sect1> <sect1 id = "bookman"> <title>BookMan: Organize your bookmarks</title> ! <note><para>Since &krusader; 1.25-beta1 there is a new BookMan and &krusader;'s bookmark manager to edit and ! organize your bookmarks has been replaced by &keditbookmarks;.</para></note> ! <para>BookMan is a tool which allows you to bookmark folders and &URL;'s using &krusader;, and later return to ! them in a click of a button. All you need to do is click on the <guibutton>"Bookmark"</guibutton> button.</para> ! <screenshot> ! <screeninfo>BookMan: the Bookmark menu</screeninfo> ! <mediaobject> ! <imageobject><imagedata fileref="bookmanadd.png" format="PNG"/></imageobject> ! <imageobject><imagedata fileref="bookmanadd.eps" format="EPS"/></imageobject> ! <textobject><phrase>BookMan: the Bookmark menu</phrase></textobject> ! <caption><para>BookMan: the Bookmark menu.</para></caption> ! </mediaobject> ! </screenshot> ! <para>Usually, you click on the <guibutton>"Bookmark"</guibutton> button when you're in the target folder. For example, to bookmark ! '/usr/tmp', navigate &krusader; there and click the <guibutton>"Bookmark"</guibutton> button and select ! <guimenuitem>"Add bookmarks"</guimenuitem>. When the <guilabel>"Add bookmarks"</guilabel> dialog box appears, the &URL; line will say '/usr/tmp'. The upper ! line (Bookmark name) is for the name you would like to call the bookmark (for example: temporary folder). If you add the ! bookmark without entering a name, the bookmarks name will be the same as its target. With the ! <guimenuitem>"New Bookmark Folder..."</guimenuitem> item you can create a new bookmark folder.</para> ! <note><para>You can bookmark inside a remote filesystem (&FTP; or SAMBA) and later use the bookmark to quickly connect ! to the remote machine. You CANNOT bookmark inside an archive.</para></note> ! <para>To use your new bookmarks, click the <guibutton>"Bookmark"</guibutton> button and choose one - as shown in the picture above. ! You may also use the keyboard shortcut <keycap>Alt+right/left arrow</keycap> to <keycap>open right/left ! panel bookmarks list</keycap></para> ! <screenshot> ! <screeninfo>&keditbookmarks; edit and organize your Bookmarks</screeninfo> ! <mediaobject> ! <imageobject><imagedata fileref="bookmanedit.png" format="PNG"/></imageobject> ! <imageobject><imagedata fileref="bookmanedit.eps" format="EPS"/></imageobject> ! <textobject><phrase>&keditbookmarks; edit and organize your Bookmarks</phrase></textobject> ! <caption><para>&keditbookmarks;: edit and organize your Bookmarks.</para></caption> ! </mediaobject> ! </screenshot> ! <para>To edit and organize your bookmarks, click the <guibutton>"Bookmark"</guibutton> button and select ! <guimenuitem>"Edit bookmarks"</guimenuitem>, &keditbookmarks; will be displayed. ! This is where you can edit/remove and re-arrange the bookmarks. ! &keditbookmarks; (part of the kdebase package) is a bookmark editor for &konqueror;, &krusader; and other ! applications, which use the &xbel_url; standard for the bookmark format. The bookmarks are stored in ! <filename class="directory">~/.kde/share/apps/krusader/krbookmarks.xml.</filename></para> ! <para>You can inport bookmarks from <application>IE</application>, <application>Opera</application>, ! <application>Galeon</application>, &kde;, ! <application>Mozilla</application>, &Netscape;. ! &keditbookmarks; is easy to use, please read the &keditbookmarks; or the &konqueror; handbook if you need more ! info.</para> </sect1> <sect1 id = "krusearcher"> <title>KruSearcher: find what you're looking for</title> - <para>Welcome to &krusader;'s powerful search module - nicknamed Krusearcher. It is the most able - tool (that we know of) for &Linux;, since it allows so many different ways to quickly find the file you're - looking for. It is divided into two levels, the general and the advanced. Let's take a look at the general - page ...</para> - <screenshot> - <screeninfo>Krusearcher General</screeninfo> - <mediaobject> - <imageobject><imagedata fileref="search_general.png" format="PNG"/></imageobject> - <imageobject><imagedata fileref="search_general.eps" format="EPS"/></imageobject> - <textobject><phrase>Krusearcher General</phrase></textobject> - <caption><para>Krusearcher General.</para></caption> - </mediaobject> - </screenshot> - <para>The page is divided into four parts: top (search for) part, bottom part - titled 'containing text', - left part - titled 'search in' and right part which is called 'don't search in'. Obviously, each part - handles different aspects of the search. Let's look at them closely.</para> - <itemizedlist><title>Top Part:</title> - <listitem><para><guilabel>"Search for"</guilabel>: here you enter the main search criteria. - You can enter a filename, a wildcard (<literal role="extension">*.o.*</literal>, - <literal role="extension">*.c</literal> &etc;) or both - separated by a space. - </para></listitem> - <listitem><para><guilabel>"Case sensitive"</guilabel>: unchecking it will allow lower and upper case - search (&ie;: <literal role="extension">*.c</literal> interprets as <literal role="extension">*.c</literal> - AND <literal role="extension">*.C</literal>).</para></listitem> - <listitem><para><guilabel>"Of type"</guilabel>: this box lets you search for a file not only by its - name, but also by its mimetype. For example, you can search for all the audio files whose name - begins with B. Usually this option defaults to 'all files', but you can choose to search for - archives, directories, images, text files, videos and audio files.</para></listitem> - </itemizedlist> ! <itemizedlist><title>Left and Right Part:</title> ! <listitem><para><guilabel>"Search in"</guilabel> and <guilabel>"Don't search in"</guilabel>: Using those two parts, ! you can specify a search exactly the way you want it. For example, you might want to search for ! a file in the whole filesystem (beginning with /), but don't want to search inside /mnt. All you ! need to do is write '/' in the 'search in' box, and write '/mnt' in the 'dont search in' box. ! If you want to enter more than one directory in one of the boxes, just write the first name and ! press <keycap>Enter</keycap>. The directories name will be copied to the bigger box and you'll be ! able to enter another name. ! <note><para>The input line has an auto completion feature, corrosponding to &kde;'s global settings. ! If you wish, you can click on the folder icon, and browse to the directory you wish to ! add.</para></note> ! </para></listitem> ! </itemizedlist> ! <itemizedlist><title>Bottom Part:</title> ! <listitem><para><guilabel>"Text"</guilabel>: entering text here makes &krusader; search for it inside the ! files (grep). That way, you can search for all header files (*.h) which include the word 'testing 123' ! inside them.</para></listitem> ! <listitem><para><guilabel>"Match whole word only"</guilabel></para></listitem> ! <listitem><para><guilabel>"Case sensitive"</guilabel>: refers to your text being searched for in upper ! and lower case or the exact phrase you entered.</para></listitem> ! <listitem><para><guilabel>"Search in subdirectories"</guilabel>: do a recursive search and dive into ! every directory on the way.</para></listitem> ! <listitem><para><guilabel>"Search in archives"</guilabel>: &krusader; will search for your files inside ! every supported archive. This, however, takes longer to perform. ! <note><para>If you check this checkbox, you'll notice you cannot 'grep' inside files anymore. ! This is done, since looking inside files which are archived, forces &krusader; ! to extract them, which will results in an extremely long search.</para></note></para></listitem> ! <listitem><para><guilabel>"Follow links"</guilabel>: if checked, &krusader; will follow soft-links during ! the search.</para></listitem> ! </itemizedlist> ! <para>The above screenshot shows a search for all the files which end with c, cpp or h and include the ! string 'testing 123'. &krusader; will search in /root, /opt, /bin and /usr, but not in /usr/lib and ! /usr/share.</para> ! <para>Clicking the <guibutton>"Search"</guibutton> button starts the search and displays the results page. ! During the search, you may press the <guibutton>"Stop"</guibutton> button to stop the search. The close button ! is not operational during a search, so you must first stop the search and then <guibutton>"Close"</guibutton> the ! window. When a result is found, double clicking on it will make &krusader;'s active panel point to the found ! files - but will not close the search window, so you'll be able to click on a different result.</para> ! <para>Sometimes, you need to narrow your search even more. Krusearcher allows a much finer search, and ! for that, let's look at the advanced page...</para> ! <screenshot> ! <screeninfo>Krusearcher Advanced</screeninfo> ! <mediaobject> ! <imageobject><imagedata fileref="search_advanced.png" format="PNG"/></imageobject> ! <imageobject><imagedata fileref="search_advanced.eps" format="EPS"/></imageobject> ! <textobject><phrase>Krusearcher Advanced</phrase></textobject> ! <caption><para>Krusearcher Advanced.</para></caption> ! </mediaobject> ! </screenshot> ! <para>This screenshot shows a search for files which size is between 10KB and 150KB, which were modified ! between October 10th and November 1st. Which belong to any user in the 'ftp' group, and are readable and ! writeable by anyone in the 'ftp' group but only readable to the rest of the world.</para> ! <para>The advanced page is divided into three parts: size, date and ownership.</para> ! <para><guilabel>"Size"</guilabel></para> ! <para>Allows you to choose the size range of the file you're looking for. By checking the checkboxes, you can ! search for a file which is bigger than XXX bytes (or KB, MB), smaller than XXX bytes or, by checking both, ! search for a file which size is bigger than XXX but smaller than YYY.</para> ! <para><guilabel>"Date"</guilabel></para> ! <para>This part offers three different ways of defining a date criteria: ! <itemizedlist> ! <listitem><para><guilabel>"Modified between"</guilabel>: allows you to enter two dates. &krusader; will ! search for files with a modification date between the first date and the... [truncated message content] |