libstartup-notification maintenance

2009-01-26 Thread Julien Danjou
if they're still active on it. Any pointer? Cheers, -- Julien Danjou // ᐰ jul...@danjou.info http://julien.danjou.info // 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD signature.asc Description: Digital signature ___ xdg mailing list xdg

Re: libstartup-notification maintenance

2009-01-28 Thread Julien Danjou
it would be much simpler to just rewrite libsn to use XCB instead of Xlib. But that'd be 2 differents codebase. Any hint would be appreciated. Cheers, -- Julien Danjou // ᐰ jul...@danjou.info http://julien.danjou.info // 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD signature.asc Description

[PATCH] simplify sn_internal_monitor_process_event proto

2009-01-29 Thread Julien Danjou
Signed-off-by: Julien Danjou jul...@danjou.info --- libsn/sn-common.c|2 +- libsn/sn-internals.h |3 +-- libsn/sn-monitor.c |3 +-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/libsn/sn-common.c b/libsn/sn-common.c index ebbf781..b494ad7 100644 --- a/libsn/sn

[PATCH] Remove useless xdisplay property from FindMessageData

2009-01-29 Thread Julien Danjou
Signed-off-by: Julien Danjou jul...@danjou.info --- libsn/sn-xmessages.c |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/libsn/sn-xmessages.c b/libsn/sn-xmessages.c index 50afb0a..3c328c8 100644 --- a/libsn/sn-xmessages.c +++ b/libsn/sn-xmessages.c @@ -275,7 +275,6

startup-notification XCB support

2009-01-29 Thread Julien Danjou
launcher/launchee :-) The first 11 patches are some code refactoring which I've to do before adding XCB functions. Patch 12 adds XCB backend and functions. Patch 13 add unitary test. Cheers, -- Julien Danjou // ᐰ jul...@danjou.info http://julien.danjou.info // 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E

[PATCH] Only store Window in FindMessageData

2009-01-29 Thread Julien Danjou
This is enough, we do not need to store the full XEvent. Signed-off-by: Julien Danjou jul...@danjou.info --- libsn/sn-xmessages.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libsn/sn-xmessages.c b/libsn/sn-xmessages.c index c2fc8d1..e10e2f1 100644 --- a/libsn/sn

[PATCH] Move message filling into message_set_message()

2009-01-29 Thread Julien Danjou
Signed-off-by: Julien Danjou jul...@danjou.info --- libsn/sn-xmessages.c | 63 ++--- 1 files changed, 33 insertions(+), 30 deletions(-) diff --git a/libsn/sn-xmessages.c b/libsn/sn-xmessages.c index f7f6b34..f862b81 100644 --- a/libsn/sn-xmessages.c

[PATCH] Move SnXmessage creation in a static function

2009-01-29 Thread Julien Danjou
Signed-off-by: Julien Danjou jul...@danjou.info --- libsn/sn-xmessages.c | 19 --- 1 files changed, 12 insertions(+), 7 deletions(-) diff --git a/libsn/sn-xmessages.c b/libsn/sn-xmessages.c index e10e2f1..f7f6b34 100644 --- a/libsn/sn-xmessages.c +++ b/libsn/sn-xmessages.c

[PATCH] Add sn_internal_display_get_screen_number ()

2009-01-29 Thread Julien Danjou
Signed-off-by: Julien Danjou jul...@danjou.info --- libsn/sn-common.c| 14 ++ libsn/sn-internals.h |1 + libsn/sn-monitor.c |2 +- 3 files changed, 16 insertions(+), 1 deletions(-) diff --git a/libsn/sn-common.c b/libsn/sn-common.c index 35fd6d7..6da3eed 100644

[PATCH] Remove unused function from sn-xutils

2009-01-29 Thread Julien Danjou
Signed-off-by: Julien Danjou jul...@danjou.info --- libsn/sn-xutils.c | 412 - libsn/sn-xutils.h | 54 --- 2 files changed, 0 insertions(+), 466 deletions(-) diff --git a/libsn/sn-xutils.c b/libsn/sn-xutils.c index ef7f7a1..b40b305

[PATCH] add sn_internal_display_get_root_window()

2009-01-29 Thread Julien Danjou
Signed-off-by: Julien Danjou jul...@danjou.info --- libsn/sn-common.c| 19 +++ libsn/sn-internals.h |3 +++ libsn/sn-xmessages.c |4 ++-- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/libsn/sn-common.c b/libsn/sn-common.c index b494ad7..35fd6d7

[PATCH] Split sn_internal_xmessage_process_event

2009-01-29 Thread Julien Danjou
Signed-off-by: Julien Danjou jul...@danjou.info --- libsn/sn-xmessages.c | 49 ++--- 1 files changed, 26 insertions(+), 23 deletions(-) diff --git a/libsn/sn-xmessages.c b/libsn/sn-xmessages.c index 6a10174..ed1df71 100644 --- a/libsn/sn-xmessages.c

[PATCH] Move message retrieval and creation to get_or_add_message()

2009-01-29 Thread Julien Danjou
Signed-off-by: Julien Danjou jul...@danjou.info --- libsn/sn-xmessages.c | 41 - 1 files changed, 28 insertions(+), 13 deletions(-) diff --git a/libsn/sn-xmessages.c b/libsn/sn-xmessages.c index f862b81..6a10174 100644 --- a/libsn/sn-xmessages.c +++ b

[PATCH] Add XCB backend

2009-01-29 Thread Julien Danjou
Signed-off-by: Julien Danjou jul...@danjou.info --- AUTHORS |3 +- ChangeLog|4 + configure.in | 18 +++- libsn/sn-common.c| 264 +- libsn/sn-common.h| 31 ++ libsn/sn-internals.h | 18

[PATCH] Add XCB unit tests

2009-01-29 Thread Julien Danjou
Signed-off-by: Julien Danjou jul...@danjou.info --- configure.in|1 + test/Makefile.am| 38 ++- test/test-launchee-xcb.c| 76 test/test-launcher-xcb.c| 144 +++ test/test

startup-notification moved to git + XCB backend

2009-04-03 Thread Julien Danjou
of patches adding support for XCB[2] as a backend. [1] http://cgit.freedesktop.org/startup-notification/ [2] http://xcb.freedesktop.org Cheers, -- Julien Danjou // ᐰ jul...@danjou.info http://julien.danjou.info // 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD // There is nothing under

Re: icon naming spec project on launchpad?

2009-06-25 Thread Julien Danjou
things. Who agrees? Why everyone tries to put things everywhere on the Internet, whereas there's a common place for all that stuff called Freedesktop? -- Julien Danjou // ᐰ jul...@danjou.info http://julien.danjou.info // 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD // The more we fly

Re: Notification spec issue: Ability to assign an icon *and* an image to a notification

2009-06-26 Thread Julien Danjou
in the meantime, I've requested the creation of a git repository at fd.o under the 'standards' (#22482) group and plan to integrate current specs (some stored in CVS) in a common place. Then, we'll see. Cheers, -- Julien Danjou // ᐰ jul...@danjou.info http://julien.danjou.info // 9A0D 5FD9 EB42

Re: Notification spec issue: Ability to assign an icon *and* an image to a notification

2009-06-26 Thread Julien Danjou
. Or there's no point having a common infrastructure and talking about putting things in common. Go write your specs in your side in your git repo on the Internet, tell that this is where the Truth is, and go with it. Somehow, reminds me of Galago/Notification, after all. :) -- Julien Danjou // ᐰ jul

Re: Notification spec issue: Ability to assign an icon *and* an image to a notification

2009-06-26 Thread Julien Danjou
webpages/wiki, it's trustworthy. [1] I don't know if the Xorg people have the same problem? [2] I'm pretty confident they wouldn't respond, even if you kick hard enough. Cheers, -- Julien Danjou // ᐰ jul...@danjou.info http://julien.danjou.info // 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E

Re: Git access to freedesktop

2010-03-11 Thread Julien Danjou
(No route to host). Does it mean the port 9814 is prohibit from AMD internal? #secure method=pgpmime mode=sign Seems so. -- Julien Danjou // ᐰ jul...@danjou.info http://julien.danjou.info ___ xdg mailing list xdg@lists.freedesktop.org http

Re: startup-notification patch for APPLICATION_ID

2010-03-26 Thread Julien Danjou
Colin Walters walt...@verbum.org writes: Julien, you didn't join in this thread - have you had a chance to look at the patch and can you commit it? Yup, I was lurking. Patched applied and pushed. Do not hesitate to ping me if you need me to roll a release out someday. -- Julien Danjou // ᐰ

Re: base dir spec question.

2010-05-06 Thread Julien Danjou
configuration in a database. -- Julien Danjou // ᐰ jul...@danjou.info http://julien.danjou.info pgp5cKn4EsZlq.pgp Description: PGP signature ___ xdg mailing list xdg@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/xdg

Re: base dir spec question.

2010-05-06 Thread Julien Danjou
Kevin Krammer kevin.kram...@gmx.at writes: I prefer you initial assessment. The second one was ironic, if it's not clear. ;) -- Julien Danjou // ᐰ jul...@danjou.info http://julien.danjou.info pgpw2tPmQNTnT.pgp Description: PGP signature ___ xdg

Re: Draft StatusNotifierIcon broken by design

2010-05-20 Thread Julien Danjou
can't, it's because it's a window manager, not a compositing manager, at least so far. Extending awesome to be a composite manager might be a better idea than creating something new, for example. But YMMV. -- Julien Danjou // ᐰ jul...@danjou.info http://julien.danjou.info pgpCYcZo88JvN.pgp

[PATCH 1/5] Fix sn-launcher not using screen number

2010-05-24 Thread Julien Danjou
Signed-off-by: Julien Danjou jul...@danjou.info --- libsn/sn-launcher.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/libsn/sn-launcher.c b/libsn/sn-launcher.c index 089b5c2..f1d5e99 100644 --- a/libsn/sn-launcher.c +++ b/libsn/sn-launcher.c @@ -78,6 +78,7

[PATCH 2/5] Update test suite for xcb = 1.6

2010-05-24 Thread Julien Danjou
Signed-off-by: Julien Danjou jul...@danjou.info --- configure.in |2 +- test/test-launcher-xcb.c |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 21fe138..7ca0ca2 100644 --- a/configure.in +++ b/configure.in @@ -78,7 +78,7

[PATCH 4/5] Cache various atoms

2010-05-24 Thread Julien Danjou
Signed-off-by: Julien Danjou jul...@danjou.info --- libsn/sn-common.c| 61 +- libsn/sn-internals.h |8 ++ libsn/sn-launchee.c |6 ++-- libsn/sn-xmessages.c | 19 +++ libsn/sn-xmessages.h |4 +- libsn/sn-xutils.c

[PATCH 5/5] Use predefined atoms to decrease latency

2010-05-24 Thread Julien Danjou
Signed-off-by: Julien Danjou jul...@danjou.info --- test/test-launcher.c | 12 +++- 1 files changed, 3 insertions(+), 9 deletions(-) diff --git a/test/test-launcher.c b/test/test-launcher.c index 65a4cec..17f3c1e 100644 --- a/test/test-launcher.c +++ b/test/test-launcher.c @@ -25,6

[PATCH 3/5] Drop Xlib native code, use x11-xcb

2010-05-24 Thread Julien Danjou
Signed-off-by: Julien Danjou jul...@danjou.info --- configure.in |8 +- libsn/sn-common.c| 205 ++ libsn/sn-internals.h | 27 ++ libsn/sn-launchee.c |2 +- libsn/sn-launchee.h |2 +- libsn/sn-xmessages.c | 272