[01:08] fake ([email protected]) got netsplit.
[01:10] fake ([email protected]) returned to #rocklinux.
[01:10] kasc_ ([email protected]) joined #rocklinux.
[01:17] kasc ([email protected]) left irc: Read error: 110 (Connection timed out)
[01:17] Nick change: kasc_ -> kasc
[02:01] _Ragnar_ ([email protected]) got netsplit.
[02:01] mnemoc ([email protected]) got netsplit.
[02:01] clifford ([email protected]) got netsplit.
[02:01] ija (i=[[email protected]) got netsplit.
[02:01] th ([email protected]) got netsplit.
[02:01] netrunner ([email protected]) got netsplit.
[02:01] toberkel ([email protected]) got netsplit.
[02:01] netrunner ([email protected]) returned to #rocklinux.
[02:01] mnemoc ([email protected]) returned to #rocklinux.
[02:01] toberkel ([email protected]) returned to #rocklinux.
[02:01] ija (i=[[email protected]) returned to #rocklinux.
[02:01] clifford ([email protected]) returned to #rocklinux.
[02:01] _Ragnar_ ([email protected]) returned to #rocklinux.
[02:01] th ([email protected]) returned to #rocklinux.
[05:42] fake ([email protected]) got netsplit.
[05:42] fake ([email protected]) returned to #rocklinux.
[07:38] [anders] ([email protected]) joined #rocklinux.
[08:28] Action: [raphael] is back
[10:15] [anders-mcafee] ([email protected]) left irc: "Mesen orrrf..."
[10:26] [anders-mcafee] ([email protected]) joined #rocklinux.
[10:59] menomc ([email protected]) joined #rocklinux.
[11:00] mnemoc ([email protected]) left irc: Nick collision from services.
[11:02] Nick change: menomc -> mnemoc
[12:21] [anders-mcafee] ([email protected]) left irc: Read error: 104 (Connection reset by peer)
[12:24] [anders-mcafee] ([email protected]) joined #rocklinux.
[12:46] <blindcoder> okay, I'm fresh out of ideas where else to submit the LVP update
[12:46] <blindcoder> freshmeat, osnews, pro-linux.de
[12:50] <[raphael]> linuxcommunity.de ?
[12:50] <blindcoder> *click* never heard that before
[12:50] <blindcoder> urgs
[12:50] <blindcoder> that layout is... it _has_ room for improvement
[12:51] <[raphael]> blindcoder: possible :)  I actually never visit this site
[12:51] <blindcoder> heh
[12:52] <[raphael]> although there might be some interesting stuff there every now and then
[12:52] <blindcoder> well, I can't actually get a grasp of that sites navigation
[12:52] <blindcoder> and having to scroll sideways doesn't help at all
[12:52] <clifford> [raphael]: hi! may I ask you a KDE question?
[12:52] <[raphael]> clifford: sure, I hope I can help :)
[12:53] <[raphael]> clifford: by the way, how was your SPL birthday party?
[12:53] <clifford> svn.clifford.at/spl/trunk/qtdemo/qtdemo006.spl
[12:53] <clifford> .. the KHTMLPart doesn't do anything if I click on a link. why?
[12:54] <blindcoder> hmm, the new xorg/gcc40.patch looks good ^^
[12:55] <[raphael]> clifford: I'll check that and get back to you
[12:55] <clifford> cool!
[13:22] markuman ([email protected]) joined #rocklinux.
[13:32] markuman ([email protected]) left irc: "https://www.linwiki.org - wiki around os linux!! #linwiki"
[13:33] <[raphael]> clifford: ping
[13:33] <clifford> pong
[13:34] <[raphael]> I don't have SMOKE installed - so no qt-binding for SPL, gotta fix that at some time ;)
[13:34] <[raphael]> but anyway, I created a small khtml app myself just now
[13:34] <[raphael]> in C++
[13:34] <[raphael]> clifford: so, can you try to create the KHTMLPart without a parent?
[13:34] <[raphael]> Then resize it to some size and show it?
[13:35] <[raphael]> like:
[13:35] <[raphael]> KHTMLPart* browser = new KHTMLPart();
[13:35] <[raphael]>     browser->openURL(KURL("www.clifford.at"));
[13:35] <[raphael]>     browser->view()->resize(800,600);
[13:35] <[raphael]>     browser->show();
[13:35] <clifford> [raphael]: this is the example code from the KDE doc.
[13:35] <[raphael]> (yes, you have just ".")
[13:35] <[raphael]> right
[13:35] <[raphael]> it works here with C++
[13:35] <clifford> that's what I have done in the first place - same behavior.
[13:35] <[raphael]> I cannot test qt right now because I'm missing the smoke library
[13:36] <[raphael]> uhm... lets see
[13:36] <clifford> and I was unable to declare a KHTMLPart as Topwidget
[13:36] <clifford> i.e.:
[13:36] <[raphael]> can you put that win.show(); and kapp.setMainWidget(win); before calling the openURL
[13:36] <clifford> when I did close the browser window the application did not terminate
[13:37] <[raphael]> oh, really?
[13:37] _BoS_ ([email protected]) left irc: Remote closed the connection
[13:37] _BoS_ ([email protected]) joined #rocklinux.
[13:37] <[raphael]> KHTMLPart* browser = new KHTMLPart();
[13:37] <[raphael]>     browser->openURL(KURL("www.clifford.at"));
[13:37] <[raphael]>     browser->view()->resize(800,600);
[13:37] <[raphael]>     browser->show();
[13:37] <[raphael]> KHTMLPart* browser = new KHTMLPart();
[13:37] <[raphael]>     browser->openURL(KURL("www.clifford.at"));
[13:37] <[raphael]>     browser->view()->resize(800,600);
[13:37] <[raphael]>     browser->show();
[13:38] <[raphael]> can you comment out the qt_signal_callback for now
[13:38] <clifford> yup. so I put in in a VBox. (the ComboBox is there to fake a reason for the combobox ;-)
[13:38] Action: [raphael] is sorry for pressing ctrl+v twice
[13:38] <[raphael]> right, maybe also remove the combobox for now
[13:39] <[raphael]> just the vbox and the khtmlpart
[13:39] <[raphael]> ... would be sth like:
[13:39] <[raphael]> var win = new qt.QVBox();
[13:39] <[raphael]> win.resize(800, 600);
[13:39] <[raphael]> win.show();
[13:39] <[raphael]> kapp.setMainWidget(win);
[13:39] <[raphael]> var browser = new qt.KHTMLPart(win);
[13:39] <[raphael]> browser.openURL(new qt.KURL("www.clifford.at/spl/"));
[13:43] <[raphael]> clifford: You have to browser.show()
[13:43] <clifford> [raphael]: don't use www.clifford.at, try it with https://doc.trolltech.com/ instead
[13:44] <[raphael]> clifford: you explicitly have to browser.show(); only win.show(); is not enough
[13:44] <clifford> it seams like it works when threre is a target="" specified.
[13:44] <[raphael]> ... https://doc.trolltech.com works as well
[13:45] <clifford> www.clifford.at/priv/demo.spl  .. that's what I'm using right now for testing.
[13:46] <clifford> the links get highlighted when I click on them but nothing happens
[13:46] <clifford> and closing the window does not terminate the application
[13:48] <[raphael]> clifford: a question is also whether new qt.KURL() creates a pointer(?)
[13:48] <[raphael]> because openURL actually wants a reference to a KURL object
[13:50] <[raphael]> but it's really strange if your application doesn't get closed when you close the qt.VBox ...
[13:50] Action: [raphael] better installs kdebindings some day
[13:50] <clifford> well - at least openURL works fine. Threre seams to be no problem with that..
[13:51] <[raphael]> clifford: does it show you the webpage?
[13:51] <clifford> yes. clicking on the links in the webpage does not open them.
[13:52] <[raphael]> uh... that's something khtml should do out of itself
[13:52] <clifford> but clicking links in frames do work fine.
[13:52] <clifford> yes. but it does not here.
[13:54] <clifford> I guess that the frames are child KHTMLParts and that they are somehow differntly initialized..
[13:57] <[raphael]> clifford: in the C++ example, if I use doc.trolltech.com I also can't click on any link...
[13:57] <clifford> hmmm.. interesting.
[13:58] <clifford> can you mail me the c++ code you are using?
[13:58] <[raphael]> I'm just installing kdebindings, so I'll probably take a look at it with SPL directly later today.
[13:58] <[raphael]> yes, can do that
[13:58] <clifford> cool. thanks.
[13:58] <[raphael]> (after some sanitizing, used a kdevelop template)
[14:02] <blindcoder> stf^rocklinux: the patch is fine
[14:04] Pilot ([email protected]) joined #rocklinux.
[14:08] <netrunner> moin
[14:08] <blindcoder> moin netrunner 
[14:14] <Pilot> moin all
[14:14] <Pilot> TGIF
[14:14] <blindcoder> SHIT
[14:18] <netrunner> blindcoder: trying to find new acronyms?
[14:18] <blindcoder> netrunner: nah, "Sorry Honey, It's Thursday"
[14:19] <netrunner> super highlevel information technology ...
[14:19] <blindcoder> the usual response to TGIF where I work :)
[14:23] markuman ([email protected]) joined #rocklinux.
[14:24] <[raphael]> clifford: you see the webpage but can't click on a link, right?
[14:25] <[raphael]> khtml has to be embedded into a KMainWindow to work it looks like
[14:25] <clifford> [raphael]: yes.
[14:25] <clifford> aha.
[14:25] markuman ([email protected]) left irc: "https://www.linwiki.org - wiki around os linux!! #linwiki"
[14:25] <[raphael]> if a KMainWindow is the parent of a KHTMLPart it all works, also with links
[14:25] <clifford> give me a sec..
[14:26] Action: Pilot notes 'SHIT'
[14:30] <clifford> hmm.. do you have a KMainWindow example? simply instanciating KMainWindow and instanciating KHTMLPart as its child does not work as I would have expected it..
[14:32] <[raphael]> clifford: I have two versions of the example... one with a basic KDE template from KDevelop - that works perfectly
[14:32] <[raphael]> and the other minimalistic version which should do the same but doesn't
[14:33] <[raphael]> I'll send you the code from KDevelop - seriously I couldn't figure out what's different yet :)
[14:33] <clifford> ok. thanks for your help.
[14:38] markuman ([email protected]) joined #rocklinux.
[14:40] youngcoder ([email protected]) joined #rocklinux.
[14:40] <netrunner> blindcoder: what tgif stands for?
[14:41] <blindcoder> netrunner: thank god it's friday
[14:45] <[raphael]> clifford: src sent, let me know if have troubles compiling
[14:45] <[raphael]> (i.e. what libraries to link to, project settings in KDevelop, etc.)
[14:46] <[raphael]> I only sent the src itself, no project files or other stuff (would be too much)
[14:47] <netrunner> blindcoder: but it is not thursday.
[14:47] <blindcoder> netrunner: your point?
[14:47] <netrunner> blindcoder: you said it's thursday.
[14:48] Action: netrunner does not get the fun in that, if any.
[14:48] <blindcoder> ah, forget it
[14:56] markuman ([email protected]) left irc: "https://www.linwiki.org - wiki around os linux!! #linwiki"
[15:13] clifford ([email protected]) left irc: Remote closed the connection
[15:15] clifford ([email protected]) joined #rocklinux.
[15:24] Pilot ([email protected]) left irc: "quitting"
[15:52] markuman ([email protected]) joined #rocklinux.
[16:17] <[raphael]> clifford: it looks like the example I sent you also only works with frames
[16:37] markuman ([email protected]) left irc: "https://www.linwiki.org - wiki around os linux!! #linwiki"
[16:42] markuman ([email protected]) joined #rocklinux.
[17:34] Action: [raphael] is away: Karate
[17:37] <netrunner> oh, remember that when voting against raphael's patches :)
[17:38] <mnemoc> blindcoder will have to reject them :)
[17:51] <blindcoder> hehe
[17:51] <blindcoder> my shinai is longer than your foot!
[17:53] <mnemoc> :D
[17:54] <esden> hi ho everyone
[17:55] <mnemoc> hi esdentem
[17:55] <esden> hi mnemoc
[17:58] <blindcoder> moin esden 
[17:59] <netrunner> https://andreas.anvame.net/blog/blosxom.cgi/2005/11/14#20051114
[17:59] <netrunner> funny ads here :)
[18:00] <blindcoder> heh
[18:00] <blindcoder> netrunner: I have seen one here from DeTeImmobilien these days
[18:00] <blindcoder> "Professionelle Immobilienverwaltung"
[18:00] <blindcoder> too bad the poster isn't professional, either
[18:01] <blindcoder> it's a default preset of powerpoint slides
[18:05] <netrunner> so, blog up to date.
[18:08] <blindcoder> heh
[18:11] <esden> ok ... good night everyone ... *schnarrch*
[18:12] <clifford> [raphael] (for the logs): svn.clifford.at/spl/trunk/qtdemo/qtdemo006.spl
[18:12] <clifford> ... note the browserExtension() thing. this fixes the problem.
[18:55] markuman ([email protected]) left irc: "https://www.linwiki.org - wiki around os linux!! #linwiki"
[18:56] markuman ([email protected]) joined #rocklinux.
[19:28] netrunner ([email protected]) left irc: Remote closed the connection
[19:34] netrunner ([email protected]) joined #rocklinux.
[19:52] blindcod1r ([email protected]) joined #rocklinux.
[19:52] blindcoder ([email protected]) left irc: Read error: 104 (Connection reset by peer)
[19:53] Nick change: blindcod1r -> blindcoder
[20:46] Action: [raphael] is back
[20:50] <[raphael]> netrunner: well, if I submit patches at all that is ;)
[20:50] <[raphael]> clifford: oh, great, wonderful (and thanks for telling me)
[20:53] Action: blindcoder drunkenly threates [raphael] with a shinai
[20:58] <netrunner> blindcoder: is that some kind of sushi?
[20:59] <blindcoder> netrunner: only if you can put this on rice and eat it: https://www.eguchi.net/M13_mini_shinai.jpg
[21:00] <mnemoc> don't forget blindcoder's is pink
[21:01] <blindcoder> O_O
[21:01] Action: blindcoder wields the power of pink ranger!
[21:02] <mnemoc> :D
[21:04] <[raphael]> heh :)
[21:09] <blindcoder> that reminds me
[21:09] <blindcoder> tomorrow is kendo tournament in berlin
[21:14] fake ([email protected]) got netsplit.
[21:15] fake ([email protected]) returned to #rocklinux.
[21:26] Nick change: toberkel -> toberkel|away
[21:34] [anders] ([email protected]) left irc: "Leaving"
[21:45] markuman ([email protected]) left irc: "https://www.linwiki.org - wiki around os linux!! #linwiki"
[22:22] [anders] ([email protected]) joined #rocklinux.
[23:55] Action: [raphael] is away: ZZzzz....
[00:00] --- Sat Nov 19 2005