Bug#640878: Problem's gone (almost)

2011-10-23 Thread Pfannenstein Erik
Hello together,

little correction to my last mail: I just gave the effect machinery a try 
again, and 
it works (except Blur, kwin runs into a SEGFAULT then).

Are you interested at an additional backtrace?

Greetings
Erik
-- 
Linux User: 499744
Linux Machine: 434256



-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201110232004.55668.debianign...@gmx.de



Re: How can I find the path to various icons

2011-10-23 Thread Mirosław Zalewski
On 23/10/2011 at 01:49, Harry Putnam rea...@newsguy.com wrote:

 PS - what does %F  mean at the end of a command path, such as the one
 for emacs23: /usr/bin/emacs23 %F.

It is described in .desktop file specification. Take a look:
http://standards.freedesktop.org/desktop-entry-spec/latest/ar01s06.html
You can read all about .desktop files there. Just click Home link at the 
bottom of the page to get a table of contents.
-- 
Best regards
Mirosław Zalewski


-- 
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201110231131.03965.mini...@poczta.onet.pl



Re: How can I find the path to various icons

2011-10-23 Thread Harry Putnam
Mirosław Zalewski mini...@poczta.onet.pl writes:

 On 23/10/2011 at 01:49, Harry Putnam rea...@newsguy.com wrote:

 PS - what does %F  mean at the end of a command path, such as the one
 for emacs23: /usr/bin/emacs23 %F.

 It is described in .desktop file specification. Take a look:
 http://standards.freedesktop.org/desktop-entry-spec/latest/ar01s06.html
 You can read all about .desktop files there. Just click Home link at the 
 bottom of the page to get a table of contents.

from your cited URL.

  A list of files. Use for apps that can open several local files at
  once. Each file is passed as a separate argument to the executable
  program.

I figured it was something like that.  Something akin to the shells
$@.

But that doesn't make much sense in the properties of an ICON.  How
does one pass a list of files when clicking on a menu of icons?  So I
didn't think it would be just inserted gratuitously but it seems to
be so.  eh?

For example, I see the %F in the properties of the emacs icon..

Or is it expected that user would drag a file to the icon and drop it?


-- 
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87hb30t17e@newsguy.com



Re: KDE 4.7 TODO wiki page

2011-10-23 Thread Eshat Cakar
Hi,

 Where is the current work on kde 4.7.x integration
 in Debian being documented? 

The first place to see what's been worked on, is #debian-qt-kde.
But please do not keep back the team from working, by asking there
about the status.
We currently lack man power and are always happy, if people experienced
in packaging would like to help.

As you already found [1]: that's the place to see the code commits
(consider watching at all pkg-kde/kde-sc/* repositories). 
However, they do not tell exactly, what's the status, since work also
includes building, packaging and testing.

 If there's no documentation, where can I find
 some info about its current status?

The status is (few) people are working on it, and there's no ETA, so
same as /topic in #debian-kde. Please bear with the team, if it is not
possible to give an ETA, since it's just a handful of people currently
been working on packaging, and we depend on them having the time.

Best regards,

Eshat Cakar

[1] http://anonscm.debian.org/gitweb/

-- 
eshat cakar
web: www.eshat.de   gpg-id: 799B 95D5


signature.asc
Description: PGP signature


Re: KDE 4.7 TODO wiki page

2011-10-23 Thread José Manuel Santamaría Lema
Eshat Cakar i...@eshat.de
 The status is (few) people are working on it, and there's no ETA, so
 same as /topic in #debian-kde. Please bear with the team, if it is not
 possible to give an ETA, since it's just a handful of people currently
 been working on packaging, and we depend on them having the time.

This isn't true. The reason for not having an ETA is the nature of the work 
itself. Before doing the work, I don't know, for example, how many patches I 
will have to refresh.


-- 
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201110231904.35951.panfa...@gmail.com



Re: How can I find the path to various icons

2011-10-23 Thread Mirosław Zalewski
On 23/10/2011 at 13:08, Harry Putnam rea...@newsguy.com wrote:

 But that doesn't make much sense in the properties of an ICON.  How
 does one pass a list of files when clicking on a menu of icons?  So I
 didn't think it would be just inserted gratuitously but it seems to
 be so.  eh?
 
 For example, I see the %F in the properties of the emacs icon..

I am afraid you are missing a point. .desktop file is more generic than just 
icon. It is INI file with key for Icon, Name, supported Mime Types, executable 
path (or just name, in which case system should check $PATH for that 
executable) and some other things. Dolphin (KDE file manager) is using .desktop 
files as well. So when you select some text files, under Open with you will 
find emacs (beside Kate, Kwrite and perhaps some other apps).

When you edit icon properties, you are editing .desktop file; not only Icon 
key, but whole content of it.

I have downloaded sources for emacs (I do not use it at all, so I don't have 
it installed) and in emacs.desktop file I see:
#v+
Exec=emacs %F
Icon=emacs
#v-

So %F is not in icon (which indeed would not make much sense), but in Exec 
value. That way opening few text files in emacs (from Dolphin) will not spawn 
multiple emacs instances. For Kickoff it makes no difference, since you can't 
select any files from it.

Hope I have cleared some things up and I apologize in advance if my message is 
a bit harsh.
-- 
Best regards
Mirosław Zalewski


-- 
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201110232353.44188.mini...@poczta.onet.pl



Re: How can I find the path to various icons

2011-10-23 Thread Harry Putnam
Mirosław Zalewski mini...@poczta.onet.pl writes:

 So %F is not in icon (which indeed would not make much sense), but in Exec 
 value. That way opening few text files in emacs (from Dolphin) will not spawn 
 multiple emacs instances. For Kickoff it makes no difference, since you can't 
 select any files from it.

I get it a bit better now... thanks.

 Hope I have cleared some things up and I apologize in advance if my message 
 is 
 a bit harsh.

You have nothing to apologize for... thanks for taking time to clear
it up.


-- 
To UNSUBSCRIBE, email to debian-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87fwijjrlg@newsguy.com