Re: [kde] How can I bring back Konqueror as my man page viewer?

2012-08-19 Thread dE .
The default browser is used for opening the man page. So you have to set it
to konqueror in order to do so.

the man page bug not opening in other browsers is fixed in KDE 4.9

-
Support software for non profit, buy Android phones.
On Aug 18, 2012 8:45 PM, Nikos Chantziaras rea...@gmail.com wrote:

 In KDE, I'm very used to simply type man:foo and have the man page of
 foo pop up immediately in Konqueror without having to open a terminal or
 anything.

 However, since I installed Chromium and making it my default browser, now
 man: brings up Chromium instead.  That doesn't work; instead of
 displaying the man page, it downloads the *.bz2 from the local file system
 :-/

 How can I set Konqueror to be the program that handles KDE's man:
 command?

 __**_
 This message is from the kde mailing list.
 Account management:  
 https://mail.kde.org/mailman/**listinfo/kdehttps://mail.kde.org/mailman/listinfo/kde
 .
 Archives: http://lists.kde.org/.
 More info: http://www.kde.org/faq.html.

___
This message is from the kde mailing list.
Account management:  https://mail.kde.org/mailman/listinfo/kde.
Archives: http://lists.kde.org/.
More info: http://www.kde.org/faq.html.

Re: [kde] How to install KDE 4.9 on Debian Squeeze

2012-08-19 Thread dE .
I think its not possible cause of old QT libs.

-
Support software for non profit, buy Android phones.
On Aug 18, 2012 7:50 PM, andre_deb...@numericable.fr wrote:

 Hello,

 How to install KDE 4.9 on Debian Squeeze ?

 The command aptitude install kde ..
 could do that but with the 4.6 version
 and I want the 4.9.

 I downloaded the KDE 4.9 package on the KDE site,
 but no howto to compile and install the package.

 Thank for a help.

 andré
 ___
 This message is from the kde mailing list.
 Account management:  https://mail.kde.org/mailman/listinfo/kde.
 Archives: http://lists.kde.org/.
 More info: http://www.kde.org/faq.html.

___
This message is from the kde mailing list.
Account management:  https://mail.kde.org/mailman/listinfo/kde.
Archives: http://lists.kde.org/.
More info: http://www.kde.org/faq.html.

Re: [kde] How to add some widgets/activities to user default environment?

2012-08-19 Thread Duncan
Franklin Weng posted on Sun, 19 Aug 2012 10:31:54 +0800 as excerpted:

 Oh, I'm using kubuntu 12.04 .  When I used kubuntu 11.04 it was okay to
 just change /usr/share/kde4/share/config/plasma-desktop-appletsrc.
 
 Thanks,
 Franklin 2012-8-19 AM10:29 於 Franklin Weng frank...@goodhorse.idv.tw
 寫道:
 
 Hi list,

 I'd like to setup a default kde environment for all newly added users.
 That is, I wish to let users have the same desktop widgets like
 folderview or fuzzy clock on their desktop activity.

 I tried to customize a desktop and put my
 .kde/share/config/plasma-desktop-appletsrc into
 /usr/share/kde4/share/config,and even /etc/skel/.kde/share/config.

 When I added a user the plasma-desktop-appletsrc was copied to the
 correct path however when the user logged in, it seemed to get rid of
 my setting and created a new activity with its default setting.

 Could anyone please tell me how to control the behavior for a new user
 login?  i.e. how to avoid it creating a new default setting and use my
 setting instead?

FWIW, most longtime list regulars will prefer quote, reply-in-context, to 
top posting.  Given that answering questions takes time and there's 
often more questions in a regular's normal groups/lists than time, they 
often have to pick who they reply to, and if you make it difficult for 
them due to top posting, they may simply skip replying to you...

Also, thanks for mentioning kubuntu and version, but this is a kde list 
not a kubuntu specific list, with regulars running all sorts of distros 
(I personally run gentoo) and who often have little idea what kde version 
some random distro and distro version that they don't run shipped with.  
Mentioning distro and distro version is good, as sometimes distros 
override upstream kde settings, but knowing the kde version is more 
important.  So please mention kde version, too. =:^)


I don't have a specific answer to your question, but here's what I'd do 
to find the answer, were I lookign for it.  My first instinct is to 
wonder if there's a first-time-wizard that runs and sets up the defaults 
if it doesn't find some particular setting, obviously located in a 
different file, already set.  So I'd try experimenting with copying some 
of the other config files over as well, starting with the other plasma 
files, and see if you can figure out what file and then what setting in 
that file it's looking for, and doing a reset if it doesn't find.

Do you know what the (targeted) bisect method is?  Since we suspect the 
file is in ~/.kde, try creating a new test user and copying that entire 
directory over, then starting kde as that user.  If that keeps the 
settings, we've verified it's in ~/.kde.  Since we suspect it's in the 
share/config/ subdir, try that next.  Logout your test user, delete all 
of ~/.kde but the share/config subdir, and try again.

Assuming that too keeps the settings, try all the plasma* files in that 
dir next.

At any level where you don't have an educated guess, or if one of your 
guesses turns out wrong, then simply bisect the problem space roughly in 
half, so you know which half it's in, then based on the results, test 
half of either the half you just tested, or half of the other half (so a 
quarter, then an eighth, then 1/16, etc), narrowing down to a specific 
dir, then a specific file within the dir, etc.

Once you reach a specific file, you can either continue testing with a 
text editor (most kde config files are plain-text ini-style so a text 
editor works, narrowing down to section and then individual line, altho 
as you've likely discovered, plasma-desktop-appletsrc is an exceedingly 
complex ini file not particularly amenable to manual editing, tho it 
/is/ possible with an extra dose of patience and carefulness), or just 
use the entire file.


Alternatively, use the strace method to see what files plasma-desktop 
opens as it starts.  Open a konsole, kquitapp/killall plasma-desktop, and 
restart it using something like (of course check the strace and grep 
manpages if you need command details, blindly running random commands 
some guy posted, without understanding at least the general idea of what 
they do, isn't something I'd recommend):

strace -feopen plasma-desktop 21 | grep /home/user | grep -v 'font\|
cursor\|whatever'

That should dump (to STDOUT so to the konsole if you don't redirect to a 
file) a list of all the opened files with paths that match the first grep 
and don't match the second.  Modify as necessary to filter out the noise, 
and take a look at the remaining list of files.  Since we know plasma-
desktop doesn't reset the config for a user once setup, and the user can 
only (reliably) write to files in $HOME for a setting that needs to be 
stored over multiple sessions, the setting MUST be found in a file in 
$HOME.  Of course it's /possible/ that something in the kde session 
before plasma-desktop starts checks it, and plasma-desktop gets its info 
from that, but I don't consider it likely, so 

Re: [kde] How can I bring back Konqueror as my man page viewer?

2012-08-19 Thread Nikos Chantziaras
I'm using KDE 4.9 and it's not fixed.  Only man pages that don't have 
alternatives are displayed.  But most have POSIX vs Linux versions, and 
the selection page doesn't work.


There should be a way to set the man page viewer in an easy way.


On 19/08/12 09:16, dE . wrote:

The default browser is used for opening the man page. So you have to set
it to konqueror in order to do so.

the man page bug not opening in other browsers is fixed in KDE 4.9

-
Support software for non profit, buy Android phones.

On Aug 18, 2012 8:45 PM, Nikos Chantziaras rea...@gmail.com
mailto:rea...@gmail.com wrote:

In KDE, I'm very used to simply type man:foo and have the man page
of foo pop up immediately in Konqueror without having to open a
terminal or anything.

However, since I installed Chromium and making it my default
browser, now man: brings up Chromium instead.  That doesn't work;
instead of displaying the man page, it downloads the *.bz2 from the
local file system :-/

How can I set Konqueror to be the program that handles KDE's man:
command?

_
This message is from the kde mailing list.
Account management: https://mail.kde.org/mailman/__listinfo/kde
https://mail.kde.org/mailman/listinfo/kde.
Archives: http://lists.kde.org/.
More info: http://www.kde.org/faq.html.



___
This message is from the kde mailing list.
Account management:  https://mail.kde.org/mailman/listinfo/kde.
Archives: http://lists.kde.org/.
More info: http://www.kde.org/faq.html.




___
This message is from the kde mailing list.
Account management:  https://mail.kde.org/mailman/listinfo/kde.
Archives: http://lists.kde.org/.
More info: http://www.kde.org/faq.html.