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-05-16 16:01:23
|
Update of /cvsroot/krusader/krusader_kde3/krusader/VFS In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28443/krusader/VFS Modified Files: normal_vfs.cpp Log Message: [ 950762 ] missing permission check on entering a folder Index: normal_vfs.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/normal_vfs.cpp,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** normal_vfs.cpp 25 Apr 2004 09:19:01 -0000 1.24 --- normal_vfs.cpp 16 May 2004 16:01:13 -0000 1.25 *************** *** 104,109 **** if(!dir) return false; ! //change directory to the new directory ! chdir(path.local8Bit()); struct dirent* dirEnt; --- 104,112 ---- if(!dir) return false; ! // change directory to the new directory ! if (chdir(path.local8Bit()) != 0) { ! KMessageBox::error(krApp, i18n("Access denied to")+path, i18n("Error")); ! return false; ! } struct dirent* dirEnt; |
From: Shie E. <er...@us...> - 2004-05-16 15:36:27
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22813 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.229 retrieving revision 1.230 diff -C2 -d -r1.229 -r1.230 *** ChangeLog 16 May 2004 15:23:04 -0000 1.229 --- ChangeLog 16 May 2004 15:36:18 -0000 1.230 *************** *** 1,5 **** ====================== ADDED: Chinese Simplified translation ! FIXED: [ 953874 ] allowing editors which are not url-aware to be used as default editor FIXED: [ 948315 ] security hole, krusader changes its temp directory's rights to 0777 FIXED: the UI settings are not saved at exit --- 1,6 ---- ====================== ADDED: Chinese Simplified translation ! FIXED: setting "xterm -e vim" as editor didn't work... ! FIXED: [ 953874 ] allowing editors which are not url-aware to be used as default editor FIXED: [ 948315 ] security hole, krusader changes its temp directory's rights to 0777 FIXED: the UI settings are not saved at exit |
From: Shie E. <er...@us...> - 2004-05-16 15:35:55
|
Update of /cvsroot/krusader/krusader_kde3/krusader/KViewer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22661/krusader/KViewer Modified Files: krviewer.cpp Log Message: setting "xterm -e vim" as editor didn't work Index: krviewer.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/KViewer/krviewer.cpp,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** krviewer.cpp 16 May 2004 15:28:03 -0000 1.19 --- krviewer.cpp 16 May 2004 15:35:43 -0000 1.20 *************** *** 187,192 **** // the problem for editors that aren't url-aware if (url.isLocalFile()) ! proc << edit << url.path(); ! else proc << edit << url.prettyURL(); if ( !proc.start( KProcess::DontCare ) ) KMessageBox::sorry( krApp, i18n( "Can't open " ) + "\"" + edit + "\"" ); --- 187,192 ---- // the problem for editors that aren't url-aware if (url.isLocalFile()) ! proc << QStringList::split(' ', edit) << url.path(); ! else proc << QStringList::split(' ', edit) << url.prettyURL(); if ( !proc.start( KProcess::DontCare ) ) KMessageBox::sorry( krApp, i18n( "Can't open " ) + "\"" + edit + "\"" ); |
From: Shie E. <er...@us...> - 2004-05-16 15:28:13
|
Update of /cvsroot/krusader/krusader_kde3/krusader/KViewer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20946/krusader/KViewer Modified Files: krviewer.cpp Log Message: removed a kdwarning Index: krviewer.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/KViewer/krviewer.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** krviewer.cpp 16 May 2004 15:22:35 -0000 1.18 --- krviewer.cpp 16 May 2004 15:28:03 -0000 1.19 *************** *** 189,193 **** proc << edit << url.path(); else proc << edit << url.prettyURL(); - kdWarning() << url.path(); if ( !proc.start( KProcess::DontCare ) ) KMessageBox::sorry( krApp, i18n( "Can't open " ) + "\"" + edit + "\"" ); --- 189,192 ---- |
From: Shie E. <er...@us...> - 2004-05-16 15:23:30
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19934 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.228 retrieving revision 1.229 diff -C2 -d -r1.228 -r1.229 *** ChangeLog 14 May 2004 20:13:45 -0000 1.228 --- ChangeLog 16 May 2004 15:23:04 -0000 1.229 *************** *** 1,5 **** ====================== ADDED: Chinese Simplified translation ! FIXED: [ 948315 ] security hole, krusader changes its temp directory's rights to 0777 FIXED: the UI settings are not saved at exit FIXED: [ 951274 ] shift+home and shift+end does not work --- 1,6 ---- ====================== ADDED: Chinese Simplified translation ! FIXED: [ 953874 ] allowing editors which are not url-aware to be used as default editor ! FIXED: [ 948315 ] security hole, krusader changes its temp directory's rights to 0777 FIXED: the UI settings are not saved at exit FIXED: [ 951274 ] shift+home and shift+end does not work |
From: Shie E. <er...@us...> - 2004-05-16 15:22:44
|
Update of /cvsroot/krusader/krusader_kde3/krusader/KViewer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19845/krusader/KViewer Modified Files: krviewer.cpp Log Message: [ 953874 ] allowing editors which are not url-aware to be used as default editor Index: krviewer.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/KViewer/krviewer.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** krviewer.cpp 20 Apr 2004 19:54:21 -0000 1.17 --- krviewer.cpp 16 May 2004 15:22:35 -0000 1.18 *************** *** 184,189 **** if ( edit != "internal editor" ) { KProcess proc; ! proc << edit << url.prettyURL(); ! if ( !proc.start( KProcess::DontCare ) ) KMessageBox::sorry( krApp, i18n( "Can't open " ) + "\"" + edit + "\"" ); return; --- 184,194 ---- if ( edit != "internal editor" ) { KProcess proc; ! // if the file is local, pass a normal path and not a url. this solves ! // the problem for editors that aren't url-aware ! if (url.isLocalFile()) ! proc << edit << url.path(); ! else proc << edit << url.prettyURL(); ! kdWarning() << url.path(); ! if ( !proc.start( KProcess::DontCare ) ) KMessageBox::sorry( krApp, i18n( "Can't open " ) + "\"" + edit + "\"" ); return; |
From: Frank S. <cod...@us...> - 2004-05-15 19:49:26
|
Update of /cvsroot/krusader/krusader_kde3/doc/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28156/doc/en Modified Files: faq.sgml index.docbook installation.sgml using-krusader.sgml Log Message: marking files Index: index.docbook =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/index.docbook,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** index.docbook 23 Apr 2004 08:57:17 -0000 1.11 --- index.docbook 15 May 2004 19:49:15 -0000 1.12 *************** *** 61,67 **** <!ENTITY online_buglist_url '<ulink url="http://sourceforge.net/tracker/?atid=106488&group_id=6488&func=browse">online bug list</ulink>'> ! <!ENTITY freshmeat_url '<ulink url="http://www.freshmeat.net">freshmeat</ulink>'> ! <!ENTITY rpmfind_url '<ulink url="http://www.rpmfind.net">Rpmfind</ulink>'> ! <!ENTITY rpmpbone_url '<ulink url="http://rpm.pbone.net">RPMpbone.net</ulink>'> <!ENTITY krufreebsd_port_url '<ulink url="http://www.freebsd.org/cgi/ports.cgi?query=krusader&stype=all">FreeBSD port</ulink>'> --- 61,67 ---- <!ENTITY online_buglist_url '<ulink url="http://sourceforge.net/tracker/?atid=106488&group_id=6488&func=browse">online bug list</ulink>'> ! <!ENTITY freshmeat_url '<ulink url="http://www.freshmeat.net">freshmeat.net</ulink>'> ! <!ENTITY rpmfind_url '<ulink url="http://www.rpmfind.net">rpmfind.net</ulink>'> ! <!ENTITY rpmpbone_url '<ulink url="http://rpm.pbone.net">rpmpbone.net</ulink>'> <!ENTITY krufreebsd_port_url '<ulink url="http://www.freebsd.org/cgi/ports.cgi?query=krusader&stype=all">FreeBSD port</ulink>'> *************** *** 88,92 **** <!ENTITY kdeqtdir_lnk '<link linkend="kde_qt_dir"><envar>KDEDIR</envar> - <envar>QTDIR</envar></link>'> <!ENTITY usermenu_lnk '<link linkend="user_menu">User menu</link>'> ! <!ENTITY faq_lnk '<link linkend="faq">FAQ's</link>'> <!ENTITY forum_lnk '<link linkend="faqq_kru_forum">&krusader; Forum</link>'> <!ENTITY help_request_lnk '<link linkend="help_request">help request</link>'> --- 88,92 ---- <!ENTITY kdeqtdir_lnk '<link linkend="kde_qt_dir"><envar>KDEDIR</envar> - <envar>QTDIR</envar></link>'> <!ENTITY usermenu_lnk '<link linkend="user_menu">User menu</link>'> ! <!ENTITY faq_lnk '<link linkend="faq">FAQ</link>'> <!ENTITY forum_lnk '<link linkend="faqq_kru_forum">&krusader; Forum</link>'> <!ENTITY help_request_lnk '<link linkend="help_request">help request</link>'> Index: using-krusader.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/using-krusader.sgml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** using-krusader.sgml 23 Apr 2004 08:57:19 -0000 1.11 --- using-krusader.sgml 15 May 2004 19:49:16 -0000 1.12 *************** *** 413,416 **** --- 413,422 ---- mark all the files between the previous cursor location and the new one.</para> </listitem> + <listitem><para><keycombo action="simul">&Shift;<keycap>Home</keycap></keycombo> will + clear the actual marking and marks the cusor and all elements above the cursor.</para> + </listitem> + <listitem><para><keycombo action="simul">&Shift;<keycap>End</keycap></keycombo> will + clear the actual marking and marks the cusor and all elements below the cursor.</para> + </listitem> <listitem><para><keycombo action="simul">&Ctrl;<keycap>Up arrow</keycap></keycombo> or <keycombo action="simul">&Ctrl;<keycap>Down arrow</keycap></keycombo> *************** *** 1275,1278 **** --- 1281,1290 ---- <entry><para><keycap>MENU</keycap></para></entry> <entry><para>Right-click menu</para></entry></row> + <row> + <entry><para><keycap>Home</keycap></para></entry> + <entry><para>Cursor jumps to ..</para></entry></row> + <row> + <entry><para><keycap>End</keycap></para></entry> + <entry><para>Cursor jumps to latest file</para></entry></row> </tbody> </tgroup> *************** *** 1312,1319 **** <title>Other Key-bindings</title> <listitem> ! <para><link linkend="krviewer">KrViewer</link>.</para> </listitem> <listitem> ! <para>&kde; Control center -> Accessibility -> Keyboard Shortcuts.</para> </listitem> </itemizedlist> --- 1324,1334 ---- <title>Other Key-bindings</title> <listitem> ! <para><link linkend="marking-files">Marking files</link></para> </listitem> <listitem> ! <para><link linkend="krviewer">KrViewer</link></para> ! </listitem> ! <listitem> ! <para>&kde; Control center -> Accessibility -> Keyboard Shortcuts</para> </listitem> </itemizedlist> Index: installation.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/installation.sgml,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** installation.sgml 23 Apr 2004 08:57:17 -0000 1.10 --- installation.sgml 15 May 2004 19:49:15 -0000 1.11 *************** *** 288,292 **** <listitem> ! <para>If you have downloaded a stable version <filename>"krusader-x.xx.tar.gz"</filename>" or a beta version <filename>"krusader-x.xx-betax.tar.gz"</filename>, you can skip this step, in this case the <filename>./configure</filename> script is provided.</para> --- 288,292 ---- <listitem> ! <para>If you have downloaded a stable version <filename>"krusader-x.xx.tar.gz"</filename> or a beta version <filename>"krusader-x.xx-betax.tar.gz"</filename>, you can skip this step, in this case the <filename>./configure</filename> script is provided.</para> *************** *** 466,470 **** <para>If you encounter problems with installing &krusader; please read first the &faq_lnk;. ! If this installation procedure and the FAQ's does not solve the problem, feel free to ask for help with an &help_request_lnk;.</para> --- 466,470 ---- <para>If you encounter problems with installing &krusader; please read first the &faq_lnk;. ! If this installation procedure and the FAQ does not solve the problem, feel free to ask for help with an &help_request_lnk;.</para> Index: faq.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/faq.sgml,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** faq.sgml 23 Apr 2004 08:57:17 -0000 1.10 --- faq.sgml 15 May 2004 19:49:15 -0000 1.11 *************** *** 20,24 **** * MA 02111-1307, USA. * *********************************************************************** --> ! <title>Frequently Asked Questions (&FAQ;'s)</title> <!-- &reporting.bugs; &updating.documentation; --> --- 20,24 ---- * MA 02111-1307, USA. * *********************************************************************** --> ! <title>Frequently Asked Questions (&FAQ;)</title> <!-- &reporting.bugs; &updating.documentation; --> *************** *** 27,36 **** maybe your problem is caused by a bad installation.</para> ! <para>The &FAQ;'s are devided in three sections: <itemizedlist> ! <listitem><para><link linkend="faq_installation">Installation &FAQ;'s</link> (this page)</para></listitem> ! <listitem><para><link linkend="faq_usage">Usage &FAQ;'s</link> (issues when running/using &krusader;)</para></listitem> ! <listitem><para><link linkend="faq_general">General &FAQ;'s</link> (bug reports, forum, mailing list, ...)</para></listitem> </itemizedlist> --- 27,36 ---- maybe your problem is caused by a bad installation.</para> ! <para>The &FAQ; are devided in three sections: <itemizedlist> ! <listitem><para><link linkend="faq_installation">Installation &FAQ;</link> (this page)</para></listitem> ! <listitem><para><link linkend="faq_usage">Usage &FAQ;</link> (issues when running/using &krusader;)</para></listitem> ! <listitem><para><link linkend="faq_general">General &FAQ;</link> (bug reports, forum, mailing list, ...)</para></listitem> </itemizedlist> *************** *** 41,45 **** <sect1 id="faq_installation"> ! <title>Installation &FAQ;'s</title> <qandaset> --- 41,45 ---- <sect1 id="faq_installation"> ! <title>Installation &FAQ;</title> <qandaset> *************** *** 242,246 **** <sect1 id="faq_usage"> ! <title>Usage &FAQ;'s</title> <qandaset> --- 242,246 ---- <sect1 id="faq_usage"> ! <title>Usage &FAQ;</title> <qandaset> *************** *** 379,383 **** <sect1 id="faq_general"> ! <title>General &FAQ;'s</title> <qandaset> --- 379,383 ---- <sect1 id="faq_general"> ! <title>General &FAQ;</title> <qandaset> |
From: Frank S. <cod...@us...> - 2004-05-15 19:48:08
|
Update of /cvsroot/krusader/krusader_kde3/doc/en In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28040/doc/en Modified Files: credits.sgml Log Message: chinese credit Index: credits.sgml =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/doc/en/credits.sgml,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** credits.sgml 29 Mar 2004 19:36:39 -0000 1.10 --- credits.sgml 15 May 2004 19:47:58 -0000 1.11 *************** *** 96,99 **** --- 96,101 ---- <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> |
From: Frank S. <cod...@us...> - 2004-05-15 19:26:44
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23628 Modified Files: krusader.lsm krusader.spec Log Message: 1.40 beta Index: krusader.spec =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader.spec,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** krusader.spec 13 Feb 2004 13:51:36 -0000 1.4 --- krusader.spec 15 May 2004 19:26:35 -0000 1.5 *************** *** 1,20 **** ! # derived from spec file by Laurent MONTEL <lm...@ma...> %define name krusader ! %define version 1.30 ! %define release 1 ! Summary: advanced twin-panel (commander-style) file-manager for KDE 3.x Name: %{name} Version: %{version} Release: %{release} ! Source0: %{name}-%{version}.tar.gz License: GPL Group: File tools - BuildRoot: %{_tmppath}/%{name}-buildroot - URL: http://krusader.sourceforge.net - Vendor: Shie Erlich & Rafi Yanai <kru...@us...> - Packager: Shie Erlich & Rafi Yanai <kru...@us...> Requires: kdelibs --- 1,51 ---- ! # krusader.spec use rpmbuild to build a Krusader RPM package ! # Derived from spec file by Laurent MONTEL <lm...@ma...> + # this spec file works on Mandrake 9.2 for krusader 1.40 beta1 + # other distributions may need todo some modifications + # If you have comments or suggestions about this spec file please send it to + # <fra...@fa...> Krusader Krew. + # Thanks for your cooperation! + + # RPM package name %define name krusader ! %define version 1.40 ! %define release beta1.mdk92 ! # Name of the packager: please replace the following text with ! # your name and e-mail adress ! %define packager your name <your e-...@ad...o> ! ! # Package information ! Summary: advanced twin-panel file-manager for KDE 3.x Name: %{name} Version: %{version} Release: %{release} ! Source0: %name-%{version}-beta1.tar.gz ! #Source0: %{name}-%{version}.tar.gz ! #not used Patch0: foo.patch.gz License: GPL Group: File tools + # requirements for building the software package, these are not the PRM requirements + # e.g. for installing the RPM you will not need a C-compiler + BuildRequires: automake autoconf diffutils file m4 texinfo gettext zlib1 + BuildRequires: kdelibs kdelibs-devel >= 3 libqt3 >= 3 libqt-devel + BuildRequires: libjpeg62 libjpeg-devel libpng3 libmng1 + BuildRequires: libfam-devel arts libart_lgpl2 libstdc++5 libpcre0 + BuildRequires: libxfree86 libfreetype6 libfontconfig1 libnas2 libexpat0 + BuildRequires: rpm-build gcc-cpp gcc-c++ glibc libgcc1 + + # BuildRoot: dir who acts as a staging area that looks like the final install dir + # tipicaly(for Mandrake): /var/tmp/krusader-buildroot + # this will become the %%RPM_BUILD_ROOT enviroment variable + BuildRoot: %{_tmppath}/%{name}-buildroot + URL: http://krusader.sourceforge.net + #not used Epoch: 1 + Vendor: Shie Erlich, Rafi Yanai, Krusader Krew <kru...@us...> + Packager: %{packager} + + + # dependencies requirements for the RPM package Requires: kdelibs *************** *** 32,84 **** You should give it a try. %prep rm -rf $RPM_BUILD_ROOT - %setup -q -n %name-%version %build export CFLAGS=$RPM_OPT_FLAGS export CXXFLAGS=$RPM_OPT_FLAGS # %%configure doesn't work ./configure --prefix=%_prefix \ ! --bindir=%_bindir \ ! --datadir=%_datadir \ ! --disable-rpath \ ! --disable-debug %make %install rm -rf $RPM_BUILD_ROOT %makeinstall KDEDIR=$RPM_BUILD_ROOT%{_prefix} kde_minidir=$RPM_BUILD_ROOT%{_miconsdir} ! ! #menu 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 %find_lang %{name} %clean rm -rf $RPM_BUILD_ROOT %post - # uncomment when building Mandrake RPM - # %{update_menus} %postun - # uncomment when building Mandrake RPM - # %{clean_menus} %files -f %name.lang %defattr(-,root,root) ! %doc README AUTHORS ChangeLog TODO COPYING krusader.lsm %doc %{_datadir}/doc/HTML/en/* %_bindir/* %_datadir/applnk/Applications/krusader.desktop %dir %_datadir/apps/krusader/ %_datadir/apps/krusader/*.rc --- 63,161 ---- You should give it a try. + # preparing for the build by unpacking the sources and applying any patches + # in /usr/src/RPM/BUILD/krusader-%version on Mandrake %prep rm -rf $RPM_BUILD_ROOT + # changes to the build dir /usr/src/RPM/BUILD/krusader-%version on Mandrake + # -q: run quitely + %setup -q -n %name-%version-beta1 + #%setup -q -n %name-%version + #%%patch1 -p1 -b .foo + # commands to build the software in /usr/src/RPM/BUILD/krusader-%version on Mandrake %build + # set enviroment variables + export QTDIR=%_libdir/qt3 + export KDEDIR=%_prefix + + export LD_LIBRARY_PATH=$QTDIR/lib:$KDEDIR/lib:$LD_LIBRARY_PATH + export PATH=$QTDIR/bin:$KDEDIR/bin:$PATH + export CFLAGS=$RPM_OPT_FLAGS export CXXFLAGS=$RPM_OPT_FLAGS + + # run configure # %%configure doesn't work + # bindir = /usr/bin on Mandrake + # datadir = /usr/share on Mandrake ./configure --prefix=%_prefix \ ! --bindir=%_bindir \ ! --datadir=%_datadir \ ! --disable-rpath \ ! --disable-debug + # run make %make + + + # commands to install the software in $RPM_BUILD_ROOT %install rm -rf $RPM_BUILD_ROOT %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 at "Applications/File tools" + 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 ! rm -rf $RPM_BUILD_ROOT/%_datadir/mimelnk/application/*.desktop %find_lang %{name} + # commands to clean up after the build and install in $RPM_BUILD_ROOT %clean rm -rf $RPM_BUILD_ROOT + + + # script that runs after installing the RPM package %post + # updates the KDE menu with Krusader + %{update_menus} + + # script that runs after uninstalling the RPM package %postun + # removes Krusader from the KDE menu + %{clean_menus} + + # all the files that the RPM package should install, this list must be exhausitive + # i18n /usr/share/locale/foo/LC_MESSAGES/krusader.mo on mandrake %files -f %name.lang + + # set default attributes for all files in the package (-, user, group) + # - = leave the permissions like the are in the source tarball e.g. 644 %defattr(-,root,root) ! # documentation files (docdir name does not need to be included) ! %doc README AUTHORS ChangeLog TODO COPYING krusader.lsm INSTALL ! # Docbook documentation %doc %{_datadir}/doc/HTML/en/* + + # bindir = /usr/bin, krusader binary: /usr/bin/krusader on Mandrake %_bindir/* + + # datadir = /usr/lib, usr/lib/kde3, usr/lib/menu on Mandrake + %_libdir/* + + # datadir = /usr/share on Mandrake %_datadir/applnk/Applications/krusader.desktop + # /usr/share/apps/krusader/ on Mandrake + # dir = inlude empty dir but not the files %dir %_datadir/apps/krusader/ %_datadir/apps/krusader/*.rc *************** *** 86,121 **** %_datadir/apps/krusader/*.jpg %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/ %_datadir/apps/krusader/icons/hicolor/16x16/actions/*.png %dir %_datadir/apps/krusader/icons/hicolor/22x22/ %dir %_datadir/apps/krusader/icons/hicolor/22x22/actions/ %_datadir/apps/krusader/icons/hicolor/22x22/actions/*.png %dir %_datadir/apps/krusader/icons/hicolor/32x32/ %dir %_datadir/apps/krusader/icons/hicolor/32x32/actions/ %_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.* --- 163,209 ---- %_datadir/apps/krusader/*.jpg + # /usr/share/apps/krusader/icons/ on Mandrake %dir %_datadir/apps/krusader/icons/ %dir %_datadir/apps/krusader/icons/hicolor/ + # /usr/share/apps/krusader/icons/hicolor/16x16/actions/*.png on Mandrake %dir %_datadir/apps/krusader/icons/hicolor/16x16/ %dir %_datadir/apps/krusader/icons/hicolor/16x16/actions/ %_datadir/apps/krusader/icons/hicolor/16x16/actions/*.png + # /usr/share/apps/krusader/icons/hicolor/22x22/actions/*.png on Mandrake %dir %_datadir/apps/krusader/icons/hicolor/22x22/ %dir %_datadir/apps/krusader/icons/hicolor/22x22/actions/ %_datadir/apps/krusader/icons/hicolor/22x22/actions/*.png + # /usr/share/apps/krusader/icons/hicolor/32x32/actions/*.png on Mandrake %dir %_datadir/apps/krusader/icons/hicolor/32x32/ %dir %_datadir/apps/krusader/icons/hicolor/32x32/actions/ %_datadir/apps/krusader/icons/hicolor/32x32/actions/*.png ! # /usr/share/icons/hicolor/16x16/apps/ on Mandrake ! %dir %_datadir/icons/hicolor/16x16/apps/ ! %_datadir/icons/hicolor/16x16/apps/*.png ! ! %dir %_datadir/icons/hicolor/22x22/apps/ ! %_datadir/icons/hicolor/22x22/apps/*.png ! %dir %_datadir/icons/hicolor/32x32/apps/ %_datadir/icons/hicolor/32x32/apps/*.png ! %dir %_datadir/icons/hicolor/48x48/apps/ ! %_datadir/icons/hicolor/48x48/apps/*.png ! %dir %_datadir/icons/hicolor/64x64/apps/ ! %_datadir/icons/hicolor/64x64/apps/*.png ! ! ! # manpage usr/share/man/man1/krusader.1.bz2 on mandrake ! %_mandir/man1/* ! ! # /usr/share/services/krarc.protocol on Mandrake ! %_datadir/services/* ! ! # /usr/share/mimelnk/application/x-ace.desktop on Mandrake ! #%_datadir/mimelnk/application/*.desktop Index: krusader.lsm =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader.lsm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** krusader.lsm 13 Feb 2004 13:52:33 -0000 1.2 --- krusader.lsm 15 May 2004 19:26:35 -0000 1.3 *************** *** 1,29 **** ! Begin4 ! Title: Krusader ! Version: 1.30 stable ! Entered-date: 2004-02-10 ! Description: Krusader is an advanced twin-panel (commander-style) ! file-manager for KDE 3.x (similar to Midnight ! Total Commander) but with many extras. ! It provides all the file-management features you could ! possibly want. Plus: extensive archive handling, ! mounted filesystem support, FTP, advanced search module, ! viewer/editor, directory synchronisation, file content ! comparisons, powerful batch renaming and ! much much more. ! It supports the following archive formats: tar, zip, bzip2, ! gzip, rar, ace, arj and rpm ! and can handle other KIOSlaves such as smb:// or fish:// ! It is (almost) completely customizable, very user friendly, ! fast and looks great on your desktop! :-) ! You should give it a try. ! Keywords: kde3 file-manager commander archive twin-panel ftp midnight ! Author: kru...@us... (shie erlich & rafi yanai) ! Maintained-by: kru...@us... (shie erlich & rafi yanai) ! Primary-site: http://krusader.sourceforge.net/index.php?nav=3Ddown.php ! 2.1MB krusader-1.30.tar.gz ! Alternate-site: ! Original-site: ! Platforms: KDE 3.x ! Copying-policy: GPL ! End \ No newline at end of file --- 1,29 ---- ! Begin4 ! Title: Krusader ! Version: 1.40 beta1 ! Entered-date: 2004-05-13 ! Description: Krusader is an advanced twin-panel (commander-style) ! file-manager for KDE 3.x (similar to Midnight ! Total Commander) but with many extras. ! It provides all the file-management features you could ! possibly want. Plus: extensive archive handling, ! mounted filesystem support, FTP, advanced search module, ! viewer/editor, directory synchronisation, file content ! comparisons, powerful batch renaming and ! much much more. ! It supports the following archive formats: tar, zip, bzip2, ! gzip, rar, ace, arj and rpm ! and can handle other KIOSlaves such as smb:// or fish:// ! It is (almost) completely customizable, very user friendly, ! fast and looks great on your desktop! :-) ! You should give it a try. ! Keywords: kde3 file-manager commander archive twin-panel ftp midnight ! Author: kru...@us... (shie erlich & rafi yanai) ! Maintained-by: kru...@us... (shie erlich & rafi yanai) ! Primary-site: http://krusader.sourceforge.net/index.php?nav=3Ddown.php ! 2.3MB krusader-1.40-beta1.tar.gz ! Alternate-site: ! Original-site: ! Platforms: KDE 3.x ! Copying-policy: GPL ! End |
From: Karai C. <ck...@us...> - 2004-05-14 20:13:57
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24672/krusader_kde3/krusader Modified Files: krusader.cpp Log Message: FIXED: [ 948315 ] security hole, k. changes its temp directory's rights to 0777 Index: krusader.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusader.cpp,v retrieving revision 1.68 retrieving revision 1.69 diff -C2 -d -r1.68 -r1.69 *** krusader.cpp 14 May 2004 06:26:05 -0000 1.68 --- krusader.cpp 14 May 2004 20:13:46 -0000 1.69 *************** *** 703,710 **** krConfig->setGroup( "General" ); QString tmpDir = krConfig->readEntry( "Temp Directory", _TempDirectory ); ! for ( int i = 1 ; i != -1 ; i = tmpDir.find( '/', i + 1 ) ) ! QDir().mkdir( tmpDir.left( i ) ); ! QDir().mkdir( tmpDir ); ! chmod( tmpDir.local8Bit(), 0777 ); // add a secure sub dir under the user UID QString uid; --- 703,715 ---- krConfig->setGroup( "General" ); QString tmpDir = krConfig->readEntry( "Temp Directory", _TempDirectory ); ! ! if( ! QDir( tmpDir ).exists() ) ! { ! for ( int i = 1 ; i != -1 ; i = tmpDir.find( '/', i + 1 ) ) ! QDir().mkdir( tmpDir.left( i ) ); ! QDir().mkdir( tmpDir ); ! chmod( tmpDir.local8Bit(), 0777 ); ! } ! // add a secure sub dir under the user UID QString uid; *************** *** 729,736 **** krConfig->setGroup( "General" ); QString tmpDir = krConfig->readEntry( "Temp Directory", _TempDirectory ); ! for ( int i = 1 ; i != -1 ; i = tmpDir.find( '/', i + 1 ) ) ! QDir().mkdir( tmpDir.left( i ) ); ! QDir().mkdir( tmpDir ); ! chmod( tmpDir.local8Bit(), 0777 ); // add a secure sub dir under the user UID QString uid; --- 734,746 ---- krConfig->setGroup( "General" ); QString tmpDir = krConfig->readEntry( "Temp Directory", _TempDirectory ); ! ! if( ! QDir( tmpDir ).exists() ) ! { ! for ( int i = 1 ; i != -1 ; i = tmpDir.find( '/', i + 1 ) ) ! QDir().mkdir( tmpDir.left( i ) ); ! QDir().mkdir( tmpDir ); ! chmod( tmpDir.local8Bit(), 0777 ); ! } ! // add a secure sub dir under the user UID QString uid; |
From: Karai C. <ck...@us...> - 2004-05-14 20:13:54
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24672/krusader_kde3 Modified Files: ChangeLog Log Message: FIXED: [ 948315 ] security hole, k. changes its temp directory's rights to 0777 Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.227 retrieving revision 1.228 diff -C2 -d -r1.227 -r1.228 *** ChangeLog 14 May 2004 06:26:05 -0000 1.227 --- ChangeLog 14 May 2004 20:13:45 -0000 1.228 *************** *** 1,4 **** --- 1,5 ---- ====================== ADDED: Chinese Simplified translation + FIXED: [ 948315 ] security hole, krusader changes its temp directory's rights to 0777 FIXED: the UI settings are not saved at exit FIXED: [ 951274 ] shift+home and shift+end does not work |
From: Karai C. <ck...@us...> - 2004-05-14 06:26:31
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13832/krusader_kde3 Modified Files: ChangeLog Log Message: FIXED: UI settings are not saved at exit Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.226 retrieving revision 1.227 diff -C2 -d -r1.226 -r1.227 *** ChangeLog 12 May 2004 16:13:29 -0000 1.226 --- ChangeLog 14 May 2004 06:26:05 -0000 1.227 *************** *** 1,4 **** --- 1,5 ---- ====================== ADDED: Chinese Simplified translation + FIXED: the UI settings are not saved at exit FIXED: [ 951274 ] shift+home and shift+end does not work FIXED: [ 948726 ] problem with ctrl+left from the left panel and ctrl+right from the right panel |
From: Karai C. <ck...@us...> - 2004-05-14 06:26:31
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13832/krusader_kde3/krusader Modified Files: krusader.cpp Log Message: FIXED: UI settings are not saved at exit Index: krusader.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusader.cpp,v retrieving revision 1.67 retrieving revision 1.68 diff -C2 -d -r1.67 -r1.68 *** krusader.cpp 13 May 2004 12:36:47 -0000 1.67 --- krusader.cpp 14 May 2004 06:26:05 -0000 1.68 *************** *** 540,543 **** --- 540,544 ---- // save the gui if ( uisavesettings ) { + config->setGroup( "Startup" ); config->writeEntry( "Show status bar", actShowStatusBar->isChecked() ); config->writeEntry( "Show tool bar", actShowToolBar->isChecked() ); |
From: Karai C. <ck...@us...> - 2004-05-14 06:26:31
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Konfigurator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13832/krusader_kde3/krusader/Konfigurator Modified Files: kgstartup.cpp Log Message: FIXED: UI settings are not saved at exit Index: kgstartup.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Konfigurator/kgstartup.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** kgstartup.cpp 9 Mar 2004 22:59:53 -0000 1.7 --- kgstartup.cpp 14 May 2004 06:26:06 -0000 1.8 *************** *** 100,103 **** --- 100,104 ---- uiCbGroup = createCheckBoxGroup( 1, 0, uiCheckBoxes, 7, uiGrp ); + connect( uiCbGroup->find( "UI Save Settings" ), SIGNAL( stateChanged( int ) ), this, SLOT( slotDisable() ) ); uiGrid->addWidget( uiCbGroup, 1, 0 ); *************** *** 111,114 **** --- 112,116 ---- { bool isDontSave = saveRadio->find( i18n( "Start with the following settings:" ) )->isChecked(); + bool isUiSave = !uiCbGroup->find( "UI Save Settings" )->isChecked(); bool isLeftHp = leftOrigin->currentText() ==i18n("homepage"); bool isRightHp = rightOrigin->currentText()==i18n("homepage"); *************** *** 126,132 **** rightHomePage->button()->setEnabled( isDontSave && isRightHp ); ! int i=0; while( uiCbGroup->find( i ) ) ! uiCbGroup->find( i++ )->setEnabled( isDontSave ); } --- 128,134 ---- rightHomePage->button()->setEnabled( isDontSave && isRightHp ); ! int i=1; while( uiCbGroup->find( i ) ) ! uiCbGroup->find( i++ )->setEnabled( isUiSave ); } |
From: Dirk E. <des...@us...> - 2004-05-13 12:40:18
|
Update of /cvsroot/krusader/krusader_kde3/pics In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27958/pics Modified Files: kr_syncdirs16x16.png kr_syncdirs22x22.png kr_syncdirs32x32.png Log Message: UPDATED: New synchronize directories icons (16x16 sharpened) Index: kr_syncdirs16x16.png =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/pics/kr_syncdirs16x16.png,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsG5IHSt and /tmp/cvspgscoI differ Index: kr_syncdirs22x22.png =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/pics/kr_syncdirs22x22.png,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvssRPsOG and /tmp/cvsge5SqV differ Index: kr_syncdirs32x32.png =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/pics/kr_syncdirs32x32.png,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsYQn9A4 and /tmp/cvsVuHhtj differ |
From: Dirk E. <des...@us...> - 2004-05-13 12:36:59
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27225/krusader Modified Files: krusader.cpp Log Message: UPDATED: red krusader icon for root-mode; more sensible compare and sync icons Index: krusader.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusader.cpp,v retrieving revision 1.66 retrieving revision 1.67 diff -C2 -d -r1.66 -r1.67 *** krusader.cpp 8 May 2004 22:05:18 -0000 1.66 --- krusader.cpp 13 May 2004 12:36:47 -0000 1.67 *************** *** 373,377 **** // the toggle actions ! actCompareDirs = new KToggleAction( i18n( "Com&pare Mode" ), "kr_comparedirs", CTRL + Key_Equal, SLOTS, SLOT( compareDirectories() ), actionCollection(), "compare mode" ); actCompareDirs->setChecked( false ); --- 373,377 ---- // the toggle actions ! actCompareDirs = new KToggleAction( i18n( "Com&pare Mode" ), "view_left_right", CTRL + Key_Equal, SLOTS, SLOT( compareDirectories() ), actionCollection(), "compare mode" ); actCompareDirs->setChecked( false ); *************** *** 398,402 **** actDirUp = new KAction( i18n( "Up" ), "up", 0 /*Key_Backspace*/, SLOTS, SLOT( dirUp() ), actionCollection(), "dirUp" ); new KAction( i18n( "&Edit new file" ), "filenew", SHIFT + Key_F4, SLOTS, SLOT( editDlg() ), actionCollection(), "edit_new_file" ); ! new KAction( i18n( "Start &Root Mode Krusader" ), "krusader", ALT + Key_K, SLOTS, SLOT( rootKrusader() ), actionCollection(), "root krusader" ); actSelectColorMask = new KAction( i18n( "Co&nfigure compare-mode" ), 0, --- 398,402 ---- actDirUp = new KAction( i18n( "Up" ), "up", 0 /*Key_Backspace*/, SLOTS, SLOT( dirUp() ), actionCollection(), "dirUp" ); new KAction( i18n( "&Edit new file" ), "filenew", SHIFT + Key_F4, SLOTS, SLOT( editDlg() ), actionCollection(), "edit_new_file" ); ! new KAction( i18n( "Start &Root Mode Krusader" ), "krusader_red", ALT + Key_K, SLOTS, SLOT( rootKrusader() ), actionCollection(), "root krusader" ); actSelectColorMask = new KAction( i18n( "Co&nfigure compare-mode" ), 0, *************** *** 464,468 **** actCustomFilter = new KAction( i18n( "&Custom" ), SHIFT + Key_F12, SLOTS, SLOT( customFilter() ), actionCollection(), "custom files" ); ! actCompare = new KAction( i18n( "Compare b&y content" ), "view_left_right", 0, SLOTS, SLOT( compareContent() ), actionCollection(), "compare" ); actMultiRename = new KAction( i18n( "Multi &Rename" ), "krename", SHIFT + Key_F9, --- 464,468 ---- actCustomFilter = new KAction( i18n( "&Custom" ), SHIFT + Key_F12, SLOTS, SLOT( customFilter() ), actionCollection(), "custom files" ); ! actCompare = new KAction( i18n( "Compare b&y content" ), "kmultiple", 0, SLOTS, SLOT( compareContent() ), actionCollection(), "compare" ); actMultiRename = new KAction( i18n( "Multi &Rename" ), "krename", SHIFT + Key_F9, |
From: Karai C. <ck...@us...> - 2004-05-12 16:13:39
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5061/krusader_kde3 Modified Files: ChangeLog Log Message: FIXED: [ 951274 ] problem with shift+end, shift+home Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.225 retrieving revision 1.226 diff -C2 -d -r1.225 -r1.226 *** ChangeLog 12 May 2004 06:22:08 -0000 1.225 --- ChangeLog 12 May 2004 16:13:29 -0000 1.226 *************** *** 1,4 **** --- 1,5 ---- ====================== ADDED: Chinese Simplified translation + FIXED: [ 951274 ] shift+home and shift+end does not work FIXED: [ 948726 ] problem with ctrl+left from the left panel and ctrl+right from the right panel FIXED: extension is separated from the dirname after renaming directories containing '.' |
From: Karai C. <ck...@us...> - 2004-05-12 16:13:38
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5061/krusader_kde3/krusader/Panel Modified Files: krdetailedview.cpp Log Message: FIXED: [ 951274 ] problem with shift+end, shift+home Index: krdetailedview.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.cpp,v retrieving revision 1.77 retrieving revision 1.78 diff -C2 -d -r1.77 -r1.78 *** krdetailedview.cpp 10 May 2004 19:08:42 -0000 1.77 --- krdetailedview.cpp 12 May 2004 16:13:29 -0000 1.78 *************** *** 675,691 **** case Key_Home: { ! QListViewItem * i = firstChild(); ! if (i) {QListView::setCurrentItem(i); QListView::ensureItemVisible(i); /*QListView::setSelectionAnchor(i);*/} break; } case Key_End: { ! QListViewItem *i = firstChild(), *j; ! while ( (j = i->nextSibling()) ) ! i = j; ! while ( (j = i->itemBelow()) ) ! i = j; ! if (i) {QListView::setCurrentItem(i); QListView::ensureItemVisible(i); /*QListView::setSelectionAnchor(i);*/} ! break; } #endif --- 675,713 ---- case Key_Home: { ! if( e->state() & ShiftButton ) /* Shift+Home */ ! { ! clearSelection(); ! KListView::keyPressEvent( e ); ! emit selectionChanged(); ! triggerUpdate(); ! break; ! } ! else ! { ! QListViewItem * i = firstChild(); ! if (i) {QListView::setCurrentItem(i); QListView::ensureItemVisible(i); /*QListView::setSelectionAnchor(i);*/} ! } break; } case Key_End: { ! if( e->state() & ShiftButton ) /* Shift+End */ ! { ! clearSelection(); ! KListView::keyPressEvent( e ); ! emit selectionChanged(); ! triggerUpdate(); ! break; ! } ! else ! { ! QListViewItem *i = firstChild(), *j; ! while ( (j = i->nextSibling()) ) ! i = j; ! while ( (j = i->itemBelow()) ) ! i = j; ! if (i) {QListView::setCurrentItem(i); QListView::ensureItemVisible(i); /*QListView::setSelectionAnchor(i);*/} ! break; ! } } #endif |
From: Karai C. <ck...@us...> - 2004-05-12 06:22:19
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9298/krusader_kde3/krusader/Panel Modified Files: listpanel.cpp Log Message: FIXED: [ 948726 ] problem with ctrl+left left and ctrl+right from right Index: listpanel.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/listpanel.cpp,v retrieving revision 1.61 retrieving revision 1.62 diff -C2 -d -r1.61 -r1.62 *** listpanel.cpp 19 Apr 2004 18:04:28 -0000 1.61 --- listpanel.cpp 12 May 2004 06:22:09 -0000 1.62 *************** *** 824,834 **** // user pressed CTRL+Right/Left - refresh other panel to the selected path if it's a // directory otherwise as this one ! KURL newPath; ! if ( view->getCurrentKrViewItem()->isDir() ) { ! newPath = func->files()->vfs_getFile( view->getCurrentKrViewItem()->name() ); ! } else { ! newPath = func->files()->vfs_getOrigin(); } ! otherPanel->func->openUrl( newPath ); slotFocusOnMe(); // return focus to us! --- 824,839 ---- // user pressed CTRL+Right/Left - refresh other panel to the selected path if it's a // directory otherwise as this one ! if( ( _left && e->key() == Key_Right ) || (!_left && e->key() == Key_Left ) ) ! { ! KURL newPath; ! if ( view->getCurrentKrViewItem()->isDir() ) { ! newPath = func->files()->vfs_getFile( view->getCurrentKrViewItem()->name() ); ! } else { ! newPath = func->files()->vfs_getOrigin(); ! } ! otherPanel->func->openUrl( newPath ); } ! else ! func->openUrl( otherPanel->func->files()->vfs_getOrigin() ); slotFocusOnMe(); // return focus to us! |
From: Karai C. <ck...@us...> - 2004-05-12 06:22:19
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9298/krusader_kde3 Modified Files: ChangeLog Log Message: FIXED: [ 948726 ] problem with ctrl+left left and ctrl+right from right Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.224 retrieving revision 1.225 diff -C2 -d -r1.224 -r1.225 *** ChangeLog 10 May 2004 19:08:41 -0000 1.224 --- ChangeLog 12 May 2004 06:22:08 -0000 1.225 *************** *** 1,4 **** --- 1,5 ---- ====================== ADDED: Chinese Simplified translation + FIXED: [ 948726 ] problem with ctrl+left from the left panel and ctrl+right from the right panel FIXED: extension is separated from the dirname after renaming directories containing '.' FIXED: locate does not call kdesu any more |
From: Karai C. <ck...@us...> - 2004-05-10 19:08:52
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7813/krusader_kde3/krusader/Panel Modified Files: krdetailedview.cpp Log Message: FIXED: locate + synchronizer + rename bugfixes Index: krdetailedview.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.cpp,v retrieving revision 1.76 retrieving revision 1.77 diff -C2 -d -r1.76 -r1.77 *** krdetailedview.cpp 10 May 2004 06:57:34 -0000 1.76 --- krdetailedview.cpp 10 May 2004 19:08:42 -0000 1.77 *************** *** 891,898 **** int i; QString ext, name = dynamic_cast<KrDetailedViewItem*>( it ) ->name(); ! if ( ( i = name.findRev( '.' ) ) > 0 ) { ! ext = name.mid( i + 1 ); ! name = name.mid( 0, i ); ! } it->setText( column( Name ), name ); it->setText( column( Extention ), ext ); --- 891,899 ---- int i; QString ext, name = dynamic_cast<KrDetailedViewItem*>( it ) ->name(); ! if( !dynamic_cast<KrDetailedViewItem*>( it ) ->isDir() ) ! if ( ( i = name.findRev( '.' ) ) > 0 ) { ! ext = name.mid( i + 1 ); ! name = name.mid( 0, i ); ! } it->setText( column( Name ), name ); it->setText( column( Extention ), ext ); |
From: Karai C. <ck...@us...> - 2004-05-10 19:08:51
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Locate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7813/krusader_kde3/krusader/Locate Modified Files: locate.cpp Log Message: FIXED: locate + synchronizer + rename bugfixes Index: locate.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Locate/locate.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** locate.cpp 21 Mar 2004 06:53:25 -0000 1.4 --- locate.cpp 10 May 2004 19:08:42 -0000 1.5 *************** *** 158,163 **** updateProcess = new KProcess(); ! *updateProcess << KrServices::fullPathName( "kdesu" ); ! *updateProcess << KrServices::fullPathName( "updatedb" ) + " " + krConfig->readEntry( "UpdateDB Arguments", "" ); connect( updateProcess, SIGNAL(processExited(KProcess *)), this, SLOT(updateFinished())); --- 158,163 ---- updateProcess = new KProcess(); ! *updateProcess << KrServices::fullPathName( "updatedb" ); ! *updateProcess << KrServices::separateArgs( krConfig->readEntry( "UpdateDB Arguments", "" ) ); connect( updateProcess, SIGNAL(processExited(KProcess *)), this, SLOT(updateFinished())); |
From: Karai C. <ck...@us...> - 2004-05-10 19:08:51
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7813/krusader_kde3 Modified Files: ChangeLog Log Message: FIXED: locate + synchronizer + rename bugfixes Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.223 retrieving revision 1.224 diff -C2 -d -r1.223 -r1.224 *** ChangeLog 4 May 2004 14:53:34 -0000 1.223 --- ChangeLog 10 May 2004 19:08:41 -0000 1.224 *************** *** 1,4 **** --- 1,7 ---- ====================== ADDED: Chinese Simplified translation + FIXED: extension is separated from the dirname after renaming directories containing '.' + FIXED: locate does not call kdesu any more + FIXED: [ 950052 ] synchronizer: the left and right side depends of the active panel FIXED: [ 770676 ] krarc does not handle password zips FIXED: [ 928746 ] symlinks pointing to directories using fish protocol fail |
From: Karai C. <ck...@us...> - 2004-05-10 19:08:51
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7813/krusader_kde3/krusader Modified Files: krslots.cpp Log Message: FIXED: locate + synchronizer + rename bugfixes Index: krslots.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krslots.cpp,v retrieving revision 1.52 retrieving revision 1.53 diff -C2 -d -r1.52 -r1.53 *** krslots.cpp 18 Apr 2004 19:25:54 -0000 1.52 --- krslots.cpp 10 May 2004 19:08:42 -0000 1.53 *************** *** 734,739 **** void KRslots::slotSynchronizeDirs() { SynchronizerGUI *sync = new SynchronizerGUI( MAIN_VIEW, ! ACTIVE_PANEL->func->files()->vfs_getOrigin().prettyURL(0,KURL::StripFileProtocol), ! ACTIVE_PANEL->otherPanel->func->files()->vfs_getOrigin().prettyURL(0,KURL::StripFileProtocol) ); bool refresh = sync->wasSynchronization(); --- 734,739 ---- void KRslots::slotSynchronizeDirs() { SynchronizerGUI *sync = new SynchronizerGUI( MAIN_VIEW, ! MAIN_VIEW->left->func->files()->vfs_getOrigin().prettyURL(0,KURL::StripFileProtocol), ! MAIN_VIEW->right->func->files()->vfs_getOrigin().prettyURL(0,KURL::StripFileProtocol) ); bool refresh = sync->wasSynchronization(); |
From: Dirk E. <des...@us...> - 2004-05-10 15:24:04
|
Update of /cvsroot/krusader/krusader_kde3/po In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16085/po Modified Files: jp.po Log Message: Added symlink jp.po->ja.po (temporary fix until jp.po is proved obsolete) Index: jp.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/jp.po,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** jp.po 29 May 2003 20:22:26 -0000 1.2 --- jp.po 10 May 2004 15:23:55 -0000 1.3 *************** *** 1,11 **** - # translation of krusader-0529-ja.po to # translation of krusader-ja.po to Japanese ! # UTUMI Hirosi <ut...@mx...>, 2003 msgid "" msgstr "" "Project-Id-Version: krusader-ja\n" ! "POT-Creation-Date: 2003-05-28 01:53+0300\n" ! "PO-Revision-Date: 2003-05-29 14:28+0900\n" ! "Last-Translator: UTUMI Hirosi <ut...@mx...>\n" "Language-Team: Japanese <ja...@li...>\n" [...3305 lines suppressed...] + + #~ msgid "Move into archive" + #~ msgstr "æ¸åº«å ã«ç§»å" + #~ msgid "" #~ " is not empty !\n" *************** *** 2499,2509 **** #~ msgid "" - #~ "A directory or a file with this name\n" - #~ "already exists." - #~ msgstr "" - #~ "ãã®ååã®ãã£ã¬ã¯ããª/ãã¡ã¤ã«ã¯\n" - #~ "æ¢ã«åå¨ãã¦ãã¾ã" - - #~ msgid "" #~ "A directory with this name\n" #~ "already exists." --- 2701,2704 ---- |