**** BEGIN LOGGING AT Wed May 17 03:00:04 2017 May 17 10:34:16 i could have sworn that i could join xmpp MUC's from Conversations in Maemo. I can't right now. Anyone with an idea? May 17 10:44:58 Anyone located in Perth, Australia? There an N9 for for sale that is only pick-up. If you don't want it, you can buy it for me :P May 17 10:47:45 Pick-up only https://www.gumtree.com.au/s-ad/1148206981 May 17 11:02:30 sicelo: iirc that works May 17 11:02:40 I mean, I had it work a few months ago May 17 11:03:17 but iirc you need to restart messaging ui after enabling IM account, if none was enabled before May 17 11:16:10 ah, maybe that's what i need to do May 17 11:16:36 i have also used it before, so was very surprised to find it not working now May 17 11:16:42 let's see May 17 11:22:36 thanks bencoh. "Join Chatroom" has magically appeared now :)p May 17 11:26:34 sicelo: :) May 17 15:36:29 freemangordon Ping - sorry for disturbing, but I'd need some advice. May 17 16:04:19 (Of course, if anybody may help me with my previous question, they are welcome.) I will report the question: May 17 16:04:21 I explored a bit the gtk+ repository, and freemangordon's. In the former, there is indeed a debian/ directory. Some files seem to be replaced by the debian/ dir in the other repository. But what for the others? And, in order to build, may I use the autogen.sh? I am a bit confused. May 17 19:20:36 Enrico_Menotti: in theory, you should download original gtk source tarball, extract it and then clone debian/ folder from gtk2 github repo May 17 19:20:59 or, you may do apt-get source gtk and then replace /debian with the one from gtk2 repo May 17 19:21:07 both should give you the same result May 17 19:21:32 building is done in the ordinary way - with dpkg-buildpackage May 17 19:24:22 KotCzarny: ping May 17 19:25:35 pong? May 17 19:26:28 freemangordon Thank you for the indications. I have two questions. First, I see in the debian/ folder in the original gtk there are files which are not included in your debian/ folder (e.g., the build file). Should I completely replace the original folder, or merge the two? May 17 19:26:30 KotCzarny: seems you know a bit of gtk. I have a problem with hildonfileselector May 17 19:26:39 it implements gtktreemodel May 17 19:26:59 treemodels are a lot like xml May 17 19:27:14 with data/view models independent May 17 19:27:28 the problem is - when a row is deleted, it doesn't switch automatically to the parent row May 17 19:27:53 is there some event associated with row deletion? May 17 19:28:01 instead it continues to show the current row (or node, or...) ... May 17 19:28:03 lemme check May 17 19:28:36 freemangordon Second, I made a build of ordinary gtk by running ./autogen.sh, as described in the HACKING file. Is it possible to use the same procedure with your fork? How that differs from dpkg-buildpackage? May 17 19:29:40 Enrico_Menotti: just a second May 17 19:30:17 freemangordon KotCzarny I didn't want to interrupt your conversation, sorry. I'm not in a hurry - I can wait. May 17 19:30:39 If you add or remove rows, the model will also notify the store May 17 19:30:45 KotCzarny: see https://github.com/fremantle-gtk2/libhildonfm/blob/gtk2/hildon-fm/hildon-file-system-model.c#L2063 May 17 19:30:58 * Enrico_Menotti doing Special Relativity... :) May 17 19:31:01 this is the function called to remove a "location" May 17 19:31:16 I see gtk_tree_model_row_deleted called here May 17 19:31:33 but it doesn;t seem to change the view May 17 19:32:41 maybe this one? hildon_file_system_model_send_has_child_toggled() May 17 19:32:55 KotCzarny: IOW - I have a mounted CD, then click on it (so to enter it's root), then unmount it - row gets deleted. But, instead of going to "File System", it still shows an empty CD root May 17 19:33:05 * freemangordon checks May 17 19:34:26 it calls p, li { white-space: pre-wrap; } gtk_tree_model_row_has_child_toggled, which I can;t really grok what is supposed to do May 17 19:35:30 http://artax.karlin.mff.cuni.cz/r-help/library/RGtk2/html/gtkTreeModelRowHasChildToggled.html May 17 19:36:28 I said I can't grok what it does, not that I can;t find the documentation :) May 17 19:36:36 ok, it emits ,so what May 17 19:36:54 then lets see what that signal means, what reacts to it May 17 19:45:36 oh, it's written right there. on tree model May 17 19:46:42 hmm? May 17 19:47:49 KotCzarny: it seems the problem has something to do with hildon_file_selection_row_deleted May 17 19:51:11 oh, I think I found the problem May 17 19:51:53 or not :( May 17 19:57:44 if you just want to change active element, maybe just add workaround by a check if node is still valid and if not to go to parent or next/prev May 17 19:58:40 oh, it is the check May 17 19:59:06 i think hildon_file_system_model_send_has_child_toggled should toggle that parent May 17 21:17:14 Enrico_Menotti: I doubt "original" gtk has debian folder May 17 21:18:09 however, you should use dpkg-buildpackage, as it passes various things to ./configure script May 17 21:18:15 https://git.gnome.org/browse/gtk+/tree/debian?h=gtk-2-24 May 17 21:18:59 hmm, weird May 17 21:19:22 Also ./autogen.sh passes things to the configure script - more than this, the configure does not even exist. It is *created* and executed by autogen.sh. (If I'm not wrong.) May 17 21:19:38 See https://git.gnome.org/browse/gtk+/tree/HACKING?h=gtk-2-24. May 17 21:20:18 Enrico_Menotti: there is no debian folder in gtk+2.0_2.24.25.orig.tar.xz May 17 21:21:21 Sorry, where did you get it? I used git to clone the gnome repository. May 17 21:21:58 with apt-get source May 17 21:22:05 Ah. May 17 21:22:08 but indeed, it should not be like that May 17 21:22:32 The Debian folder, the autogen.sh, or both? May 17 21:23:09 the debian folder May 17 21:25:09 Enrico_Menotti: also, there is no autogen.sh in that archive May 17 21:25:13 weird May 17 21:26:05 So what's the "right" way? May 17 21:27:15 well, do apt-get source and then replace debian folder with the one from gtk2 repo May 17 21:27:36 Ok, and then dpkg-buildpackage, right? May 17 21:27:42 then do dpkg-buildpackage -rfakeroot -b (unless you need the source package) May 17 21:27:45 right May 17 21:29:29 Ok, tomorrow I'll investigate all the details of dpkg-buildpackage. I also have to take care of apt-get sourcing the right version of gtk, right? May 17 21:32:45 no, it will download the lates May 17 21:32:49 *latest May 17 21:39:24 I mean downloading gtk2 and not gtk3. **** ENDING LOGGING AT Thu May 18 03:00:02 2017