[Bug 1969273] Re: Doc pages are not displayed

2022-05-11 Thread Xavier Claessens
*** This bug is a duplicate of bug 1942951 *** https://bugs.launchpad.net/bugs/1942951 I think it's duplicate of https://bugs.launchpad.net/ubuntu/+source/webkit2gtk/+bug/1942951, the workaround proposed there worked for me. ** This bug has been marked a duplicate of bug 1942951 devhelp

[Bug 1970200] Re: devhelp showing just a white blank page

2022-05-11 Thread Xavier Claessens
*** This bug is a duplicate of bug 1942951 *** https://bugs.launchpad.net/bugs/1942951 I think it's duplicate of https://bugs.launchpad.net/ubuntu/+source/webkit2gtk/+bug/1942951, the workaround proposed there worked for me. ** This bug has been marked a duplicate of bug 1942951 devhelp

[Bug 1969273] [NEW] Doc pages are not displayed

2022-04-16 Thread Xavier Claessens
Public bug reported: None of the documentation pages gets displayed on Jammy. Probably an issue with WebKit. ** Affects: devhelp (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed

[Bug 1966418] Re: [jammy regression] webkit apps do not display content (yelp, epiphany, gnome-online-accounts etc)

2022-04-15 Thread Xavier Claessens
Evolution and Online Accounts seems fixed in Jammy now. However devhelp still cannot display documentation pages. Maybe unrelated issue? -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to epiphany-browser in Ubuntu.

[Bug 1860932] [NEW] Remove dependency on tracker

2020-01-26 Thread Xavier Claessens
Public bug reported: In Ubuntu 20.04, nautilus depends on tracker: Depends: tracker Depends: tracker-miner-fs Depends: tracker-extract Depends: libtracker-sparql-2.0-0 (>= 1.12.0) Tracker is known for using constantly the CPU, which not only degrade performance but also drain the

[Bug 1685747] Re: xchat-gnome crashed with SIGSEGV in gdk_wayland_display_get_selection

2017-11-10 Thread Xavier Claessens
Note that xchat-gnome works on X session, and with XWayland when started with: $ GDK_BACKEND=x11 xchat-gnome -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to xchat-gnome in Ubuntu. https://bugs.launchpad.net/bugs/1685747 Title:

[Bug 1495828] Re: xchat-gnome crashed with SIGFPE in gtk_xtext_check_ent_visibility()

2016-03-07 Thread Xavier Claessens
Randomly crash at startup with that same backtrace since Ubuntu 15.10. The problem is the xtext widget is not yet realized so xtext->fontsize is 0 and a div-by-0 happens. I didn't understand why the xtext widget is not yet realized when its parent GtkWindow is already realized and gets the

[Bug 296867]

2015-06-03 Thread Xavier Claessens
You probably want python2. Build just fine on ubuntu 15.04, it just has a warning for a deprecated gnutls function, but you can ignore that with --disable-Werror (or make a fix). sudo apt-get build-dep telepathy-gabble ./autogen.sh --disable-Werror make make install -- You received this bug

[Bug 296867]

2015-06-02 Thread Xavier Claessens
There are patches, there are review comments, and 55 subscribers to this bug. If only one of you could just work on it instead of complaining... -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to empathy in Ubuntu.

[Bug 296867]

2015-06-02 Thread Xavier Claessens
See comment #81 for the few items missing. As far as I'm concerned it can be merged if someone just fix those, and it's close to trivial to do IIRC. -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to empathy in Ubuntu.

[Bug 1461085] [NEW] GtkFileChooser should sort folders first

2015-06-02 Thread Xavier Claessens
Public bug reported: Upstream had the bad idea of not sorting folders first anymore in GTK 3.14. However they added an option later in commit 2aa3eea781ed21a02ecdf1e3c753a1ec5694d6c8. Since we cannot introduce new strings, ubuntu should revert the default in the 3.14 package. ** Affects: gtk+3.0

[Bug 296867]

2014-05-14 Thread Xavier Claessens
(In reply to comment #83) I did not manage to start an OTR session with this branch. The '/otr start' command was displaying OTR:$blob in empathy-chat. You need to set enable-otr=true in your CM parameters, otherwise OTR is disabled in Simon's branch. There is magic mc-tool command for that,

[Bug 296867]

2014-05-14 Thread Xavier Claessens
(In reply to comment #83) I did manage to start a session using Xavier's branch but noticed the following bug: - Start an OTR session between Empathy and Pidgin - In Pidgin using the OTR menu pick End private conversation - Try sending a message from Empathy. The message doesn't reach Pidgin

[Bug 296867]

2014-05-09 Thread Xavier Claessens
(In reply to comment #56) From a (very) quick look on the Gabble branch, it seems that all the channel messages are now sent through OTR (if built with it), even when it has not been activated. Is that really what we want? Yes, that's what pidgin-otr does as well. That's because all received

[Bug 296867]

2014-05-09 Thread Xavier Claessens
(In reply to comment #58) Just doing the spec right now: The extra DBus channel interface is implemented using GDBus so it needs to be exported on a different bus name. Ugh. Can we not do strange hacks like this, please? Either use the extensions mechanism, or save it for 1.0. I don't

[Bug 296867]

2014-05-09 Thread Xavier Claessens
(In reply to comment #60) (In reply to comment #50) Could we also get a config option that turns this whole feature on/off? I ask because some industries (like the one where I work) require that all electronic communications related to the business get recorded and reviewed by compliance

[Bug 296867]

2014-05-09 Thread Xavier Claessens
(In reply to comment #61) I would really like im-channel to implement o.fd.Telepathy.Securable - as a starting point we can have the two booleans not be requestable, and just have them set by the OTR code calling a new gabble_im_channel_indicate_security

[Bug 296867]

2014-05-09 Thread Xavier Claessens
(In reply to comment #62) Corner cases: What happens when we try to send a message and the channel is already TRUST_FINISHED? I think we should refuse, for the rest of the lifetime of that channel (until Close()), to avoid the security flaw where we send messages to a channel that just

[Bug 296867]

2014-05-09 Thread Xavier Claessens
(In reply to comment #71) It currently cannot go back to NOT_PRIVATE because I don't support ending the otr session, but could add a /otr end for that. pidgin can do that. Please don't. In Pidgin, maybe that feature is OK, because typically only one UI handles a window (Pidgin's D-Bus

[Bug 296867]

2014-05-09 Thread Xavier Claessens
VoilĂ , added commits to fix most of your comments. What's missing: 1) handle html, I'm not sure to understand what you mean or why it is that important... Maybe you can make the changes that you want? 2) Find a solution if we don't want the other end to be able to initiate an OTR session without

[Bug 296867]

2014-05-08 Thread Xavier Claessens
(In reply to comment #53) (In reply to comment #46) Empathy: http://cgit.collabora.com/git/user/xclaesse/empathy.git/log/?h=otr Ok for the first commit. Second commit: + tuple = empathy_gdbus_channel_interface_otr1_get_remote_fingerprint ( + priv-otr_proxy); I have no

[Bug 296867]

2014-05-07 Thread Xavier Claessens
(In reply to comment #51) The conversation won't be encrypted until you type /otr start or if the other side request a private conversation. So you should be fine AFAIK. Actually I was wrong, when both sides are OTR-aware, it initialize itself without an explicit user request. I changed the

[Bug 296867]

2014-05-04 Thread Xavier Claessens
The conversation won't be encrypted until you type /otr start or if the other side request a private conversation. So you should be fine AFAIK. -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to empathy in Ubuntu.

[Bug 296867]

2014-05-03 Thread Xavier Claessens
Here it is! It is limited to XMPP, and empathy has only rudimentary UI. To start an OTR session, in empathy chat window, type /otr start. Type /help otr to see other supported otr actions. There is no graphical UI atm. Notably, to authenticate the other end, you need to verify its fingerprint by

[Bug 1108637] Re: backspace key no longer works in nautilus

2014-01-28 Thread Xavier Claessens
Now that ubuntu restored type-ahead, I think backspace can be restored as well. ** Patch added: 0001-Restore-backspace-for-going-to-parent-folder.patch

[Bug 1241109] Re: evolution is no longer translated

2013-10-29 Thread Xavier Claessens
*** This bug is a duplicate of bug 1238521 *** https://bugs.launchpad.net/bugs/1238521 ** This bug has been marked a duplicate of bug 1238521 Evolution is not localized in Ubuntu 13.10 -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is

[Bug 1235933] Re: Evolution not translated to French

2013-10-29 Thread Xavier Claessens
*** This bug is a duplicate of bug 1238521 *** https://bugs.launchpad.net/bugs/1238521 ** This bug is no longer a duplicate of bug 1241109 evolution is no longer translated ** This bug has been marked a duplicate of bug 1238521 Evolution is not localized in Ubuntu 13.10 -- You

[Bug 1232184] Re: UOA google account does not appear in evolution after upgrade

2013-09-29 Thread Xavier Claessens
Actually even adding a new gmail account directly in evolution does not work. And I tried in a guest account it won't work neither. -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to evolution-data-server in Ubuntu.

[Bug 1232184] [NEW] UOA google account does not appear in evolution after upgrade

2013-09-27 Thread Xavier Claessens
Public bug reported: I upgraded from raring to saucy, and my google account configured in Online Accounts does not show up in evolution anymore. I still see the Evolution Data Server services on my google account in gnome-control- center though. ProblemType: Bug DistroRelease: Ubuntu 13.10

[Bug 1079694] Re: 3.6.1 stable update, fix ctrl-C copy

2013-01-10 Thread Xavier Claessens
Those packages works perfectly here. Thanks. ** Tags removed: verification-needed ** Tags added: verification-done -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to devhelp in Ubuntu. https://bugs.launchpad.net/bugs/1079694 Title:

[Bug 1079667] [NEW] Notifications keep poping when I've read them

2012-11-16 Thread Xavier Claessens
Public bug reported: I'm using bip proxy to stay online on IRC even when I'm offline. When I start xchat-gnome, I receive all my backlogs. Each private message or messages where I'm highlighted makes a popup. So if I had like 20 private messages (It's common with nickserv, or someone pasting long

[Bug 1070377] Re: Empathy change to Online Accounts no longer supports SIPE

2012-11-12 Thread Xavier Claessens
UOA supports and hardcoded list of protocols. If we want to add some, just edit http://git.gnome.org/browse/empathy/tree/ubuntu-online- accounts/cc-plugins/generate-plugins.py. I'm not sure why SIPE is not there, maybe we wanted to avoid duplicated SIP support? -- You received this bug

[Bug 1070377] Re: Empathy change to Online Accounts no longer supports SIPE

2012-11-12 Thread Xavier Claessens
Actually we don't support any external libpurple plugins, that's the reason why it won't work. -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to empathy in Ubuntu. https://bugs.launchpad.net/bugs/1070377 Title: Empathy change to

[Bug 808499] Re: evince crashed with SIGSEGV in g_closure_invoke()

2012-10-15 Thread Xavier Claessens
I don't see any icon in the toolbar that are still in buttons window. I can add/remove buttons without any crash. Can you still reproduce with evince 3.6.0 (ubuntu 12.10)? -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to evince in

[Bug 1017463]

2012-06-28 Thread Xavier Claessens
Here is a fix in tp-glib: http://cgit.collabora.com/git/user/xclaesse/telepathy-glib.git/log/?h=empathy-chat -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to empathy in Ubuntu. https://bugs.launchpad.net/bugs/1017463 Title:

[Bug 828751] Re: [FFE] update pygobject to 2.90.1

2011-08-18 Thread Xavier Claessens
Notice that some new telepathy-glib API gives segfault with previous pygobject. Fixed in 2.90.1. -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to pygobject in Ubuntu. https://bugs.launchpad.net/bugs/828751 Title: [FFE] update

[Bug 780747] Re: Window does not always close when running gnome-shell

2011-07-29 Thread Xavier Claessens
Note taht when you can't close it, if you go to overview rb window is not shown. Empathy had similar issue, the problem is the use of gtk_window_iconify() that should be replaced with gtk_widget_hide(). -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which

[Bug 780747] Re: Window does not always close when running gnome-shell

2011-07-29 Thread Xavier Claessens
I rb_shell_set_visibility() is dead code in upstream. That function does lots of hacks to inconify the window, but a plain gtk_widget_hide() works much better. ** Patch added: modified ubuntu patch

[Bug 780747] Re: Window does not always close when running gnome-shell

2011-07-29 Thread Xavier Claessens
oh, and also fixed a leak: g_object_get() returns a ref ! -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to rhythmbox in Ubuntu. https://bugs.launchpad.net/bugs/780747 Title: Window does not always close when running gnome-shell To

[Bug 531835] Re: Fonts are very small

2010-06-22 Thread Xavier Claessens
Note that empathy uses the application font as fallback for adium themes, not the document font. There is an upstream bug for this with a patch: https://bugzilla.gnome.org/show_bug.cgi?id=622266 ** Bug watch added: GNOME Bug Tracker #622266 https://bugzilla.gnome.org/show_bug.cgi?id=622266 --

[Bug 181647] Re: fade when logging out doesn't work properly with metacity compositor

2008-02-18 Thread Xavier Claessens
Bug fixed for me, I can't reproduce anymore. -- fade when logging out doesn't work properly with metacity compositor https://bugs.launchpad.net/bugs/181647 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is a bug assignee. -- desktop-bugs mailing list

[Bug 77278] warning using gkeyfile caused by ubuntu patch

2007-01-03 Thread Xavier Claessens
Public bug reported: Bug from upstream: http://bugzilla.gnome.org/show_bug.cgi?id=388072 ** Affects: glib2.0 (Ubuntu) Importance: Undecided Status: Unconfirmed -- warning using gkeyfile caused by ubuntu patch https://launchpad.net/bugs/77278 -- desktop-bugs mailing list

[Bug 58114] image doesn't appear in bubbles

2006-08-29 Thread Xavier Claessens
Public bug reported: Binary package hint: notification-daemon When I set an image to my bubble using stock-icon or pixbuf it doesn't appear on the bubble. Using URI works. See tests/test-image.c (in libnotify source) to reproduice this bug. I tested with dbus 0.60 from dapper and it works.

[Bug 54162] Crash when DnD bookmarks in places sidebar

2006-07-26 Thread Xavier Claessens
Public bug reported: Binary package hint: nautilus Here is the call stack: #0 0xb7715ea0 in g_type_check_instance_cast () from /usr/lib/libgobject-2.0.so.0 #1 0x080834e3 in add_place (sidebar=0x8405e88, place_type=value optimized out, name=0xb6d42597 Documents, icon=0x813219d

[Bug 45236] Re: Can not unload XChat-GNOME remote access plugin

2006-07-20 Thread Xavier Claessens
D-Bus plugin is now static linked into xchat and doesn't appear anymore in plugin list. This bug will be fixed when xchat-gnome sync with xchat. -- Can not unload XChat-GNOME remote access plugin https://launchpad.net/bugs/45236 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com

[Bug 45236] Re: Can not unload XChat-GNOME remote access plugin

2006-05-29 Thread Xavier Claessens
I see 2 solutions: 1) Recode the plugin using low level dbus. As I understand everyone does that to avoid glib problems. 2) Link the plugin statically so it can't be unloaded. I'll try to see what I can do after my exams... -- Can not unload XChat-GNOME remote access plugin

[Bug 35211] Re: gnome-screensaver not started in session

2006-05-08 Thread Xavier Claessens
I can't reproduce now because when I hit ctr-alt-backspace X doesn't restart anymore, I stay in text-mode console and has to run sudo /etc/init.d/gdm restart. Then gnome-screensaver is started. Some times ago (when X restarted after killing him) I was able to reproduce the bug, but i not

[Bug 40369] Re: no icon found

2006-04-21 Thread Xavier Claessens
It's strange ! I ran your command and nothing seems to happen, I got no icon. I kill gnome-panel to be sure the icons are refreshed and I got the message that says the file xchat-gnome.png is missing... So was writing a repley here, just before sending it I check again and I see that the icon

[Bug 40369] no icon found

2006-04-20 Thread Xavier Claessens
Public bug reported: Affects: xchat-gnome (Ubuntu) Severity: Normal Priority: (none set) Status: Unconfirmed Description: xchat-gnome.png is not found when using icon theme different that tangerine or human which has his own icon for xchat-gnome. I just installed dapper

[Bug 36147] switch user doesn't works properly after locking the screen

2006-03-23 Thread Xavier Claessens
Public bug reported: https://launchpad.net/malone/bugs/36147 Affects: gnome-screensaver (Ubuntu) Severity: Normal Priority: (none set) Status: Unconfirmed Description: I lock the screen, gnome-screensaver starts and I choose to switch user. Gnome-screensaver displays a

[Bug 36150] problem when connecting an USB-key when 2 users are logged

2006-03-23 Thread Xavier Claessens
Public bug reported: https://launchpad.net/malone/bugs/36150 Affects: gnome-volume-manager (Ubuntu) Severity: Normal Priority: (none set) Status: Unconfirmed Description: After login with another user (lock the screen - switch user or logout-switch user), I connect my

[Bug 36147] switch user doesn't works properly after locking the screen

2006-03-23 Thread Xavier Claessens
Public bug report changed: https://launchpad.net/malone/bugs/36147 Description changed to: I lock the screen, gnome-screensaver starts and I choose to switch user. Gnome-screensaver displays a list of users. I select one user and ask to switch, GDM starts and ask me again witch user I

[Bug 36147] switch user doesn't works properly after locking the screen

2006-03-23 Thread Xavier Claessens
Public bug report changed: https://launchpad.net/malone/bugs/36147 Comment: second bug posted there: https://launchpad.net/distros/ubuntu/+source /gnome-volume-manager/+bug/36150 sorry. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com

[Bug 33766] Volumes icons don't show up

2006-03-14 Thread Xavier Claessens
Public bug report changed: https://launchpad.net/malone/bugs/33766 Comment: gnomevfs-2.14.0 seems to solve the problem. But there is still some naming problems. One of my partitions are named /media/test (his mount-point) and the other is named Volume 37,3 Go (his capacity). -- desktop-bugs