=== philwyett_ is now known as philwyett [09:41] morning everyone [09:41] plop seb128 [09:41] lut huats [09:41] seb128: a couple of bugs-of-the-day [09:41] telepathy-butterfly doesn't actually pass messages in either direction [09:42] evolution randomly sorts folders (since moving to sqlite, I've seen this) [09:42] Keybuk: randomly? it uses alphabetic order in a consistent way for me [09:42] seb128: the "default" sort order used to be imap order [09:42] which was arrival [09:43] now if you don't click any header, and use the default, they're basically random [09:43] ah you mean "randomly sort the message in a folder" [09:43] not the folders on the server [09:44] right, the messages in a folder [09:45] I would say that's not a bug [09:45] err? [09:45] it's a change in behaviour [09:45] the bug is rather than no sorting is selected by default [09:45] then what is this default sort _for_? [09:45] just about every mail client I've ever seen has a useful default sort order [09:45] evo had until last release [09:46] I agree with you, in fact I didn't notice because all my boxes sorted by date for ages [09:46] sorted by date sorts by the date header though [09:47] which is not the same as arrival time [09:47] if I sort by date, and someone's mail takes a day to arrive, it may appear above the end of the inbox [09:47] sorting by arrival (which was the previous behaviour) means it's always at the end [09:56] Keybuk: it seems to be still sorting by arrival for me [09:58] scroll up? [09:58] I wiped my summary db and it still came back in random order [09:58] and checking the imap server, that's in expected order [10:04] seb128: https://chinstrap.ubuntu.com/~scott/wrongsort.png [10:17] hum [10:48] Keybuk: thanks for pointing the maintener change :) [10:53] huats: :-) not having a go, it's just a habit we're trying to rid everyone of [10:53] I understand :) [10:54] that is why I thank you (to help me to get the right habits) [10:54] :) === Ng_ is now known as Ng [13:01] seb128: I think Recommends is a bit strong [13:01] seb128: I'd rather suggest it and make sure we pull it by matters of meta packages [13:02] lool: that's basically the case now [13:02] seb128: it is via gio only? [13:04] lool: yes [13:05] I don't think the symbols deps allow that, but it would be nice to only pull shared-mime-info when the apps use the symbols related to mime types [13:05] But for the general case, it's a bit too heavy to pull shared-mime-info for all glib use cases [13:06] Why do I get different startup music on different systems? [13:06] lool: ok, so you would add recommends on shared-mime-info to every application using gio to do something using mimetype for example [13:07] davmor2: because you configured it differently? [13:08] seb128: Yes; shared-mime-info itself isn't too small and pulls libxml2 which recommends xml-core which depends sgml-base [13:08] seb128: No default install out of the box the all intel machine plays the old version and on my nvidia hw I get a new version which version should play on both installs? [13:08] I'd expect libxml2 to end up on most systems, but less so shared-mime-info [13:09] lool: bah, I don't like that, having to figure what application use gio and add recommends on the same things all over the places for applications which don't use it but need it through gio looks suboptimal [13:09] davmor2: no clue about that, ask on #ubuntu-devel to themuso rather [13:09] seb128: it's like gvfs [13:10] what gvfs recommends is lacking? [13:10] seb128: All applications using gio benefit from gvfs [13:10] well, benefit, they work without it [13:10] Someone could bug you that http://balh.pdf doesn't work in evince [13:11] evince doesn't work without shared-mime-info [13:11] it doesn't open a pdf since it doesn't detect the correct mimetype [13:11] so it's useless [13:11] Yeah, it's worse with evince, it really needs the mime type check to succeed [13:11] In fact I wonder whether it should try to parse application/octet-stream [13:12] sudo apt-get install evince should give you something which is working [13:12] and it doesn't right now [13:12] I would argue that's rc for debian ;-) [13:13] I agree it needs to be fixed one way or the other, I just disagree with making a lib pull optional data which helps detecting mime type when it's 1% of it's abi [13:14] that's either that or we need to add recommends on shared-mime-info all over the place for things which don't need it directly [13:14] and that's what recommends are for, installing extra things which should be there on standard installations [13:14] people who really need minimal system can turn off recommends install [13:15] anyway that's somewhat a corner case on ubuntu since shared-mime-info should be installed for almost everybody, I'll not spend too much energy on that [13:15] I'll add an evince recommends on shared-mime-info in the next upload to close this bug [13:16] Actually, I'd say this could be argued to be an evince bug; it's not only glib related [13:16] it also checks MIME types supported by gdk-pixbufs [13:17] well, my point is that the gio api to detect mimetypes etc is useless without shared-mime-info [13:17] so glib is somewhat not totally functional in its standard debian installation [13:18] It's returning a valid mime type, just not the best one [13:18] I would not call that a mimetype [13:18] seb128: I think evince is actually buggy here [13:19] It should use file name information when the mime type is octet-stream [13:19] it returns application/octet-stream which you don't need gio to set [13:19] It has code to handle this case [13:19] right, but still an orthogonal issue imho [13:19] mime_type = slow ? [13:19] get_mime_type_from_data (uri) : [13:19] get_mime_type_from_uri (uri); [13:19] but it seems we will disagree on that [13:20] for me an api which is supposed to give you a mimetype and always return applications/octet-stream because the data used are not installed is not totally functional [13:23] seb128: glib can tell evince whether the result is certain or not (result_uncertain param); evince chooses not to use it [13:23] It also calls g_content_type_guess() without filename explicitely [13:24] lool: I don't disagree evince could to a better job but as said that's orthogonal [13:24] seb128: Well it's very close to the gvfs example [13:25] I would expect the mimetype informations to be available when glib is installed to the gio api can be correctly used out of the box [13:25] not really, gvfs is like having a sound server, it's rather an environment thing [13:25] it'll give you extra possibilities === pedro__ is now known as pedro_ [13:26] I would expect an api which returns a mimetype when you give it a filename to return a correct mimetype though [13:26] not to return a boggus one just because the mimetypes database is not installed, which is something probably not obvious for users who will run into the issue [13:26] The gio API can be used out of the box; it just wont support any MIME type data unless you install some [13:27] right but it'll return bogus results [13:27] Not really, it will tell you the results are bogus [13:27] and yes I consider application/octet-stream bogus when I ask a jpg mimetype [13:28] well, that will not tell the user why and what he has to do to fix that though [13:29] I'm not saying shared-mime-info is essential and should be a depends [13:29] but I think users will expect those informations to be available and that's what recommends are for usually [13:30] seb128: evince could well work without the info [13:30] yes, not discussing that [13:30] So what other use case in the archive to we have? [13:31] but as a library client, when writting "python -c "import gio; print gio.content_type_guess('example.pdf')"" I would expect the result to be application/pdf there [13:31] I'm taking the usecase "I'm a hacker and install libglib2.0-dev to hack on a software and I'm using debian" [13:32] and I expect the lib to work in full possibility and not in fallback mode because some database I don't know about didn't get installed [13:33] seb128: I see the argument, but we tend to be overzealous with dependencies creating heavy dep trees [13:34] We're talking about a fractional part of the API which is saying that it's not working to its best [13:36] I'd be ok to have it as a Recommends or even Depends in the packages using this API, but I don't think that's possible with symbols right now [13:36] If we add it as a Recommends, everybody pays the price [13:37] ok, I would tend to think that having things working at their best is what recommends are about [13:37] well, honestly on a modern box you want shared-mime-info installed, people who have such space constrains that they don't want it should probably not install recommends [13:39] seb128: We should perhaps bring it up with upstream: should we push people into having this API working out of the box? [13:42] lool: I doubt upstream will recommend having their API not working correctly out of the box and they will probably tell that's a distributor choice [13:42] anyway that's a detail let's not spend hours on it [13:42] thanks for your opinion on that [13:42] I'll open an evince bug upstream and add the recommends there for now [13:43] libglib2.0-0 is quite a central lib nowadays, i'm reluctant to add desktop-ish recommends to it :-/ [13:45] seb128: I just ran germinate, this would effectively pull shared-mime-info into minimal [13:46] shared-mime-info is in desktop, supported-misc-servers [13:47] libglib2.0-0 is in supported, minimal [13:49] seb128: That's quite a promotion, it would be added in virtual chroots and server installs [13:51] right [13:51] screw non GNOME users they deserve the bugs ;-) [13:52] anyway as said before that's a small issue === davmor2 is now known as davmor2_lunch [13:59] seb128: I'm actually fighting /for/ non-GNOME users :) [14:03] seb128: Turns out it might be possible to do it with symbols === thunderstruck is now known as gnomefreak [14:18] seb128: bug #276728 looks like its partly a problem with gvfs (the fact that it thinks that there is a autorun part on the CD. what bit of gnome is reposnible for that? [14:18] Launchpad bug 276728 in ubuntu "Edubuntu add-on autorun fails to load" [Medium,Triaged] https://launchpad.net/bugs/276728 === davmor2_lunch is now known as davmor2 [14:41] mvo: nautilus [14:42] mvo: src/nautilus-autorun-software.c autorun() I would say [14:43] mvo: similar to http://bugzilla.gnome.org/show_bug.cgi?id=524270? [14:43] Gnome bug 524270 in GIO "handle autorun.exe and autorun.inf on media" [Enhancement,New] === thunderstruck is now known as gnomefreak === thunderstruck is now known as gnomefreak [15:21] seb128: I tried to add the deps to some functions, but the dependency tree of the funcs is crazy [15:21] Because the way gfile is done, you can request content-type or not, it's just a flag [15:21] So it's not possible to tell whether apps using the symbol are interested in the content-type or not [15:22] lool: ok, don't bother as said that's a detail and probably not worth the efforts [15:22] And if I only add the dep for low level funcs, I'll have to add special machinery for glib itself which calls the functions, and wont cover all use cases [15:22] So I could add the dep for the low level plumbing, but we'd have to handle it manually for the other cases, so I'd recommend adding it to the apps [15:23] alright [15:24] But technically, we could add the dep for content_type_guess [15:24] That would be possible [15:25] that's probably not worth it, you convinced me, applications should allow that nicely === thunders1ruck is now known as gnomefreak [16:19] everybody there do you think we should use the ubuntu-desktop (restricted) or desktop-bugs (open) bzr to store the list of desktop packages (names, serie for update, usual updater)? === thunderstruck is now known as gnomefreak === asac_ is now known as asac [16:57] hello seb128 [17:36] is there any network monitoring in gvfs? I'm thinking of situations where you have a connection to an sftp server and change your network [17:36] in hardy it thinks the share is still mounted, it just doesn't work [17:37] we're using the sftp gvfs stuff really quite a bit now with our least technical users and there's a bunch of corner cases we have to train them to handle, such as that [17:40] (suggestions for a better way to have secure file sharing over the internet would be most welcome) [17:59] Ng: sshfs fuse mounts time out after a few minutes if they're not available. Does gvfs not do that? [18:00] johanbr: I can't give a definitive answer to that, but my impression is not [18:04] Ng: So maybe sshfs would work better for you? [18:12] johanbr: possibly, I am rather keen to try and keep things within the confines of the GUI though, since this is very specifically for non-technical users [18:13] Ng: Put an icon on the desktop that runs a script to mount/unmount the share. [18:25] johanbr: that would just about do, yeah :) [18:25] johanbr: actually it would be nice if there was a real file sharing protocol suitable for use over the internets, but there isn't afaics [18:25] sshfs/sftp seem to have issues when it comes to stuff like locking [18:26] If you're looking for something more full-featured, afs works nicely. [18:26] Even if it's a bit of a pain to set up. [18:30] gvfs does time out it just doesn't close the link on the desktop (i.e. there is still an icon saying it is linked) === njpatel is now known as njpatel_away [18:34] Who has the power to confirm bugs on GNOME bugzilla? Some special class of triager? [18:42] Laney: you need triager powers [18:42] * Laney nods [18:43] Laney: moreover the difference between unconfirmed and new isn't that huge in gnome bugzilla [18:43] pedro_: Do developers tend to ignore unconfirmed bugs? I reported one which has since been confirmed several times over but it's still in the UNCONFIRMED state [18:43] no they don't [18:43] ok [19:40] where is seb128 when I need him? :-) [20:29] vuntz: I have its phone number if you really want to contact him [20:29] :) [20:32] vuntz: bathing, sort of. [20:33] ehrm. I have no idea in which window he said that... === mvo_ is now known as mvo [21:27] tedg: g-p-m is acting funny on me: http://people.ubuntu.com/~mvo/tmp/g-p-m.png [21:27] (note the output of acpi below) [21:33] mvo: iz estimate damnit :-P [21:33] heh :) [21:34] and a good one too! it even has a "," in it, always a sign of precision :P [21:35] hehe [21:43] mvo: Have you updated to the latest package, that should have been fixed in the update. [21:44] tedg: I think I'm at ubuntu2 instead of ubuntu3 [21:44] * mvo updates now [21:45] mvo: See, you're a day behind. james_w was complaining about that yesterday ;) [21:45] ha! its just because I'm sick today (and yesterday) - that makes me slow :)