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: <kru...@us...> - 2003-12-06 13:56:21
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1:/tmp/cvs-serv7413/krusader Modified Files: krslots.h Log Message: add: foundations for user menu Index: krslots.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krslots.h,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** krslots.h 29 Nov 2003 16:58:23 -0000 1.17 --- krslots.h 6 Dec 2003 13:56:17 -0000 1.18 *************** *** 114,117 **** --- 114,118 ---- void slotSplit(); void slotCombine(); + void userMenu(); // F2 |
From: <kru...@us...> - 2003-12-06 13:55:59
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1:/tmp/cvs-serv7342/krusader Modified Files: krusaderui.rc Log Message: add: foundations for user menu Index: krusaderui.rc =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusaderui.rc,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** krusaderui.rc 29 Nov 2003 12:05:30 -0000 1.15 --- krusaderui.rc 6 Dec 2003 13:55:56 -0000 1.16 *************** *** 39,42 **** --- 39,43 ---- <Action name="ftp connect" /> <Action name="ftp new connection" /> + <Action name="user menu" /> </Menu> <Menu name="myview" > |
From: <kru...@us...> - 2003-12-06 13:16:41
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv1818 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.144 retrieving revision 1.145 diff -C2 -d -r1.144 -r1.145 *** ChangeLog 2 Dec 2003 14:24:55 -0000 1.144 --- ChangeLog 6 Dec 2003 13:16:38 -0000 1.145 *************** *** 1,3 **** --- 1,4 ---- ADDED: file splitter + FIXED: obsolete QT header files FIXED: crash at closing the progressbar window at packing FIXED: no or uninformative error message at packing to a readonly directory |
From: <kru...@us...> - 2003-12-06 13:14:31
|
Update of /cvsroot/krusader/krusader_kde3/krusader/UserMenu In directory sc8-pr-cvs1:/tmp/cvs-serv1469/krusader/UserMenu Added Files: usermenu.h Log Message: --- NEW FILE: usermenu.h --- /*************************************************************************** usermenu.h - description ------------------- begin : Sat Dec 6 2003 copyright : (C) 2003 by Shie Erlich & Rafi Yanai email : ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef USERMENU_H #define USERMENU_H /** Command: %xYYY% x - can be either 'a' for active panel, or 'o' for other panel YYY - the specific command For example: %ap% - active panel path %op% - other panel path In the following commands, we'll use '_' instead of 'a'/'o'. Please substitute as needed. %_p% - panel path %_c% - current file (or folder). Note: current != selected %_s% - selected files and folders %_cs% - selected files including current file (if it's not already selected) %_afd% - all files and folders %_af% - all files (not including folders) %_ad% - all folders (not including files) %_an% - number of files and folders %_anf% - number of files %_and% - number of folders %_fm% - filter mask (for example: *, *.cpp, *.h etc.) */ #include <qwidget.h> class UserMenu : public QWidget { Q_OBJECT public: UserMenu(QWidget *parent=0, const char *name=0); ~UserMenu(); }; #endif |
From: <kru...@us...> - 2003-12-06 13:14:18
|
Update of /cvsroot/krusader/krusader_kde3/krusader/UserMenu In directory sc8-pr-cvs1:/tmp/cvs-serv1454/krusader/UserMenu Added Files: usermenu.cpp Log Message: --- NEW FILE: usermenu.cpp --- /*************************************************************************** usermenu.cpp - description ------------------- begin : Sat Dec 6 2003 copyright : (C) 2003 by Shie Erlich & Rafi Yanai email : ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include "usermenu.h" UserMenu::UserMenu(QWidget *parent, const char *name ) : QWidget(parent,name) { } UserMenu::~UserMenu(){ } |
From: <kru...@us...> - 2003-12-06 13:14:03
|
Update of /cvsroot/krusader/krusader_kde3/krusader/UserMenu In directory sc8-pr-cvs1:/tmp/cvs-serv1399/krusader/UserMenu Added Files: Makefile.am Log Message: --- NEW FILE: Makefile.am --- ####### kdevelop will overwrite this part!!! (begin)########## noinst_LIBRARIES = libUserMenu.a INCLUDES = $(all_includes) libUserMenu_a_METASOURCES = AUTO libUserMenu_a_SOURCES = usermenu.cpp EXTRA_DIST = usermenu.cpp usermenu.h ####### kdevelop will overwrite this part!!! (end)############ |
From: <kru...@us...> - 2003-12-06 13:12:11
|
Update of /cvsroot/krusader/krusader_kde3/krusader/UserMenu In directory sc8-pr-cvs1:/tmp/cvs-serv1053/krusader/UserMenu Log Message: Directory /cvsroot/krusader/krusader_kde3/krusader/UserMenu added to the repository |
From: <kru...@us...> - 2003-12-06 13:11:52
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Dialogs In directory sc8-pr-cvs1:/tmp/cvs-serv967/krusader/Dialogs Modified Files: krpleasewait.cpp Log Message: fixed obsolete QT headers Index: krpleasewait.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Dialogs/krpleasewait.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** krpleasewait.cpp 28 Nov 2003 17:06:35 -0000 1.2 --- krpleasewait.cpp 6 Dec 2003 13:11:46 -0000 1.3 *************** *** 32,36 **** #include <qtimer.h> #include <qdatetime.h> ! #include <qapp.h> #include <qpushbutton.h> #include <unistd.h> --- 32,36 ---- #include <qtimer.h> #include <qdatetime.h> ! #include <qapplication.h> #include <qpushbutton.h> #include <unistd.h> |
From: <kru...@us...> - 2003-12-06 13:11:33
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Dialogs In directory sc8-pr-cvs1:/tmp/cvs-serv941/krusader/Dialogs Modified Files: krspecialwidgets.h Log Message: fixed obsolete QT headers Index: krspecialwidgets.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Dialogs/krspecialwidgets.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** krspecialwidgets.h 20 Sep 2003 11:36:13 -0000 1.4 --- krspecialwidgets.h 6 Dec 2003 13:11:30 -0000 1.5 *************** *** 36,40 **** #include <qpainter.h> #include <qcolor.h> ! #include <qlist.h> #include <klineedit.h> #include <qevent.h> --- 36,40 ---- #include <qpainter.h> #include <qcolor.h> ! #include <qptrlist.h> #include <klineedit.h> #include <qevent.h> |
From: <kru...@us...> - 2003-12-06 13:11:16
|
Update of /cvsroot/krusader/krusader_kde3/krusader/MountMan In directory sc8-pr-cvs1:/tmp/cvs-serv921/krusader/MountMan Modified Files: kmountman.h Log Message: fixed obsolete QT headers Index: kmountman.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/MountMan/kmountman.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** kmountman.h 19 Oct 2003 16:37:02 -0000 1.7 --- kmountman.h 6 Dec 2003 13:11:13 -0000 1.8 *************** *** 35,39 **** #include <qstring.h> #include <qframe.h> ! #include <qlist.h> // KDE includes #include <kprocess.h> --- 35,39 ---- #include <qstring.h> #include <qframe.h> ! #include <qptrlist.h> // KDE includes #include <kprocess.h> |
From: <kru...@us...> - 2003-12-06 13:11:00
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv873/krusader/Panel Modified Files: listpanel.h Log Message: fixed obsolete QT headers Index: listpanel.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/listpanel.h,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** listpanel.h 14 Oct 2003 23:48:26 -0000 1.12 --- listpanel.h 6 Dec 2003 13:10:55 -0000 1.13 *************** *** 47,51 **** #include <qpixmapcache.h> #include <qiconset.h> ! #include <qstack.h> #include <qtextbrowser.h> #include <keditcl.h> --- 47,51 ---- #include <qpixmapcache.h> #include <qiconset.h> ! #include <qptrstack.h> #include <qtextbrowser.h> #include <keditcl.h> |
From: <kru...@us...> - 2003-12-06 13:10:34
|
Update of /cvsroot/krusader/krusader_kde3/krusader/VFS In directory sc8-pr-cvs1:/tmp/cvs-serv849/krusader/VFS Modified Files: krdirwatch.h Log Message: fixed obsolete QT headers Index: krdirwatch.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/krdirwatch.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** krdirwatch.h 9 Oct 2003 22:10:50 -0000 1.2 --- krdirwatch.h 6 Dec 2003 13:10:30 -0000 1.3 *************** *** 36,40 **** #include <qobject.h> #include <qstring.h> ! #include <qlist.h> #include <qtimer.h> #include <qdatetime.h> --- 36,40 ---- #include <qobject.h> #include <qstring.h> ! #include <qptrlist.h> #include <qtimer.h> #include <qdatetime.h> |
From: <kru...@us...> - 2003-12-06 13:10:11
|
Update of /cvsroot/krusader/krusader_kde3/krusader/VFS In directory sc8-pr-cvs1:/tmp/cvs-serv819/krusader/VFS Modified Files: vfs.h Log Message: fixed obsolete QT headers Index: vfs.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/vfs.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** vfs.h 19 Sep 2003 22:35:32 -0000 1.7 --- vfs.h 6 Dec 2003 13:10:08 -0000 1.8 *************** *** 38,42 **** // QT includes #include <qstring.h> ! #include <qlist.h> #include <qobject.h> // KDE includes --- 38,42 ---- // QT includes #include <qstring.h> ! #include <qptrlist.h> #include <qobject.h> // KDE includes |
From: <des...@us...> - 2003-12-02 14:24:59
|
Update of /cvsroot/krusader/krusader_kde3/po In directory sc8-pr-cvs1:/tmp/cvs-serv27218/po Modified Files: es.po Log Message: Index: es.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/es.po,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** es.po 18 Aug 2003 20:25:05 -0000 1.2 --- es.po 2 Dec 2003 14:24:56 -0000 1.3 *************** *** 1,90 **** ! # translation of es-krusader125.po to Español # This file is distributed under the same license as the PACKAGE package. ! # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER ! # Rafael Munoz Rodriguez <raf...@ne...>, 2003 # msgid "" msgstr "" ! "Project-Id-Version: es-krusader125\n" ! "POT-Creation-Date: 2003-08-01 13:49+0300\n" ! "PO-Revision-Date: 2003-08-18 21:18+0000\n" [...3128 lines suppressed...] msgid "Can't find \"KsysCtrl\". Please install KDE admin package" msgstr "No se encuentra \"KsysCtrl\". Por favor instale KDE admin package" ! #: krslots.cpp:354 msgid "" "Can't find a batch renamer tool.\n" *************** *** 2496,2498 **** --- 2550,2560 ---- "No se encuentra ningúna utilidad de renombrado.\n" "Puede obtener Krename en http://krename.sf.net" + + #: krslots.cpp:433 + msgid "Enter a URL to view:" + msgstr "Introduzca una URL para abrir:" + + #: krslots.cpp:450 + msgid "Enter the filename to edit:" + msgstr "Introduzca el nombre de archivo a editar:" |
From: <des...@us...> - 2003-12-02 14:24:58
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv27218 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.143 retrieving revision 1.144 diff -C2 -d -r1.143 -r1.144 *** ChangeLog 30 Nov 2003 20:07:39 -0000 1.143 --- ChangeLog 2 Dec 2003 14:24:55 -0000 1.144 *************** *** 7,10 **** --- 7,11 ---- UPDATED: Czech translation (thanks to Martin Sixta) + UPDATED: Spanish translation UPDATED: Krename url http://www.krename.net REMOVED: arc_vfs support completly replaced with KIO:Slave technolegy. |
From: <cod...@us...> - 2003-11-30 20:07:42
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1:/tmp/cvs-serv21411/krusader Modified Files: krslots.cpp Log Message: UPDATED: Krename url http://www.krename.net Index: krslots.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krslots.cpp,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** krslots.cpp 29 Nov 2003 16:58:23 -0000 1.29 --- krslots.cpp 30 Nov 2003 20:07:39 -0000 1.30 *************** *** 356,360 **** int i = lst.findIndex("RENAME"); if (i == -1){ ! KMessageBox::sorry(krApp,i18n("Can't find a batch renamer tool.\nYou can get Krename at http://krename.sf.net")); return; } --- 356,360 ---- int i = lst.findIndex("RENAME"); if (i == -1){ ! KMessageBox::sorry(krApp,i18n("Can't find a batch renamer tool.\nYou can get Krename at http://www.krename.net")); return; } *************** *** 405,409 **** void KRslots::changeTrashIcon(){ // update trash bin icon - this is "stolen" konqi code ! // Copyright (C) 2000 David Faure <fa...@kd...> KURL trash; trash.setPath(KGlobalSettings::trashPath()); --- 405,409 ---- void KRslots::changeTrashIcon(){ // update trash bin icon - this is "stolen" konqi code ! // Copyright (C) 2000 David Faure <fa...@kd...> KURL trash; trash.setPath(KGlobalSettings::trashPath()); |
From: <cod...@us...> - 2003-11-30 20:07:42
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv21411 Modified Files: ChangeLog Log Message: UPDATED: Krename url http://www.krename.net Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.142 retrieving revision 1.143 diff -C2 -d -r1.142 -r1.143 *** ChangeLog 29 Nov 2003 17:20:21 -0000 1.142 --- ChangeLog 30 Nov 2003 20:07:39 -0000 1.143 *************** *** 7,11 **** UPDATED: Czech translation (thanks to Martin Sixta) ! REMOVED: arc_vfs support completly replaced with KIO:Slave technolegy. 1.30 --- 7,11 ---- UPDATED: Czech translation (thanks to Martin Sixta) ! UPDATED: Krename url http://www.krename.net REMOVED: arc_vfs support completly replaced with KIO:Slave technolegy. 1.30 |
From: <cod...@us...> - 2003-11-30 20:02:00
|
Update of /cvsroot/krusader/krusader_kde3/doc In directory sc8-pr-cvs1:/tmp/cvs-serv20253/doc Modified Files: ChangeLog Log Message: Handbook 1.00.04 Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/ChangeLog,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ChangeLog 15 Nov 2003 20:49:33 -0000 1.4 --- ChangeLog 30 Nov 2003 20:01:26 -0000 1.5 *************** *** 2,8 **** ------------------------------- ====================== Date:15.11.2003 ! NEW: Krviewer (krusader-tools.sgml), thanks to Rafi Yanai 1.00.02 --- 2,22 ---- ------------------------------- + 1.00.04 + ====================== + Date:26.11.2003 + UPDATED: Konfigurator (konfigurator.sgml) + UPDATED: KruSearcher (krusader-tools.sgml) + UPDATED: Questions and Answers (faq.sgml) krarc slave issue + Thanks to Karai Csaba + ADDED: Key Bindings (using-krusader.sgml) + ADDED: Starting Krusader (installation.sgml) + ADDED: Note from the Editors (installation.sgml) + FIXED: spelling mistakes/typos corrections + proof reading, thanks to Mark Eatough + + 1.00.03 ====================== Date:15.11.2003 ! ADDED: Krviewer (krusader-tools.sgml), thanks to Rafi Yanai 1.00.02 |
Update of /cvsroot/krusader/krusader_kde3/doc/en In directory sc8-pr-cvs1:/tmp/cvs-serv20253/doc/en Modified Files: commands.sgml credits.sgml faq.sgml index.docbook installation.sgml introduction.sgml konfigurator.sgml krusader-tools.sgml using-krusader.sgml Log Message: Handbook 1.00.04 Index: commands.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/commands.sgml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** commands.sgml 15 Nov 2003 20:45:21 -0000 1.3 --- commands.sgml 30 Nov 2003 20:01:27 -0000 1.4 *************** *** 1,3 **** --- 1,22 ---- <chapter id="commands"> + <!-- ********************************************************************** + commands.sgml + +++++++++++++++++ + copyright : (C) 2000, 2001, 2002, 2003 Rafi Yanai, Shie Erlich + 2003 Frank Schoolmeesters + e-mail : kru...@us... + web site : http://krusader.sourceforge.net + description : a Krusader Documentation File + + *************************************************************************** + * Permission is granted to copy, distribute and/or modify this * + * document under the terms of the GNU Free Documentation License, * + * Version 1.1 or any later version published by the Free Software * + * Foundation; with no Invariant Sections, no Front-Cover Texts and * + * no Back-Cover Texts. A copy of the license is available on the * + * GNU site http://www.gnu.org/licenses/fdl.html or by writing to: * + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, * + * MA 02111-1307, USA. * + *********************************************************************** --> <title>Command Reference</title> <!-- updated by Frank 1.29 --> *************** *** 63,67 **** <listitem><para>adding numbers to filenames</para></listitem> <listitem><para>finding and replacing parts of the filename</para></listitem> ! <listitem><para>rename Mp3/Ogg Vorbis files based on their ID3 tags</para></listitem> <listitem><para>setting access and modification dates</para></listitem> <listitem><para>permissions and file ownership</para></listitem> --- 82,86 ---- <listitem><para>adding numbers to filenames</para></listitem> <listitem><para>finding and replacing parts of the filename</para></listitem> ! <listitem><para>rename MP3/Ogg Vorbis files based on their ID3 tags</para></listitem> <listitem><para>setting access and modification dates</para></listitem> <listitem><para>permissions and file ownership</para></listitem> *************** *** 161,165 **** </varlistentry> --> <varlistentry><term><menuchoice> ! <guimenu>Terminal</guimenu> </menuchoice></term> <listitem><para> --- 180,184 ---- </varlistentry> --> <varlistentry><term><menuchoice> ! <guimenu>Terminal (F2)</guimenu> </menuchoice></term> <listitem><para> *************** *** 170,178 **** </varlistentry> <varlistentry><term><menuchoice> ! <guimenu>Start Root Mode Krusader (Alt+K)</guimenu> </menuchoice></term> <listitem><para> ! Starts Krusader in root-mode at the same location. ! </para></listitem> </varlistentry> <varlistentry><term><menuchoice> --- 189,198 ---- </varlistentry> <varlistentry><term><menuchoice> ! <guimenu id="root-mode">Start Root Mode Krusader (Alt+K)</guimenu> </menuchoice></term> <listitem><para> ! Starts Krusader in root-mode at the same location.</para> ! <caution><para>Be carefull when using Krusader with ROOT PRIVILEGES.</para></caution> ! </listitem> </varlistentry> <varlistentry><term><menuchoice> *************** *** 211,217 **** <sect1 id="view-menu"> <title>The <guimenu>view</guimenu> menu</title> ! <para>The action in this sub menu usually effect the current Krusader session, ! If you want to make permanent changes use <link linkend="konfig-startup"> ! Konfigurator startup page</link>.</para> <variablelist> <varlistentry><term><menuchoice> --- 231,236 ---- <sect1 id="view-menu"> <title>The <guimenu>view</guimenu> menu</title> ! <para>The action in this sub menu usually effect the current Krusader session. ! If you want to make permanent changes use &KonfigStartPg;.</para> <variablelist> <varlistentry><term><menuchoice> *************** *** 241,245 **** <listitem><para> When this action is turned on, the main sorting key in the Krusader panels becomes the ! file extention (the part of the file name after the last '.'). this is useful to group files of the same type closer together. </para></listitem> --- 260,264 ---- <listitem><para> When this action is turned on, the main sorting key in the Krusader panels becomes the ! file extention (the part of the file name after the last '.'). This is useful to group files of the same type closer together. </para></listitem> *************** *** 367,372 **** <listitem><para> Saves the current size and position of the Krusader main window. If you selected ! <guilabel>Restore last position and size</guilabel> in ! <link linkend="konfig-startup">Konfigurator startup page</link>. </para></listitem> </varlistentry> --- 386,390 ---- <listitem><para> Saves the current size and position of the Krusader main window. If you selected ! <guilabel>Restore last position and size</guilabel> in &KonfigStartPg;. </para></listitem> </varlistentry> *************** *** 415,426 **** </menuchoice></term> <listitem><para> ! Opens the KDE's bugzilla report dialog where you can report a bug or request a "whislist" feature.</para> ! <para><keycap>NOTICE: Please do not use KDE's bugzilla (bugs.kde.org) for Krusader. ! If you've got bugs to report, please use the krusader website.</keycap></para> ! <para>For fixes, patches and comments use the krusader forum or mail to ! <email>kru...@us...</email>. </para></listitem> </varlistentry> - <varlistentry><term><menuchoice> --- 433,444 ---- </menuchoice></term> <listitem><para> ! Opens the KDE's bugzilla report dialog where you can report a bug or request a "wishlist" ! feature.</para> ! <note><para><remark>If you've got bugs to report please do not use KDE's bugzilla ! http://bugs.kde.org/, KDE's Bug Tracking System. ! If you've got bugs to report click <link linkend="bug_report">here</link>.</remark></para></note> ! <para>If you have a wish, a patch or a comment click <link linkend="wish_patch">here</link>. </para></listitem> </varlistentry> <varlistentry><term><menuchoice> Index: credits.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/credits.sgml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** credits.sgml 15 Nov 2003 20:45:21 -0000 1.4 --- credits.sgml 30 Nov 2003 20:01:27 -0000 1.5 *************** *** 1,3 **** --- 1,22 ---- <chapter id="credits"> + <!-- ********************************************************************** + credits.sgml + +++++++++++++++++ + copyright : (C) 2000, 2001, 2002, 2003 Rafi Yanai, Shie Erlich + 2003 Frank Schoolmeesters + e-mail : kru...@us... + web site : http://krusader.sourceforge.net + description : a Krusader Documentation File + + *************************************************************************** + * Permission is granted to copy, distribute and/or modify this * + * document under the terms of the GNU Free Documentation License, * + * Version 1.1 or any later version published by the Free Software * + * Foundation; with no Invariant Sections, no Front-Cover Texts and * + * no Back-Cover Texts. A copy of the license is available on the * + * GNU site http://www.gnu.org/licenses/fdl.html or by writing to: * + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, * + * MA 02111-1307, USA. * + *********************************************************************** --> <title>Credits and License</title> *************** *** 17,27 **** <listitem><para>Jan Halasa, developer <email>jan...@us...</email></para></listitem> <listitem><para>Csaba Karai, developer <email>csa...@no...</email></para></listitem> ! <listitem><para>Frank Schoolmeesters, documentation and patches <email>cod...@us...</email></para></listitem> </itemizedlist> The project is written using KDevelop and QT Designer. </para> ! <para>We would especially like to thank Dirk Eschler <email>des...@us...</email> the krusader web master. ! If you'll visit the <ulink url="http://krusader.sourceforge.net">Krusader web site</ulink> you'll appreciate as much as we do the hard work and effort that Dirk has put into the site.</para> --- 36,46 ---- <listitem><para>Jan Halasa, developer <email>jan...@us...</email></para></listitem> <listitem><para>Csaba Karai, developer <email>csa...@no...</email></para></listitem> ! <listitem><para>Frank Schoolmeesters, documentation coordinator and patches <email>cod...@us...</email></para></listitem> </itemizedlist> The project is written using KDevelop and QT Designer. </para> ! <para>We would especially like to thank Dirk Eschler <email>des...@us...</email> ! the krusader web master. If you'll visit the &kruwebsite; you'll appreciate as much as we do the hard work and effort that Dirk has put into the site.</para> *************** *** 36,39 **** --- 55,60 ---- <itemizedlist> <listitem><para>Heiner Eichmann <email>h.e...@gm...</email> The 6th Beatle: FreeBSD port, patches and general help</para></listitem> + <listitem><para>Mark Eatough <email>mar...@ya...</email> Krusader handbook proof reader + </para></listitem> <listitem><para>Mikolaj Machowski <email>mi...@wp...</email> Usability and QA</para></listitem> <listitem><para>Cristi Dumitrescu <email>cr...@ch...</email> QA, bug-hunting, patches and general help</para></listitem> *************** *** 71,74 **** --- 92,97 ---- </listitem> <listitem><para>Swedish translator: Eric Johanssen <email>er...@te...</email></para> + </listitem> + <listitem><para>Updated Swedish translation: Anders Linden <email>con...@gm...</email></para> </listitem> </itemizedlist> Index: faq.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/faq.sgml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** faq.sgml 6 Nov 2003 21:32:40 -0000 1.3 --- faq.sgml 30 Nov 2003 20:01:28 -0000 1.4 *************** *** 1,3 **** ! <chapter id="faq"> <!-- changed by Frank --> <!-- made it up-to-date with the FAQ on the Krusader website --> <title>Questions and Answers</title> &reporting.bugs; --- 1,22 ---- ! <chapter id="faq"> ! <!-- ********************************************************************** ! faq.sgml ! ++++++++++++++++++ ! copyright : (C) 2000, 2001, 2002, 2003 Rafi Yanai, Shie Erlich ! 2003 Frank Schoolmeesters ! e-mail : kru...@us... ! web site : http://krusader.sourceforge.net ! description : a Krusader Documentation File ! ! *************************************************************************** ! * Permission is granted to copy, distribute and/or modify this * ! * document under the terms of the GNU Free Documentation License, * ! * Version 1.1 or any later version published by the Free Software * ! * Foundation; with no Invariant Sections, no Front-Cover Texts and * ! * no Back-Cover Texts. A copy of the license is available on the * ! * GNU site http://www.gnu.org/licenses/fdl.html or by writing to: * ! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, * ! * MA 02111-1307, USA. * ! *********************************************************************** --> <title>Questions and Answers</title> &reporting.bugs; *************** *** 6,17 **** <qandaentry> ! <question><para>Where can i report bug/wish/patch ?</para></question> ! <answer><para>An open source project greatest strength is derived from getting user ! feedback. That why we'd love to hear what you have to say. See the file TODO in the distribution ! for information on what remains to be done or look at the website. ! You can reach us by <ulink url="mailto:kru...@us...">mail</ulink> or drop us a note ! in the <ulink url="http://krusader.sourceforce.net/phpBB/">krusader forum</ulink></para> ! <para><remark><keycap>If you've got bugs to report, please use the krusader website, and ! not KDE's bugzilla (bugs.kde.org).</keycap></remark></para></answer> </qandaentry> --- 25,82 ---- <qandaentry> ! <question id="wish_patch"><para>Where can I report a wish, a patch or a comment ?</para></question> ! <answer><para>An open source project greatest strength is derived from getting user feedback. ! That's why we'd love to hear what you have to say. For information on what remains to be done look at the ! &kruwebsite; and click on the "TODO List" button. ! Posting to the TODO list is for developers only, but feel free to post to the ! <ulink url="http://krusader.sourceforge.net/phpBB/viewforum.php?f=6">Future Krusader Version discussion Forum</ulink> ! for things that aren't on the list, but should be. If you have a nice feature request, the Krusader Krew ! will add your request to the todo list. You can reach us by ! <ulink url="mailto:kru...@us...">mail</ulink> ! or drop us a note in our &kruforum;. ! </para> ! </answer> ! </qandaentry> ! ! <qandaentry> ! <question id="bug_report"><para>Where can I report a bug ?</para></question> ! <answer><para>We have a online Bug Tracking System.</para> ! <para>Using the online bug-tracker helps us have a clear and orderly way to know how many bugs are open, ! bug priority and follow-ups. It saves us the long time needed to browse the entire Krusader forum, ! searching for yesterday's bug. Please use this system.</para> ! <para>Before reporting a bug, please regard the following: ! <orderedlist> ! <listitem><para><keycap>Search</keycap> the &kruforum; ! , your bug might be solved already. Please DO NOT post new bugs to the ! <ulink url="http://krusader.sourceforge.net/phpBB/viewforum.php?f=3/">bug discussions forum</ulink>. We keep it ! open to allow discussions.</para></listitem> ! <listitem><para><keycap>Check</keycap> if the bug is already posted in the online Bug Tracking System, ! look at the &kruwebsite; and click on the ! "Report Bugs" button.</para></listitem> ! <listitem><para>If you can't find this bug mentioned, please <keycap>submit</keycap> it into the bug tracker by ! clicking the "Submit New" button in the bug-tracker window.</para></listitem> ! </orderedlist></para> ! <para>Thanks for your cooperation!</para> ! <note><para><remark>If you've got bugs to report please do not use KDE's bugzilla http://bugs.kde.org/, ! KDE's Bug Tracking System.</remark></para></note></answer> ! </qandaentry> ! ! <qandaentry> ! <question><para>Does Krusader have a mailing list ?</para></question> ! <answer><para>Yes, it is called ! <ulink url="http://lists.sourceforge.net/lists/listinfo/krusader-news/">Krusader-news</ulink>. ! This list is used to notify Krusader users about new releases, major bugfixes etc. ! No spam, no bother, just Krusader. To see the collection of prior postings to the list, visit the ! <ulink url="http://sourceforge.net/mailarchive/forum.php?forum=krusader-news/">Krusader-news Archives</ulink>. ! </para><para>See also <ulink url="http://krusader.sourceforge.net/index.php?nav=news.php/">latest news</ulink> ! for the online announcements. ! </para><para>If you want to follow the Krusader development ... live ! A mailing list is available for commits. ! That means that everything the development team puts into CVS is reported in the list. Want to keep track? ! Waiting for a certain feature/bugfix? Feel free to subscribe, click ! <ulink url="http://lists.sourceforge.net/lists/listinfo/krusader-commits/">here</ulink>. ! To see the collection of prior cvs commits visit the ! <ulink url="http://sourceforge.net/mailarchive/forum.php?forum=krusader-commits/"> ! Krusader cvs commits Archives</ulink>. ! </para></answer> </qandaentry> *************** *** 26,32 **** <qandaentry> ! <question><para>Why can't I change the colors in Krusader ? ! (or: I used to be able to change the colors in prior versions, but not anymore - ! what's up with that ?)</para></question> <answer><para>In versions prior to 0.75, we supported changing some of the colors in Krusader. After some debates in the KDE mailing-list regarding the matter, we decided --- 91,95 ---- <qandaentry> ! <question><para>Why can't I change the colors in Krusader ?</para></question> <answer><para>In versions prior to 0.75, we supported changing some of the colors in Krusader. After some debates in the KDE mailing-list regarding the matter, we decided *************** *** 49,68 **** <qandaentry> ! <question><para>When i try to resize Krusader, so that it'd be smaller, i discover i can't ! resize it below a certain size. Basically, it doesn't get much smaller. why?</para></question> ! <answer><para>See the F1, F2 (etc.) buttons ? they are not allowing krusader to downsize as ! they have a minimum size. just disable them (view->Show FN Keys Bar) and you'll be able to resize krusader to your liking.</para></answer> </qandaentry> <qandaentry> ! <question><para>When i do some file operation, Krusader's panel doesn't refresh / I'm using Krusader with fam installed, but updates to the panel are now shown.</para></question> <answer><para>The bad news is that we're not sure why, but seems that fam doesn't always seem to work for us. We've tried the same source code on two different Gentoo installation: one worked, the other did not. The good news is that if you disable fam, Krusader will automatically revert ! to its internal mechanism (which is less efficient, but works) without needing to recompile.</para></answer> </qandaentry> <!-- Thanks to Karai Csaba --> <qandaentry> --- 112,143 ---- <qandaentry> ! <question><para>When I try to resize Krusader, so that it'd be smaller, I discover that I can't ! resize it below a certain size. Basically, it doesn't get much smaller. Why?</para></question> ! <answer><para>See the F1, F2 (etc.) buttons ? They are not allowing Krusader to downsize as ! they have a minimum size. Just disable them (view->Show FN Keys Bar) and you'll be able to resize krusader to your liking.</para></answer> </qandaentry> <qandaentry> ! <question><para>When I do some file operation, Krusader's panel doesn't refresh / I'm using Krusader with fam installed, but updates to the panel are now shown.</para></question> <answer><para>The bad news is that we're not sure why, but seems that fam doesn't always seem to work for us. We've tried the same source code on two different Gentoo installation: one worked, the other did not. The good news is that if you disable fam, Krusader will automatically revert ! to its internal mechanism (which is less efficient, but works) without needing to recompile. ! You can disable fam (file alteration monitor) with: ! <screen><prompt>$</prompt> <userinput><command>su -c 'fam -l'</command></userinput></screen> ! Look at te manpages for more information about fam.</para></answer> </qandaentry> + <qandaentry> + <question><para>When i run 'make' it complains about 'libfam.la'</para></question> + <answer><para>The './configure' script does not check for the presence of 'libfam.la', and + make needs 'libfam.la' to compile Krusader. Install 'libfam0-devel-foo.rpm'. + Note: when you install Mandrake 9.1 with the default settings, this package is not installed. + If you need more information click + <link linkend="missing_libs">here</link>.</para></answer> + </qandaentry> + <!-- Thanks to Karai Csaba --> <qandaentry> *************** *** 70,74 **** containing national characters?</para></question> <answer><para>Krusader does not handle (yet) samba ISO 8859-x codepages, if you use a codepage different ! than 8859-1 you wil have todo a manual configuration. Create or modify the file: ~/.smb/smb.conf <screen> --- 145,149 ---- containing national characters?</para></question> <answer><para>Krusader does not handle (yet) samba ISO 8859-x codepages, if you use a codepage different ! than 8859-1 you will have to do a manual configuration. Create or modify the file: ~/.smb/smb.conf <screen> *************** *** 80,83 **** --- 155,168 ---- Unfortunately kcontrol (KDE 3.1.1) fails to configure it properly, so this step must be done with a text editor.</para></answer> + </qandaentry> + + <qandaentry> + <question><para>Krusader reports "krarc:... protocol not supported" error at opening an archive file. + </para></question> + <answer><para>Solution: install the krarc slave properly:</para> + <para>Copy the kio_krarc.so, kio_krarc.la files into <userinput>$KDEDIR/lib/kde3</userinput></para> + <para>Copy the krarc.protocol file into <userinput>$KDEDIR/share/services</userinput></para> + <para>or the directory where the KIO slaves are placed in your &Linux; distribution. + </para></answer> </qandaentry> Index: index.docbook =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/index.docbook,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** index.docbook 6 Nov 2003 21:32:40 -0000 1.3 --- index.docbook 30 Nov 2003 20:01:28 -0000 1.4 *************** *** 3,6 **** --- 3,10 ---- <!ENTITY krusader '<application>Krusader</application>'> <!ENTITY kapp "&krusader;"><!-- replace test here --> + <!ENTITY kruforum '<ulink url="http://krusader.sourceforge.net/phpBB/index.php/">Krusader forum</ulink>'> + <!ENTITY kruwebsite '<ulink url="http://krusader.sourceforge.net/">Krusader website</ulink>'> + <!ENTITY krudownload '<ulink url="http://krusader.sourceforge.net/index.php?nav=down.php">Krusader downloadpage</ulink>'> + <!ENTITY KonfigStartPg '<link linkend="konfig-startup">Konfigurator Startup page</link>'> <!ENTITY % addindex "IGNORE"> <!ENTITY % English "INCLUDE"><!-- change language only here --> *************** *** 15,18 **** --- 19,41 ---- <!ENTITY installation SYSTEM "installation.sgml"> ]> + <!-- ********************************************************************** + index.docbook + +++++++++++++++++++ + copyright : (C) 2000, 2001, 2002, 2003 Rafi Yanai, Shie Erlich + 2003 Frank Schoolmeesters + e-mail : kru...@us... + web site : http://krusader.sourceforge.net + description : a Krusader Documentation File + + *************************************************************************** + * Permission is granted to copy, distribute and/or modify this * + * document under the terms of the GNU Free Documentation License, * + * Version 1.1 or any later version published by the Free Software * + * Foundation; with no Invariant Sections, no Front-Cover Texts and * + * no Back-Cover Texts. A copy of the license is available on the * + * GNU site http://www.gnu.org/licenses/fdl.html or by writing to: * + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, * + * MA 02111-1307, USA. * + *********************************************************************** --> <book lang="&language;"> <bookinfo> *************** *** 53,61 **** <legalnotice>&FDLNotice;</legalnotice> ! <date>16/10/2003</date> <!-- changed by Frank --> ! <releaseinfo>1.00.02</releaseinfo> <!-- changed by Frank --> <abstract> - <!-- changed by Frank --> <para> Krusader is a file-manager for KDE 3.x, --- 76,83 ---- <legalnotice>&FDLNotice;</legalnotice> ! <date>26/11/2003</date> ! <releaseinfo>1.00.04</releaseinfo> <abstract> <para> Krusader is a file-manager for KDE 3.x, *************** *** 66,81 **** </para> - <!-- added by Frank --> <para> NOTE: We are busy with updating the The Krusader Handbook. ! At this moment some nice features are not (yet) documented. ! Check out the "ChangeLog" file in the Krusader sources ! to find out the latest features. If you have remarks or suggestions about the Krusader Handbook, ! please let me know <email>cod...@us...</email>. ! The updates in this Krusader Handbook release are: <link linkend="commands">the menu-bar</link>, ! <link linkend="bookman">Book Man</link>, ! <link linkend="credits">Credits and License</link>, ! <link linkend="faqlist">Questions and Answers</link>, ! <link linkend="installation">Installation</link>. </para> <para>Thank you for using Krusader.</para> --- 88,98 ---- </para> <para> NOTE: We are busy with updating the The Krusader Handbook. ! At this moment some nice features are not (yet) documented. Check out the ! <ulink url="http://cvs.sourceforge.net/viewcvs.py/krusader/krusader_kde3/">online ChangeLog</ulink> ! file or the ChangeLog file in the Krusader sources to find out the latest features. Please read also the ! <link linkend="editors_note">Note from the Editors</link>, if you have ideas on how to improve the content ! or like to contribute at the Krusader Handbook. </para> <para>Thank you for using Krusader.</para> Index: installation.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/installation.sgml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** installation.sgml 15 Nov 2003 20:45:21 -0000 1.3 --- installation.sgml 30 Nov 2003 20:01:29 -0000 1.4 *************** *** 1,3 **** ! <appendix id = "installation"> <!-- changed by Frank --> <!-- made it up-to-date with the FAQ on the Krusader website --> <title>Installation</title> --- 1,22 ---- ! <appendix id = "installation"> ! <!-- ********************************************************************** ! installation.sgml ! +++++++++++++++++++++++ ! copyright : (C) 2000, 2001, 2002, 2003 Rafi Yanai, Shie Erlich ! 2003 Frank Schoolmeesters ! e-mail : kru...@us... ! web site : http://krusader.sourceforge.net ! description : a Krusader Documentation File ! ! *************************************************************************** ! * Permission is granted to copy, distribute and/or modify this * ! * document under the terms of the GNU Free Documentation License, * ! * Version 1.1 or any later version published by the Free Software * ! * Foundation; with no Invariant Sections, no Front-Cover Texts and * ! * no Back-Cover Texts. A copy of the license is available on the * ! * GNU site http://www.gnu.org/licenses/fdl.html or by writing to: * ! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, * ! * MA 02111-1307, USA. * ! *********************************************************************** --> <title>Installation</title> *************** *** 5,24 **** <title>How to obtain Krusader</title> <para> ! The most updated version can be found on the ! <ulink url="http://krusader.sourceforge.net">Krusader homepage</ulink>. ! but you may also find copies on linux software archives such as <ulink url="http://www.freshmeat.net">freshmeat</ulink> or <ulink url="http://apps.kde.com">apps.kde.com</ulink>. </para> <para> ! <ulink url="http://krusader.sourceforge.net">Krusader's homepage</ulink> ! contains the source tar-balls and RPM package to whatever distro we are currently ! using. There might be some other packages on the site, but that depends on ! other users' contributions. If you can't find a RPM package for your linux distribution, ! we recommend searching for it on ! <ulink url="http://www.rpmfind.net">The RPM search engine</ulink> (very usefull site). </para> </sect1> --- 24,86 ---- <title>How to obtain Krusader</title> + <sect2 id="Krusader_stable"> + <title>Latest stable and beta release</title> <para> ! The most updated version can be found on the &krudownload;. ! It contains the source tarballs and RPM packages to whatever distro we are currently ! using. There might be some other packages on the site, but that depends on ! other users contributions.</para> ! ! <para>You may also find copies on &Linux; software archives such as <ulink url="http://www.freshmeat.net">freshmeat</ulink> or <ulink url="http://apps.kde.com">apps.kde.com</ulink>. + If you can't find a RPM package for your &Linux; distribution, + we recommend searching for it with + <ulink url="http://www.rpmfind.net">Rpmfind</ulink>. + </para> + + <para>A FreeBSD port of Krusader is maintained. Click on the FreeBSD link in our &krudownload;, + the Search tab will lead you to the latest BSD version. + Many thanks to Heiner Eichmann ! </para> + + </sect2> + + <sect2 id="krusader_devel"> + <title>Development version</title> <para> ! We provide daily (sometimes weekly) builds of Krusader's development version (CVS versions). ! For those who are interested. The <keycap>Nightly tarball</keycap> can be found on the ! <ulink url="http://krusader.sourceforge.net/index.php?nav=cvs.php">Krusader's Cutting Edge page</ulink>. ! These builds are untested and come without any warranty. You have been warned! ! They can contain a new feature or a bugfix where you are looking for. </para> + <para><keycap>Checkout from cvs</keycap>. + This project's SourceForge CVS repository can be checked out through anonymous (pserver) CVS with + the following instruction set. The module you wish to check out must be specified as the modulename. + When prompted for a password for anonymous, simply press the Enter key.</para> + <para>Currently there are two module options: + <itemizedlist> + <listitem><para>krusader_kde2: the KDE2 branch, stable but it's basically v1.01 and there are no + planned changes</para></listitem> + <listitem><para>krusader_kde3: the KDE3 branch</para></listitem> + </itemizedlist></para> + <para>To checkout the Krusader KDE3 version from cvs: + <screen><prompt>$</prompt> <userinput><command>cvs</command> <option>-d:pserver:ano...@cv...:/cvsroot/krusader login</option></userinput></screen> + <screen><prompt>$</prompt> <userinput><command>cvs</command> <option>-z3 -d:pserver:ano...@cv...:/cvsroot/krusader co krusader_kde3</option></userinput></screen> + (note: updates from within the module's directory do not need the -d parameter) + </para> + + <para>We have also <ulink url="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/krusader/">ViewCVS</ulink> + to browse the cvs repository.</para> + + </sect2> + <sect2 id="Krusader_old"> + <title>Older releases</title> + <para>Looking for older releases? Try the + <ulink url="http://sourceforge.net/project/showfiles.php?group_id=6488">Sourceforge mirrors</ulink> + available from our project page.</para> + </sect2> </sect1> *************** *** 27,32 **** <!-- changed by Frank --> <para> ! In order to successfully use Krusader, you need KDE 3.x.x. ! <screen>For KDE 2.x.x there is krusader v1.01, stable but there are no planned changes.</screen></para> <para>Note: all versions >=1.02 are KDE 3.x.x only.</para> <para>Krusader uses about 10 megs of memory to run, but this may vary depending --- 89,94 ---- <!-- changed by Frank --> <para> ! In order to successfully use Krusader, you need KDE 3.x.x.</para> ! <para><remark>For KDE 2.x.x there is krusader v1.01, stable but there are no planned changes.</remark></para> <para>Note: all versions >=1.02 are KDE 3.x.x only.</para> <para>Krusader uses about 10 megs of memory to run, but this may vary depending *************** *** 36,46 **** <para> ! A package of popular (un)packers as well as Krusader itself can be found on ! <ulink url="http://krusader.sourceforge.net">Krusader's homepage</ulink>. </para> <para> ! You can find a list of changes at ! <ulink url="http://krusader.sourceforge.net/changelog">the Krusader Changelog</ulink>. </para> </sect1> --- 98,108 ---- <para> ! A package of popular (un)packers, Krusader itself and adons can be found on the &krudownload;. </para> <para> ! You can find a list of changes in the ! <ulink url="http://cvs.sourceforge.net/viewcvs.py/krusader/krusader_kde3/">online ChangeLog</ulink> ! file or in the ChangeLog file of the Krusader sources. </para> </sect1> *************** *** 52,59 **** <title>I have downloaded the Sources for Krusader. What now?</title> ! <para>This question has been asked many times and especially users new to Linux often have problems compiling software from source. Therefore we are trying to keep the explanations as detailed as possible even if they are mostly not Krusader specific. Experienced users may ! easily skip most of the steps. <orderedlist> --- 114,136 ---- <title>I have downloaded the Sources for Krusader. What now?</title> ! <para>Check the environment variables <envar>QTDIR</envar> and <envar>KDEDIR</envar>.</para> ! ! <para>In order to compile and install Krusader on your system, type the ! following in the base directory of the Krusader distribution:</para> ! ! <screen> <prompt>$</prompt> <userinput><command>./configure</command></userinput> ! <prompt>$</prompt> <userinput><command>make</command></userinput> ! <prompt>$</prompt> <userinput><command>su -c 'make</command> <option>install'</option></userinput> ! </screen> ! ! <para>Since Krusader uses <command>autoconf</command> and ! <command>automake</command> you should have no trouble compiling it. Should you ! run into problems please read the detailed installation instructions below.</para> ! ! <para>The next procedure will explain step by step howto install Krusader. ! This question has been asked many times and especially users new to &Linux; often have problems compiling software from source. Therefore we are trying to keep the explanations as detailed as possible even if they are mostly not Krusader specific. Experienced users may ! easily skip most of the steps. Feel free to ask for help at our Forum if anything is unclear. <orderedlist> *************** *** 62,95 **** This will give you a better overview of installed programs and makes it easier to uninstall them later. ! <screen><prompt>%</prompt> <userinput><command>mkdir ~/source</command></userinput></screen> The chosen directory is just an example, any other will work.</para></listitem> ! <listitem><para>Copy over the sources and unpack them. ! <screen><prompt>%</prompt> <userinput><command>cp /"krusader_dir"/krusader-x.xx.tar.gz ~/source</command></userinput></screen> ! <screen><prompt>%</prompt> <userinput><command>cd ~/source</command></userinput></screen> ! <screen><prompt>%</prompt> <userinput><command>tar -xzvf krusader-x.xx.tar.gz</command></userinput></screen></para></listitem> <listitem><para>The tarball is no longer needed at this point, you can delete it if you want. ! <screen><prompt>%</prompt> <userinput><command>rm krusader-x.xx.tar.gz</command></userinput></screen></para></listitem> <listitem><para>Change to the directory containing the sources. ! <screen><prompt>%</prompt> <userinput><command>cd krusader-x.xx</command></userinput></screen></para></listitem> ! <listitem><para>To determine your QT and KDE directories Krusader's configure script uses the environment ! variables QTDIR and KDEDIR. ! <screen>QTDIR : path to your QT installation (e.g. /usr/qt3)</screen> ! <screen>KDEDIR : path to your KDE installation (e.g. /usr or /opt/kde3)</screen> Normally your distribution will set them for you, but experience has shown that some don't. You can easily check the values with the echo command. ! <screen><prompt>%</prompt> <userinput><command>echo $QTDIR</command></userinput></screen> ! <screen><prompt>%</prompt> <userinput><command>echo $KDEDIR</command></userinput></screen> In case you just receive empty lines, the variables are not set and you have to do it manually. If you have no idea what to set the variables to, ask your distributor or use the find command. ! <screen><prompt>%</prompt> <userinput><command>find /usr /opt -name qtconfig -type f -perm +111</command></userinput></screen> <screen><userinput>/usr/qt/3/bin/qtconfig</userinput></screen> ! <screen><prompt>%</prompt> <userinput><command>find /usr /opt -name startkde -type f -perm +111</command></userinput></screen> <screen><userinput>/usr/kde/3.1/bin/startkde </userinput></screen> ! In this case /usr/qt/3 is your QTDIR, /usr/kde/3.1 is your KDEDIR and installed binaries will ! go to /usr/kde/3.1/bin. ! <screen><prompt>%</prompt> <userinput><command>export QTDIR="replace with your QTDIR"</command></userinput></screen> ! <screen><prompt>%</prompt> <userinput><command>export KDEDIR="replace with your KDEDIR"</command></userinput></screen> Note, that the variables are only set for the lifetime of your current shell. --- 139,172 ---- This will give you a better overview of installed programs and makes it easier to uninstall them later. ! <screen><prompt>$</prompt> <userinput><command>mkdir</command> ~/source</userinput></screen> The chosen directory is just an example, any other will work.</para></listitem> ! <listitem><para>Copy over the sources and unpack them. ! <screen><prompt>$</prompt> <userinput><command>cp</command> /"krusader_dir"/krusader-x.xx.tar.gz ~/source</userinput></screen> ! <screen><prompt>$</prompt> <userinput><command>cd</command> ~/source</userinput></screen> ! <screen><prompt>$</prompt> <userinput><command>tar</command> <option>-xzvf</option> krusader-x.xx.tar.gz</userinput></screen></para></listitem> <listitem><para>The tarball is no longer needed at this point, you can delete it if you want. ! <screen><prompt>$</prompt> <userinput><command>rm</command> krusader-x.xx.tar.gz</userinput></screen></para></listitem> <listitem><para>Change to the directory containing the sources. ! <screen><prompt>$</prompt> <userinput><command>cd</command> krusader-x.xx</userinput></screen></para></listitem> ! <listitem id="kde_qt_dir"><para>Determine your QT and KDE directories. Krusader's configure script uses the ! environment variables <envar>QTDIR</envar> and <envar>KDEDIR</envar>. ! <screen><envar>QTDIR</envar> : <replaceable><path to your QT installation></replaceable> (e.g. /usr/qt3)</screen> ! <screen><envar>KDEDIR</envar> : <replaceable><path to your KDE installation></replaceable> (e.g. /usr or /opt/kde3)</screen> Normally your distribution will set them for you, but experience has shown that some don't. You can easily check the values with the echo command. ! <screen><prompt>$</prompt> <userinput><command>echo</command> $QTDIR</userinput></screen> ! <screen><prompt>$</prompt> <userinput><command>echo</command> $KDEDIR</userinput></screen> In case you just receive empty lines, the variables are not set and you have to do it manually. If you have no idea what to set the variables to, ask your distributor or use the find command. ! <screen><prompt>$</prompt> <userinput><command>find</command> <option>/usr /opt -name</option> qtconfig <option>-type f -perm +111</option></userinput></screen> <screen><userinput>/usr/qt/3/bin/qtconfig</userinput></screen> ! <screen><prompt>$</prompt> <userinput><command>find </command> <option>/usr /opt -name</option> startkde <option>-type f -perm +111</option></userinput></screen> <screen><userinput>/usr/kde/3.1/bin/startkde </userinput></screen> ! In this case /usr/qt/3 is your <envar>QTDIR</envar>, /usr/kde/3.1 is your <envar>KDEDIR</envar> ! and installed binaries will go to /usr/kde/3.1/bin. ! <screen><prompt>$</prompt> <userinput><command>export</command> QTDIR=<replaceable><replace with your QTDIR></replaceable></userinput></screen> ! <screen><prompt>$</prompt> <userinput><command>export</command> KDEDIR=<replaceable><replace with your KDEDIR></replaceable></userinput></screen> Note, that the variables are only set for the lifetime of your current shell. *************** *** 99,120 **** <listitem><para>If you have download from CVS "krusader-cvs-yyyy-mm-dd.tar.gz" you wil have to run the following command to create the "./configure" script: ! <screen><prompt>%</prompt> <userinput><command>make -f Makefile.cvs</command></userinput></screen> You can skip this item if you have download "krusader-x.xx.tar.gz"</para></listitem> <listitem><para>Now you should be ready to run the configure script. ! <screen><prompt>%</prompt> <userinput><command>./configure</command></userinput></screen> If configure fails, take a look at <link linkend="missing_libs">missing libs or headers</link></para></listitem> <listitem><para>Start the compilation process with make. ! <screen><prompt>%</prompt> <userinput><command>make</command></userinput></screen> If configure was successful and make failed for some reason, then feel free to post a help request ! at our <ulink url="http://krusader.sourceforce.net/phpBB/">krusader forum</ulink>.</para></listitem> <listitem><para>If nothing went wrong, finally install Krusader. ! <screen><prompt>%</prompt> <userinput><command>su -c 'make install'</command></userinput></screen> You will be asked to enter your root password.</para></listitem> ! <listitem><para>Clean up to save some diskspace. ! <screen><prompt>%</prompt> <userinput><command>make clean</command></userinput></screen> This step is optional.</para></listitem> <listitem><para>If you ever want to uninstall Krusader, just use ! <screen><prompt>%</prompt> <userinput><command>su -c 'make uninstall'</command></userinput></screen> You will be asked to enter your root password.</para></listitem> </orderedlist> --- 176,197 ---- <listitem><para>If you have download from CVS "krusader-cvs-yyyy-mm-dd.tar.gz" you wil have to run the following command to create the "./configure" script: ! <screen><prompt>$</prompt> <userinput><command>make</command> <option>-f</option> Makefile.cvs</userinput></screen> You can skip this item if you have download "krusader-x.xx.tar.gz"</para></listitem> <listitem><para>Now you should be ready to run the configure script. ! <screen><prompt>$</prompt> <userinput><command>./configure</command></userinput></screen> If configure fails, take a look at <link linkend="missing_libs">missing libs or headers</link></para></listitem> <listitem><para>Start the compilation process with make. ! <screen><prompt>$</prompt> <userinput><command>make</command></userinput></screen> If configure was successful and make failed for some reason, then feel free to post a help request ! at our &kruforum;.</para></listitem> <listitem><para>If nothing went wrong, finally install Krusader. ! <screen><prompt>$</prompt> <userinput><command>su -c 'make</command> <option> install'</option></userinput></screen> You will be asked to enter your root password.</para></listitem> ! <listitem><para>You can if you want: clean up to save some diskspace. ! <screen><prompt>$</prompt> <userinput><command>make</command> <option>clean</option></userinput></screen> This step is optional.</para></listitem> <listitem><para>If you ever want to uninstall Krusader, just use ! <screen><prompt>$</prompt> <userinput><command>su -c 'make</command> <option> uninstall'</option></userinput></screen> You will be asked to enter your root password.</para></listitem> </orderedlist> *************** *** 129,133 **** <listitem><para>automake (e.g. automake1.x-x.x.x-xmdk.i586.rpm)</para></listitem> <listitem><para>xfree</para></listitem> ! <listitem><para>qt (all Krusader versions >=1.02 are QT3.x only)</para></listitem> <listitem><para>kdelibs (all Krusader versions >=1.02 are KDE3.x only)</para></listitem> <listitem><para>libpng </para></listitem> --- 206,210 ---- <listitem><para>automake (e.g. automake1.x-x.x.x-xmdk.i586.rpm)</para></listitem> <listitem><para>xfree</para></listitem> ! <listitem><para>&Qt; (all Krusader versions >=1.02 are QT3.x only)</para></listitem> <listitem><para>kdelibs (all Krusader versions >=1.02 are KDE3.x only)</para></listitem> <listitem><para>libpng </para></listitem> *************** *** 139,143 **** or foo-dev-*.deb for Debian based distributions. They most likely come with your distribution. <tip><para>If you can't find the needed package, use then ! <ulink url="http://www.rpmfind.net/"> Rpmfind.net</ulink> or "apt-cache search" to find the corresponding package.</para></tip></para> </sect2> --- 216,221 ---- or foo-dev-*.deb for Debian based distributions. They most likely come with your distribution. <tip><para>If you can't find the needed package, use then ! <ulink url="http://www.rpmfind.net/">Rpmfind.net</ulink> and click 'missing lib or header' ! in the search line. Or use "apt-cache search" to find the corresponding package.</para></tip></para> </sect2> *************** *** 148,158 **** <listitem><para>The Krusader binary is obviously not in your PATH.</para></listitem> <listitem><para>Use the find command to locate the binary. ! <screen><prompt>%</prompt> <userinput><command> find /usr /opt -name krusader -type f -perm +111</command></userinput></screen> <screen><userinput>/usr/local/bin/krusader</userinput></screen> ! Here, the binary somehow made it into /usr/local/bin. It is most likely, that your KDEDIR wasn't set properly (see <link linkend="compilation">Compilation and installation</link>)</para></listitem> <listitem><para>If you don't want to recompile Krusader, just add /usr/local/bin to your PATH. To do this for all users, append the following line to your /etc/profile (or any other file your shell sources at startup). ! <screen><prompt>%</prompt> <userinput><command>export PATH=$PATH:/usr/local/bin</command></userinput></screen></para></listitem> </itemizedlist></para> </sect2> --- 226,237 ---- <listitem><para>The Krusader binary is obviously not in your PATH.</para></listitem> <listitem><para>Use the find command to locate the binary. ! <screen><prompt>$</prompt> <userinput><command> find</command> <option>/usr /opt -name</option> krusader <option>-type f -perm +111</option></userinput></screen> <screen><userinput>/usr/local/bin/krusader</userinput></screen> ! Here, the binary somehow made it into /usr/local/bin. It is most likely, that your ! <link linkend="kde_qt_dir">KDEDIR</link> wasn't set properly.</para></listitem> <listitem><para>If you don't want to recompile Krusader, just add /usr/local/bin to your PATH. To do this for all users, append the following line to your /etc/profile (or any other file your shell sources at startup). ! <screen><prompt>$</prompt> <userinput><command>export</command> PATH=$PATH:<replaceable>/usr/local/bin</replaceable></userinput></screen></para></listitem> </itemizedlist></para> </sect2> *************** *** 162,168 **** <para><itemizedlist> <listitem><para>To recompile a SourceRPM for your machine, do this (being root): ! <screen><prompt>%</prompt> <userinput><command>su -c 'rpm --rebuild /path/to/filename'</command></userinput></screen>You will be asked to enter your root password.</para></listitem> <listitem><para>If nothing goes wrong, a RPM will be created at /usr/src/RPM/RPMS/i386 (replace i386 with your arch) Install as usual, for example. ! <screen><prompt>%</prompt> <userinput><command>su -c 'rpm -ivh /path/to/filename'</command></userinput></screen>You will be asked to enter your root password.</para></listitem> </itemizedlist></para> --- 241,247 ---- <para><itemizedlist> <listitem><para>To recompile a SourceRPM for your machine, do this (being root): ! <screen><prompt>$</prompt> <userinput><command>su -c 'rpm</command> <option>--rebuild</option> <replaceable></path/to/filename></replaceable>'</userinput></screen>You will be asked to enter your root password.</para></listitem> <listitem><para>If nothing goes wrong, a RPM will be created at /usr/src/RPM/RPMS/i386 (replace i386 with your arch) Install as usual, for example. ! <screen><prompt>$</prompt> <userinput><command>su -c 'rpm</command> <option>-ivh</option> <replaceable></path/to/filename></replaceable>'</userinput></screen>You will be asked to enter your root password.</para></listitem> </itemizedlist></para> *************** *** 173,177 **** <para><itemizedlist> <listitem><para>Since we only provide (and use) the source, we don't know. Feel free to post a help request ! at our <ulink url="http://krusader.sourceforce.net/phpBB/">krusader forum</ulink> . </para></listitem> </itemizedlist></para> --- 252,256 ---- <para><itemizedlist> <listitem><para>Since we only provide (and use) the source, we don't know. Feel free to post a help request ! at our &kruforum;. </para></listitem> </itemizedlist></para> *************** *** 185,188 **** --- 264,295 ---- </sect1> + <sect1 id="starting-krusader"> + <title>Starting Krusader</title> + + <para>Type <userinput><command>krusader</command></userinput> at a command + prompt or select <guimenuitem>Krusader</guimenuitem> from the + <guisubmenu>Applications</guisubmenu> group in the <guimenu>KDE start + menu</guimenu>.</para> + + <para>The standard &Qt; and &kde; command line + options are available, and can be listed by entering + <userinput><command>krusader</command> <option>--help</option></userinput>. </para> + + <para>Other command line options are:</para> + + <para><option>--left</option> + <replaceable><path></replaceable> start left panel at + <replaceable><path></replaceable></para> + + <para><option>--right</option> + <replaceable><path></replaceable> start right panel at + <replaceable><path></replaceable></para> + + <para>Example: + <screen><prompt>$</prompt> <userinput><command>krusader</command> <replaceable>--left=/mnt/cdrom --right=ftp://dow...@my...</replaceable></userinput></screen> + </para> + + </sect1> + <sect1 id="configuration"> <title>Configuration</title> *************** *** 192,198 **** <link linkend="konfigurator">Konfigurator</link> will show up and allow you to configure Krusader as well as detect installed packers and tools. You can always run ! konfigurator again from the <link linkend="settings-menu">options menu</link>. </para> </sect1> </appendix> --- 299,336 ---- <link linkend="konfigurator">Konfigurator</link> will show up and allow you to configure Krusader as well as detect installed packers and tools. You can always run ! konfigurator again from the <link linkend="settings-menu">settings menu</link>. </para> </sect1> + + </appendix> + + <appendix id = "others"> + <title>Others</title> + + <sect1 id="editors_note"> + <title>Note from the Editors</title> + + <para>As you may notice this handbook is written by various authors. + Whe have taken much care in insuring technical and vocabulary consistency.</para> + + <para>Most of the authors write in English even though it is not their native language. + Therefore, you may notice strange sentence constructions. + Do not hesitate to let us know if something is not clear to you.</para> + + <para>An open source project greatest strength is derived from getting user + feedback. That's why we'd love to hear what you have to say. + Documentation contributors are always welcome. + If you have ideas on how to improve the content or + if you like to write about a new Krusader feature or + if you have remarks or suggestions about the Krusader Handbook, please let us know. + You can contact us even if you find typos!</para> + + <para>Download the latest <link linkend="krusader_devel">Krusader Development version</link> + to obtain the latest version of the Krusader handbook.</para> + + <para>For information about the Krusader documentation project, + please contact the Krusader documentation coordinator Frank Schoolmeesters + <email>cod...@us...</email>.</para> + </sect1> </appendix> Index: introduction.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/introduction.sgml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** introduction.sgml 15 Nov 2003 20:45:21 -0000 1.3 --- introduction.sgml 30 Nov 2003 20:01:29 -0000 1.4 *************** *** 1,3 **** --- 1,22 ---- <chapter id="introduction"> + <!-- ********************************************************************** + introduction.sgml + +++++++++++++++++++++ + copyright : (C) 2000, 2001, 2002, 2003 Rafi Yanai, Shie Erlich + 2003 Frank Schoolmeesters + e-mail : kru...@us... + web site : http://krusader.sourceforge.net + description : a Krusader Documentation File + + *************************************************************************** + * Permission is granted to copy, distribute and/or modify this * + * document under the terms of the GNU Free Documentation License, * + * Version 1.1 or any later version published by the Free Software * + * Foundation; with no Invariant Sections, no Front-Cover Texts and * + * no Back-Cover Texts. A copy of the license is available on the * + * GNU site http://www.gnu.org/licenses/fdl.html or by writing to: * + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, * + * MA 02111-1307, USA. * + *********************************************************************** --> <title>Introduction</title> <screenshot> *************** *** 12,16 **** <para> ! Krusader is a twin-panel file-manager for Linux, for KDE 3.x desktop environment. </para> --- 31,35 ---- <para> ! Krusader is a twin-panel file-manager for &Linux;, for KDE 3.x desktop environment. </para> Index: konfigurator.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/konfigurator.sgml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** konfigurator.sgml 15 Nov 2003 20:45:21 -0000 1.2 --- konfigurator.sgml 30 Nov 2003 20:01:29 -0000 1.3 *************** *** 1,4 **** --- 1,26 ---- <chapter id="konfigurator"> + <!-- ********************************************************************** + konfigurator.sgml + +++++++++++++++++++++ + copyright : (C) 2000, 2001, 2002, 2003 Rafi Yanai, Shie Erlich + 2003 Frank Schoolmeesters + e-mail : kru...@us... + web site : http://krusader.sourceforge.net + description : a Krusader Documentation File + + *************************************************************************** + * Permission is granted to copy, distribute and/or modify this * + * document under the terms of the GNU Free Documentation License, * + * Version 1.1 or any later version published by the Free Software * + * Foundation; with no Invariant Sections, no Front-Cover Texts and * + * no Back-Cover Texts. A copy of the license is available on the * + * GNU site http://www.gnu.org/licenses/fdl.html or by writing to: * + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, * + * MA 02111-1307, USA. ... [truncated message content] |
From: <ck...@us...> - 2003-11-30 13:14:30
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv7896/krusader_kde3 Modified Files: krusader.kdevprj Log Message: ADDED: icons for the splitter Index: krusader.kdevprj =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader.kdevprj,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** krusader.kdevprj 29 Nov 2003 16:47:58 -0000 1.36 --- krusader.kdevprj 30 Nov 2003 13:14:26 -0000 1.37 *************** *** 1248,1252 **** [pics/Makefile.am] dist=true ! files=pics/about.png,pics/arc_pack16x16.png,pics/arc_pack22x22.png,pics/arc_pack32x32.png,pics/arc_test16x16.png,pics/arc_test22x22.png,pics/arc_test32x32.png,pics/arc_unpack16x16.png,pics/arc_unpack22x22.png,pics/arc_unpack32x32.png,pics/calc16x16.png,pics/calc22x22.png,pics/calc32x32.png,pics/compare16x16.png,pics/compare22x22.png,pics/compare32x32.png,pics/comparedirs16x16.png,pics/comparedirs22x22.png,pics/comparedirs32x32.png,pics/ftp_connect16x16.png,pics/ftp_connect22x22.png,pics/ftp_connect32x32.png,pics/ftp_disconnect16x16.png,pics/ftp_disconnect22x22.png,pics/ftp_disconnect32x32.png,pics/ftp_new16x16.png,pics/ftp_new22x22.png,pics/ftp_new32x32.png,pics/konfig_small.jpg,pics/kr_addbookmark16x16.png,pics/kr_addbookmark22x22.png,pics/kr_addbookmark32x32.png,pics/kr_bookman16x16.png,pics/kr_bookman22x22.png,pics/kr_bookman32x32.png,pics/kr_bookmark16x16.png,pics/kr_bookmark22x22.png,pics/kr_bookmark32x32.png,pics/kr_fullview16x16.png,pics/kr_fullview22x22.png,pics/kr_fullview32x32.png,pics/kr_hwinfo16x16.png,pics/kr_hwinfo22x22.png,pics/kr_hwinfo32x32.png,pics/kr_invert16x16.png,pics/kr_invert22x22.png,pics/kr_invert32x32.png,pics/kr_treeview16x16.png,pics/kr_treeview22x22.png,pics/kr_treeview32x32.png,pics/kr_unselect16x16.png,pics/kr_unselect22x22.png,pics/kr_unselect32x32.png,pics/Makefile,pics/Makefile.am,pics/Makefile.in,pics/mountman16x16.png,pics/mountman22x22.png,pics/mountman32x32.png,pics/properties16x16.png,pics/properties22x22.png,pics/properties32x32.png,pics/select16x16.png,pics/select22x22.png,pics/select32x32.png,pics/selectall16x16.png,pics/selectall22x22.png,pics/selectall32x32.png,pics/terminal16x16.png,pics/terminal22x22.png,pics/terminal32x32.png,pics/unselectall16x16.png,pics/unselectall22x22.png,pics/unselectall32x32.png install=false install_location= --- 1248,1252 ---- [pics/Makefile.am] dist=true ! files=pics/about.png,pics/arc_pack16x16.png,pics/arc_pack22x22.png,pics/arc_pack32x32.png,pics/arc_test16x16.png,pics/arc_test22x22.png,pics/arc_test32x32.png,pics/arc_unpack16x16.png,pics/arc_unpack22x22.png,pics/arc_unpack32x32.png,pics/calc16x16.png,pics/calc22x22.png,pics/calc32x32.png,pics/compare16x16.png,pics/compare22x22.png,pics/compare32x32.png,pics/comparedirs16x16.png,pics/comparedirs22x22.png,pics/comparedirs32x32.png,pics/ftp_connect16x16.png,pics/ftp_connect22x22.png,pics/ftp_connect32x32.png,pics/ftp_disconnect16x16.png,pics/ftp_disconnect22x22.png,pics/ftp_disconnect32x32.png,pics/ftp_new16x16.png,pics/ftp_new22x22.png,pics/ftp_new32x32.png,pics/konfig_small.jpg,pics/kr_addbookmark16x16.png,pics/kr_addbookmark22x22.png,pics/kr_addbookmark32x32.png,pics/kr_bookman16x16.png,pics/kr_bookman22x22.png,pics/kr_bookman32x32.png,pics/kr_bookmark16x16.png,pics/kr_bookmark22x22.png,pics/kr_bookmark32x32.png,pics/kr_fullview16x16.png,pics/kr_fullview22x22.png,pics/kr_fullview32x32.png,pics/kr_hwinfo16x16.png,pics/kr_hwinfo22x22.png,pics/kr_hwinfo32x32.png,pics/kr_invert16x16.png,pics/kr_invert22x22.png,pics/kr_invert32x32.png,pics/kr_treeview16x16.png,pics/kr_treeview22x22.png,pics/kr_treeview32x32.png,pics/kr_unselect16x16.png,pics/kr_unselect22x22.png,pics/kr_unselect32x32.png,pics/Makefile,pics/Makefile.am,pics/Makefile.in,pics/mountman16x16.png,pics/mountman22x22.png,pics/mountman32x32.png,pics/properties16x16.png,pics/properties22x22.png,pics/properties32x32.png,pics/select16x16.png,pics/select22x22.png,pics/select32x32.png,pics/selectall16x16.png,pics/selectall22x22.png,pics/selectall32x32.png,pics/terminal16x16.png,pics/terminal22x22.png,pics/terminal32x32.png,pics/unselectall16x16.png,pics/unselectall22x22.png,pics/unselectall32x32.png,pics/kr_split16x16.png,pics/kr_split22x22.png,pics/kr_split32x32.png,pics/kr_combine16x16.png,pics/kr_combine22x22.png,pics/kr_combine32x32.png install=false install_location= *************** *** 1684,1687 **** --- 1684,1723 ---- install=true install_location=$$(kde_datadir)/krusader/icons/hicolor/32x32/actions/kr_unselectall.png + type=DATA + + [pics/kr_split16x16.png] + dist=true + install=true + install_location=$$(kde_datadir)/krusader/icons/hicolor/16x16/actions/kr_split.png + type=DATA + + [pics/kr_split22x22.png] + dist=true + install=true + install_location=$$(kde_datadir)/krusader/icons/hicolor/22x22/actions/kr_split.png + type=DATA + + [pics/kr_split32x32.png] + dist=true + install=true + install_location=$$(kde_datadir)/krusader/icons/hicolor/32x32/actions/kr_split.png + type=DATA + + [pics/kr_combine16x16.png] + dist=true + install=true + install_location=$$(kde_datadir)/krusader/icons/hicolor/16x16/actions/kr_combine.png + type=DATA + + [pics/kr_combine22x22.png] + dist=true + install=true + install_location=$$(kde_datadir)/krusader/icons/hicolor/22x22/actions/kr_combine.png + type=DATA + + [pics/kr_combine32x32.png] + dist=true + install=true + install_location=$$(kde_datadir)/krusader/icons/hicolor/32x32/actions/kr_combine.png type=DATA |
From: <ck...@us...> - 2003-11-30 13:14:30
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1:/tmp/cvs-serv7896/krusader_kde3/krusader Modified Files: krusader.cpp Log Message: ADDED: icons for the splitter Index: krusader.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusader.cpp,v retrieving revision 1.44 retrieving revision 1.45 diff -C2 -d -r1.44 -r1.45 *** krusader.cpp 29 Nov 2003 12:05:30 -0000 1.44 --- krusader.cpp 30 Nov 2003 13:14:26 -0000 1.45 *************** *** 370,376 **** actUnpack = new KAction( i18n( "&Unpack" ), "kr_arc_unpack", ALT + Key_U, SLOTS, SLOT( slotUnpack() ), actionCollection() , "unpack" ); ! actSplit = new KAction( i18n( "Sp&lit file" ), 0, CTRL + Key_P, SLOTS, SLOT( slotSplit() ), actionCollection(), "split" ); ! actCombine = new KAction( i18n( "Com&bine files" ), 0, CTRL + Key_B, SLOTS, SLOT( slotCombine() ), actionCollection() , "combine" ); actSelect = new KAction( i18n( "Select &Group" ), "kr_select", CTRL + Key_Plus, --- 370,376 ---- actUnpack = new KAction( i18n( "&Unpack" ), "kr_arc_unpack", ALT + Key_U, SLOTS, SLOT( slotUnpack() ), actionCollection() , "unpack" ); ! actSplit = new KAction( i18n( "Sp&lit file" ), "kr_split", CTRL + Key_P, SLOTS, SLOT( slotSplit() ), actionCollection(), "split" ); ! actCombine = new KAction( i18n( "Com&bine files" ), "kr_combine", CTRL + Key_B, SLOTS, SLOT( slotCombine() ), actionCollection() , "combine" ); actSelect = new KAction( i18n( "Select &Group" ), "kr_select", CTRL + Key_Plus, |
Update of /cvsroot/krusader/krusader_kde3/pics In directory sc8-pr-cvs1:/tmp/cvs-serv7896/krusader_kde3/pics Modified Files: Makefile.am Added Files: kr_combine16x16.png kr_combine22x22.png kr_combine32x32.png kr_split16x16.png kr_split22x22.png kr_split32x32.png Log Message: ADDED: icons for the splitter --- NEW FILE: kr_combine16x16.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kr_combine22x22.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kr_combine32x32.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kr_split16x16.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kr_split22x22.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kr_split32x32.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.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.am 15 Apr 2002 18:52:12 -0000 1.1.1.1 --- Makefile.am 30 Nov 2003 13:14:27 -0000 1.2 *************** *** 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 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 install-data-local: *************** *** 147,150 **** --- 147,162 ---- $(mkinstalldirs) $(kde_datadir)/krusader/icons/hicolor/32x32/actions/ $(INSTALL_DATA) $(srcdir)/unselectall32x32.png $(kde_datadir)/krusader/icons/hicolor/32x32/actions/kr_unselectall.png + $(mkinstalldirs) $(kde_datadir)/krusader/icons/hicolor/16x16/actions/ + $(INSTALL_DATA) $(srcdir)/kr_split16x16.png $(kde_datadir)/krusader/icons/hicolor/16x16/actions/kr_split.png + $(mkinstalldirs) $(kde_datadir)/krusader/icons/hicolor/22x22/actions/ + $(INSTALL_DATA) $(srcdir)/kr_split22x22.png $(kde_datadir)/krusader/icons/hicolor/22x22/actions/kr_split.png + $(mkinstalldirs) $(kde_datadir)/krusader/icons/hicolor/32x32/actions/ + $(INSTALL_DATA) $(srcdir)/kr_split32x32.png $(kde_datadir)/krusader/icons/hicolor/32x32/actions/kr_split.png + $(mkinstalldirs) $(kde_datadir)/krusader/icons/hicolor/32x32/actions/ + $(INSTALL_DATA) $(srcdir)/kr_combine16x16.png $(kde_datadir)/krusader/icons/hicolor/16x16/actions/kr_combine.png + $(mkinstalldirs) $(kde_datadir)/krusader/icons/hicolor/22x22/actions/ + $(INSTALL_DATA) $(srcdir)/kr_combine22x22.png $(kde_datadir)/krusader/icons/hicolor/22x22/actions/kr_combine.png + $(mkinstalldirs) $(kde_datadir)/krusader/icons/hicolor/32x32/actions/ + $(INSTALL_DATA) $(srcdir)/kr_combine32x32.png $(kde_datadir)/krusader/icons/hicolor/32x32/actions/kr_combine.png uninstall-local: *************** *** 220,223 **** --- 232,241 ---- -rm -f $(kde_datadir)/krusader/icons/hicolor/22x22/actions/kr_unselectall.png -rm -f $(kde_datadir)/krusader/icons/hicolor/32x32/actions/kr_unselectall.png + -rm -f $(kde_datadir)/krusader/icons/hicolor/16x16/actions/kr_split.png + -rm -f $(kde_datadir)/krusader/icons/hicolor/22x22/actions/kr_split.png + -rm -f $(kde_datadir)/krusader/icons/hicolor/32x32/actions/kr_split.png + -rm -f $(kde_datadir)/krusader/icons/hicolor/16x16/actions/kr_combine.png + -rm -f $(kde_datadir)/krusader/icons/hicolor/22x22/actions/kr_combine.png + -rm -f $(kde_datadir)/krusader/icons/hicolor/32x32/actions/kr_combine.png ####### kdevelop will overwrite this part!!! (end)############ |
From: <ya...@us...> - 2003-11-29 17:20:24
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv22532 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.141 retrieving revision 1.142 diff -C2 -d -r1.141 -r1.142 *** ChangeLog 29 Nov 2003 12:05:30 -0000 1.141 --- ChangeLog 29 Nov 2003 17:20:21 -0000 1.142 *************** *** 5,10 **** --- 5,12 ---- FIXED: KrSearch permissions panel placing bug FIXED: ftp port limit changed from 999 to 65535 + UPDATED: Czech translation (thanks to Martin Sixta) + REMOVED: arc_vfs support completly replaced with KIO:Slave technolegy. 1.30 ====================== |
From: <ya...@us...> - 2003-11-29 17:17:05
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv21987 Modified Files: krusader.spec Log Message: New spec file - currently set to work with version 1.30 Index: krusader.spec =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** krusader.spec 13 Aug 2002 22:37:30 -0000 1.2 --- krusader.spec 29 Nov 2003 17:17:01 -0000 1.3 *************** *** 2,6 **** %define name krusader ! %define version 1.10 %define release 1 --- 2,6 ---- %define name krusader ! %define version 1.30 %define release 1 *************** *** 55,59 **** mkdir -p $RPM_BUILD_ROOT%{_menudir} ! # remove when building Mandrake RPM # kdedesktop2mdkmenu.pl krusader "Applications/File tools" %buildroot/%_datadir/applnk/Applications/krusader.desktop %buildroot/%_menudir/krusader --- 55,59 ---- mkdir -p $RPM_BUILD_ROOT%{_menudir} ! # uncomment when building Mandrake RPM # kdedesktop2mdkmenu.pl krusader "Applications/File tools" %buildroot/%_datadir/applnk/Applications/krusader.desktop %buildroot/%_menudir/krusader *************** *** 64,73 **** %post ! # remove when building Mandrake RPM ! # %{update_menus} %postun ! # remove when building Mandrake RPM ! # %{clean_menus} %files -f %name.lang --- 64,75 ---- %post ! ! # uncomment when building Mandrake RPM ! # %{update_menus} %postun ! ! # uncomment when building Mandrake RPM ! # %{clean_menus} %files -f %name.lang *************** *** 85,88 **** --- 87,91 ---- %dir %_datadir/apps/krusader/icons/ %dir %_datadir/apps/krusader/icons/hicolor/ + %dir %_datadir/apps/krusader/icons/hicolor/16x16/ %dir %_datadir/apps/krusader/icons/hicolor/16x16/actions/ *************** *** 97,110 **** %_datadir/apps/krusader/icons/hicolor/32x32/actions/*.png ! ! ! ! ! # remove when building Mandrake RPM # %_menudir/* ! %_datadir/icons/hicolor/16x16/apps/krusader.png ! %_datadir/icons/hicolor/32x32/apps/krusader.png %_datadir/mimelnk/application/x-ace.desktop --- 100,120 ---- %_datadir/apps/krusader/icons/hicolor/32x32/actions/*.png ! # uncomment when building Mandrake RPM # %_menudir/* ! %dir %_datadir/icons ! %dir %_datadir/icons/hicolor ! %dir %_datadir/icons/hicolor/32x32/ ! %dir %_datadir/icons/hicolor/32x32/apps/ ! %_datadir/icons/hicolor/32x32/apps/*.png ! %dir %_datadir/icons/locolor ! %dir %_datadir/icons/locolor/16x16/ ! %dir %_datadir/icons/locolor/16x16/apps/ ! %_datadir/icons/locolor/16x16/apps/krusader.png + %_datadir/man/man1/krusader.1.bz2 %_datadir/mimelnk/application/x-ace.desktop + %_datadir/services/krarc.protocol + %dir %_libdir/kde3/ + %_libdir/kde3/kio_krarc.* |
From: <ya...@us...> - 2003-11-29 17:14:10
|
Update of /cvsroot/krusader/krusader_kde3/krusader/MountMan In directory sc8-pr-cvs1:/tmp/cvs-serv21512/krusader/MountMan Modified Files: kmountman.cpp Log Message: Fixed compile time warnings Index: kmountman.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/MountMan/kmountman.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** kmountman.cpp 19 Oct 2003 16:37:02 -0000 1.14 --- kmountman.cpp 29 Nov 2003 17:14:07 -0000 1.15 *************** *** 315,319 **** /* we cannot use collectOutput as other processes may connected to it */ ! void KMountMan::collectMtab(KProcess *p, char *buffer,int buflen) { // add new buffer to mtab for (int i=0; i<buflen; ++i) --- 315,319 ---- /* we cannot use collectOutput as other processes may connected to it */ ! void KMountMan::collectMtab(KProcess*, char *buffer,int buflen) { // add new buffer to mtab for (int i=0; i<buflen; ++i) |