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: <ya...@us...> - 2003-08-27 21:22:14
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1:/tmp/cvs-serv7916/krusader Modified Files: krusader.cpp Log Message: Added the KrPopupMenu class - it's almost empty right now, but i hope this will change in the near future... Index: krusader.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusader.cpp,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** krusader.cpp 25 Aug 2003 17:54:37 -0000 1.25 --- krusader.cpp 27 Aug 2003 21:22:05 -0000 1.26 *************** *** 39,43 **** #include <dcopclient.h> #include <kglobal.h> ! #include <klocale.h> // QT includes #include <qpixmap.h> --- 39,44 ---- #include <dcopclient.h> #include <kglobal.h> ! #include <klocale.h> ! #include <kaccelmanager.h> // QT includes #include <qpixmap.h> *************** *** 178,181 **** --- 179,185 ---- config->setGroup( "Look&Feel" ); show(); + + // manage our keyboard short-cuts + //KAcceleratorManager::manage(this,true); setCursor( KCursor::arrowCursor() ); |
From: <ma...@us...> - 2003-08-27 21:07:07
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv4412/krusader/Panel Modified Files: listpanel.cpp Log Message: Index: listpanel.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/listpanel.cpp,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** listpanel.cpp 25 Aug 2003 17:58:28 -0000 1.28 --- listpanel.cpp 27 Aug 2003 21:07:04 -0000 1.29 *************** *** 675,680 **** default: // if we got this, it means that the view is not doing ! // the quick search thing, so send the characters to the commandline ! krApp->mainView->cmdLine->addText( e->text() ); //e->ignore(); } --- 675,682 ---- default: // if we got this, it means that the view is not doing ! // the quick search thing, so send the characters to the commandline, if normal key ! if (e->state() == NoButton) ! krApp->mainView->cmdLine->addText( e->text() ); ! //e->ignore(); } |
From: <ma...@us...> - 2003-08-27 20:47:32
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv560/krusader/Panel Modified Files: krdetailedviewitem.cpp Log Message: missing #include Index: krdetailedviewitem.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedviewitem.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** krdetailedviewitem.cpp 26 Aug 2003 22:05:02 -0000 1.10 --- krdetailedviewitem.cpp 27 Aug 2003 20:47:28 -0000 1.11 *************** *** 36,39 **** --- 36,40 ---- #include "../VFS/krpermhandler.h" #include <sys/types.h> + #include <time.h> #include <qpainter.h> #include <pwd.h> |
From: <ma...@us...> - 2003-08-26 22:18:42
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv15316/krusader/Panel Modified Files: krdetailedview.cpp Log Message: fixed: anyone can rename .. Index: krdetailedview.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.cpp,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** krdetailedview.cpp 25 Aug 2003 20:20:43 -0000 1.29 --- krdetailedview.cpp 26 Aug 2003 22:18:35 -0000 1.30 *************** *** 596,599 **** --- 596,601 ---- if ( it ) fileName = it->name(); else return ; // quit if no current item available + // don't allow anyone to rename .. + if (fileName == "..") return; // determine which column is inplace renameable |
From: <ma...@us...> - 2003-08-26 22:07:08
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv13436/krusader/Panel Modified Files: krviewitem.h Log Message: fixed: datetime bug Index: krviewitem.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krviewitem.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** krviewitem.h 15 Jul 2003 12:09:26 -0000 1.4 --- krviewitem.h 26 Aug 2003 22:07:03 -0000 1.5 *************** *** 31,34 **** --- 31,36 ---- #define KRVIEWITEM_H + #include <sys/types.h> + class QString; class QPixmap; *************** *** 43,46 **** --- 45,49 ---- virtual unsigned long size() const = 0; virtual QString dateTime() const = 0; + virtual time_t getTime_t() const = 0; virtual QString mime() const = 0; virtual QString symlinkDest() const = 0; |
From: <ma...@us...> - 2003-08-26 22:05:40
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv13225/krusader/Panel Modified Files: krdetailedviewitem.h Log Message: fixed: datetime bug Index: krdetailedviewitem.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedviewitem.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** krdetailedviewitem.h 22 Aug 2003 16:36:04 -0000 1.6 --- krdetailedviewitem.h 26 Aug 2003 22:05:36 -0000 1.7 *************** *** 33,36 **** --- 33,37 ---- #include "krviewitem.h" + #include <sys/types.h> #include "../VFS/vfile.h" #include <klistview.h> *************** *** 51,55 **** inline bool isExecutable() const { return (_vf ? _vf->vfile_isExecutable() : false); } inline unsigned long size() const { return (_vf ? _vf->vfile_getSize() : 0); } ! inline QString dateTime() const { return (_vf ? _vf->vfile_getDateTime() : QString::null); } inline QString mime() const { return (_vf ? _vf->vfile_getMime() : QString::null); } inline QString symlinkDest() const { --- 52,57 ---- inline bool isExecutable() const { return (_vf ? _vf->vfile_isExecutable() : false); } inline unsigned long size() const { return (_vf ? _vf->vfile_getSize() : 0); } ! QString dateTime() const; ! inline time_t getTime_t() const { return _vf->vfile_getTime_t(); } inline QString mime() const { return (_vf ? _vf->vfile_getMime() : QString::null); } inline QString symlinkDest() const { |
From: <ma...@us...> - 2003-08-26 22:05:16
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv13101/krusader/Panel Modified Files: krdetailedviewitem.cpp Log Message: fixed: datetime bug Index: krdetailedviewitem.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedviewitem.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** krdetailedviewitem.cpp 22 Aug 2003 16:36:04 -0000 1.9 --- krdetailedviewitem.cpp 26 Aug 2003 22:05:02 -0000 1.10 *************** *** 215,219 **** result = QString::compare(num2qstring(size()),num2qstring(other->size())); } else if (col == _view->column(KrDetailedView::DateTime)) { ! QString dt = dateTime(); QString dti = other->dateTime(); QString d = ((dt[6] < '7')? "20" : "19") + --- 215,219 ---- result = QString::compare(num2qstring(size()),num2qstring(other->size())); } else if (col == _view->column(KrDetailedView::DateTime)) { ! /*QString dt = dateTime(); QString dti = other->dateTime(); QString d = ((dt[6] < '7')? "20" : "19") + *************** *** 229,233 **** dti[9] + dti[10]+ // hour dti[12]+ dti[13]; // minute ! result = QString::compare(d,id); } else { // Joker for extention and permissions (so far) --- 229,234 ---- dti[9] + dti[10]+ // hour dti[12]+ dti[13]; // minute ! result = QString::compare(d,id);*/ ! result = (getTime_t() > other->getTime_t() ? 1 : -1); } else { // Joker for extention and permissions (so far) *************** *** 272,274 **** --- 273,284 ---- return text; } + } + + QString KrDetailedViewItem::dateTime() const { + // convert the time_t to struct tm + time_t time = getTime_t(); + struct tm* t=localtime((time_t *)&time); + + QDateTime tmp(QDate(t->tm_year+1900, t->tm_mon+1, t->tm_mday), QTime(t->tm_hour, t->tm_min)); + return KGlobal::locale()->formatDateTime(tmp); } |
From: <ya...@us...> - 2003-08-26 18:00:37
|
Update of /cvsroot/krusader/krusader_kde3/krusader/VFS In directory sc8-pr-cvs1:/tmp/cvs-serv2431/krusader/VFS Modified Files: arc_vfs.cpp ftp_vfs.cpp normal_vfs.cpp vfile.cpp vfile.h Log Message: Added time_t attribute to vfile and the needed VFS support Index: arc_vfs.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/arc_vfs.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** arc_vfs.cpp 18 Jul 2003 20:48:17 -0000 1.8 --- arc_vfs.cpp 26 Aug 2003 17:59:49 -0000 1.9 *************** *** 32,35 **** --- 32,36 ---- #include <sys/types.h> #include <dirent.h> + #include <time.h> // QT includes #include <qregexp.h> *************** *** 660,664 **** QString tempName = arcFile; QFileInfo qfi(tempName.replace(QRegExp("\\"),"")); ! vfile* vf=new vfile(Pname,0,"drwxr-xr-x",dateTime2QString(qfi.lastModified()),false, qfi.owner(),qfi.group(),"inode/directory","",0 ); // add dirs if needed --- 661,666 ---- QString tempName = arcFile; QFileInfo qfi(tempName.replace(QRegExp("\\"),"")); ! vfile* vf=new vfile(Pname,0,"drwxr-xr-x",dateTime2QString(qfi.lastModified()), ! qfi.lastModified().toTime_t(),false, qfi.owner(),qfi.group(),"inode/directory","",0 ); // add dirs if needed *************** *** 739,742 **** --- 741,746 ---- long size = 0; QString perm; + QFileInfo qfi(arcFile); + time_t mtime = qfi.lastModified().toTime_t(); QString dateTime; bool link = false; *************** *** 749,753 **** // parse gziped files if(vfs_type == "gzip"){ - QFileInfo qfi(arcFile); struct stat stat_p; stat(arcFile.local8Bit(),&stat_p); --- 753,756 ---- *************** *** 767,771 **** // parse bzip2ed files if( vfs_type == "zip2" ){ - QFileInfo qfi(arcFile); struct stat stat_p; stat(arcFile.local8Bit(),&stat_p); --- 770,773 ---- *************** *** 869,873 **** QString mime = KMimeType::findByURL( "/"+name,0,true,true)->name(); ! vfile* vf=new vfile(name,size,perm,dateTime,link,owner,group,mime,dest,mode); vfile* vf2 = vfs_search(name); if(vf2 != 0) vfs_removeFromList(vf2); --- 871,875 ---- QString mime = KMimeType::findByURL( "/"+name,0,true,true)->name(); ! vfile* vf=new vfile(name,size,perm,dateTime,mtime,link,owner,group,mime,dest,mode); vfile* vf2 = vfs_search(name); if(vf2 != 0) vfs_removeFromList(vf2); Index: ftp_vfs.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/ftp_vfs.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ftp_vfs.cpp 11 Aug 2003 22:04:51 -0000 1.15 --- ftp_vfs.cpp 26 Aug 2003 17:59:49 -0000 1.16 *************** *** 29,33 **** ***************************************************************************/ ! // QT includes #include <qdir.h> --- 29,34 ---- ***************************************************************************/ ! // Sys includes ! #include <time.h> // QT includes #include <qdir.h> *************** *** 120,124 **** unsigned long size = kfi.size(); ! QString dateTime = KRpermHandler::time2QString(kfi.time(256 | 4 | 2)); bool symLink = kfi.isLink(); mode_t mode = kfi.mode() | kfi.permissions(); --- 121,126 ---- unsigned long size = kfi.size(); ! time_t mtime = kfi.time(KIO::UDS_MODIFICATION_TIME); ! QString dateTime = KRpermHandler::time2QString(mtime); bool symLink = kfi.isLink(); mode_t mode = kfi.mode() | kfi.permissions(); *************** *** 127,136 **** QString mime = kfi.mimetype(); QString symDest = ""; ! if(symLink)symDest= kfi.linkDest(); // create a new virtual file object if( kfi.user().isEmpty() ) ! temp=new /*ftp_*/vfile(name,size,perm,dateTime,symLink,getuid(),getgid(),mime,symDest,mode); else ! temp=new /*ftp_*/vfile(name,size,perm,dateTime,symLink,kfi.user(),kfi.group(),mime,symDest,mode); // set the ftp file permissions //temp->setWrite(KRpermHandler::ftpWriteable (kfi.user(),loginName,perm)); --- 129,140 ---- QString mime = kfi.mimetype(); QString symDest = ""; ! if(symLink)symDest = kfi.linkDest(); // create a new virtual file object if( kfi.user().isEmpty() ) ! temp=new /*ftp_*/vfile(name,size,perm,dateTime,mtime, ! symLink,getuid(),getgid(),mime,symDest,mode); else ! temp=new /*ftp_*/vfile(name,size,perm,dateTime,mtime, ! symLink,kfi.user(),kfi.group(),mime,symDest,mode); // set the ftp file permissions //temp->setWrite(KRpermHandler::ftpWriteable (kfi.user(),loginName,perm)); Index: normal_vfs.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/normal_vfs.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** normal_vfs.cpp 17 Jul 2003 21:13:44 -0000 1.11 --- normal_vfs.cpp 26 Aug 2003 17:59:49 -0000 1.12 *************** *** 134,138 **** // create a new virtual file object ! vfile* temp=new vfile(name,size,perm,dateTime,symLink,stat_p.st_uid, stat_p.st_gid,mime,symDest,stat_p.st_mode); vfs_addToList(temp); --- 134,138 ---- // create a new virtual file object ! vfile* temp=new vfile(name,size,perm,dateTime,stat_p.st_mtime,symLink,stat_p.st_uid, stat_p.st_gid,mime,symDest,stat_p.st_mode); vfs_addToList(temp); Index: vfile.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/vfile.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** vfile.cpp 18 Jul 2003 20:50:17 -0000 1.4 --- vfile.cpp 26 Aug 2003 17:59:49 -0000 1.5 *************** *** 46,49 **** --- 46,50 ---- QString perm, QString dateTime, + time_t mtime, bool symLink, uid_t owner, *************** *** 58,61 **** --- 59,63 ---- vfile_perm=perm; vfile_dateTime=dateTime; + vfile_time_t=mtime; vfile_symLink=symLink; vfile_mimeType=mime; *************** *** 70,73 **** --- 72,76 ---- QString perm, QString dateTime, + time_t mtime, bool symLink, QString owner, *************** *** 84,87 **** --- 87,91 ---- vfile_perm=perm; vfile_dateTime=dateTime; + vfile_time_t=mtime; vfile_symLink=symLink; vfile_mimeType=mime; Index: vfile.h =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/vfile.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** vfile.h 18 Jul 2003 20:50:17 -0000 1.4 --- vfile.h 26 Aug 2003 17:59:49 -0000 1.5 *************** *** 54,57 **** --- 54,58 ---- QString vfile_perm; // permissions QString vfile_dateTime; // modification date&time + time_t vfile_time_t; // modification in time_t format bool vfile_symLink; // true==yes QString vfile_mimeType; // file mimetype *************** *** 66,69 **** --- 67,71 ---- QString perm, QString dateTime, + time_t mtime, bool symLink, uid_t owner, *************** *** 77,80 **** --- 79,83 ---- QString perm, QString dateTime, + time_t mtime, bool symLink, QString owner, *************** *** 96,104 **** inline uid_t vfile_getUid() { return vfile_ownerId; } inline gid_t vfile_getGid() { return vfile_groupId; } QString vfile_getOwner(); QString vfile_getGroup(); ! virtual char vfile_isReadable(); ! virtual char vfile_isWriteable(); ! virtual char vfile_isExecutable(); KIO::UDSEntry vfile_getEntry(); // return the UDSEntry from the vfile // used ONLY when calculating a directory's space, needs to change the --- 99,108 ---- inline uid_t vfile_getUid() { return vfile_ownerId; } inline gid_t vfile_getGid() { return vfile_groupId; } + inline time_t vfile_getTime_t() { return vfile_time_t; } QString vfile_getOwner(); QString vfile_getGroup(); ! char vfile_isReadable(); ! char vfile_isWriteable(); ! char vfile_isExecutable(); KIO::UDSEntry vfile_getEntry(); // return the UDSEntry from the vfile // used ONLY when calculating a directory's space, needs to change the *************** *** 109,112 **** --- 113,117 ---- }; + #if 0 class ftp_vfile : public vfile { protected: *************** *** 137,145 **** virtual char vfile_isWriteable() { return canWrite;} virtual char vfile_isExecutable(){ return canExec; } - - - - }; #endif --- 142,148 ---- virtual char vfile_isWriteable() { return canWrite;} virtual char vfile_isExecutable(){ return canExec; } }; + #endif + #endif |
From: <des...@us...> - 2003-08-26 12:29:48
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv8281 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.70 retrieving revision 1.71 diff -C2 -d -r1.70 -r1.71 *** ChangeLog 25 Aug 2003 20:20:18 -0000 1.70 --- ChangeLog 26 Aug 2003 12:29:31 -0000 1.71 *************** *** 15,18 **** --- 15,19 ---- FIXED: crash when viewing files with # in their name. UPDATED: many usability issues (thanks to Mikolaj) + UPDATED: Dutch translation UPDATED: Spanish translation |
From: <des...@us...> - 2003-08-26 12:26:52
|
Update of /cvsroot/krusader/krusader_kde3/po In directory sc8-pr-cvs1:/tmp/cvs-serv7795/po Modified Files: nl.po Log Message: Index: nl.po =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/po/nl.po,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** nl.po 12 Aug 2003 22:03:49 -0000 1.3 --- nl.po 26 Aug 2003 12:26:24 -0000 1.4 *************** *** 2,12 **** # Dutch (Nederlands) translation for Krusader # Copyright (C) 2001,2003 Free Software Foundation, Inc. ! # Frank Schoolmeesters <fra...@ya...>, 21/06/2003 # msgid "" msgstr "" "Project-Id-Version: nl\n" ! "POT-Creation-Date: 2003-07-04 14:46+0300\n" ! "PO-Revision-Date: 2003-08-11 20:10+0200\n" "Last-Translator: Frank Schoolmeesters <fra...@ya...>\n" [...2484 lines suppressed...] + #~ "U heeft geen permissie om \n" + #~ "te verplaatsen " + + #~ msgid "Newer files" + #~ msgstr "Nieuwere bestanden" + + #~ msgid "Older files" + #~ msgstr "Oudere bestanden" + + #~ msgid "Identical files" + #~ msgstr "Identieke bestanden" + + #~ msgid "Exclusive files" + #~ msgstr "Exclusieve bestanden" + + #~ msgid "&FTP Connect" + #~ msgstr "&FTP verbinding" + + #~ msgid "FT&P New Connection" + #~ msgstr "FT&P Nieuwe verbinding" |
From: <ma...@us...> - 2003-08-26 03:56:36
|
Update of /cvsroot/krusader/krusader_kde3/krusader/GUI In directory sc8-pr-cvs1:/tmp/cvs-serv30774/krusader/GUI Modified Files: kcmdline.cpp Log Message: fixed: pop-up timeout of the cmdline's history button is changed to zero (almost) Index: kcmdline.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/GUI/kcmdline.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** kcmdline.cpp 1 Aug 2003 10:50:14 -0000 1.6 --- kcmdline.cpp 25 Aug 2003 17:40:34 -0000 1.7 *************** *** 78,82 **** historyMenu->setFont(KGlobalSettings::generalFont()); history->setPopup(historyMenu); ! history->setPopupDelay(100); connect(historyMenu,SIGNAL(activated(int)),this, SLOT(setCmdLineText(int))); --- 78,82 ---- historyMenu->setFont(KGlobalSettings::generalFont()); history->setPopup(historyMenu); ! history->setPopupDelay(1); connect(historyMenu,SIGNAL(activated(int)),this, SLOT(setCmdLineText(int))); |
From: <ma...@us...> - 2003-08-25 20:37:02
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv26486 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.69 retrieving revision 1.70 diff -C2 -d -r1.69 -r1.70 *** ChangeLog 25 Aug 2003 19:44:54 -0000 1.69 --- ChangeLog 25 Aug 2003 20:20:18 -0000 1.70 *************** *** 5,8 **** --- 5,9 ---- ADDED: rar support to krArc KIO slave. ADDED: open with in the right click menu for multiple files with the same mimetype. + FIXED: Ctrl-A didn't work properly FIXED: crash when unmounting a busy mountpoint FIXED: date-time sorting bug |
From: <ma...@us...> - 2003-08-25 20:37:02
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv26536/krusader/Panel Modified Files: krdetailedview.cpp Log Message: fixed: ctrl-a didn't work properly Index: krdetailedview.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.cpp,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** krdetailedview.cpp 24 Aug 2003 19:56:13 -0000 1.28 --- krdetailedview.cpp 25 Aug 2003 20:20:43 -0000 1.29 *************** *** 531,534 **** --- 531,540 ---- SLOTS->deleteFiles(); return ; + case Key_A : // mark all + if (e->state() == ControlButton) { + KListView::keyPressEvent(e); + updateView(); + } else e->ignore(); + break; case Key_Space : { KrDetailedViewItem * viewItem = dynamic_cast<KrDetailedViewItem *> ( getCurrentKrViewItem() ); |
From: <ma...@us...> - 2003-08-25 19:51:29
|
Update of /cvsroot/krusader/krusader_kde3/krusader/VFS In directory sc8-pr-cvs1:/tmp/cvs-serv16273/krusader/VFS Modified Files: krpermhandler.cpp Log Message: fix: date-time sort bug Index: krpermhandler.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/VFS/krpermhandler.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** krpermhandler.cpp 22 Aug 2003 10:04:32 -0000 1.6 --- krpermhandler.cpp 25 Aug 2003 19:27:42 -0000 1.7 *************** *** 32,35 **** --- 32,36 ---- // System includes #include <unistd.h> + #include <math.h> #include <pwd.h> #include <grp.h> *************** *** 248,262 **** } // create a easy to read date-time format QString KRpermHandler::time2QString(long time){ ! QString dateTime; // convert the time_t to struct tm struct tm* t=localtime((time_t *)&time); ! QDateTime tmp(QDate(t->tm_year+1900, t->tm_mon+1, t->tm_mday), QTime(t->tm_hour, t->tm_min)); // construct the string ! dateTime = KGlobal::locale()->formatDateTime(tmp); ! return dateTime; } --- 249,273 ---- } + static QString round(int i) { + QString t; + t.sprintf("%d",i); + if (i<10) t=("0"+t); + return t; + } + // create a easy to read date-time format QString KRpermHandler::time2QString(long time){ ! // convert the time_t to struct tm struct tm* t=localtime((time_t *)&time); ! ! //QDateTime tmp(QDate(t->tm_year+1900, t->tm_mon+1, t->tm_mday), QTime(t->tm_hour, t->tm_min)); // construct the string ! //dateTime = KGlobal::locale()->formatDateTime(tmp); ! QString dateTime = round(t->tm_mday)+"/"+round(t->tm_mon+1)+"/"+round(t->tm_year%100)+ ! +" "+round(t->tm_hour)+":"+round(t->tm_min); ! return dateTime; } |
From: <ma...@us...> - 2003-08-25 19:51:13
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv16409 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.67 retrieving revision 1.68 diff -C2 -d -r1.67 -r1.68 *** ChangeLog 25 Aug 2003 17:54:37 -0000 1.67 --- ChangeLog 25 Aug 2003 19:28:36 -0000 1.68 *************** *** 3,9 **** ADDED: new selection mode (a-la Total Commander) - beta mode! ADDED: a new shortcut for 'show hidden files' - ctrl+. (ctrl plus dot) - FIXED: changed pop-up delay of the history button on the command line to zero ADDED: rar support to krArc KIO slave. ADDED: open with in the right click menu for multiple files with the same mimetype. FIXED: right-click menu via keyboard appeared in the wrong place FIXED: crash when using spacebar on the ".." (thanks to heiner) --- 3,10 ---- ADDED: new selection mode (a-la Total Commander) - beta mode! ADDED: a new shortcut for 'show hidden files' - ctrl+. (ctrl plus dot) ADDED: rar support to krArc KIO slave. ADDED: open with in the right click menu for multiple files with the same mimetype. + FIXED: date-time sorting bug + FIXED: changed pop-up delay of the history button on the command line to zero FIXED: right-click menu via keyboard appeared in the wrong place FIXED: crash when using spacebar on the ".." (thanks to heiner) |
From: <ma...@us...> - 2003-08-25 19:50:50
|
Update of /cvsroot/krusader/krusader_kde3/krusader/MountMan In directory sc8-pr-cvs1:/tmp/cvs-serv19989/krusader/MountMan Modified Files: kmountman.cpp Log Message: fixed: crash when unmounting a busy mountpoint Index: kmountman.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/MountMan/kmountman.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** kmountman.cpp 10 Aug 2003 21:27:17 -0000 1.7 --- kmountman.cpp 25 Aug 2003 19:44:18 -0000 1.8 *************** *** 576,580 **** if (umountProc.exitStatus()==0) return; // incase of a normal exit // on any other case,report an error ! KMessageBox::sorry(mountManGui,i18n("Unable to complete the un-mount.")+ i18n("The error reported was:\n\n")+getOutput()); } --- 576,580 ---- if (umountProc.exitStatus()==0) return; // incase of a normal exit // on any other case,report an error ! KMessageBox::sorry(0,i18n("Unable to complete the un-mount.")+ i18n("The error reported was:\n\n")+getOutput()); } |
From: <ma...@us...> - 2003-08-25 19:50:48
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv20136 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.68 retrieving revision 1.69 diff -C2 -d -r1.68 -r1.69 *** ChangeLog 25 Aug 2003 19:28:36 -0000 1.68 --- ChangeLog 25 Aug 2003 19:44:54 -0000 1.69 *************** *** 5,8 **** --- 5,9 ---- ADDED: rar support to krArc KIO slave. ADDED: open with in the right click menu for multiple files with the same mimetype. + FIXED: crash when unmounting a busy mountpoint FIXED: date-time sorting bug FIXED: changed pop-up delay of the history button on the command line to zero |
From: <ma...@us...> - 2003-08-25 18:06:35
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv752 Modified Files: ChangeLog Log Message: add: WhatsThis information Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.66 retrieving revision 1.67 diff -C2 -d -r1.66 -r1.67 *** ChangeLog 24 Aug 2003 22:51:10 -0000 1.66 --- ChangeLog 25 Aug 2003 17:54:37 -0000 1.67 *************** *** 1,5 **** --- 1,7 ---- ====================== + ADDED: Missing WhatsThis information (thanks to Mikolaj!) ADDED: new selection mode (a-la Total Commander) - beta mode! ADDED: a new shortcut for 'show hidden files' - ctrl+. (ctrl plus dot) + FIXED: changed pop-up delay of the history button on the command line to zero ADDED: rar support to krArc KIO slave. ADDED: open with in the right click menu for multiple files with the same mimetype. |
From: <ma...@us...> - 2003-08-25 18:06:07
|
Update of /cvsroot/krusader/krusader_kde3/krusader/GUI In directory sc8-pr-cvs1:/tmp/cvs-serv752/krusader/GUI Modified Files: kcmdline.cpp kfnkeys.cpp Log Message: add: WhatsThis information Index: kcmdline.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/GUI/kcmdline.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** kcmdline.cpp 25 Aug 2003 17:40:34 -0000 1.7 --- kcmdline.cpp 25 Aug 2003 17:54:38 -0000 1.8 *************** *** 55,58 **** --- 55,59 ---- QGridLayout *layout=new QGridLayout(this,1,4); path=new QLabel(this); + QWhatsThis::add( path, i18n( "Name of directory where command will be processed." ) ); path->setAlignment(Qt::AlignRight); path->setFrameStyle(QFrame::Box | QFrame::Sunken); *************** *** 67,71 **** cmdLine->setMaximumHeight(QFontMetrics(cmdLine->font()).height()+4); cmdLine->setCompletionObject(&completion); ! QWhatsThis::add(cmdLine,i18n("Well, it's quite simple actually: You write you command in here, and Krusader obays.")); layout->addWidget(cmdLine,0,1); // history button --- 68,75 ---- cmdLine->setMaximumHeight(QFontMetrics(cmdLine->font()).height()+4); cmdLine->setCompletionObject(&completion); ! QWhatsThis::add(cmdLine,i18n("<qt>Well, it's quite simple actually: You write " ! "you command in here, and Krusader obeys.<p>" ! "<Tip:>Move in command-line history with <Up> " ! "and <Down> arrows.</qt>" ) ); layout->addWidget(cmdLine,0,1); // history button *************** *** 81,85 **** connect(historyMenu,SIGNAL(activated(int)),this, SLOT(setCmdLineText(int))); ! QWhatsThis::add(history,i18n("The history button pops up a menu with the last 20 commands you wrote to the command line. Choose your path...")); layout->addWidget(history,0,2); // a run in terminal button --- 85,90 ---- connect(historyMenu,SIGNAL(activated(int)),this, SLOT(setCmdLineText(int))); ! QWhatsThis::add(history,i18n("The history button pops up a menu with the last 20 " ! "commands you wrote to the command line. Choose your path...")); layout->addWidget(history,0,2); // a run in terminal button *************** *** 91,95 **** im = krLoader->loadIcon("konsole",KIcon::Panel).convertToImage(); terminal->setPixmap(im.scale(terminal->height(), terminal->height())); ! QWhatsThis::add(terminal,i18n("The 'run in terminal' button allows Krusader to run console (or otherwise non-graphical) programs in a terminal of your choice. If it's pressed, termial mode is active.")); layout->addWidget(terminal,0,3); layout->activate(); --- 96,103 ---- im = krLoader->loadIcon("konsole",KIcon::Panel).convertToImage(); terminal->setPixmap(im.scale(terminal->height(), terminal->height())); ! QWhatsThis::add(terminal,i18n("The 'run in terminal' button allows Krusader " ! "to run console (or otherwise non-graphical) " ! "programs in a terminal of your choice. If it's " ! "pressed, terminal mode is active.")); layout->addWidget(terminal,0,3); layout->activate(); Index: kfnkeys.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/GUI/kfnkeys.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** kfnkeys.cpp 2 Nov 2002 23:31:14 -0000 1.2 --- kfnkeys.cpp 25 Aug 2003 17:54:38 -0000 1.3 *************** *** 32,35 **** --- 32,36 ---- #include <kglobalsettings.h> #include <qfontmetrics.h> + #include <qwhatsthis.h> #include "kfnkeys.h" #include "../krusader.h" *************** *** 44,71 **** --- 45,85 ---- layout=new QGridLayout(this,1,9); // 9 keys F2=new QPushButton( i18n("F2 Term ") ,this); + QWhatsThis::add( F2, i18n( "<qt>Open terminal in current directory.<p>" + "You can define terminal in Konfigurator, " + "default is konsole.</qt>" ) ); connect(F2,SIGNAL(clicked()), SLOTS, SLOT(terminal())); F3=new QPushButton( i18n("F3 View ") ,this); + QWhatsThis::add( F3, i18n( "Open file in viewer." ) ); connect(F3,SIGNAL(clicked()), SLOTS, SLOT(view())); F4=new QPushButton( i18n("F4 Edit ") ,this); + QWhatsThis::add( F4, i18n( "<qt>Edit file.<p>" + "Editor is configurable in Konfigurator, " + "default is 'internal editor'.</qt>" ) ); connect(F4,SIGNAL(clicked()), SLOTS, SLOT(edit())); F5=new QPushButton( i18n("F5 Copy ") ,this); + QWhatsThis::add( F5, i18n( "Copy file from one panel to the other." ) ); connect(F5,SIGNAL(clicked()), SLOTS, SLOT(copyFiles())); F6=new QPushButton( i18n("F6 Move") ,this); + QWhatsThis::add( F6, i18n( "Move file from one panel to the other." ) ); connect(F6,SIGNAL(clicked()), SLOTS, SLOT(moveFiles())); F7=new QPushButton( i18n("F7 Mkdir ") ,this); + QWhatsThis::add( F7, i18n( "Create directory in current panel." ) ); connect(F7,SIGNAL(clicked()), SLOTS, SLOT(mkdir())); F8=new QPushButton( i18n("F8 Delete") ,this); + QWhatsThis::add( F8, i18n( "Delete file, directory, etc." ) ); connect(F8,SIGNAL(clicked()), SLOTS, SLOT(deleteFiles())); F9=new QPushButton( i18n("F9 Rename") ,this); + QWhatsThis::add( F9, i18n( "Rename file, directory, etc." ) ); connect(F9,SIGNAL(clicked()), SLOTS, SLOT(rename())); F10=new QPushButton( i18n("F10 Quit ") ,this); + QWhatsThis::add( F10, i18n( "Quit Krusader." ) ); connect(F10,SIGNAL(clicked()),krApp, SLOT(quitKrusader())); |
From: <ma...@us...> - 2003-08-25 18:06:07
|
Update of /cvsroot/krusader/krusader_kde3/krusader In directory sc8-pr-cvs1:/tmp/cvs-serv752/krusader Modified Files: krusader.cpp krusaderview.cpp Log Message: add: WhatsThis information Index: krusader.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusader.cpp,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** krusader.cpp 22 Aug 2003 10:43:31 -0000 1.24 --- krusader.cpp 25 Aug 2003 17:54:37 -0000 1.25 *************** *** 47,50 **** --- 47,51 ---- #include <qprogressdialog.h> #include <qvaluelist.h> + #include <qwhatsthis.h> // Krusader includes #include "krusader.h" *************** *** 162,165 **** --- 163,168 ---- // create a status bar status = new KrusaderStatus( this ); + QWhatsThis::add( status, i18n( "Status bar will show basic informations " + "about file below mouse pointer." ) ); // This enables Krusader to show a tray icon Index: krusaderview.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/krusaderview.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** krusaderview.cpp 7 Jun 2003 10:36:11 -0000 1.6 --- krusaderview.cpp 25 Aug 2003 17:54:37 -0000 1.7 *************** *** 29,32 **** --- 29,34 ---- ***************************************************************************/ + // Qt includes + #include <qwhatsthis.h> // Krusader includes #include "krusaderview.h" *************** *** 67,70 **** --- 69,74 ---- fnKeys=new KFnKeys(this); fnKeys->show(); + QWhatsThis::add( fnKeys, i18n( "Function keys allow to perform fast " + "operations on files." ) ); // and insert the whole thing into the main layout... at last |
From: <ma...@us...> - 2003-08-25 18:06:07
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv1457/krusader/Panel Modified Files: listpanel.cpp Log Message: Index: listpanel.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/listpanel.cpp,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** listpanel.cpp 24 Aug 2003 22:49:38 -0000 1.27 --- listpanel.cpp 25 Aug 2003 17:58:28 -0000 1.28 *************** *** 99,103 **** int sheight = QFontMetrics( status->font() ).height() + 4; status->setMaximumHeight( sheight ); ! QWhatsThis::add( status, i18n( "The status bar displays information about the FILESYSTEM which hold your current directory: Total size, free space, type of filesystem etc." ) ); connect( status, SIGNAL( clicked() ), this, SLOT( slotFocusOnMe() ) ); // ... create the bookmark list --- 99,106 ---- int sheight = QFontMetrics( status->font() ).height() + 4; status->setMaximumHeight( sheight ); ! QWhatsThis::add( status, i18n( "The status bar displays information about " ! "the FILESYSTEM which hold your current directory: " ! "Total size, free space, type of filesystem etc." ) ); ! connect( status, SIGNAL( clicked() ), this, SLOT( slotFocusOnMe() ) ); // ... create the bookmark list *************** *** 105,108 **** --- 108,114 ---- connect( bookmarksButton, SIGNAL( pressed() ), this, SLOT( slotFocusOnMe() ) ); connect( bookmarksButton, SIGNAL( openUrl( const QString& ) ), func, SLOT( openUrl( const QString& ) ) ); + QWhatsThis::add( bookmarksButton, i18n( "Open menu with bookmarks. You can also add " + "current location to the list, edit bookmarks " + "or add subfolder to the list." ) ); totals = new KrSqueezedTextLabel( this ); *************** *** 113,117 **** totals->setLineWidth( 1 ); // a nice 3D touch :-) totals->setMaximumHeight( sheight ); ! QWhatsThis::add( totals, i18n( "The totals bar shows how much files exist, how many did you select and the bytes math" ) ); connect( totals, SIGNAL( clicked() ), this, SLOT( slotFocusOnMe() ) ); --- 119,124 ---- totals->setLineWidth( 1 ); // a nice 3D touch :-) totals->setMaximumHeight( sheight ); ! QWhatsThis::add( totals, i18n( "The totals bar shows how much files exist, " ! "how many did you select and the bytes math" ) ); connect( totals, SIGNAL( clicked() ), this, SLOT( slotFocusOnMe() ) ); *************** *** 124,129 **** --- 131,140 ---- origin = new KURLRequester( this ); + QWhatsThis::add( origin, i18n( "Use superb KDE file dialog to choose location. " ) ); origin->setShowLocalProtocol( false ); origin->lineEdit() ->setURLDropsEnabled( true ); + QWhatsThis::add( origin->lineEdit(), i18n( "Name of directory where you are. You can also " + "enter name of desired location to move there. " + "Use of Net protocols like ftp or fish is possible." ) ); origin->setMode( KFile::Directory | KFile::ExistingOnly ); connect( origin, SIGNAL( returnPressed( const QString& ) ), func, SLOT( openUrl( const QString& ) ) ); |
From: <ya...@us...> - 2003-08-24 22:51:13
|
Update of /cvsroot/krusader/krusader_kde3 In directory sc8-pr-cvs1:/tmp/cvs-serv21580 Modified Files: ChangeLog Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/ChangeLog,v retrieving revision 1.65 retrieving revision 1.66 diff -C2 -d -r1.65 -r1.66 *** ChangeLog 23 Aug 2003 15:25:59 -0000 1.65 --- ChangeLog 24 Aug 2003 22:51:10 -0000 1.66 *************** *** 2,9 **** --- 2,12 ---- ADDED: new selection mode (a-la Total Commander) - beta mode! ADDED: a new shortcut for 'show hidden files' - ctrl+. (ctrl plus dot) + ADDED: rar support to krArc KIO slave. + ADDED: open with in the right click menu for multiple files with the same mimetype. FIXED: right-click menu via keyboard appeared in the wrong place FIXED: crash when using spacebar on the ".." (thanks to heiner) FIXED: automark directories didn't work (thanks to Anarky) FIXED: bug when using space to calculate space of directory + FIXED: crash when viewing files with # in their name. UPDATED: many usability issues (thanks to Mikolaj) UPDATED: Spanish translation |
From: <ya...@us...> - 2003-08-24 22:49:42
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv21420/krusader/Panel Modified Files: listpanel.cpp Log Message: added open with in the right click menu for multiple files with the same mimetype Index: listpanel.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/listpanel.cpp,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** listpanel.cpp 16 Aug 2003 13:16:35 -0000 1.26 --- listpanel.cpp 24 Aug 2003 22:49:38 -0000 1.27 *************** *** 99,104 **** int sheight = QFontMetrics( status->font() ).height() + 4; status->setMaximumHeight( sheight ); ! QWhatsThis::add( status, i18n( "The status bar displays information about the FILESYSTEM which hold your current directory: Total size, free space, ! type of filesystem etc." ) ); connect( status, SIGNAL( clicked() ), this, SLOT( slotFocusOnMe() ) ); // ... create the bookmark list --- 99,103 ---- int sheight = QFontMetrics( status->font() ).height() + 4; status->setMaximumHeight( sheight ); ! QWhatsThis::add( status, i18n( "The status bar displays information about the FILESYSTEM which hold your current directory: Total size, free space, type of filesystem etc." ) ); connect( status, SIGNAL( clicked() ), this, SLOT( slotFocusOnMe() ) ); // ... create the bookmark list *************** *** 464,473 **** // try to find-out which apps can open the file OfferList offers; ! // this too, is meaningful only if one file is selected ! if ( !multipleSelections ) { ! offers = KServiceTypeProfile::offers( item->mime() ); for ( unsigned int i = 0; i < offers.count(); ++i ) { KService::Ptr service = offers[ i ].service(); ! if ( service->isValid() && service->type() == "Application" ) { openWith.insertItem( service->name(), SERVICE_LIST_ID + i ); openWith.changeItem( SERVICE_LIST_ID + i, service->pixmap( KIcon::Small ), service->name() ); --- 463,481 ---- // try to find-out which apps can open the file OfferList offers; ! // this too, is meaningful only if one file is selected or if all the files ! // have the same mimetype ! ! QString mime = item->mime(); ! // check if all the list have the same mimetype ! for(unsigned int i=1; i<items.size(); ++i){ ! if( (*items.at(i))->mime() != mime ){ ! mime = QString::null; ! break; ! } ! } ! if ( !mime.isEmpty() ) { ! offers = KServiceTypeProfile::offers( mime ); for ( unsigned int i = 0; i < offers.count(); ++i ) { KService::Ptr service = offers[ i ].service(); ! if ( service->isValid() && service->type()=="Application" ) { openWith.insertItem( service->name(), SERVICE_LIST_ID + i ); openWith.changeItem( SERVICE_LIST_ID + i, service->pixmap( KIcon::Small ), service->name() ); *************** *** 602,608 **** } if ( result >= SERVICE_LIST_ID ) { ! u.setPath( func->files() ->vfs_getFile( item->name() ) ); ! lst.append( u ); ! KRun::run( *( offers[ result - SERVICE_LIST_ID ].service() ), lst ); } } --- 610,617 ---- } if ( result >= SERVICE_LIST_ID ) { ! QStringList names; ! getSelectedNames( &names ); ! KRun::run( *(offers[result-SERVICE_LIST_ID].service()), ! *(func->files()->vfs_getFiles(&names)) ); } } |
From: <ya...@us...> - 2003-08-24 20:00:08
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv27617/krusader/Panel Modified Files: panelfunc.cpp Log Message: Fixed crash when viewing files with # in them. use krarc slave to open RAR archives. Index: panelfunc.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/panelfunc.cpp,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** panelfunc.cpp 11 Aug 2003 20:56:07 -0000 1.32 --- panelfunc.cpp 24 Aug 2003 20:00:05 -0000 1.33 *************** *** 276,280 **** fileName = files()->vfs_getFile( fileName ); // and call KViewer. ! KrViewer::view( fileName ); // nothing more to it! } --- 276,280 ---- fileName = files()->vfs_getFile( fileName ); // and call KViewer. ! KrViewer::view( KURL::fromPathOrURL(fileName) ); // nothing more to it! } *************** *** 569,573 **** } else if ( KRarcHandler::arcHandled( type ) && !origin.contains(":/")) { QString path = files()->vfs_getFile(vf->vfile_getName()); ! if(type == "-zip"){ path = "krarc:"+path; } else if ( type == "-tbz" || type == "-tgz" || type == "tarz" ){ --- 569,573 ---- } else if ( KRarcHandler::arcHandled( type ) && !origin.contains(":/")) { QString path = files()->vfs_getFile(vf->vfile_getName()); ! if( type == "-zip" || type.contains("rar") ){ path = "krarc:"+path; } else if ( type == "-tbz" || type == "-tgz" || type == "tarz" ){ |
From: <ya...@us...> - 2003-08-24 19:56:17
|
Update of /cvsroot/krusader/krusader_kde3/krusader/Panel In directory sc8-pr-cvs1:/tmp/cvs-serv27105/krusader/Panel Modified Files: krdetailedview.cpp Log Message: Fixed compilation warning Index: krdetailedview.cpp =================================================================== RCS file: /cvsroot/krusader/krusader_kde3/krusader/Panel/krdetailedview.cpp,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** krdetailedview.cpp 23 Aug 2003 14:56:24 -0000 1.27 --- krdetailedview.cpp 24 Aug 2003 19:56:13 -0000 1.28 *************** *** 618,622 **** } ! void KrDetailedView::inplaceRenameFinished( QListViewItem *it, int col ) { if ( !it ) { // major failure - call developers kdWarning() << "Major failure at inplaceRenameFinished(): item is null" << endl; --- 618,622 ---- } ! void KrDetailedView::inplaceRenameFinished( QListViewItem *it, int ) { if ( !it ) { // major failure - call developers kdWarning() << "Major failure at inplaceRenameFinished(): item is null" << endl; |