July 12, 2010  
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31

[00:00:22] *** Kunalagon has quit IRC
[00:00:39] *** skydrome has joined #chromium
[00:07:10] *** ebraminio has quit IRC
[00:07:20] *** ebraminio has joined #chromium
[00:14:02] *** bers has quit IRC
[00:14:45] *** hrna has quit IRC
[00:19:01] *** satish_ has joined #chromium
[00:21:19] *** stalled has joined #chromium
[00:23:24] *** satish_ has quit IRC
[00:29:57] <trungl-bot> Tree opened by vandebo at chromium dot org: Tree is open
[00:30:06] *** skydrome has left #chromium
[00:30:53] *** janm has quit IRC
[00:31:49] *** rohan has quit IRC
[00:39:53] *** Erkan_Yilmaz__ has joined #chromium
[00:40:31] *** fta_ has joined #chromium
[00:41:24] *** fta has quit IRC
[00:41:32] *** fta_ is now known as fta
[00:42:55] *** Erkan_Yilmaz_ has quit IRC
[00:43:40] *** legion13 has joined #chromium
[00:45:00] *** nfa has left #chromium
[00:50:09] *** kashey has joined #chromium
[00:50:24] <kashey> hey
[00:50:39] <kashey> I guess everyone here use chromium
[00:50:53] <kashey> how do I make html5 to work with it
[00:51:47] *** eseidel has joined #chromium
[00:53:31] <Hixie> what do you mean by html5?
[00:54:10] <kashey> html5 video
[00:54:12] *** awolfson has joined #chromium
[00:54:17] <kashey> vs the classic flash
[00:54:33] <kashey> e.g. youtube now has html5 beta
[00:55:01] <kashey> I would really like to get rid of flash
[00:55:04] <Hixie> ah
[00:55:20] <kashey> now I know there is some kind of package for it to work in linux
[00:55:37] <kashey> but was wondering if anyone got it to work with win7
[00:55:44] <kashey> I am using the nighty build
[00:55:57] <kashey> 6.0.462.0 (51949)
[00:57:51] <rsleevi> kashey: It sounds like you're asking how to build Chromium with support for the non-free codec packs. The default build of Chromium builds ffmpeg with Ogg and VP8 (WebM) only, while the official Chrome builds include codecs such as H.264, which I understand is what Youtube's HTML5 beta is using (this may have changed since WebM, but I don't believe so)
[00:58:33] <kashey> rsleevi: what is the difference between official chrome and chromium?
[00:59:57] <rsleevi> kashey: Quite a few things. Chromium is the name of the open-source project that Chrome is based on. Chrome is built from the Chromium source, but includes many customizations that Google has found appropriate - such as including codecs which must be licensed (H.264), including their own Flash plugin (as opposed to the Adobe one), and their own internal PDF plugin.
[01:01:08] <kashey> rsleevi: is there a way to include just these codecs I need?, like some sort of an extension or a plugin?
[01:02:19] <rubenbb> their own flash plugin is the same as Adobe, they just work with them
[01:02:38] <rsleevi> kashey: Hixie may be able to speak more to that, but the question of how the <video> tag should be implemented, and whether plugins should be able to extend the codec support, is actually something undergoing spirited discussion in WHATWG, or at least was recently.
[01:02:38] <rubenbb> kashey: no, you'll have to recompile
[01:03:16] <rsleevi> kashey: That said, if you're talking about FFmpeg, and have the appropriate licenses (eg: from MPEG-LA), look at src/third_party/ffmpeg/ffmpeg.gyp, which contains the build rules for FFmpeg as built within Chromium.
[01:03:54] <rubenbb> you just need to change two build flags, but if you're not comfortable building, you'll have to use Chrome
[01:04:01] <rsleevi> kashey: You'll see that the variable 'ffmpeg_branding' controls whether ffmpeg is built with H.264 or not
[01:05:00] <kashey> I wasn't compiling chromium from source, I simply download the zip
[01:05:16] <rubenbb> and you'll have to set use_proprietary_codecs to allow Chromium to download the proprietary codecs
[01:05:41] <kashey> Oh I see it would be troublesome
[01:05:43] <rubenbb> if you can't compile and won't use Chrome, you can't have what you want :P
[01:06:03] <kashey> I can compile, I just don't wanna do it
[01:06:14] <rubenbb> then you don't get what you want ;)
[01:06:18] <kashey> seems I won't have a choice though
[01:06:24] <rubenbb> exactly :)
[01:06:42] <kashey> this is perhaps the only time I'd rather have linux installed
[01:07:01] <rubenbb> yeah, the linux packages with non-free codecs do make it easier
[01:07:08] <rubenbb> but what's the big deal about just using Chrome instead?
[01:07:23] <rsleevi> rubenbb: I take it the Linux build of Chromium is dynamically linking against FFmpeg as the means of getting the other codecs?
[01:07:28] <kashey> I got to like chromium
[01:08:15] <rubenbb> rsleevi: something like that, there's also a ffmpegsumo_nolink executable that may somehow tie in
[01:08:40] <rubenbb> rsleevi: however, if you don't set that second flag, the proprietary container formats are blocked in net/mime-util
[01:08:52] <rubenbb> so it's not just mmpeg
[01:08:54] <rubenbb> ffmpeg
[01:08:58] <rsleevi> rubenbb: Ahh, good to know
[01:11:35] <kashey> where can I get src
[01:11:46] <rubenbb> google it ;)
[01:11:55] <rsleevi> http://www.chromium.org/Home
[01:11:56] <kashey> this?
[01:11:56] <kashey> http://src.chromium.org/svn/trunk/src
[01:12:06] *** thakis has quit IRC
[01:12:14] <rsleevi> kashey: Sounds like http://www.chromium.org/developers/how-tos/build-instructions-windows is what you want for Windows
[01:12:16] <rubenbb> I use git - http://code.google.com/p/chromium/wiki/UsingGit
[01:12:29] <rubenbb> though you may not want git on windows
[01:12:36] *** thakis has joined #chromium
[01:12:36] *** ChanServ sets mode: +v thakis
[01:12:42] <rsleevi> It works, it's just a pain :)
[01:13:33] <kashey> it's gonna be a pain indeed
[01:13:39] <kashey> thanks guys
[01:14:47] <kashey> Open the chrome/chrome.sln solution file in Visual Studio and build the solution. This can take from 10 minutes to 2 hours. More likely 1 hour.
[01:14:48] <kashey> oh god
[01:15:32] <rsleevi> kashey: Come on, it's an excuse to upgrade to that i7-930 with 12GB of ram you always wanted. Or maybe that was just my excuse...
[01:15:37] <rsleevi> :)
[01:16:50] <rubenbb> kashey: what's your cpu and RAM?
[01:17:06] <kashey> I got T7300@ 2ghz with 2gb ram
[01:17:08] <rubenbb> on a xeon quad-core, it takes me 20 mins
[01:17:11] <kashey> it's a laptop
[01:17:35] <kashey> xeon quad core you say
[01:17:36] <rubenbb> you should be fine, try to free up around 1 GB of RAM though
[01:17:42] <rsleevi> rubenbb: Is that a clean build or a primed one?
[01:17:47] <rubenbb> clean
[01:17:51] <rubenbb> primed how?
[01:18:19] <rubenbb> with an old out/ ?
[01:19:16] <rsleevi> rubenbb: Aye, either a partial build, or from disk cache (I've noticed my builds get quicker as the day progresses, I've presumed it's Win 7 playing with the disk cache). Alternatively on non-Win, you've got ccache as another way. So I just wasn't sure :)
[01:19:53] <kashey> oh my this is going to be a drag
[01:20:12] <rubenbb> no, that's a clean build without ccache, I build for freebsd 7-9 on amd64 and i386, 4-5 builds every weekend
[01:20:20] <kashey> well hard work pays off in the future but laziness pays off now so I'll be heading to bed
[01:25:16] <rubenbb> also, I build on a rented jail on a server, so it has around 21 GBs of RAM, that helps a bit ;)
[01:27:15] *** thakis_ has joined #chromium
[01:27:15] *** ChanServ sets mode: +v thakis_
[01:28:52] *** thakis has quit IRC
[01:28:52] *** thakis_ is now known as thakis
[01:30:34] <trungl-bot> Tree closed by vandebo at chromium dot org: Tree is closed - vandebo trying disabled tests
[01:34:32] *** yutak_home has joined #chromium
[01:34:32] *** ChanServ sets mode: +v yutak_home
[01:41:40] *** rniwa has quit IRC
[01:42:56] *** Dataforce has quit IRC
[01:51:38] *** NoobFukaire has left #chromium
[01:55:56] *** checkers has joined #chromium
[01:57:17] <checkers> hello. I noticed chrome shows a built in page when the remote server returns a 404 sometimes. What triggers this, and what error codes does it fire for?
[01:58:47] *** Dataforce has joined #chromium
[02:01:16] *** thakis has quit IRC
[02:03:24] <rubenbb> checkers: google for chrome alternate error pages
[02:03:46] <rubenbb> you can turn it off in your Options in the Privacy section
[02:07:44] *** abarth has joined #chromium
[02:07:44] *** ChanServ sets mode: +v abarth
[02:08:46] <checkers> I don't want to turn it off locally
[02:09:07] <checkers> I want to make sure it doesn't appear over the error pages that $WORK's website has
[02:14:27] *** dberg has joined #chromium
[02:14:41] *** dave_levin has quit IRC
[02:16:38] <rubenbb> not sure what you mean, you want to make sure nobody can override your website's error pages?
[02:16:55] *** LjL has joined #chromium
[02:17:09] *** dberg has left #chromium
[02:17:24] *** joshcryer has joined #chromium
[02:17:54] *** black_cat has joined #chromium
[02:18:03] *** black_cat has left #chromium
[02:18:44] <proton> checkers: not sure what Chromium's magic for working out when to display it is, but I know IE only displays custom errors when the page is 512 bytes or less
[02:19:08] <proton> i'd guess a similar magical threshold
[02:23:22] *** fta_ has joined #chromium
[02:25:00] *** fta has quit IRC
[02:25:01] *** fta_ is now known as fta
[02:25:03] <joshcryer> Are there any plans to incorporate a tabless option into Chrome?
[02:25:21] <joshcryer> (ie making it optional to have a window/MDI interface)
[02:25:29] <checkers> rubenbb: yes
[02:25:48] <checkers> the 404 pages on some sites show up in Chrome but the 404s of other sites are replaced by the builtin page
[02:25:56] <rubenbb> not sure what algorithm chrome uses for that
[02:25:56] <checkers> is it a size based threshold like proton mentioned?
[02:26:12] <trungl-bot> Tree opened by vandebo at chromium dot org: Tree is open (should cycle green)
[02:26:14] <checkers> that's the magic I want to find out
[02:26:21] *** trungl has joined #chromium
[02:26:22] *** ChanServ sets mode: +v trungl
[02:27:14] <trungl-bot> Tree closed by buildbot at chromium dot org: Tree is closed (Automatic: "plugin_tests" on "XP Perf (dbg)" from 52068: vandebo at chromium dot org)
[02:28:58] *** LjL has quit IRC
[02:31:16] <trungl-bot> Tree opened by vandebo at chromium dot org: Tree is open (should cycle green)
[02:39:43] <trungl> 'evening, trungl-bot
[02:39:43] <trungl-bot> trungl: Good evening.
[02:48:52] *** Sarten-X has quit IRC
[02:55:47] *** Sarten-X has joined #chromium
[02:55:49] *** rohitrao has quit IRC
[03:00:26] *** yutak_home has quit IRC
[03:03:25] *** leeight has joined #chromium
[03:04:23] *** leeight has left #chromium
[03:06:38] *** hbono has joined #chromium
[03:11:26] <rubenbb> checkers: I don't see any algorithm in the source, unless it's decided on the server - http://src.chromium.org/viewvc/chrome/trunk/src/chrome/browser/tab_contents/tab_contents.cc?view=annotate (lines 2716-2720)
[03:11:34] *** RT|Chatzilla has joined #chromium
[03:13:18] <pcgod> rubenbb: there was/is a bug report about the size of error pages...
[03:13:52] <rubenbb> not the issue here, he wants to make sure users can't be redirected to an alternate error page for his website
[03:14:02] <rubenbb> but it looks like that's not up to him
[03:14:06] *** fta has quit IRC
[03:14:09] <pcgod> http://code.google.com/p/chromium/issues/detail?id=31561
[03:15:33] *** fta has joined #chromium
[03:15:37] <rubenbb> ok, looks like it just mimics IE then
[03:15:44] <rubenbb> checkers: there's your answer
[03:15:57] <rubenbb> make it larger than 512 bytes
[03:23:47] *** kermit has joined #chromium
[03:25:02] <kermit> does browsing history ever expire?
[03:33:23] <checkers> pcgod, rubenbb: thanks!
[03:42:15] *** tonikitoo has joined #chromium
[03:48:53] *** Peter- has quit IRC
[03:53:03] *** FullFlannelJacke has quit IRC
[03:56:25] *** FullFlannelJacke has joined #chromium
[04:02:13] *** fta_ has joined #chromium
[04:03:27] *** fta has quit IRC
[04:03:40] *** fta_ is now known as fta
[04:06:12] *** trungl has quit IRC
[04:07:29] *** eseidel has quit IRC
[04:11:49] *** ebraminio has quit IRC
[04:12:55] *** trungl has joined #chromium
[04:12:55] *** ChanServ sets mode: +v trungl
[04:13:52] *** rniwa has joined #chromium
[04:14:53] *** rniwa has quit IRC
[04:17:13] *** FullFlannelJacke has quit IRC
[04:19:50] *** ph0nk has quit IRC
[04:20:44] *** fta_ has joined #chromium
[04:21:11] *** fta has quit IRC
[04:21:28] *** fta_ is now known as fta
[04:21:32] *** mazda has joined #chromium
[04:21:32] *** ChanServ sets mode: +v mazda
[04:21:47] *** ph0nk has joined #chromium
[04:31:54] *** FullFlannelJacke has joined #chromium
[04:37:38] *** FullFlannelJacke has quit IRC
[04:40:25] *** eroman has quit IRC
[04:41:38] *** morrita has quit IRC
[04:41:48] *** FullFlannelJacke has joined #chromium
[04:47:38] *** FullFlannelJacke has quit IRC
[04:47:57] *** dr_win has quit IRC
[04:51:35] *** FullFlannelJacke has joined #chromium
[04:52:05] *** fta_ has joined #chromium
[04:52:48] *** fta has quit IRC
[04:52:55] *** fta_ is now known as fta
[04:56:10] *** Precea is now known as Precea[BNC]
[05:01:00] *** shoe has quit IRC
[05:03:22] *** shoe has joined #chromium
[05:12:13] *** bratsche has quit IRC
[05:20:46] *** legion13 has quit IRC
[05:25:04] *** bratsche has joined #chromium
[05:30:33] *** koollman has quit IRC
[05:32:36] *** fr| has quit IRC
[05:32:39] *** Precea[BNC] has quit IRC
[05:33:06] *** JodaZ has quit IRC
[05:39:44] *** fta_ has joined #chromium
[05:39:47] *** dr_win has joined #chromium
[05:40:49] *** fta has quit IRC
[05:40:54] *** fta_ is now known as fta
[05:56:58] *** Omen_20 has joined #chromium
[05:57:21] <Omen_20> Hi. Why is it that when I search for the Chrome to Phone extension, nothing comes up?
[05:58:06] *** fr has joined #chromium
[05:58:31] *** taf2 has quit IRC
[06:00:11] *** BryanWB has joined #chromium
[06:01:11] *** morrita has joined #chromium
[06:01:11] *** ChanServ sets mode: +v morrita
[06:02:22] *** Zaba has quit IRC
[06:03:40] *** Precea[BNC] has joined #chromium
[06:04:21] *** JodaZ has joined #chromium
[06:09:40] *** Zaba has joined #chromium
[06:18:07] *** dr_win has quit IRC
[06:23:14] <trungl-bot> Tree closed by buildbot at chromium dot org: Tree is closed (Automatic: "compile" on "Chromium Builder (dbg)" from 52072: jochen at chromium dot org (:jochen__))
[06:23:23] *** loislo has joined #chromium
[06:34:25] *** fta_ has joined #chromium
[06:36:21] *** fta has quit IRC
[06:36:24] *** fta_ is now known as fta
[06:38:37] <vandebo> jochen__: ^^
[06:39:31] *** thakis has joined #chromium
[06:39:31] *** ChanServ sets mode: +v thakis
[06:40:44] *** loislo has quit IRC
[06:40:56] *** hbono has quit IRC
[06:41:51] *** hbono has joined #chromium
[06:42:38] *** FullFlannelJacke has quit IRC
[06:43:34] *** trungl has quit IRC
[06:48:24] <ss> Anyone know where the Flock guys hang out?
[06:53:45] *** FullFlannelJacke has joined #chromium
[06:54:05] *** BryanWB has joined #chromium
[06:57:02] *** Precea[BNC] has quit IRC
[06:58:03] *** FullFlannelJacke has quit IRC
[06:58:28] *** fr has quit IRC
[06:59:20] *** JodaZ has quit IRC
[07:02:59] *** rsleevi has quit IRC
[07:14:31] *** JodaZ has joined #chromium
[07:14:45] *** BryanWB has quit IRC
[07:15:30] *** Precea[BNC] has joined #chromium
[07:18:49] *** dabear_ has joined #chromium
[07:18:56] *** sjefen6_ has joined #chromium
[07:19:30] *** MikeSmithW3C has joined #chromium
[07:19:40] *** fr has joined #chromium
[07:20:06] *** sjefen6 has quit IRC
[07:20:06] *** dabear has quit IRC
[07:20:06] *** cyberix has quit IRC
[07:20:39] *** cyberix has joined #chromium
[07:23:11] *** fta_ has joined #chromium
[07:23:50] *** MikeSmithW3C^ has joined #chromium
[07:24:55] *** fta has quit IRC
[07:25:08] *** fta_ is now known as fta
[07:26:33] *** diracdelta has joined #chromium
[07:26:51] *** MikeSmithW3C has quit IRC
[07:29:50] *** viro101 has quit IRC
[07:33:44] *** MikeSmithW3C^ has quit IRC
[07:40:10] *** hbono has quit IRC
[07:40:10] *** shoe has quit IRC
[07:40:11] *** Erkan_Yilmaz__ has quit IRC
[07:40:13] *** ananta has quit IRC
[07:44:10] *** fta has quit IRC
[07:44:10] *** fr has quit IRC
[07:44:10] *** Sarten-X has quit IRC
[07:44:10] *** Dataforce has quit IRC
[07:44:11] *** rubenbb has quit IRC
[07:44:12] *** rvargas has quit IRC
[07:44:13] *** rellig has quit IRC
[07:44:13] *** glotov has quit IRC
[07:44:13] *** dcheng has quit IRC
[07:44:13] *** BenL has quit IRC
[07:44:14] *** mlloyd has quit IRC
[07:44:15] *** Vanderhuge has quit IRC
[07:46:30] *** fta has joined #chromium
[07:46:32] *** MikeSmithW3C has joined #chromium
[08:05:02] *** MichealH has joined #chromium
[08:06:26] <trungl-bot> Tree opened by vandebo at chromium dot org: Tree is open (revert in)
[08:10:33] *** fta has quit IRC
[08:12:26] *** fta has joined #chromium
[08:26:27] *** RT|Chatzilla has quit IRC
[08:27:20] *** RT|Chatzilla has joined #chromium
[08:34:30] *** loislo has joined #chromium
[08:41:29] *** [Nef] has quit IRC
[08:44:58] *** eseidel has joined #chromium
[08:47:59] *** bers has joined #chromium
[08:48:25] *** abarth has quit IRC
[08:48:41] *** abarth has joined #chromium
[08:48:41] *** ChanServ sets mode: +v abarth
[08:48:50] *** abarth has quit IRC
[08:54:35] *** MichealH has quit IRC
[08:59:17] *** thakis has quit IRC
[09:01:20] *** bers has quit IRC
[09:02:39] *** c_zahmad has joined #chromium
[09:05:42] *** eseidel has quit IRC
[09:08:45] *** fta_ has joined #chromium
[09:10:07] *** fta has quit IRC
[09:10:09] *** fta_ is now known as fta
[09:12:17] *** ph0nk has quit IRC
[09:25:13] <mnissler> 2gGpd2bm!
[09:29:07] *** MikeSmithW3C has quit IRC
[09:30:47] *** eseidel has joined #chromium
[09:31:23] *** janm has joined #chromium
[09:36:40] *** zuh has joined #chromium
[09:39:39] *** sjefen6_ has quit IRC
[09:39:58] *** bauerb has joined #chromium
[09:39:59] *** ChanServ sets mode: +v bauerb
[09:41:18] *** hbono has joined #chromium
[09:41:18] *** shoe has joined #chromium
[09:41:18] *** ananta has joined #chromium
[09:41:18] *** zelazny.freenode.net sets mode: +v ananta
[09:46:01] *** sjefen6 has joined #chromium
[09:46:01] *** fr has joined #chromium
[09:46:01] *** Sarten-X has joined #chromium
[09:46:01] *** Dataforce has joined #chromium
[09:46:01] *** rubenbb has joined #chromium
[09:46:01] *** rvargas has joined #chromium
[09:46:01] *** rellig has joined #chromium
[09:46:01] *** glotov has joined #chromium
[09:46:01] *** dcheng has joined #chromium
[09:46:01] *** BenL has joined #chromium
[09:46:01] *** Vanderhuge has joined #chromium
[09:46:01] *** mlloyd has joined #chromium
[09:46:01] *** zelazny.freenode.net sets mode: +v rvargas
[09:48:35] *** tav has quit IRC
[09:48:57] *** eseidel has quit IRC
[09:49:22] *** checkers has left #chromium
[09:53:42] *** MikeSmithW3C has joined #chromium
[09:56:23] *** ROBOd has joined #chromium
[09:56:35] *** MikeSmithW3C has quit IRC
[09:57:12] *** MikeSmithW3C has joined #chromium
[09:58:59] *** fta_ has joined #chromium
[10:00:34] *** fta has quit IRC
[10:00:38] *** fta_ is now known as fta
[10:01:33] *** eseidel has joined #chromium
[10:02:05] *** bmizerany has quit IRC
[10:03:08] *** romainhuet has joined #chromium
[10:03:11] *** [Nef] has joined #chromium
[10:05:01] <hwennborg> good morning chromium!
[10:05:01] <trungl-bot> hwennborg: Good morning!
[10:08:31] *** chrisccoulson has joined #chromium
[10:12:50] <jochen__> hey!
[10:12:57] <jochen__> that compile failure was totally unrelated to my patch
[10:13:06] <jochen__> the damn builder just couldn't link webcore
[10:13:32] <jochen__> vandebo: ^^
[10:14:57] *** bartusch has joined #chromium
[10:15:48] <bartusch> hi
[10:17:32] *** joshcryer has quit IRC
[10:18:52] <bartusch> anyone here to help with a chrome problem?
[10:22:59] *** hrna has joined #chromium
[10:24:20] *** masterov has joined #chromium
[10:25:56] *** FunkyPenguin has joined #chromium
[10:30:21] *** eseidel has quit IRC
[10:44:59] *** alyxuk has quit IRC
[10:45:03] *** pfeldman has joined #chromium
[10:45:34] *** alyxuk has joined #chromium
[10:46:52] *** Pupeno has joined #chromium
[10:47:20] <Pupeno> Is there a way to make Chrome stop changing my space (in spaces) in MacOSX? it drives me crazy.
[10:49:11] *** fta_ has joined #chromium
[10:49:53] *** fta has quit IRC
[10:50:08] *** fta_ is now known as fta
[10:50:40] *** alyxuk has quit IRC
[10:52:50] <jochen__> Pupeno: see topic please
[10:53:25] <Pupeno> Oh, crap, right... sorry.... #kde did the same thing you are doing... it didn't work for them either.
[10:54:42] *** Pupeno has left #chromium
[10:55:07] *** bratsche has quit IRC
[10:56:02] <bartusch> is it a known bug that the use of eval will make getElementsByTagName not working correctly?
[10:57:22] <jochen__> any sheriff present?
[11:00:42] *** pfeldman has quit IRC
[11:01:20] *** pfeldman has joined #chromium
[11:03:49] <hwennborg> jochen_: yes
[11:04:55] *** jorlow has joined #chromium
[11:05:40] <trungl-bot> Tree opened by jochen at chromium dot org (:jochen__): Tree is open (jochen trying to reland)
[11:08:08] <jochen__> hwennborg: i'll try to reland since the compile error seems spurious...
[11:09:20] <hwennborg> jochen__: sure, go ahead
[11:10:13] *** bratsche has joined #chromium
[11:10:30] <jochen__> looks like the builder runs out of memory for linking webkit into tests as well...
[11:18:00] *** Omen_20 has quit IRC
[11:18:07] <jochen__> what on earth is up with the builders today
[11:19:12] <hwennborg> hmm, i think i'll ask for a rebuild on that one
[11:20:56] *** General13372 has joined #chromium
[11:21:34] <hwennborg> there, let's see how that goes
[11:22:05] <jochen__> i wish the output was actually telling what went wrong
[11:23:43] *** Sarkie has joined #chromium
[11:23:58] *** General1337 has quit IRC
[11:27:04] <jochen__> compiled fine
[11:27:51] <hwennborg> yes
[11:29:07] *** aurilliance has joined #chromium
[11:30:33] <aurilliance> q: I want to load a page, and *then* execute some javascript using the pseudo protocol "javscript:alert('hithere'); but I want to do both by typing ONE url into the browser. Is this possible?
[11:33:53] *** fta_ has joined #chromium
[11:35:22] *** fta has quit IRC
[11:35:23] *** fta_ is now known as fta
[11:37:09] <jochen__> aurilliance: see topic please
[11:37:38] <aurilliance> jochen__, my mistake
[11:37:39] *** aurilliance has left #chromium
[12:08:53] *** BryanWB has joined #chromium
[12:11:50] *** lysgaard has joined #chromium
[12:12:22] <lysgaard> Is there any specific channel for Extension development?
[12:25:08] *** BryanWB has quit IRC
[12:30:03] <jochen__> not that i knew of
[12:32:50] *** awolfson has quit IRC
[12:37:09] *** kphanee has joined #chromium
[12:50:59] <pfeldman> jorlow: ping
[12:51:04] <pfeldman> mind the canaries!
[12:51:09] <jorlow> pfeldman: i am
[12:51:29] <pfeldman> thanks!
[12:52:12] <pfeldman> (jorlow you know that it still fails to compile, right?)
[12:52:18] <jorlow> yes
[12:52:22] <pfeldman> k
[12:52:26] <jorlow> visual studio is retarded
[12:52:41] <jorlow> trying to figure out how best to work around
[12:56:30] *** FullFlannelJacke has joined #chromium
[12:59:27] *** rvargas has quit IRC
[13:06:22] *** FullFlannelJacke has quit IRC
[13:07:51] <lysgaard> Is there any specific channel for Extension development?
[13:09:13] *** podivilov has joined #chromium
[13:09:54] *** FullFlannelJacke has joined #chromium
[13:10:33] *** hbono has quit IRC
[13:13:28] <jorlow> lysgaard: i think there's a chromium-extensions or something
[13:15:17] *** GNU\colossus has left #chromium
[13:17:55] *** andrix has joined #chromium
[13:22:30] *** apavlov has joined #chromium
[13:26:06] *** nayankk has joined #chromium
[13:33:15] *** tonikitoo has quit IRC
[13:36:32] <glotov> Hi! I'm going to land the GRD change soon. Any objections?
[13:37:49] <hwennborg> glotov: I like the way you refer to it as *the* GRD change :)
[13:38:10] <hwennborg> it feels pretty calm today, so feel free to give it a go
[13:38:32] <glotov> :)
[13:38:50] <glotov> thanx, should I close the tree?
[13:38:55] <hwennborg> yes
[13:39:39] <trungl-bot> Tree closed by glotov at chromium dot org: Tree is closed (GRD change -> glotov)
[13:41:05] *** koollman has joined #chromium
[13:54:38] *** bartusch has quit IRC
[14:02:44] * gavinp rubs his hand eagerly awaiting today's chromium webkit gardenning
[14:03:12] *** MikeSmithW3C has quit IRC
[14:03:46] *** MikeSmithW3C has joined #chromium
[14:04:00] *** fta_ has joined #chromium
[14:05:33] *** fta has quit IRC
[14:05:36] *** fta_ is now known as fta
[14:05:46] *** tittiatcoke has joined #chromium
[14:06:27] *** tittiatcoke has quit IRC
[14:06:44] *** nkostylev has joined #chromium
[14:08:07] *** rohitrao has joined #chromium
[14:08:08] *** ChanServ sets mode: +v rohitrao
[14:08:31] *** MikeSmithW3C has quit IRC
[14:08:36] *** ChanServ sets mode: +v nkostylev
[14:11:15] <hwennborg> your sheriff will now go for lunch, please keep it calm
[14:13:06] *** MikeSmithW3C has joined #chromium
[14:14:04] <podivilov> hamaji: looks like you committed poor expectations.
[14:17:02] <trungl-bot> Tree opened by glotov at chromium dot org: Tree is open (jochen trying to reland)
[14:20:10] *** barcon332 has joined #chromium
[14:23:36] *** taf2 has joined #chromium
[14:29:06] *** mazda has quit IRC
[14:31:28] *** Precea[BNC] is now known as Precea
[14:32:03] *** tonikitoo has joined #chromium
[14:39:41] *** obscurant1st has joined #chromium
[14:40:13] <obscurant1st> I have doubt on packing a chrome theme in linux in terminal?
[14:40:17] <obscurant1st> can I ask it here?
[14:40:29] <obscurant1st> this is about google chrome the browser, not the OS!
[14:42:26] *** AaronMT has joined #chromium
[14:45:36] *** rohitrao has quit IRC
[14:53:10] *** fta_ has joined #chromium
[14:54:10] *** MikeSmithW3C has quit IRC
[14:55:20] *** fta has quit IRC
[14:55:35] *** fta_ is now known as fta
[15:00:35] *** SkyLined has joined #chromium
[15:02:49] *** NthDeGeek has quit IRC
[15:09:28] *** Zucca has quit IRC
[15:15:02] *** [Nef] has quit IRC
[15:15:03] *** MikeSmithW3C has joined #chromium
[15:19:05] *** peper has quit IRC
[15:23:08] *** bent-mozilla has joined #chromium
[15:25:35] *** urbanape has joined #chromium
[15:26:24] *** js2 has joined #chromium
[15:30:53] *** peper has joined #chromium
[15:31:01] <trungl-bot> Tree opened by jochen at chromium dot org (:jochen__): Tree is open
[15:31:07] <hwennborg> glotov: i'm seeing failed browser_tests on win, linux and mac after your change; could it be related?
[15:31:07] *** janm has quit IRC
[15:32:01] *** janm has joined #chromium
[15:34:45] <hwennborg> glotov: it seems re-building on the mac bot succeeded, so let's see how rebuilding on the others work out...
[15:35:41] *** MikeSmithW3C has quit IRC
[15:36:09] *** awolfson has joined #chromium
[15:36:15] *** MikeSmithW3C has joined #chromium
[15:37:48] *** leeight has joined #chromium
[15:37:51] *** leeight has left #chromium
[15:38:25] <maruel> humm I'm unable to fix mac10.6 tests :(
[15:40:10] *** malavv has joined #chromium
[15:41:05] *** awolfson has quit IRC
[15:41:34] *** rohitrao has joined #chromium
[15:41:36] *** ChanServ sets mode: +v rohitrao
[15:41:38] *** Saelynh has joined #chromium
[15:42:55] *** fta_ has joined #chromium
[15:44:25] *** fta has quit IRC
[15:44:35] *** fta_ is now known as fta
[15:48:36] *** zer0her0 has joined #chromium
[15:52:16] *** dr_win has joined #chromium
[15:53:18] *** zaspire has joined #chromium
[15:53:20] *** awolfson has joined #chromium
[15:59:51] *** zloidemon has joined #chromium
[16:00:56] *** rsesek has joined #chromium
[16:00:56] *** ChanServ sets mode: +v rsesek
[16:02:12] *** nfa has joined #chromium
[16:07:58] *** dhollowa_ has quit IRC
[16:12:06] *** aroben has joined #chromium
[16:12:07] *** aroben has joined #chromium
[16:21:39] *** SkyLined2 has joined #chromium
[16:23:31] <obscurant1st> someone know how to pack a theme for google chrome in crx format in linux via terminal?
[16:25:20] *** SkyLined has quit IRC
[16:28:30] *** solsTiCe has joined #chromium
[16:29:10] *** tedoc2000 has joined #chromium
[16:29:41] *** jrmuizel has joined #chromium
[16:30:00] *** Zucca has joined #chromium
[16:31:06] *** dmaclach has joined #chromium
[16:31:37] *** dmaclach_ has joined #chromium
[16:31:38] *** dmaclach has quit IRC
[16:31:38] *** dmaclach_ is now known as dmaclach
[16:32:06] *** fta_ has joined #chromium
[16:33:56] *** fta has quit IRC
[16:34:04] *** fta_ is now known as fta
[16:34:10] *** trungl has joined #chromium
[16:34:11] *** ChanServ sets mode: +v trungl
[16:34:28] <trungl> 'morning, Chromium.
[16:34:28] <trungl-bot> trungl: Good morning!
[16:36:25] *** dmaclach has quit IRC
[16:39:01] *** sebmarkbage has joined #chromium
[16:40:09] *** dmaclach has joined #chromium
[16:44:25] *** urbanape has quit IRC
[16:46:44] *** agl has joined #chromium
[16:46:44] *** ChanServ sets mode: +v agl
[16:47:28] *** shreyas has joined #chromium
[16:47:29] *** awidegreen has joined #chromium
[16:48:39] *** stuartmorgan has joined #chromium
[16:48:40] *** ChanServ sets mode: +v stuartmorgan
[16:49:42] *** GeekShadow has joined #chromium
[16:50:25] <solsTiCe> hi.I have maed a simple soroban with canvas element. It's made of background image and one image replicated above. then I use ctrl+mouse up to magnify that page. it still looks fine until I want to move the beads. It's all messed up ! look at that  http://www.imagup.com/pics/1279004639.html may I say it's fine in firefox and opera
[16:50:32] *** dmaclach has quit IRC
[16:50:34] <solsTiCe> May I open an issue about that ?
[16:51:20] <agl> solsTiCe: how about Safari?
[16:51:35] <solsTiCe> not tested
[16:53:05] *** ph0nk has joined #chromium
[16:53:07] <agl> solsTiCe: that's always useful to know. Also, if you're going to file a bug, you would need to reduce the test case a little. (And you need to link to the HTML, not an image, of course)
[16:53:25] *** yutak_home has joined #chromium
[16:53:26] *** ChanServ sets mode: +v yutak_home
[16:53:50] <solsTiCe> you mean create a simplified test witht he bare minimum that exhibit the problem ?
[16:54:01] <agl> solsTiCe: yes
[16:54:35] <solsTiCe> ok. I am testing with safari. that's ok inside virtualbox ?
[16:54:41] *** m0 has quit IRC
[16:55:11] <agl> solsTiCe: I don't know of any reason why not
[16:55:34] *** m0 has joined #chromium
[16:57:16] *** xenor has joined #chromium
[16:57:18] <xenor> hey =)
[16:57:35] <xenor> does anyone know or have a link how to code plugins for chromium?
[16:58:03] <xenor> oh sorry... should read topic
[16:58:04] <agl> xenor: plugins or extensions?
[16:58:24] <agl> xenor: plugins are standard NPAPI, extensions you can just Google for.
[16:58:24] <xenor> um.. something to block a specific popup which is annoying me... whats better?
[16:58:31] *** urbanape has joined #chromium
[16:58:31] <agl> xenor: an extension
[16:58:43] <xenor> ah thank u
[16:58:57] <xenor> found :) i love google :D
[16:59:08] *** tav has joined #chromium
[16:59:10] *** issackelly has joined #chromium
[16:59:44] *** obscurant1st has quit IRC
[16:59:51] <issackelly> I'm getting a notice about my json data "Resource interpreted as document but transferred with MIME type application/json."  I'm not sure why it would intrepret it as a document,  I seem to process it 'ok' on the end, but I still get the notice
[17:01:01] *** shoe has quit IRC
[17:01:26] *** shoe has joined #chromium
[17:04:05] <solsTiCe> agl: it's the same in safari
[17:04:11] <agl> issackelly: how are you fetching it?
[17:04:21] <agl> solsTiCe: in which case the bug should be filed at bugs.webkit.org
[17:04:31] <agl> issackelly: (XMLHttpRequest?)
[17:04:33] <issackelly> agl via ajax (jquery/jquery.form)
[17:04:37] *** star-affinity has joined #chromium
[17:05:19] <trungl-bot> Tree closed by buildbot at chromium dot org: Tree is closed (Automatic: "compile" on "Chromium Builder (dbg)" from 52079: agl at chromium dot org)
[17:05:20] <agl> issackelly: I wouldn't worry about the warning then. Dr Barth would know what was going on, but it's too early in his timezone at the moment.
[17:05:32] <issackelly> firefox seems to think that it is a document as well (tries to interpret as text/plain) and download it
[17:06:24] <hwennborg> agl: looks like it failed to link webcore on that windows bot
[17:07:21] <trungl-bot> Tree opened by agl at chromium dot org: Tree is open (Windows redness looks bogus)
[17:08:34] <hwennborg> agl: should we do a rebuild and see how it goes?
[17:08:53] <agl> hwennborg: I was going to see if any of the other Windows bots go red
[17:09:03] <agl> hwennborg: if not, then I'll submit a whitespace change to kick that one
[17:09:12] <hwennborg> ok, sounds like a plan
[17:10:16] *** duffydack has joined #chromium
[17:12:10] <agl> hwennborg: the non-debug builder was ok so I submitted a comment-fixup only change
[17:12:56] *** eseidel has joined #chromium
[17:16:07] *** trungl has quit IRC
[17:16:33] *** SkyLined3 has joined #chromium
[17:17:36] *** tonyg-cr has joined #chromium
[17:17:36] *** ChanServ sets mode: +v tonyg-cr
[17:19:06] *** dmaclach has joined #chromium
[17:20:02] *** SkyLined2 has quit IRC
[17:21:45] *** bent-mozilla has quit IRC
[17:21:59] *** fta_ has joined #chromium
[17:22:18] *** zloidemon has quit IRC
[17:23:49] *** fta has quit IRC
[17:24:03] *** fta_ is now known as fta
[17:30:12] *** rjkroege has joined #chromium
[17:32:01] *** duffydack has left #chromium
[17:32:48] <trungl-bot> Tree opened by agl at chromium dot org: Tree is open
[17:33:00] *** Erkan_Yilmaz has joined #chromium
[17:33:36] *** Omen_20 has joined #chromium
[17:34:38] <agl> hwennborg: the builder went gree
[17:34:39] <agl> n
[17:35:18] *** diracdelta has left #chromium
[17:35:27] <hwennborg> agl: yup, thanks for updating the status
[17:41:11] *** johnny_g has joined #chromium
[17:41:39] *** udp has quit IRC
[17:42:05] *** glotov has quit IRC
[17:48:27] *** yutak_home has quit IRC
[17:49:53] *** [Nef] has joined #chromium
[17:51:14] *** xenor has left #chromium
[17:51:21] *** pdelgallego has joined #chromium
[17:53:12] *** eseidel has quit IRC
[17:53:55] *** duffydack has joined #chromium
[17:54:08] *** MichealH has joined #chromium
[17:55:10] *** star-affinity has quit IRC
[17:55:20] *** johnny_g has quit IRC
[17:55:34] <vandebo> jochen__: sorry about that - that bot usually links just fine
[17:59:13] *** mabbo has joined #chromium
[17:59:45] *** thakis has joined #chromium
[17:59:45] *** ChanServ sets mode: +v thakis
[18:00:16] *** mrossetti has joined #chromium
[18:00:31] <solsTiCe> agl: the problem is that the height of an image reported by javascript changed when you resize. I don't know if webkit is wrong or firefox/opera are.
[18:00:32] *** tonyg-cr1 has joined #chromium
[18:00:32] *** ChanServ sets mode: +v tonyg-cr1
[18:00:32] <pfeldman> maruel: ping
[18:00:45] *** johnny_g has joined #chromium
[18:01:06] *** mrossetti has quit IRC
[18:01:12] *** mrossetti has joined #chromium
[18:01:39] *** mrossetti has joined #chromium
[18:01:54] *** Peter- has joined #chromium
[18:01:59] <solsTiCe> the test case http://pagesperso-orange.fr/solstice.dhiver/data/canvas_resize.tar.gz
[18:02:05] *** tonyg-cr has quit IRC
[18:02:51] *** skrul_ has quit IRC
[18:03:46] *** hinoka|away has joined #chromium
[18:03:46] *** ChanServ sets mode: +v hinoka|away
[18:04:42] *** jcastro has quit IRC
[18:04:59] <maruel> pfeldman: pong
[18:06:25] *** rohitrao_ has joined #chromium
[18:06:25] *** ChanServ sets mode: +v rohitrao_
[18:07:04] *** Dykam has quit IRC
[18:07:06] *** mmoss has joined #chromium
[18:07:07] *** ChanServ sets mode: +v mmoss
[18:08:22] *** eseidel has joined #chromium
[18:08:44] <solsTiCe> how could i know the webkit version run by chromium ?
[18:08:55] <rsesek> about:version
[18:09:33] *** jcastro has joined #chromium
[18:10:09] <solsTiCe> ok
[18:10:26] *** ebraminio has joined #chromium
[18:10:42] *** RT|Chatzilla has quit IRC
[18:10:45] *** duffy has joined #chromium
[18:11:06] *** eseidel_ has joined #chromium
[18:11:21] *** willchan has joined #chromium
[18:11:22] *** ChanServ sets mode: +v willchan
[18:11:22] <solsTiCe> you can report bug for at most webkit 528 on bugs.webkit.org ??
[18:11:31] *** rohitrao_ has quit IRC
[18:11:37] *** aroben is now known as aroben|lunch
[18:11:46] <solsTiCe> or 528+ means all of them above 528
[18:12:00] *** aroben|lunch has quit IRC
[18:12:52] *** eseidel has quit IRC
[18:12:53] *** eseidel_ is now known as eseidel
[18:12:56] *** duffydack has quit IRC
[18:12:56] *** Barkhorn has joined #chromium
[18:14:00] *** Sarkie has quit IRC
[18:14:41] *** MichealH has quit IRC
[18:15:11] <agl> solsTiCe: 528+ is what you want.
[18:15:34] *** eseidel_ has joined #chromium
[18:15:55] *** Venom_X has joined #chromium
[18:15:56] *** Adys has joined #chromium
[18:15:58] *** Zaba has quit IRC
[18:16:08] <agl> solsTiCe: it's probably incorrect that zooming should change the reported size of the image.
[18:16:15] *** NthDeGeek has joined #chromium
[18:16:44] *** Zaba has joined #chromium
[18:17:20] *** sshc has left #chromium
[18:18:53] *** victorw has joined #chromium
[18:18:54] *** ChanServ sets mode: +v victorw
[18:19:16] *** eseidel has quit IRC
[18:19:16] *** eseidel_ is now known as eseidel
[18:20:39] *** asargent has joined #chromium
[18:20:40] *** ChanServ sets mode: +v asargent
[18:20:56] <pfeldman> maruel: oh. win canary is facing a file access issue. how do we handle it?
[18:21:30] *** Saelynh has quit IRC
[18:21:45] <maruel> pfeldman: I'll fix
[18:21:52] <pfeldman> maruel: thnx
[18:21:59] <pfeldman> podivilov: ^^
[18:22:01] *** lysgaard has quit IRC
[18:23:08] *** sbyer has left #chromium
[18:23:41] *** asargent has left #chromium
[18:25:03] *** Barkhorn has left #chromium
[18:28:45] *** sbyer has joined #chromium
[18:28:45] *** ChanServ sets mode: +v sbyer
[18:28:56] *** ojan_bug_42007 is now known as ojan
[18:29:55] *** markmentovai has joined #chromium
[18:29:56] *** ChanServ sets mode: +v markmentovai
[18:31:07] *** ebraminio has quit IRC
[18:31:08] *** brettw has joined #chromium
[18:31:09] *** ChanServ sets mode: +v brettw
[18:31:25] *** agl has quit IRC
[18:31:56] *** ebraminio has joined #chromium
[18:36:11] *** FullFlannelJacke has quit IRC
[18:38:46] *** arv_away is now known as arv
[18:39:12] *** FullFlannelJacke has joined #chromium
[18:39:13] *** eseidel has quit IRC
[18:43:05] *** suzhe has quit IRC
[18:43:09] *** thakis has quit IRC
[18:43:27] *** bweinstein has joined #chromium
[18:44:05] *** viro101 has joined #chromium
[18:45:50] *** Adys has quit IRC
[18:46:56] <arv> jrg: Good morning. Do you have any idea how to fix the Mac10.6 Tests bot?
[18:47:20] <maruel> arv: no, it failed hard, I forgot to ping relevant people this morning
[18:51:14] *** aroben has joined #chromium
[18:51:21] *** aroben has quit IRC
[18:51:21] *** aroben has joined #chromium
[18:51:29] *** iamdharma has joined #chromium
[18:54:19] *** Adys has joined #chromium
[18:56:04] *** ifvoid has left #chromium
[18:56:05] <hwennborg> arv: ready to take over the sheriff's hat?
[18:56:25] <arv> hwennborg: as ready as I'll ever be
[18:56:46] <hwennborg> sounds good :) it's all yours then
[18:57:41] <jrg> arv: ITO now
[18:57:52] *** fta_ has joined #chromium
[18:57:57] *** mpcomplete has joined #chromium
[18:57:59] *** ChanServ sets mode: +v mpcomplete
[18:58:01] <jrg> arv: is someone on the 10.6 bot?
[18:58:04] *** johnny_g has quit IRC
[18:58:09] *** johnny_g has joined #chromium
[18:58:59] *** fta has quit IRC
[18:59:02] *** fta_ is now known as fta
[19:00:26] *** iamdharma has quit IRC
[19:01:07] *** jshin has joined #chromium
[19:01:07] *** ChanServ sets mode: +v jshin
[19:02:52] *** inferno-sec has quit IRC
[19:03:04] *** Adys has quit IRC
[19:03:41] <arv> jrg: I am looking but I am not getting any wiser.
[19:04:37] <jrg> arv: I'll take over if you like
[19:04:41] <arv> maruel: Do you know anything about the mac 10.6 builder? It fails with a AbandonChain exception
[19:04:49] <arv> jrg: thanks
[19:05:08] *** tonyg-cr1 has quit IRC
[19:05:08] *** Maxdamantus has quit IRC
[19:05:29] <jrg> arv: looks like networking choke of some kind... I'll ssh in and if necessary reboot it.
[19:05:58] *** fr has quit IRC
[19:06:06] *** fr has joined #chromium
[19:10:23] *** bauerb has quit IRC
[19:10:26] *** fr has quit IRC
[19:11:10] *** tonyg-cr has joined #chromium
[19:11:10] *** ChanServ sets mode: +v tonyg-cr
[19:11:34] *** koollman has quit IRC
[19:11:45] *** Maxdamantus has joined #chromium
[19:12:16] <jrg> maruel mark ping
[19:12:16] *** robertshield has quit IRC
[19:14:22] *** fr has joined #chromium
[19:16:20] <malavv> Hi guys, Is there a way to Release a Singleton in Chromium?
[19:16:47] <malavv> I have seen DefaultSingletonTraits::Delete(Type* p)
[19:17:00] <malavv> But I'm not sure this is what I want
[19:17:03] <willchan> what do you mean by release?  do you want to delete it?
[19:17:13] <willchan> it will get deleted by the AtExitManager
[19:17:27] <malavv> Yes, well in fact I have a problem with unit_test
[19:17:59] *** koollman has joined #chromium
[19:18:00] <malavv> In normal use it is always called on the same thread, but in unit_test of url_fetcher a lot of io_thread are created
[19:18:30] *** iamdharma has joined #chromium
[19:18:31] <rohitrao> huh
[19:18:40] <rohitrao> google search is giving me horrible results for [NSResponder]
[19:19:00] <jrg> arv: 10.6 bot being mean.  I can't ssh in; perhaps there is an open fd leak leaving none left to even let me log in.  maruel is force-rebooting it via serial line.
[19:19:02] <malavv> It seems that the singleton is common to 2 test but the test set_up reintitiate the io_thread
[19:19:47] <willchan> the test setup reinitializes the io_thread?  what test are you talking about?
[19:19:56] <willchan> that sounds weird and broken.
[19:21:11] <malavv> Well sorry, maybe I didn't tell it well
[19:21:36] *** urbanape has quit IRC
[19:21:45] <malavv> In one test is post a message loop quit task
[19:21:57] <evmar> i need help with someone on a mac in updating our libxml.  who has a few minutes to run a configure script for me?
[19:22:00] <evmar> same for windows
[19:22:07] <malavv> And I guess the other is recreating a new one
[19:24:27] <stuartmorgan> evmar: I can do it now if it's really quick, or in ~20 mins otherwise
[19:26:19] *** csilv has joined #chromium
[19:26:20] *** loislo has quit IRC
[19:26:20] *** ChanServ sets mode: +v csilv
[19:26:45] <jrg> arv: got meeting now and tied up in others until 1.  Will be back on the sheriff clock then.
[19:27:07] *** dhw has joined #chromium
[19:27:08] *** urbanape has joined #chromium
[19:27:19] *** sbyer has quit IRC
[19:27:45] <arv> jrg: I got meetings at 11 and 2 but I'll bring my laptop to those
[19:28:06] <maruel> arv: I've restarted the slave finally
[19:28:17] <arv> maruel: thx
[19:29:27] *** sbyer has joined #chromium
[19:29:27] *** ChanServ sets mode: +v sbyer
[19:29:51] <dhw> ping vandebo
[19:32:38] *** dave_levin has joined #chromium
[19:32:38] *** ChanServ sets mode: +v dave_levin
[19:36:20] *** eseidel has joined #chromium
[19:37:08] <eglaysher> screw
[19:37:40] <issackelly> ok, closer to a reasonble time for PST - still trying to sort this out: I'm getting a notice about my json data "Resource interpreted as document but transferred with MIME type application/json."  I'm not sure why it would intrepret it as a document,  I seem to process it 'ok' on the end (in chrome)
[19:38:12] <kermit> does browsing history ever expire?
[19:38:37] <issackelly> in FF it tries to download the thing as text/plain (document)
[19:38:45] <trungl-bot> Tree closed by erg at chromium dot org (:eglaysher): Tree is closed (win compile -> erg)
[19:39:46] <trungl-bot> Tree closed by buildbot at chromium dot org: Tree is closed (Automatic: "compile" on "Webkit Builder (dbg)" from 52093: erg at chromium dot org (:eglaysher))
[19:40:18] *** ojan has quit IRC
[19:40:35] <eglaysher> "fatal error RC1109: error creating c:\b\slave\webkit-dbg-builder\build\src\webkit\Debug\obj\DumpRenderTree\DumpRenderTree.exe.embed.manifest.res"
[19:40:38] <eglaysher> wot.
[19:41:23] <selckin> the
[19:43:14] *** ph0nk has quit IRC
[19:43:17] *** ph0nk has joined #chromium
[19:44:49] <trungl-bot> Tree opened by erg at chromium dot org (:eglaysher): Tree is open (compile failure went green on next run!?)
[19:46:06] <dhw> Okay, general question then... who should I ask about recent HTTP authentication problems that crash the browser?
[19:46:16] *** snorp has joined #chromium
[19:46:56] *** Dykam has joined #chromium
[19:47:08] *** fta_ has joined #chromium
[19:47:38] <willchan> dhw: cbentzel is fixing that
[19:47:47] <willchan> or might have already fixed them
[19:48:18] <dhw> Is that http://crbug.com/48690 ?
[19:48:40] *** fta has quit IRC
[19:48:47] *** fta_ is now known as fta
[19:49:07] *** maikmerten has joined #chromium
[19:49:18] <dhw> Looks like it....... sunandt has duped all the bug reports
[19:49:57] *** dhw has quit IRC
[19:50:13] *** urbanape has quit IRC
[19:50:40] *** lgombos has quit IRC
[19:54:00] *** duffy has left #chromium
[19:58:50] *** joaop5 has joined #chromium
[20:00:00] *** urbanape has joined #chromium
[20:00:43] *** agayev has joined #chromium
[20:01:31] *** Peter- has quit IRC
[20:04:11] *** Peter- has joined #chromium
[20:07:04] *** shreyas has quit IRC
[20:07:33] *** timsteele has joined #chromium
[20:07:45] *** loislo has joined #chromium
[20:08:36] *** bandu has joined #chromium
[20:09:14] *** eroman has joined #chromium
[20:09:15] *** ChanServ sets mode: +v eroman
[20:10:04] *** MikeSmithW3C has quit IRC
[20:10:16] *** eroman has quit IRC
[20:10:38] *** eroman has joined #chromium
[20:10:38] *** ChanServ sets mode: +v eroman
[20:10:50] *** kerz has joined #chromium
[20:10:51] *** ChanServ sets mode: +v kerz
[20:11:04] *** inferno-sec has joined #chromium
[20:11:05] *** ChanServ sets mode: +v inferno-sec
[20:11:29] <timsteele> hello sherrifs! requesting permission to land GRD change
[20:12:14] *** rafaelw2 has joined #chromium
[20:12:14] *** ChanServ sets mode: +v rafaelw2
[20:14:51] *** MikeSmithW3C has joined #chromium
[20:19:45] *** Kunalagon has joined #chromium
[20:21:54] *** bent-mozilla has joined #chromium
[20:22:00] *** Zucca has quit IRC
[20:23:30] *** Zucca has joined #chromium
[20:24:57] *** bevc_work has joined #chromium
[20:24:57] *** ChanServ sets mode: +v bevc_work
[20:25:18] *** dmaclach has quit IRC
[20:25:56] *** dmaclach has joined #chromium
[20:28:41] *** kerz has quit IRC
[20:30:32] <vandebo> if a grd change is going to happen, now would be a pretty good time to close the tree for it - both builders will finish in the next few minutes
[20:30:54] *** Al2O3 has joined #chromium
[20:31:08] <Al2O3> hi, does anyone know of an IRC channel for google earth?
[20:31:22] <Al2O3> both #google-earth and ##google-earth seem dead
[20:32:00] *** LaraNYC has joined #chromium
[20:32:35] <timsteele> vandebo: okay, thanks, think I'll give it a go now. i'm not sure it will break things, didn't have to clobber the trybots..
[20:34:06] *** eseidel has quit IRC
[20:34:15] <vandebo> I'm not a sheriff, but you should follow the grd landing instructions on the sheriff page
[20:34:26] <trungl-bot> Tree closed by buildbot at chromium dot org: Tree is closed (Automatic: "net_unittests" on "Modules XP (dbg)" from 52106: erikchen at google dot com, eroman at chromium dot org (:eroman), vandebo at chromium dot org)
[20:34:52] <timsteele> yeah, I was doing so, just closed the tree and landed, but now something else broke :(
[20:35:00] *** fqian has joined #chromium
[20:35:14] <erikchen> =/
[20:35:17] <erikchen> I'll revert that
[20:35:30] *** hinoka|away has quit IRC
[20:36:43] *** jamesr has joined #chromium
[20:36:43] *** ChanServ sets mode: +v jamesr
[20:37:55] *** ph0nk has quit IRC
[20:39:34] *** podivilov has quit IRC
[20:39:53] <erikchen> reverted
[20:40:13] <arv> erikchen: thanks
[20:42:33] <vandebo> arm seems unhappy
[20:42:52] <erikchen> oh, was that actually me?
[20:43:16] <erikchen> I just assumed b/c it was spdy stuff
[20:43:25] <vandebo> seems likely - arm comment was unrelated
[20:43:29] <erikchen> ok
[20:44:37] *** mirandac has quit IRC
[20:44:58] *** LaraNYC has left #chromium
[20:46:54] *** dmaclach has quit IRC
[20:47:16] *** eseidel has joined #chromium
[20:47:17] *** dmaclach has joined #chromium
[20:47:34] <trungl-bot> Tree closed by vandebo at chromium dot org: Tree is closed (grd change & revert in for Modules XP (dbg) net_unittests)
[20:52:36] <vandebo> did something on the arm bot change? I don't see why it would start throwing deprecated warnings on those changes
[20:53:49] *** tonyg-cr has quit IRC
[21:00:18] <arv> vandebo: who would know?
[21:06:09] *** jcastro has quit IRC
[21:07:48] <trungl-bot> Tree opened by arv at chromium dot org: Tree is open
[21:07:53] *** tav_ has joined #chromium
[21:08:03] *** NthDeGeek has quit IRC
[21:09:21] *** tav has quit IRC
[21:09:21] *** tav_ is now known as tav
[21:11:27] *** Zucca has quit IRC
[21:11:34] *** arv is now known as arv_afk
[21:12:24] *** Zucca has joined #chromium
[21:12:25] *** hinoka|away has joined #chromium
[21:12:25] *** ChanServ sets mode: +v hinoka|away
[21:16:53] *** ebraminio has quit IRC
[21:19:32] *** tonyg-cr has joined #chromium
[21:19:33] *** ChanServ sets mode: +v tonyg-cr
[21:27:53] *** apavlov has quit IRC
[21:28:19] *** pathorn has joined #chromium
[21:28:20] *** ChanServ sets mode: +v pathorn
[21:28:54] *** mattm_g has joined #chromium
[21:28:54] *** ChanServ sets mode: +v mattm_g
[21:36:15] *** Beetny has quit IRC
[21:37:14] *** Beetny has joined #chromium
[21:37:25] *** loislo_ has joined #chromium
[21:40:05] *** loislo has quit IRC
[21:40:05] *** loislo_ is now known as loislo
[21:45:28] *** pfeldman has quit IRC
[21:48:11] *** taf2 has quit IRC
[21:48:37] *** hinoka|away has quit IRC
[21:48:43] *** maikmerten has quit IRC
[21:49:53] *** fsamuel has left #chromium
[21:50:15] *** Dykam has quit IRC
[21:51:01] *** fsamuel has joined #chromium
[21:51:48] <fsamuel> hi all, I'm trying to use eventSender through test_shell...is that possible? Do I need to give test shell any special arguments to enable eventSender?
[21:54:56] *** MichealH has joined #chromium
[21:55:14] *** andrix1 has joined #chromium
[21:55:24] <trungl-bot> Tree closed by buildbot at chromium dot org: Tree is closed (Automatic: "compile" on "Chromium Linux Builder x64" from 52123: estade at chromium dot org)
[21:55:35] <estade> looking
[21:56:29] *** andrix has quit IRC
[21:57:10] <fsamuel> Anyone know how to get eventSender working in test shell?
[21:57:26] <trungl-bot> Tree closed by arv at chromium dot org: Tree is closed (estade)
[21:57:47] *** satish_ has joined #chromium
[21:58:02] *** dumi has quit IRC
[21:58:37] *** timsteele has quit IRC
[21:59:17] *** ebraminio has joined #chromium
[22:00:43] *** pkasting has quit IRC
[22:00:43] *** rohitrao has quit IRC
[22:02:03] <jamesr>  fsamuel: it works, you have to pass the layout test flags
[22:02:25] <jamesr> fsamuel: look in webkit/tools/test_shell/test_shell_switches
[22:03:18] *** pkasting has joined #chromium
[22:03:18] *** ChanServ sets mode: +v pkasting
[22:03:49] *** NthDeGeek has joined #chromium
[22:03:50] <NthDeGeek> y
[22:03:57] <NthDeGeek> oops
[22:04:44] *** andrix1 has quit IRC
[22:06:30] <malavv> If we want to enforce that something is on the IO thread should we use something like DCHECK(current_loop_, MessageLoop::curent) or check it to be of type IO?
[22:07:00] <jrg> malavv: there is a "is current thread of type FOO" DCHECK example in the code
[22:07:05] <maruel> malavv: grep for IO
[22:07:11] <maruel> what jrg said
[22:07:17] <fsamuel> jamesr: Thanks.. So I must use --layout-tests? That mode seems to require an expected output...it would be nice to just enable the eventSender without layout test mode
[22:07:27] <jrg> what maruel said
[22:07:40] <trungl-bot> Tree opened by estade at chromium dot org: Tree is open (estade fixed linux compile bustage, should go green)
[22:07:44] <willchan> malavv: within chrome code, you can use ChromeThread::IsCurrentlyOn()
[22:07:51] <jamesr> fsamuel: why?
[22:08:09] <jamesr> you can run test_shell manually with the layout test flags enabled without using the layout test driver scripts
[22:08:23] <willchan> within net code, you aren't allowed to be aware of the "IO" thread.  networking objects are non thread safe, but aren't all necessarily running on the same thread.
[22:08:30] <jrg> arv: I'm back on.  Going to sync and start attacking memory bot redness unless there are other pressing needs
[22:08:58] *** hinoka|away has joined #chromium
[22:08:58] *** ChanServ sets mode: +v hinoka|away
[22:10:06] *** hinoka|away has quit IRC
[22:10:49] *** malavv has quit IRC
[22:11:43] <trungl-bot> Tree closed by buildbot at chromium dot org: Tree is closed (Automatic: "compile" on "Chromium Linux Builder (dbg)" from 52123: estade at chromium dot org, levin at chromium dot org (:dave_levin))
[22:13:35] *** fta_ has joined #chromium
[22:13:55] *** chrisccoulson_ has joined #chromium
[22:14:11] <fsamuel> jamesr: Hmm, ohh, nm, I was missing a font kochi-mincho.ttf which was causing test shell to crash
[22:14:19] <fsamuel> jamesr: thanks
[22:14:31] <jrg> estade: did you back out your CL?
[22:14:40] <jamesr> fsamuel: yeah, that stuff is a pain
[22:14:45] <estade> jrg: no, fixed it. tree re-closed itself
[22:15:03] *** fta has quit IRC
[22:15:06] <estade> (same failure, different bot)
[22:15:15] *** fta_ is now known as fta
[22:15:34] *** chrisccoulson has quit IRC
[22:15:35] <jrg> estade: please re-open then.  (For some reason waterfall taking forever in my browser)
[22:15:42] <estade> jrg: mine too
[22:15:46] <jrg> argh
[22:16:36] <jrg> maruel nsylvain: waterfall seems a bit slow... slower than internal google sites, or external ones.  Not sure if it's something you want to look at.
[22:16:47] <trungl-bot> Tree opened by estade at chromium dot org: Tree is open (estade fixed linux compile bustage, should go green)
[22:16:50] <maruel> bevc_work: ^^
[22:16:58] <jrg> estade: thx
[22:17:30] <maruel> jrg: one master is indeed at 100% cpu usage
[22:17:40] <jrg> bev_work: it's taking ~1min to update the page, using both internal and external links.  external link often times out with proxy error.
[22:18:37] <maruel> and it's master.chromium that is spinning
[22:19:25] <markmentovai> bevc_work: yes, i?ve noticed that too today.
[22:20:39] *** arv_afk is now known as arv
[22:21:43] *** pfeldman has joined #chromium
[22:24:03] *** bent-mozilla has quit IRC
[22:24:59] *** abarth has joined #chromium
[22:24:59] *** ChanServ sets mode: +v abarth
[22:25:03] <nsylvain> ok, well, looks like we don't ahve much of a choice. restarting it now?
[22:25:37] <arv> jrg: I think we need to close the tree again. There are a lot of non linux issues
[22:25:50] <jrg> arv: do it.
[22:26:11] <nsylvain> maruel, markmentovai, arv, jrg, bevc_work: Ok if we kill the master now and restart it? It might fix the issue we are seeing
[22:26:12] <jrg> arv: working my way through memory bots now; let me know if I should change ack
[22:26:23] <jrg> nsylvain: let arv close tree first
[22:26:29] <nsylvain> sounds good
[22:26:36] <markmentovai> nsylvain: approve, close the tree
[22:26:39] <arv> closed
[22:26:40] <markmentovai> (looks closed now)
[22:26:52] <trungl-bot> Tree closed by arv at chromium dot org: Tree is closed
[22:26:53] *** issackelly has quit IRC
[22:26:58] *** jcastro has joined #chromium
[22:27:05] <markmentovai> and away we go
[22:27:27] <nsylvain> there is a lot of pending build, so it will be completely purple, unless we want for like 90 minutes
[22:27:36] <bevc_work> nsylvain: need help?
[22:27:49] <nsylvain> dont think so
[22:27:58] <nsylvain> i'll try to minimize the number of bots updating
[22:30:17] *** zer0her0 has quit IRC
[22:32:38] *** hebz0rl has joined #chromium
[22:33:40] <nsylvain> forcing all the builds now
[22:35:30] <maruel> nsylvain: you want me to run a mass svn cleanup?
[22:35:37] <nsylvain> no need
[22:35:42] <maruel> ok
[22:37:16] *** Al2O3 has quit IRC
[22:37:47] *** Al2O3 has joined #chromium
[22:43:49] *** Venom_X is now known as Venom_lnch
[22:44:31] *** rvargas has joined #chromium
[22:44:31] *** ChanServ sets mode: +v rvargas
[22:54:55] *** tonikitoo has quit IRC
[22:57:25] *** duffydack has joined #chromium
[22:57:50] *** fta_ has joined #chromium
[22:59:09] *** fta has quit IRC
[22:59:14] *** fta_ is now known as fta
[23:01:21] *** tonyg-cr1 has joined #chromium
[23:01:21] *** ChanServ sets mode: +v tonyg-cr1
[23:02:43] *** tonyg-cr has quit IRC
[23:02:55] *** fqian_ has joined #chromium
[23:03:35] *** fqian has quit IRC
[23:03:38] *** fqian_ is now known as fqian
[23:04:08] *** ojan has joined #chromium
[23:04:09] *** ChanServ sets mode: +v ojan
[23:04:18] *** jlebar has joined #chromium
[23:05:00] <jrg> arv: http://codereview.chromium.org/2923008
[23:05:02] *** vithos has quit IRC
[23:06:13] *** bmizerany has joined #chromium
[23:06:31] *** duffydack has left #chromium
[23:06:41] *** MichealH has quit IRC
[23:07:38] *** ROBOd has quit IRC
[23:10:21] <jrg> arv: wandering away for a bit.  Not that it matters with tree state :-(  WIll finish killing memory bot redness when I get back.
[23:10:47] *** ojan has quit IRC
[23:11:12] *** ojan has joined #chromium
[23:11:20] *** ChanServ sets mode: +v ojan
[23:11:28] *** abarth has quit IRC
[23:11:39] *** ojan has quit IRC
[23:12:33] *** ojan has joined #chromium
[23:12:34] *** ChanServ sets mode: +v ojan
[23:13:19] <nsylvain> I think the tree is ready to take one or 2 changes
[23:13:36] <nsylvain> anyone on chromium arm?
[23:15:48] *** vithos has joined #chromium
[23:15:49] <nsylvain> looks like pamg
[23:17:19] <nsylvain> jrg. hwennborg, arv: Tree is getting better now. Maybe reopen? Chromium ARM looks like Pam's change. We could revert.. or fix. It does not look too complicated.  Webkit Mac 10.5 needs help from a Mac guy ( markmentovai? ).
[23:18:28] <markmentovai> lemme see
[23:18:39] <trungl-bot> Tree opened by arv at chromium dot org: Tree is open
[23:18:49] <markmentovai> nsylvain: what?s this, it?s trying to download some python modules from the internet?
[23:19:08] <markmentovai> you know anything about that?
[23:19:11] <nsylvain> yeah, never seen that before. and this url is not even working
[23:19:27] <nsylvain> looks wrong to me ;)
[23:19:30] <markmentovai> yup
[23:20:09] <markmentovai> WebKitTools/Scripts/webkitpy/thirdparty/__init__.py
[23:20:24] <evmar> heh, eric is keen on it autodownloading
[23:20:29] *** hrna has quit IRC
[23:20:37] <markmentovai> that's nice
[23:20:41] *** dumi has joined #chromium
[23:20:42] *** ChanServ sets mode: +v dumi
[23:20:51] <evmar> up until you want to run it somewhere that doesn't have internet access
[23:21:01] *** General1337 has joined #chromium
[23:21:23] <markmentovai> we should have internet access
[23:21:29] <pkasting> arv: Sometime this afternoon (when I get an r+ on my last outstanding patch) I'd like to land my .grd changes (some of which you've reviewed).  I've got 5 patches that each touch different files, I figure I could land them all at once to minimize the amount of tree closure time.  How's that sound?
[23:21:29] <markmentovai> i can?t connect to that from here either though
[23:21:37] <markmentovai> eric is not online
[23:21:55] <arv> pkasting: sgtm
[23:22:05] <tony^work> markmentovai: he's on irc, he's talking on #webkit
[23:22:14] <tony^work> eseidel: ping
[23:22:15] <markmentovai> tony^work: great
[23:22:26] <markmentovai> eseidel:
[23:22:57] <pkasting> arv: Actually tony gave me r+ as I said that
[23:23:06] <pkasting> arv: So I'm ready whenever it's a convenient time
[23:24:22] *** General13372 has quit IRC
[23:24:56] *** blueness has joined #chromium
[23:25:05] *** tonyg-cr1 has quit IRC
[23:25:10] *** evmar is now known as evmar_afk
[23:25:25] *** Cheery has joined #chromium
[23:29:24] <markmentovai> nsylvain, sheriffs: i think mac webkit will remain red until webkit rolls past 63087
[23:29:37] <markmentovai> this script seems to want to hit the network at this bad address *every time*
[23:29:47] <markmentovai> even after i've already installed that module where it wnats it
[23:29:59] *** tonyg-cr has joined #chromium
[23:30:00] *** ChanServ sets mode: +v tonyg-cr
[23:30:00] *** pfeldman has quit IRC
[23:30:14] *** agayev has quit IRC
[23:30:21] *** NthDeGeek has quit IRC
[23:30:24] *** nfa has left #chromium
[23:31:09] *** agayev has joined #chromium
[23:31:20] <Cheery> is there some straightout way to get pixel from an image?
[23:31:39] *** malavv has joined #chromium
[23:34:03] *** scottz_ has joined #chromium
[23:34:04] *** ChanServ sets mode: +v scottz_
[23:34:17] <awong> agh.
[23:34:45] <awong> markmentovai: webkit roll is still trying to get off the ground since last week friday.
[23:35:03] <markmentovai> well, f.
[23:35:14] <awong> yes.
[23:35:22] <markmentovai> i don?t know why mac is the only platform affected by this.
[23:35:53] <awong> things have just been messed up.
[23:36:12] <markmentovai> seems so
[23:36:20] <awong> is there a minimum python version supported in windows btw?
[23:36:27] <awong> can we assume python 2.6?
[23:36:30] <awong> python 2.5
[23:37:12] <jamesr> i think we bundle one explicitly
[23:38:07] <awong> jamesr: scherkus just found it for me...we use 2.4.
[23:38:16] <jamesr> ><
[23:38:44] *** hebz0rl_ has joined #chromium
[23:38:47] *** michaeln has joined #chromium
[23:38:47] *** ChanServ sets mode: +v michaeln
[23:39:50] <tony^work> awong: 2.6
[23:39:56] <tony^work> we're trying to move off of 2.4
[23:40:22] <awong> tony^work: are we 100% there yet?  A recent script change uses the "with" syntax, and it's brekaing on me locally.
[23:40:23] <tony^work> awong: use the copy of python that comes with depot_tools instead of what's checked in
[23:40:32] <awong> ok
[23:40:36] <tony^work> how is it breaking you locally?
[23:40:45] *** trungl_afk is now known as trungl
[23:40:50] <awong> I'm doing run_webkit_tests.sh, and it's failing
[23:41:30] <tony^work> hmm, that file just runs "python" that's in your path
[23:41:35] <awong> yeah
[23:41:41] <tony^work> do you have something that comes before depot_tools in your path?
[23:41:45] *** hebz0rl has quit IRC
[23:41:57] <tony^work> depot_tools' python should be 2.6 which should come first
[23:41:57] <awong> I'll put depot_tools first
[23:42:04] <awong> (not my box...)
[23:42:17] <tony^work> ah, I see
[23:42:39] *** ojan_ has joined #chromium
[23:42:40] *** ChanServ sets mode: +v ojan_
[23:43:34] <awong> tony^work: no dice.  depot_tools at 52133.  ./python -V = 2.4.1
[23:43:43] *** ojan has quit IRC
[23:43:43] *** ojan_ is now known as ojan
[23:44:52] <Cheery> Why does the text in context -element look so blurry?
[23:45:19] <tony^work> hmm, maruel: any ideas why python from depot_tools isn't getting updated?
[23:45:31] <tony^work> awong: is there a python subdir that you can manually svn up?
[23:45:33] *** fta_ has joined #chromium
[23:45:58] <tony^work> a 'gclient help' might force an update as well
[23:46:17] <awong> is 52133 old?
[23:46:25] <awong> I did an svn up, and that's where it landed.
[23:47:40] *** fta has quit IRC
[23:47:44] *** fta_ is now known as fta
[23:47:48] <awong> tony^work: what is your depot_tools at?
[23:48:30] *** romainhuet has quit IRC
[23:49:11] *** abarth has joined #chromium
[23:49:11] *** ChanServ sets mode: +v abarth
[23:49:24] <dcheng> awong: The last time this happened to me, I had to delete python and co from depot_tools.
[23:49:37] <dcheng> awong: Then running gclient magically got the latest version of Python. I think.
[23:50:06] <awong> dcheng: okay
[23:50:24] *** scottz_ has quit IRC
[23:50:28] *** pdelgallego has quit IRC
[23:51:27] *** awidegreen has quit IRC
[23:54:56] *** jrmuizel has quit IRC
[23:55:22] *** dhollowa has quit IRC
[23:55:44] *** aroben has quit IRC
[23:57:25] *** akalin has quit IRC
[23:57:59] <awong> dcheng: that fixed it.
[23:58:10] *** Kunalagon has quit IRC
[23:58:46] * awong notes, with sad irony, that everyone messing with the windows build breaks doesn't work with windows primarily.
[23:59:45] *** fqian has quit IRC

top