

from
KFileMetaInfo *metainfo = new KFileMetaInfo( url );
to
KFileMetaInfo *metainfo = new KFileMetaInfo( (QString&) url );
this will fix the compilation problem. :)
the patch goes like this:
--
diff -uNr ksidebar-0.2.orig/src/details.cpp ksidebar-0.2/src/details.cpp
--- ksidebar-0.2.orig/src/details.cpp 2003-09-27 06:17:52.000000000 +0900
+++ ksidebar-0.2/src/details.cpp 2003-09-27 06:37:49.000000000 +0900
@@ -225,7 +225,7 @@
sInfo[i]->hide();
}
- KFileMetaInfo *metainfo = new KFileMetaInfo( url );
+ KFileMetaInfo *metainfo = new KFileMetaInfo( (QString&) url );
if ( metainfo->isEmpty() )
return;
QStringList list = metainfo->preferredKeys();
-- - Sep 26 2003
from
s = QString::number( file->size() ) + i18n(" B");
to
s = QString::number( (float) file->size() ) + i18n(" B");
I wrote a short patch for this at the above comment. :) - Sep 25 2003
at ksidebar-0.1/src/details.cpp 157th line.
--
diff -uNr ksidebar-0.1.orig/src/details.cpp ksidebar-0.1/src/details.cpp
--- ksidebar-0.1.orig/src/details.cpp 2003-09-26 04:45:30.000000000 +0900
+++ ksidebar-0.1/src/details.cpp 2003-09-26 04:49:01.000000000 +0900
@@ -154,7 +154,7 @@
float size = (float) file->size();
QString s;
if ( file->size() < 1024 )
- s = QString::number( file->size() ) + i18n(" B");
+ s = QString::number( (float) file->size() ) + i18n(" B");
else if ( file->size() < 1048576 )
s = QString::number( size / 1024.0, 'f', 1) + i18n(" KB");
else if ( file->size() < 1073741824 )
--
thanks. - Sep 25 2003

KDE Plasma Screenshots by ftz 3 comments

Various KDE 1.-4. Improvements by dcpark 15 comments
looking forward to see your good work...
Thanks. - Sep 24 2003

Various KDE 1.-4. Improvements by dcpark 15 comments
In Mandrake, for example, you can link the 'Applications' menu
to the '/usr/share/applnk-mdk/' directory. Thanks. - Sep 22 2003

Various KDE 1.-4. Improvements by dcpark 15 comments
- changed user specific directories, like /home/scream,
to be independent links(relative path) for convenience' sake.
- added a ready made konqueror webbrowsing profile
to use with the install script for KonquiSidebar.
No new functionality added, just for indolent like me. :) - Sep 22 2003

Various KDE 1.-4. Improvements by dcpark 29 comments
Or, your KDE is not in the standard directory, e.g /usr.
These RPMs were compiled with the option, --prefix=/usr.
So, if your KDE directory is not /usr, my slicker RPM doesn't work.
In this case, get SRPM (.src.rpm) and rebuild it with --prefix=your_kde_dir.
-- HOW-TO --
1. get SRPM according to your distro.
( http://dor22288.kaist.ac.kr/Slicker/ )
2. Unpack SRPM
( # rpm -ivh slicker-*.src.rpm )
3. Modify the slicker.spec file.
( # cd /usr/src/RPM_or_redhat/SPECS/
and change "./configure --prefix=%{kdedir}"
to "./configure --prefix=/usr/local/kde" in slicer.spec.
* I guessed your KDE directory.
To find out what is your KDE directory,
just type "kde-config --prefix" at a command prompt. :)
4. Rebuild the Slicker.
( # rpmbuld -ba slicker.spec
It will take some time to rebuild the Slicker.)
5. Install the Slicker.
(The result of the step 4 is binary rpm
which can be found at /usr/src/RPM_or_redhat/RPMS/ix86/ .
Go to this directory, and install the Slicker.
# rpm -Uvh slicker-*.ix86.rpm )
-------------------------------
Good luck! - May 24 2003

Karamba & Superkaramba by dcpark 57 comments
That's all.
Then, select 'Karamba' at KMenu->Accessories.
or, run 'karamba.sh' at command prompt. :) - Apr 23 2003

Karamba & Superkaramba by dcpark 57 comments
superkaramba finds the python module named the same as the theme you load,
even if it needs no python module.
I hope, this bug will be fixed in next release.
Thanks. - Apr 22 2003

Karamba & Superkaramba by dcpark 57 comments
> Mandrake 9.1 RPM for the new build?
MDK9.1 rpm would be released later than RH9 rpm.
If you want to get MDK9.1 rpm as soon as possible,
get RH9 SRPM and rebuild it on MDK with changing
%define Mandrake 0 to %define Mandrake 1,
%define RedHat 1 to %define RedHat 0
in karamba.spec file. That's all.
--
i.e. # rpm -ivh karamba-*.src.rpm
& # cd /usr/src/RPM/SPEC (in case of MDK)
and edit karamba.spec file as described above.
finally, # rpmbuild -ba karamba.spec
(It will take some time to build karamba.)
You can find the output binary rpm at
/usr/src/RPM/RPMS/{your_arch}/karamba-*.{your_arch}.rpm
Good luck :) - Apr 22 2003

Karamba & Superkaramba by ageitgey 326 comments
Good job~ (^_^)b [Thumbs up] - Apr 20 2003

Karamba & Superkaramba by dcpark 57 comments
and choose Look'NFeel->Panels->Hiding.
Check 'Hide automatically' radio button. :)
To move the kicker, drag & drop it where you want to place the kicker, say upper side. :)
About TOPBAR/BOTTOMBAR parameters..,
see
http://www.efd.lth.se/~d98hk/karamba/karamba.html#karambaparam
for details. :) - Apr 15 2003

Karamba & Superkaramba by dcpark 57 comments
http://dc15.hanafos.com/zero/data/nude/1049691553/body.jpg - Apr 15 2003

Karamba & Superkaramba by dcpark 57 comments
Sometimes slashdot theme starts with blank screen, but clicking 'Update' resolves this problem.
ps) added missing pics in some themes, and modified themes to fit in 1152x864 or lower.
download again & reinstall with 'rpm -Uvh karamba-*.rpm --force'
if you like. :) - Apr 09 2003

Karamba & Superkaramba by dcpark 57 comments
It's not of the karamba theme problem. :)
And...a tip for automatical loading karamba in startup:
make a karamba.sh script in $HOME/.kde/Autostart
It goes someting like this...
--%^ cut here ^%--
#!/bin/bash
if [ ! -d ~/.kde/share/apps/karamba/ ]; then
mkdir -p $HOME/.kde/share/apps/karamba/scripts
mkdir -p $HOME/.kde/share/apps/karamba/themes
fi
export PATH=$PATH:/usr/share/apps/karamba/scripts/:$HOME/.kde/share/apps/karamba/scripts
exec /usr/bin/karamba \
/usr/share/apps/karamba/themes/calendar.theme \
/usr/share/apps/karamba/themes/whatever_themes
--%^cut here ^%--
Good luck! - Apr 09 2003

Karamba & Superkaramba by dcpark 57 comments
http://dc15.hanafos.com/zero/data/nude/1049691553/body.jpg - Apr 09 2003

Various KDE 1.-4. Improvements by dcpark 29 comments
> mfk9.1 KDE LooknFeel panel... )o
the 'download' button is for RedHat9 rpm.
please, visit Homepage and get Mandrake rpm & try again. :) - Apr 09 2003

Karamba & Superkaramba by dcpark 57 comments
--
I built the new Mandrake rpm with no libGLcore dependency error. :)
Any one who suffered libGLcore related dependency error is welcomed to download the new rpm. - Apr 08 2003

Karamba & Superkaramba by dcpark 57 comments
ps)
Is there any one who knows how to build binaries without linking 'libGLcore.so.1' in the linux box with NVIdia driver installed?
The only solution is to uninstall the driver & build binaries? :( plz, Help.
- Apr 05 2003

Various KDE 1.-4. Improvements by dcpark 29 comments
Please, get src.rpm and rebuild it on your own RH8 machine. :) Good luck~! - Apr 04 2003

KDE 3.0-3.4 Themes by dcpark 86 comments
Check it and # chmod 644 keramik.themerc .
Good Luck~! - Jun 19 2002

KDE 3.0-3.4 Themes by dcpark 29 comments

KDE 3.0-3.4 Themes by dcpark 29 comments
teax made the default Opacity 7, btw, I changed to 0, 100% transparent.
Sorry~ :) - Jun 17 2002

Kicker Panel by teax 20 comments
just as the 'slotBackgroundchanged(int)' implemantation in transkicker-highcolor.patch.
Ok.. plz upload SRPM too for evry distro. :) - Jun 17 2002