/irc-logs / mozilla / #developers / 2011-12-08 / end

Options:

  1. # Session Start: Thu Dec 08 00:00:00 2011
  2. # Session Ident: #developers
  3. # [00:00] * Quits: bjarne (bjarne@moz-CC17C2F6.nextgentel.com) (Quit: Leaving.)
  4. # [00:01] * Quits: madhava (madhava@F2D29657.F60B0462.67AC9B1.IP) (Quit: madhava)
  5. # [00:01] * Joins: mdas (mdas@8ACF1000.5EFFC0B8.24454B25.IP)
  6. # [00:01] * Joins: mconley (mconley@A00174C9.68469654.6816E6B7.IP)
  7. # [00:02] * Joins: redfive (chatzilla@moz-B94E1A81.ipnetworksinc.net)
  8. # [00:04] * Quits: Mnyromyr (Mnyromyr@B2521176.7B0892CB.771966F7.IP) (Quit: ChatZilla 0.9.86 [SeaMonkey 1.1.19/2010030105])
  9. # [00:04] * njn wonders if the condition in http://pastebin.mozilla.org/1395637 can ever succeed; GCC claims it can't
  10. # [00:05] * Quits: joey (chatzilla@moz-EFCB4CBF.princetowncable.com) (Quit: ChatZilla 0.9.87 [Firefox 10.0a2/20111205042035])
  11. # [00:06] * philor is now known as philor|away
  12. # [00:06] <Mook_as> njn: PRBool?
  13. # [00:06] <@bz> njn: with PRBool it could have
  14. # [00:06] <@bz> njn: at this point, it can't
  15. # [00:06] <njn> bz: but with 'bool' seemingly not
  16. # [00:06] <@bz> well....
  17. # [00:06] <njn> bz: -Wlogical-ops FTW
  18. # [00:06] <@bz> actually
  19. # [00:06] <@bz> that's unclear
  20. # [00:06] <@bz> or more precisely....
  21. # [00:06] <@bz> if ReadBoolean is sane it should work
  22. # [00:07] <njn> http://mxr.mozilla.org/mozilla-central/source/xpcom/io/nsBinaryStream.cpp#474
  23. # [00:07] <@bz> if it reinterpret_casts the pointer and writes some sort of random byte pattern there, then anything could happen
  24. # [00:07] <njn> bz: so it does a !!x
  25. # [00:07] <@bz> we did some experiments on this
  26. # [00:07] * Quits: mayhemer (Miranda@B3D46202.F87A741B.F23860FD.IP) (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
  27. # [00:07] <ejpbruel> hey guys
  28. # [00:07] <ejpbruel> the jetpack team has been having this weird issue where scrolling doesnt work properly on OSX
  29. # [00:07] <ejpbruel> https://bugzilla.mozilla.org/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&emailassigned_to1=1&emailreporter1=1&emailtype1=exact&email1=ejpbruel%40mozilla.com&field0-0-0=bug_status&type0-0-0=notequals&value0-0-0=UNCONFIRMED&field0-0-1=reporter&type0-0-1=equals&value0-0-1=ejpbruel%40mozilla.com&list_id=1843276
  30. # [00:07] <mbrubeck> and then you're in undefined-behavior land and C++ doesn't care what it does to your program
  31. # [00:07] <@bz> where if you force a non-boolean value into bool storage, gcc will happily do weird things
  32. # [00:07] * rail is now known as rail_away
  33. # [00:07] <ejpbruel> i want to look into this, but i have no idea where to start
  34. # [00:07] <@bz> mbrubeck: precisely
  35. # [00:08] <ejpbruel> can any of you point me in the right direction?
  36. # [00:08] <njn> ugh
  37. # [00:08] <Mook_as> njn: hah, I guess you assume people don't pass you streams they implement themselves, or override the contract id, etc. :p
  38. # [00:08] <@bz> I think assuming that isRefValid is sane is ok here
  39. # [00:08] * Mook_as would have thought != (bool) should have been jz/jnz anyway, so it wouldn't matter on... some architectures
  40. # [00:09] <@bz> Mook_as: it's not necessarily
  41. # [00:09] <Pike> ted, khuey : for gnu make, is there any difference between DIRS and PARALLEL_DIRS?
  42. # [00:09] <@bz> Mook_as: depending on optimization levels and stuff
  43. # [00:09] <@bz> Mook_as: I definitely managed to write a testcase recently where gcc treated a bool value as both != true and != false
  44. # [00:09] <Mook_as> bz: ah, yes, I guess the compiler _can_ try the "be as verbose and slow as possible" mode :)
  45. # [00:09] <@bz> Mook_as: with some appropriate casting
  46. # [00:09] <@bz> Mook_as: s/can/does/
  47. # [00:09] <Mook_as> :D
  48. # [00:09] * terrence|away is now known as terrence
  49. # [00:10] <njn> bz: Wunused-but-set-variable seems pretty useful
  50. # [00:10] * mdas is now known as mdas|afk
  51. # [00:10] <njn> It's found various things
  52. # [00:10] <khuey> Pike: yes
  53. # [00:10] <ejpbruel> ejpbruel: anyone? :(
  54. # [00:10] <khuey> one builds in parallel, the other doesn't
  55. # [00:10] * Quits: slowpoke (slowpoke@moz-AE67AB45.gigabit.perfect-privacy.com) (Ping timeout)
  56. # [00:11] * Joins: bsmith (bsmith@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  57. # [00:11] <@bz> njn: yeah
  58. # [00:11] <@bz> njn: agreed
  59. # [00:12] <@bz> njn: esp. now that we have DebugOnly
  60. # [00:12] <njn> bz: I'm tryiing to work out which warnings are really useful, in order to turn on -Werror=foo
  61. # [00:12] <Pike> khuey: is there a dependency between the current dir and the subdirs?
  62. # [00:12] <njn> bz: we already have -Werror=return-type
  63. # [00:12] <njn> bz: it's an educational experience
  64. # [00:12] * Joins: mixedpuppy (mixedpuppy@8218E429.CF4F0E4E.3ECF35D.IP)
  65. # [00:12] <njn> "oh, no sane code would ever do that... oh, it does"
  66. # [00:12] <khuey> Pike: the commands in the current directory are always executed before things in subdirectories
  67. # [00:12] <@bz> njn: heh
  68. # [00:12] <mixedpuppy> is there any existing test code for testing XHR timeouts?
  69. # [00:12] <Pike> khuey: also, I'd be curious to see where we control that, failed to see that ad hoc
  70. # [00:13] * philor|away is now known as philor
  71. # [00:14] <klugefoo> is there an updated version of https://developer.mozilla.org/en/Building_a_component_DLL ? Vague answers arrived from google talk about FORCE_SHARED_LIB, but fail to explain why/when the change took place
  72. # [00:15] * Quits: ajuma (ajuma@F2D29657.F60B0462.67AC9B1.IP) (Quit: ajuma)
  73. # [00:15] * Joins: abral (Mibbit@F3123211.35165B04.10DC0B64.IP)
  74. # [00:16] * Joins: necolas (necolas@moz-4197BE5D.bb.sky.com)
  75. # [00:16] * Quits: mconley (mconley@A00174C9.68469654.6816E6B7.IP) (Input/output error)
  76. # [00:17] * Joins: alex (alex@moz-BD8D0A09.lightspeed.sntcca.sbcglobal.net)
  77. # [00:17] * Quits: romeo (romeo@moz-A9325888.k459.webspeed.dk) (Quit: Leaving)
  78. # [00:17] <zpao> heycam: alright, i tracked that sessionstore problem as much as i could. i need more help from people like enn to take the next step
  79. # [00:18] * Quits: grubshka (grubshka@moz-646235CC.w109-212.abo.wanadoo.fr) (Ping timeout)
  80. # [00:18] * joduinn-mtg is now known as joduinn
  81. # [00:18] * Quits: abral (Mibbit@F3123211.35165B04.10DC0B64.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  82. # [00:18] <heycam> zpao, ok, thanks for looking in to it!
  83. # [00:19] <@bz> njn: ping
  84. # [00:19] <njn> bz: pong
  85. # [00:19] <zpao> heycam: of course. it turned out there was that other test with the same issues though not consistently (i knew my new test couldn't have been the only one!)
  86. # [00:19] <@bz> njn: can you take a quick look at https://bugzilla.mozilla.org/show_bug.cgi?id=689443#c7 ?
  87. # [00:19] <@bz> njn: I'm pretty sure it's the right thing, but just to make sure
  88. # [00:20] <njn> bz: looking
  89. # [00:20] * Quits: Unfocused (u2622@moz-160C58C6.com) (Max SendQ exceeded)
  90. # [00:20] * Quits: nthomas (chatzilla@1B429348.CAF5036D.44E4C2B.IP) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 1.9.2.13/20101203074337])
  91. # [00:20] * Quits: rwaldron (rwaldron@moz-BDCCF091.hfc.comcastbusiness.net) (Ping timeout)
  92. # [00:20] * Joins: Unfocused (u2622@moz-160C58C6.com)
  93. # [00:20] * Quits: bwinton_away (bwinton@D7D3C4B5.88764A66.72A31D6.IP) (Ping timeout)
  94. # [00:21] <khuey> Pike: http://mxr.mozilla.org/mozilla-central/source/config/makefiles/target_export.mk#66
  95. # [00:21] <heycam> zpao, so the root cause is something like "a js-backed treeview has its functions called by c++ after the window containing it has closed" it sounds like?
  96. # [00:21] <njn> bz: yeah, it's ok
  97. # [00:22] <njn> bz: I'll comment in the bug
  98. # [00:22] <@bz> njn: thanks
  99. # [00:22] * Quits: armenzg_away (armenzg@500CA98.5BCEC6DB.DA78B690.IP) (Input/output error)
  100. # [00:22] * Quits: mdas|afk (mdas@8ACF1000.5EFFC0B8.24454B25.IP) (Quit: mdas|afk)
  101. # [00:22] <zpao> heycam: something like that. the window isn't really being closed though. in those tests we're overwriting the open about:sessionrestore tab (with the treeview)
  102. # [00:22] <njn> bz: are you asking about 4096 vs 256?
  103. # [00:22] <njn> or if we need something slightly smaller than 4096?
  104. # [00:22] <@bz> njn: well, and whether 4096 is the right value in general
  105. # [00:22] * mak may have introduced an orange
  106. # [00:22] * Quits: jet (junglecode@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: jet)
  107. # [00:23] <zpao> heycam: though for some definition of window, you might be right
  108. # [00:23] <Pike> khuey: wow, I hadn't run across those yet. all I knew was rules.mk and config.mk
  109. # [00:23] * Quits: Hendikins (wolfox@moz-9A361C95.static.internode.on.net) (Ping timeout)
  110. # [00:23] <Pike> times have changed, clearly
  111. # [00:23] <mak> philor edmorley if you see failures in test_421180.js I'm looking into it. I think I know what happens
  112. # [00:23] <khuey> those are new
  113. # [00:23] <khuey> very new
  114. # [00:23] <khuey> stuff got split out of rules.mk
  115. # [00:23] <heycam> zpao, ok
  116. # [00:23] <njn> bz: any power-of-two is reasonable, the exact size depends on how many things get allocated out of the arena and how many arenas there are
  117. # [00:23] * Joins: Hendikins (wolfox@moz-9A361C95.static.internode.on.net)
  118. # [00:24] <@bz> njn: this is an on-stack arena
  119. # [00:24] <@bz> njn: so I only care that it doesn't fragment other things
  120. # [00:24] <njn> bz: the |PLArenaPool| might be on-stack, but all the allocations done within it are on the heap
  121. # [00:24] <@bz> sure
  122. # [00:25] * Joins: slowpoke (slowpoke@moz-AE67AB45.gigabit.perfect-privacy.com)
  123. # [00:25] <edmorley> mak: thanks :-)
  124. # [00:25] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  125. # [00:25] <@bz> Point being we'll deallocate them before this function returns
  126. # [00:25] <@bz> so my main goal is that they don't fragment the heap
  127. # [00:25] * Joins: birtles (chatzilla@moz-348F61F0.mozilla.or.jp)
  128. # [00:25] * Joins: davidb (davidb@moz-976CD2.dsl.bell.ca)
  129. # [00:26] <@bz> and I don't care if we overallocate a bit because it's so short-lived
  130. # [00:27] * Joins: bwinton_away (bwinton@D7D3C4B5.88764A66.72A31D6.IP)
  131. # [00:27] * Joins: jlebar (jlebar@5AAE35B2.5EFFC0B8.24454B25.IP)
  132. # [00:27] <njn> bz: fragmenting the heap shouldn't be a problem, it's all powers-of-two, I think jemalloc should handle that ok
  133. # [00:27] <njn> bz: you're worried that a 256 byte allocation will cause more external fragmentation in jemalloc than a 4096 allocation?
  134. # [00:28] * Quits: jprmc (jprmc@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: Leaving)
  135. # [00:28] * Joins: gandalf (zbraniecki@moz-26ED2BC5.neoplus.adsl.tpnet.pl)
  136. # [00:28] * Joins: jprmc (jprmc@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  137. # [00:29] <@bz> njn: I'm worried that it might cause jemalloc to allocate more pages that it then can't unmap
  138. # [00:29] * Ziggy_Maes is now known as Ziggy|AWAY
  139. # [00:29] <@bz> njn: whereas it seems like a 4096 allocation will let it unmap the whole page
  140. # [00:29] * Joins: jet (junglecode@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  141. # [00:30] <njn> bz: so that I'm not sure about. On questions like that, I tend to assume jemalloc knows what it's doing -- power-of-two allocations should be easy for it to handle
  142. # [00:30] * coop is now known as coop|afk
  143. # [00:30] <njn> jlebar might know more
  144. # [00:30] <jlebar> Wait, bz is up?
  145. # [00:30] <@bz> heh
  146. # [00:30] * @bz is about to go have dinner
  147. # [00:30] <@bz> in fact, I'm getting glares
  148. # [00:30] <@bz> later
  149. # [00:30] * bz is now known as bz_dinner
  150. # [00:30] <jlebar> lol
  151. # [00:31] <@bz_dinner> but I'd love an answer to the above
  152. # [00:31] <jlebar> bz_dinner: reading, yes.
  153. # [00:31] <jlebar> njn: I didn't get the whole conversation; would you mind pastebinning? Or is there nothing important before "I'm worried it might cause jemalloc to allocate more pages."
  154. # [00:31] <njn> jlebar: the question is "will a short-lived (or many short-lived) 256 byte allocations fragment the heap more than 4096 byte allocations would"
  155. # [00:32] <njn> jlebar: my take is that if we have to micro-manage jemalloc at that level, we need a better allocator
  156. # [00:32] * Joins: nthomas (chatzilla@E39DA02F.C8F27E0B.44E4C2B.IP)
  157. # [00:33] * Joins: nhirata (nhirata.bu@moz-2A9C9106.hsd1.ca.comcast.net)
  158. # [00:33] <jlebar> njn: well… Do we have other allocations of the same size class intervening?
  159. # [00:33] * Joins: clee (clee@moz-BBE3ABD.mv.mozilla.com)
  160. # [00:33] <khuey> you should always prefer a single large allocation to multiple small allocations, no?
  161. # [00:33] <jlebar> In general, yeah.
  162. # [00:34] <jlebar> But if there are no other allocations of the same size class intervening, then it shouldn't add to fragmentation.
  163. # [00:34] <njn> jlebar: https://bugzilla.mozilla.org/show_bug.cgi?id=689443#c7 is the speicfic case
  164. # [00:34] <khuey> jlebar: right
  165. # [00:34] <njn> it's a plarenaPool
  166. # [00:34] <jlebar> In fact, the smaller allocations may be faster.
  167. # [00:34] <njn> so all the allocations will be the same size
  168. # [00:34] <gavin> man, dom mochitests take forever
  169. # [00:34] <khuey> that's cause you're running the w3c ones
  170. # [00:35] * Quits: ZER0 (ZER0@moz-149E7BC6.dynamic.upc.nl) (Connection reset by peer)
  171. # [00:35] * Quits: squib (squib-@moz-415BAA34.engr.wisc.edu) (Quit: Leaving)
  172. # [00:35] * Joins: ZER0 (ZER0@moz-149E7BC6.dynamic.upc.nl)
  173. # [00:35] <khuey> jlebar: but we're concerned about fragmentation, not speed
  174. # [00:35] <khuey> AIUI
  175. # [00:35] * Joins: mdas (mdas@8ACF1000.5EFFC0B8.24454B25.IP)
  176. # [00:35] <jlebar> khuey: sure...
  177. # [00:35] * jlebar continues to read.
  178. # [00:36] <khuey> also, you can never guarantee that there are no intervening allocations
  179. # [00:36] <khuey> threads and whatnot
  180. # [00:37] <jlebar> khuey: well, if we were on a new version of jemalloc, threads would be mostly separated...
  181. # [00:37] <khuey> (well, I suppose depending on how your allocator works ...)
  182. # [00:37] <khuey> yeah
  183. # [00:37] <mak> edmorley: pushed a fix
  184. # [00:37] <khuey> that's an interesting question
  185. # [00:37] <jlebar> khuey: but we use one arena, for some reason.
  186. # [00:37] * catlee is now known as catlee-away
  187. # [00:37] * Quits: smooney (smooney@moz-BBE3ABD.mv.mozilla.com) (Quit: smooney)
  188. # [00:37] * khuey shrugs
  189. # [00:37] * Quits: evilpie (chatzilla@moz-647CE129.pools.arcor-ip.net) (Input/output error)
  190. # [00:37] <khuey> I wouldn't assume that the choices made years ago have any logic behind htem
  191. # [00:38] <NeilAway> klugefoo: probably something to do with "fakelibs"
  192. # [00:38] <jlebar> khuey: oh, there's logic. "We don't want to deal with the overhead of multiple arenas." But whether it's backed by any factual evidence...
  193. # [00:39] <khuey> right
  194. # [00:39] <khuey> my point exactly
  195. # [00:40] * Quits: gandalf (zbraniecki@moz-26ED2BC5.neoplus.adsl.tpnet.pl) (Quit: Textual IRC Client: http://www.textualapp.com/)
  196. # [00:42] <khuey> heycam: is there a stable link to the text that is currently the latest draft of webidl?
  197. # [00:42] <heycam> khuey, latest editor's draft?
  198. # [00:43] <heycam> khuey, http://dev.w3.org/2006/webapi/WebIDL/ for that
  199. # [00:43] <khuey> heycam: no, I want a link to the exact text currently at that address
  200. # [00:43] <heycam> khuey, ah yes, just a mo
  201. # [00:43] <khuey> so that when it changes in the future
  202. # [00:43] <khuey> I can see what I wrote my parser against
  203. # [00:43] * Quits: jhammink (textual@moz-7B0110AD.mv.mozilla.com) (Quit: Computer has gone to sleep.)
  204. # [00:44] * Quits: abwillis (abwillis@9877934.9DD4DBBF.6A7A197.IP) (Quit: ChatZilla 0.9.87 [SeaMonkey 2.5/20111023211519])
  205. # [00:44] <heycam> khuey, http://dev.w3.org/cvsweb/~checkout~/2006/webapi/WebIDL/Overview.html?rev=1.409;content-type=text%2Fhtml%3b+charset=utf-8
  206. # [00:45] * Quits: Pike (Pike@moz-E8A012B1.pool.mediaways.net) (Quit: ChatZilla 0.9.87 [Firefox 8.0.1/20111120135848])
  207. # [00:45] * Quits: Waldo (waldo@moz-104CC309.mv.mozilla.com) (Quit: ChatZilla 0.9.87-3.1450hg.fc15 [XULRunner 7.0.1/20110930134335])
  208. # [00:45] <khuey> heycam: excellent, thanks
  209. # [00:45] <klugefoo> NeilAway: huh, I'll search on that and see what comes up. Thanks
  210. # [00:47] * Quits: ZER0 (ZER0@moz-149E7BC6.dynamic.upc.nl) (Quit: Leaving)
  211. # [00:48] * Joins: gwagner (idefix2@5AAE35B2.5EFFC0B8.24454B25.IP)
  212. # [00:52] * Joins: Julian (chatzilla@moz-933D5076.dip.t-dialin.net)
  213. # [00:55] * Quits: TheLink (TheLink@moz-674305C4.pools.arcor-ip.net) (Client exited)
  214. # [00:55] * Quits: Julian (chatzilla@moz-933D5076.dip.t-dialin.net) (Quit: ChatZilla 0.9.87 [Firefox 8.0/20111104165243])
  215. # [00:56] * philor is now known as philor|away
  216. # [00:59] * Joins: nattokirai (nattokirai@moz-C97EE7C8.dynamic.ppp.asahi-net.or.jp)
  217. # [00:59] * Quits: mdas (mdas@8ACF1000.5EFFC0B8.24454B25.IP) (Quit: mdas)
  218. # [01:00] * Quits: pnemsak (Miranda@moz-7409BD53.orange.sk) (Quit: pnemsak)
  219. # [01:01] * Joins: mjschranz (mjschranz@moz-6FE6B833.cpe.net.cable.rogers.com)
  220. # [01:02] * jwir3 is now known as jwir3|away
  221. # [01:02] * Joins: Rob (robhawkes@moz-33A339B7.dsl.cnl.uk.net)
  222. # [01:03] * Quits: robhawkes (robhawkes@moz-33A339B7.dsl.cnl.uk.net) (Ping timeout)
  223. # [01:03] * Joins: wg9s (bill@moz-7A06A043.hsd1.ma.comcast.net)
  224. # [01:03] <heycam> I can never remember whether it's mochitest or mochitests or reftest or reftests in trychooser :/
  225. # [01:03] * Rob is now known as robhawkes
  226. # [01:05] * Quits: gkw (gkw@moz-BBE3ABD.mv.mozilla.com) (Quit: Instantbird 1.1)
  227. # [01:07] * philor|away is now known as philor
  228. # [01:08] * Quits: clee (clee@moz-BBE3ABD.mv.mozilla.com) (Quit: clee)
  229. # [01:08] * Quits: blizzard (blizzard@268BDB17.848AC7D2.16021B01.IP) (Ping timeout)
  230. # [01:08] * zpao is now known as zpao|detached
  231. # [01:09] * Quits: KaiRo (robert@moz-106A6797.adsl.highway.telekom.at) (Ping timeout)
  232. # [01:09] * Joins: KaIRC (robert@moz-DE00DF1A.adsl.highway.telekom.at)
  233. # [01:09] * KaIRC is now known as KaiRo
  234. # [01:09] <darktrojan> heycam, there's several scripts out there that will write your trychooser syntax for you
  235. # [01:10] <heycam> darktrojan, yeah I know there's a webpage where I can click some boxes and c/p the line
  236. # [01:10] * Joins: clee (clee@moz-BBE3ABD.mv.mozilla.com)
  237. # [01:10] <mak> there's also an hg extension afaik
  238. # [01:10] <heycam> darktrojan, seems quicker just to type it into the commit message tho!
  239. # [01:10] <jhammel> there's also a webapp
  240. # [01:10] <darktrojan> not if you forget what to write :-P
  241. # [01:10] <jhammel> http://trychooser.pub.build.mozilla.org/
  242. # [01:10] <heycam> well yes ;)
  243. # [01:10] <heycam> so what I always end up doing is looking up the trychoose wiki page and searching to see whether I need to include the "s" on the end or not :)
  244. # [01:11] <edmorley> or just save a few mq patches with your most commonly used combinations
  245. # [01:11] <jhammel> now all we need is an android app, an eclipse extension, and a Makefile target :P
  246. # [01:11] <heycam> edmorley, true. currently I just have one "try" patch in my queue that I edit each time I push to try.
  247. # [01:11] <mak> heycam: trychooser mercirual extension http://hg.mozilla.org/users/pbiggar_mozilla.com/trychooser/file/tip
  248. # [01:11] <mak> no need to edit anything
  249. # [01:11] <mak> that strange word was mercurial
  250. # [01:12] <heycam> ah so it just builds the string locally and sticks it in
  251. # [01:12] <mak> ah it actually moved to http://github.com/pbiggar/trychooser
  252. # [01:12] <darktrojan> that is a bit OTT
  253. # [01:13] * heycam considers adding synonyms to the hg hook
  254. # [01:14] * Quits: dwitte (dwitte@B5D55705.DFBA1754.DC877F3B.IP) (Quit: Leaving)
  255. # [01:15] * zpao|detached is now known as zpao
  256. # [01:16] * Quits: jorendorff (jorendorff@moz-91590D94.hsd1.tn.comcast.net) (Quit: jorendorff)
  257. # [01:16] * Joins: jorendorff (jorendorff@moz-91590D94.hsd1.tn.comcast.net)
  258. # [01:18] * Joins: blizzard (blizzard@268BDB17.848AC7D2.16021B01.IP)
  259. # [01:18] * nthomas is now known as nthomas|away
  260. # [01:19] * Quits: jorendorff (jorendorff@moz-91590D94.hsd1.tn.comcast.net) (Quit: jorendorff)
  261. # [01:20] * Joins: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP)
  262. # [01:20] * Quits: smontagu (chatzilla@moz-B8E666A2.red.bezeqint.net) (Ping timeout)
  263. # [01:20] * AaronMT is now known as AaronMT|afk
  264. # [01:20] * zpao is now known as zpao|detached
  265. # [01:22] * Joins: squib (squib@moz-F5CA0CFB.dhcp.mdsn.wi.charter.com)
  266. # [01:22] * Quits: darktrojan (geoff@9B1E044A.FDA75AE1.44E4C2B.IP) (Ping timeout)
  267. # [01:24] * Joins: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  268. # [01:26] * Quits: davidb (davidb@moz-976CD2.dsl.bell.ca) (Quit: davidb)
  269. # [01:26] * Quits: asac (asac@moz-5D94AC7A.pppoe.wtnet.de) (Quit: leaving)
  270. # [01:28] * Joins: WeirdAl (chatzilla@moz-D461843.ask.info)
  271. # [01:28] * Joins: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com)
  272. # [01:30] * Joins: jhammink (textual@moz-7B0110AD.mv.mozilla.com)
  273. # [01:32] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: fang)
  274. # [01:34] <khuey> heycam: btw, why doesn't webidl use dvcs.w3.org like the cool kids?
  275. # [01:34] <Jesse> cpearce: did you fix https://bugzilla.mozilla.org/show_bug.cgi?id=678994 ?
  276. # [01:35] <heycam> khuey, it predates dvcs
  277. # [01:35] * Joins: clokep (clokep@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
  278. # [01:35] <heycam> khuey, also I can't get enough of the 15 second commit and diff times I get from dev.w3.org
  279. # [01:35] <khuey> heh
  280. # [01:36] * Joins: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  281. # [01:37] * Quits: sicking (chatzilla@moz-1FF05400.hsd1.ca.comcast.net) (Ping timeout)
  282. # [01:38] * Joins: gkw (gkw@moz-A7D8CA2A.hsd1.ca.comcast.net)
  283. # [01:39] * Joins: sgautherie (chatzilla@moz-D7B69DC4.fbxo.proxad.net)
  284. # [01:39] * Quits: mjschranz (mjschranz@moz-6FE6B833.cpe.net.cable.rogers.com) (Ping timeout)
  285. # [01:39] * Quits: davehunt (davehunt@moz-E2929564.dsl.in-addr.zen.co.uk) (Ping timeout)
  286. # [01:40] * Joins: jhk_1 (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  287. # [01:40] * Joins: davehunt (davehunt@moz-E31CD2CB.mozilla.org)
  288. # [01:40] * Quits: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  289. # [01:40] * Quits: Mardak (Mardak@moz-7B0110AD.mv.mozilla.com) (Quit: Mardak)
  290. # [01:41] * Quits: jlebar (jlebar@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: jlebar)
  291. # [01:43] * Quits: jhammink (textual@moz-7B0110AD.mv.mozilla.com) (Quit: Textual IRC Client: http://www.textualapp.com/)
  292. # [01:47] * liuche|cooking is now known as liuche
  293. # [01:47] * Joins: brendan (brendaneic@moz-8B54AE90.hfc.comcastbusiness.net)
  294. # [01:48] * Quits: AutomatedTester (AutomatedT@moz-E2DE3599.as13285.net) (Quit: AutomatedTester)
  295. # [01:48] <njn> who knows about image/decoders/nsPNGDecoder.cpp ?
  296. # [01:48] * Quits: robhawkes (robhawkes@moz-33A339B7.dsl.cnl.uk.net) (Quit: Leaving...)
  297. # [01:48] * njn just found a dead loop
  298. # [01:49] <njn> well, GCC found it, really
  299. # [01:49] * Joins: mdas (mdas@8ACF1000.5EFFC0B8.24454B25.IP)
  300. # [01:49] * Joins: sicking (chatzilla@moz-87306D4.dsl.snfc21.pacbell.net)
  301. # [01:51] * Joins: rwaldron (rwaldron@moz-71B3012E.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com)
  302. # [01:51] * Joins: merinui (merinui@moz-61C7235E.osk2.eonet.ne.jp)
  303. # [01:54] * Quits: anant (anant@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: anant)
  304. # [01:54] * Quits: Jesse (jruderman@moz-BBE3ABD.mv.mozilla.com) (Quit: Jesse)
  305. # [01:55] * Quits: espindola (espindola@moz-E272665.dsl.teksavvy.com) (Quit: Ex-Chat)
  306. # [01:55] * Quits: kaze (kaze@6E3B1F39.F3C79423.CB280F01.IP) (Ping timeout)
  307. # [01:55] * Quits: gwagner (idefix2@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: gwagner)
  308. # [01:56] * Quits: sgautherie (chatzilla@moz-D7B69DC4.fbxo.proxad.net) (Quit: ChatZilla 0.9.78.1 [SeaMonkey 1.5a/2007051508])
  309. # [01:56] * AaronMT|afk is now known as AaronMT
  310. # [01:58] * Quits: mdas (mdas@8ACF1000.5EFFC0B8.24454B25.IP) (Ping timeout)
  311. # [01:58] * Quits: janv (varga@moz-C1261AFF.flarion.as5628.telecom.sk) (Quit: This computer has gone to sleep)
  312. # [01:59] * ywang is now known as yuan
  313. # [02:00] * Quits: DGMurdockIII (dgmurdocki@moz-E933B63.hsd1.il.comcast.net) (Quit: get satisfied! • :: core-networks.de ««« (Gamers.IRC) »»» gamersirc.net ::)
  314. # [02:00] * Joins: gwagner (idefix2@5AAE35B2.5EFFC0B8.24454B25.IP)
  315. # [02:00] * dougt is now known as dougt|away
  316. # [02:02] * timA is now known as timA|brb
  317. # [02:03] * Quits: clee (clee@moz-BBE3ABD.mv.mozilla.com) (Quit: clee)
  318. # [02:05] * Quits: akeybl (akeybl@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving...)
  319. # [02:05] * Joins: cjones (cjones@5AAE35B2.5EFFC0B8.24454B25.IP)
  320. # [02:05] * Joins: bbondy (Adium@moz-28CF6D1C.home.cgocable.net)
  321. # [02:05] * Joins: mdas (mdas@5AAE35B2.5EFFC0B8.24454B25.IP)
  322. # [02:07] * Joins: akeybl (akeybl@moz-BBE3ABD.mv.mozilla.com)
  323. # [02:07] * Joins: clee (clee@moz-BBE3ABD.mv.mozilla.com)
  324. # [02:07] * khuey grumbles about time zones
  325. # [02:07] * nthomas|away is now known as nthomas
  326. # [02:08] * bear is now known as bear-afk
  327. # [02:08] * Parts: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  328. # [02:09] * Joins: anant (anant@moz-12AFB4A9.dsl.dynamic.sonic.net)
  329. # [02:10] * Quits: bbondy (Adium@moz-28CF6D1C.home.cgocable.net) (Quit: Leaving.)
  330. # [02:11] <@bz_dinner> verily
  331. # [02:11] <@bz_dinner> there should be time moire patterns instead
  332. # [02:11] <khuey> heh
  333. # [02:11] <khuey> so is it expected that tbpl can't load logs?
  334. # [02:12] <wg9s> Time is an artificial concept.
  335. # [02:12] * Quits: akeybl (akeybl@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving...)
  336. # [02:12] <nthomas> khuey: go an example for me to look at ?
  337. # [02:12] * Quits: myk (myk@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: Leaving.)
  338. # [02:13] * joduinn is now known as joduinn-mtg
  339. # [02:13] <khuey> https://tbpl.mozilla.org/?tree=Build-System
  340. # [02:13] * Quits: jhammel (jhammel@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: leaving)
  341. # [02:13] <khuey> keeps spinning at retrieving summary
  342. # [02:13] <khuey> if I click on the view brief log link though it works ...
  343. # [02:13] <edmorley> khuey: bug 708403
  344. # [02:14] <khuey> aha
  345. # [02:16] * Quits: sicking (chatzilla@moz-87306D4.dsl.snfc21.pacbell.net) (Ping timeout)
  346. # [02:16] <philor> ctalbert: did you mean that tbpl is crippled right now, which it sure is, or that it would be crippled by not using ES, which I think tbpl only uses to pass starring between buildbot-based and tinderbox-based, which we don't do anymore
  347. # [02:17] * Quits: jstraus (Adium@8ACF1000.5EFFC0B8.24454B25.IP) (Quit: Leaving.)
  348. # [02:17] * Joins: jlebar (jlebar@5AAE35B2.5EFFC0B8.24454B25.IP)
  349. # [02:17] <jhford-buildduty> dietrich: hey, did you guys figure out the jetpack issues?
  350. # [02:18] <ctalbert> I understood that all the starring went into elastic search now that tinderbox was retired
  351. # [02:18] * Joins: yuan_ (ywang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  352. # [02:18] <ctalbert> so taking it out effectively means turning off starring and our ability to track oranges
  353. # [02:18] <ctalbert> which seems like the wrong way to solve the issue
  354. # [02:19] <khuey> knowing if oranges are known or are new is more important than keeping track of them
  355. # [02:19] <khuey> imo
  356. # [02:19] * Quits: yuan (ywang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Ping timeout)
  357. # [02:19] * yuan_ is now known as yuan
  358. # [02:19] <ctalbert> true, isn't that also querying ES?
  359. # [02:19] * Quits: ehsan (ehsan@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  360. # [02:19] <khuey> I have no idea
  361. # [02:20] <khuey> it's all black magic to me
  362. # [02:20] * ctalbert thinks it is. Jgriffin knows for certain - he'll be on in a bit
  363. # [02:20] <cpearce> Jesse: probably fixed by bug 684627.
  364. # [02:21] <philor> I'm 98% sure that tbpl stores stars in its own db
  365. # [02:21] * Quits: bsmith (bsmith@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Ping timeout)
  366. # [02:22] * Quits: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP) (Ping timeout)
  367. # [02:23] * wg9s says he is 98% sure 2% of the time.
  368. # [02:24] <khuey> are you 2% sure the other 98% of the time?
  369. # [02:24] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/bb8169ddc939 - Rob Campbell - Bug 702707 - Web console is buggy in window mode; r=msucan
  370. # [02:24] <firebot> http://hg.mozilla.org/mozilla-central/rev/cc69fe7c9f26 - Rob Campbell - Bug 705731 - Create InspectorUI.notifications.DESTROYED notification; r=prouget
  371. # [02:24] <firebot> http://hg.mozilla.org/mozilla-central/rev/86dc0aadfbb5 - Blair McBride - Bug 679588 - Fix intermittent test timeout of browser_select_update.js, browser_select_confirm.js, and browser_select_selection.js. r=dtownsend
  372. # [02:24] <firebot> http://hg.mozilla.org/mozilla-central/rev/6785d3003414 - Blair McBride - Merge mozilla-central to fx-team
  373. # [02:24] <firebot> http://hg.mozilla.org/mozilla-central/rev/109bb6c0e72a - Blair McBride - Bug 706777 - Automatically repopulate AddonRepository database on application upgrade. r=dtownsend
  374. # [02:24] * Joins: jstraus (Adium@5AAE35B2.5EFFC0B8.24454B25.IP)
  375. # [02:24] <wg9s> It is just an old joke (re-purposed) and I am just old!
  376. # [02:25] <ctalbert> philor: I've got the metrics guys working on the elastic search db issues, they're trying to figure out what is going on with it
  377. # [02:25] * Joins: sicking (chatzilla@moz-1FF05400.hsd1.ca.comcast.net)
  378. # [02:25] <dietrich> jhford-buildduty: hi! which issues?
  379. # [02:25] * Quits: dougt|away (dougt@moz-A8ADD744.org) (Ping timeout)
  380. # [02:25] <wg9s> From My predictions are 98% accurate ... 2% of the time.
  381. # [02:26] * Joins: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP)
  382. # [02:26] <philor> ctalbert: yeah, it's not like I can actually manage to disable talking to ES, since I barely ever knew how it was wired in and it would take an IT deploy, but... corporate-wide email was down how many days? I don't want to star by hand for another week
  383. # [02:26] * Quits: damons (gnubeard@moz-8B54AE90.hfc.comcastbusiness.net) (Quit: damons)
  384. # [02:27] <jhford-buildduty> dietrich: i was told that you had some questions about jetpack testing being intermittent
  385. # [02:27] * Joins: raccettura (raccettura@moz-660B8F4B.hsd1.nj.comcast.net)
  386. # [02:27] <philor> http://hg.mozilla.org/users/mstange_themasta.com/tinderboxpushlog/file/e1406c77410a/php/submitBuildStar.php#l44 - tbpl does store a copy of its own, along with wherever it is starcomment.php gets called
  387. # [02:27] * davehunt is now known as davehunt|away
  388. # [02:27] * Parts: Joeh (joe@5A3923AA.BC22908.C7CEC4ED.IP)
  389. # [02:28] <dietrich> jhford-buildduty: hmmm. perhaps myk did? i had questions about cedar branch - some builds have been red since we got it, which limits it's usefulness.
  390. # [02:28] * Quits: brendan (brendaneic@moz-8B54AE90.hfc.comcastbusiness.net) (Quit: brendan)
  391. # [02:28] * Joins: damons (gnubeard@moz-8B54AE90.hfc.comcastbusiness.net)
  392. # [02:28] <dietrich> jhford-buildduty: which was vaguely jetpack-related :)
  393. # [02:28] * Quits: damons (gnubeard@moz-8B54AE90.hfc.comcastbusiness.net) (Quit: damons)
  394. # [02:28] * Quits: priya (priya@moz-BBE3ABD.mv.mozilla.com) (Quit: This computer has gone to sleep)
  395. # [02:29] <dietrich> jhford-buildduty: and also about configuring that branch to do more runs of specific perf tests too, but i haven't filed a bug for that bit yet.
  396. # [02:29] * Quits: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com) (Ping timeout)
  397. # [02:29] <jhford-buildduty> dietrich: ahh, ok
  398. # [02:29] <edmorley> Unfocused++
  399. # [02:30] * Joins: sworkman_ (sworkman@moz-BBE3ABD.mv.mozilla.com)
  400. # [02:30] * Joins: Jesse (jruderman@moz-537BCF9.hsd1.ca.comcast.net)
  401. # [02:30] * Quits: sworkman_ (sworkman@moz-BBE3ABD.mv.mozilla.com) (Quit: sworkman_)
  402. # [02:30] <mcpherrin> Do we have cross-platform file locking anywhere?
  403. # [02:30] <Unfocused> :)
  404. # [02:30] * Unfocused wonders what for
  405. # [02:30] <Unfocused> the orange fix?
  406. # [02:31] * Joins: Waldo (waldo@moz-104CC309.mv.mozilla.com)
  407. # [02:31] * Joins: lmandel (lmandel@moz-113D7D7C.cable.teksavvy.com)
  408. # [02:31] <edmorley> yeah
  409. # [02:31] <edmorley> :-)
  410. # [02:31] * Quits: sworkman (sworkman@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  411. # [02:31] * Quits: sicking (chatzilla@moz-1FF05400.hsd1.ca.comcast.net) (Ping timeout)
  412. # [02:32] <jhford-buildduty> dietrich: ok. have you filed bugs about cedar being mainly red?
  413. # [02:32] <Unfocused> almost 500 comments in that bug... was nice to be able to close it
  414. # [02:32] <edmorley> windows no change builds: real 11m4.382s \o/
  415. # [02:33] <khuey> that slow?
  416. # [02:34] <edmorley> yeah :-/
  417. # [02:35] <edmorley> that's about the same speed as your clobber builds yeah?
  418. # [02:35] <ctalbert> philor: I hear you. Let's give the metrics guys a day longer to fix it, then if it's still down we'll see what we can do,. There's probably a simple choke point somewhere
  419. # [02:35] <khuey> nah
  420. # [02:35] * Quits: dcamp (dave@9E727688.17C2F9C.163DC5C6.IP) (Quit: Leaving...)
  421. # [02:35] <khuey> a clobber on my laptop takes 22 or so
  422. # [02:37] * Joins: mike5w3c (MikeS@moz-5662A479.pool.e-mobile.ne.jp)
  423. # [02:38] * Joins: brendan (brendaneic@moz-8B54AE90.hfc.comcastbusiness.net)
  424. # [02:38] * Quits: yuan (ywang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: yuan)
  425. # [02:40] * Quits: azakai (alon@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  426. # [02:41] * Quits: Mook_as (mook@moz-1FCC0032.activestate.com) (Quit: ChatZilla 0.9.87-rdmsoft [XULRunner 1.9.2.13/20101203074205])
  427. # [02:41] * Quits: redfive (chatzilla@moz-B94E1A81.ipnetworksinc.net) (Ping timeout)
  428. # [02:41] * jhford-buildduty is now known as jhford-work
  429. # [02:41] * Quits: KaiRo (robert@moz-DE00DF1A.adsl.highway.telekom.at) (Input/output error)
  430. # [02:44] * Joins: mwu (mwu@5AAE35B2.5EFFC0B8.24454B25.IP)
  431. # [02:44] * Quits: mreid_ (mark@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: Bye!)
  432. # [02:45] * Quits: brendan (brendaneic@moz-8B54AE90.hfc.comcastbusiness.net) (Quit: brendan)
  433. # [02:45] * Joins: azakai (alon@moz-BBE3ABD.mv.mozilla.com)
  434. # [02:47] * Joins: redfive (chatzilla@moz-B94E1A81.ipnetworksinc.net)
  435. # [02:47] * Joins: kaie2 (kaie@moz-47CA3B3B.dip.t-dialin.net)
  436. # [02:48] * Quits: kaie (kaie@moz-DF00C50D.dip.t-dialin.net) (Ping timeout)
  437. # [02:48] * kaie2 is now known as kaie
  438. # [02:49] <dietrich> jhford: https://bugzilla.mozilla.org/show_bug.cgi?id=683094#c4
  439. # [02:49] <mounir> khuey: so you want xpt.py to always do the update but have the makefile checking if it's worth doing it?
  440. # [02:49] * Quits: daim (David_Mart@moz-EF3D4F79.fbx.proxad.net) (Ping timeout)
  441. # [02:50] * jhford-work is now known as jhford-buildduty
  442. # [02:51] * Quits: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com) (Quit: mccr8)
  443. # [02:52] <jhford-buildduty> dietrich: the last push i see is from oct 20. we don't have any logs going back that far, can you push again?
  444. # [02:53] <nthomas> or force another set of builds on the current tip
  445. # [02:53] * Quits: Boriss (FlyingToas@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: Boriss)
  446. # [02:53] <wg9s> mounir: isn't that kind of the point of makefiles? Just sayin'!
  447. # [02:54] <khuey> mounir: right
  448. # [02:54] <khuey> just like how gcc works ;-)
  449. # [02:54] <mounir> wg9s: indeed
  450. # [02:54] <mounir> but that part of the makefile looks much more like a bash script than a makefile
  451. # [02:54] <mounir> khuey: will try to do that that way
  452. # [02:54] <mounir> but that's going to be more annoying :(
  453. # [02:55] <wg9s> mounir: OIC I did not look at the actual change.
  454. # [02:55] * timA|brb is now known as timA
  455. # [02:55] * ewong|away is now known as ewong
  456. # [02:55] * Joins: jgriffin (jgriffin@5AAE35B2.5EFFC0B8.24454B25.IP)
  457. # [02:55] <khuey> shouldn't be that hard
  458. # [02:56] * Quits: biesi (cbiesinger@BEBE4533.89BC370D.6D4D60F7.IP) (Ping timeout)
  459. # [02:56] <khuey> just replace the line that does the xptlink invocation with a $(MAKE) some-link-target
  460. # [02:56] <khuey> and then set up a makefile rule for that target that does the linking only if necessary
  461. # [02:56] <mounir> khuey: cool, I had that idea
  462. # [02:57] <mounir> I was wondering if it would be okay
  463. # [02:57] <mounir> will do that then
  464. # [02:57] <philor> khuey: there, I fixed half your b-s orange
  465. # [02:58] <khuey> philor: you hide the reftests on android?
  466. # [02:58] <mbrubeck> philor: Were you looking at a Talos crash in ~nsCOMPtr_base the other day?
  467. # [02:58] <mbrubeck> did it look like https://tbpl.mozilla.org/php/getParsedLog.php?id=7807340&tree=Mozilla-Inbound and did you happen to file a bug?
  468. # [02:59] * Quits: mak (chatzilla@moz-6F45E68D.retail.telecomitalia.it) (Input/output error)
  469. # [02:59] <khuey> mounir: are you in taipei?
  470. # [02:59] <philor> khuey: yeah, the half of the native tests that don't run
  471. # [02:59] <khuey> heh
  472. # [02:59] <khuey> good thing we have tegras to waste time on :-P
  473. # [02:59] <philor> mbrubeck: yeah, I get the feeling I never filed it, though, which is too bad, catlee wishes I would have
  474. # [02:59] <mounir> khuey: yes
  475. # [02:59] <mbrubeck> thank goodness for second chances....
  476. # [02:59] <khuey> mounir: when you see bent get him to get on irc please :-)
  477. # [02:59] * mbrubeck files
  478. # [03:00] <mounir> khuey: I will do that
  479. # [03:00] <khuey> thanks
  480. # [03:00] <philor> mbrubeck: I sort of wonder if it's all GC-on-Lion's fault, and we should just morph the one of those I did file for dromaeo_css into a mondo "you crash. stop that." bug
  481. # [03:00] <mbrubeck> Yeah, I filed a GC crash for dromaeo_css too.
  482. # [03:00] * khuey can't decide if ply encoding the grammar in docstrings is brilliant or an abomination
  483. # [03:01] <mbrubeck> no, wait, it's yours
  484. # [03:01] <philor> back in an hour, gotta go be shiny happy behind-the-desk person :|
  485. # [03:01] <mbrubeck> I think this is the one I was about to file until bugzilla told me you had just done it
  486. # [03:02] * Joins: bent (chatzilla@5AAE35B2.5EFFC0B8.24454B25.IP)
  487. # [03:03] * bent is now known as IRCMonkey32066
  488. # [03:03] * jmaher|afk is now known as jmaher
  489. # [03:04] * timA is now known as timA|away
  490. # [03:05] * IRCMonkey32066 is now known as bent
  491. # [03:06] * Quits: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com) (Quit: bmoss)
  492. # [03:06] * Joins: erikvold (erikvold@AC7AE6DB.11D19A4C.67CA24A9.IP)
  493. # [03:07] * Quits: chewey (chewey@moz-941D6615.dip0.t-ipconnect.de) (NickServ (GHOST command used by chewey_))
  494. # [03:08] * Joins: mjschranz (mjschranz@80C6B800.531FD64C.630E4E47.IP)
  495. # [03:08] * Joins: chewey (chewey@moz-D5E14ED2.dip0.t-ipconnect.de)
  496. # [03:08] * Quits: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP) (Ping timeout)
  497. # [03:08] * Quits: WeirdAl (chatzilla@moz-D461843.ask.info) (Quit: ChatZilla 0.9.87 [Firefox 8.0/20111104165243])
  498. # [03:08] * Quits: AaronMT (AaronMT@moz-DEDA283.cpe.net.cable.rogers.com) (Quit: Textual IRC Client: http://www.textualapp.com/)
  499. # [03:09] * Quits: kumar (kmcmillan@moz-F2D05B8.c3-0.stk-ubr1.chi-stk.il.cable.rcn.com) (Quit: kumar)
  500. # [03:10] * Joins: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP)
  501. # [03:10] * terrence is now known as terrence|away
  502. # [03:12] * Quits: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com) (Quit: juanb)
  503. # [03:12] * Quits: terrence|away (terrence@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  504. # [03:13] * Quits: @dbaron (dbaron@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  505. # [03:13] * Quits: bnicholson (bnicholson@moz-BBE3ABD.mv.mozilla.com) (Input/output error)
  506. # [03:14] * Joins: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com)
  507. # [03:16] * Quits: tfair (tfairey@moz-BBE3ABD.mv.mozilla.com) (Client exited)
  508. # [03:18] * Quits: jprmc (jprmc@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Ping timeout)
  509. # [03:18] * Quits: wg9s (bill@moz-7A06A043.hsd1.ma.comcast.net) (Quit: ChatZilla 0.9.87-4.1450hg.fc16 [XULRunner 8.0/20111108090055])
  510. # [03:19] * Quits: jet (junglecode@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: jet)
  511. # [03:21] * Quits: cers (textual@moz-91830CD3.bynqu1.dynamic.dsl.tele.dk) (Ping timeout)
  512. # [03:21] * Joins: cers_ (textual@238F2887.A2722716.BF567600.IP)
  513. # [03:23] * Joins: tfair (tfairey@moz-BBE3ABD.mv.mozilla.com)
  514. # [03:24] * Quits: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP) (Ping timeout)
  515. # [03:24] * Joins: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP)
  516. # [03:24] * Quits: dRdR (dRdR@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  517. # [03:25] * lsblakk is now known as lsblakk|afk
  518. # [03:25] * Joins: dRdR (dRdR@moz-BBE3ABD.mv.mozilla.com)
  519. # [03:26] * Joins: dRdR_ (dRdR@moz-7B0110AD.mv.mozilla.com)
  520. # [03:26] * Joins: dRdR__ (dRdR@moz-BBE3ABD.mv.mozilla.com)
  521. # [03:27] * Quits: dRdR (dRdR@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  522. # [03:27] * Quits: cers_ (textual@238F2887.A2722716.BF567600.IP) (Ping timeout)
  523. # [03:27] * Quits: clee (clee@moz-BBE3ABD.mv.mozilla.com) (Quit: clee)
  524. # [03:27] * Quits: dRdR__ (dRdR@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  525. # [03:27] * Joins: cers (textual@moz-91830CD3.bynqu1.dynamic.dsl.tele.dk)
  526. # [03:27] * Joins: dRdR (dRdR@moz-BBE3ABD.mv.mozilla.com)
  527. # [03:28] * Quits: dRdR_ (dRdR@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  528. # [03:31] * Joins: Boriss (FlyingToas@moz-62AAA429.hsd1.ca.comcast.net)
  529. # [03:31] * Joins: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com)
  530. # [03:32] * Quits: cers (textual@moz-91830CD3.bynqu1.dynamic.dsl.tele.dk) (Ping timeout)
  531. # [03:32] * Joins: cers (textual@moz-91830CD3.bynqu1.dynamic.dsl.tele.dk)
  532. # [03:34] * Quits: cers (textual@moz-91830CD3.bynqu1.dynamic.dsl.tele.dk) (Ping timeout)
  533. # [03:34] * Quits: cpeterson (cpeterson@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Input/output error)
  534. # [03:34] * Joins: cers (textual@moz-91830CD3.bynqu1.dynamic.dsl.tele.dk)
  535. # [03:35] * Quits: rniwa (rniwa@5CA6DC39.C60FE7DC.4065847B.IP) (Quit: rniwa)
  536. # [03:36] * Quits: jstraus (Adium@5AAE35B2.5EFFC0B8.24454B25.IP) (Ping timeout)
  537. # [03:37] * Joins: jstraus (Adium@5AAE35B2.5EFFC0B8.24454B25.IP)
  538. # [03:37] * Quits: anant (anant@moz-12AFB4A9.dsl.dynamic.sonic.net) (Ping timeout)
  539. # [03:37] * Joins: anant (anant@moz-12AFB4A9.dsl.dynamic.sonic.net)
  540. # [03:39] * Quits: edmorley (edmorley@moz-340F3951.range86-144.btcentralplus.com) (Quit: Leaving.)
  541. # [03:41] * Joins: Mook (mook@moz-B1410066.dsl.teksavvy.com)
  542. # [03:42] * Quits: jhk_1 (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  543. # [03:43] * Quits: anant (anant@moz-12AFB4A9.dsl.dynamic.sonic.net) (Quit: anant)
  544. # [03:44] <jlebar> Where's the htmlelement class for iframe?
  545. # [03:45] * Quits: jlebar (jlebar@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: jlebar)
  546. # [03:45] * Quits: redfive (chatzilla@moz-B94E1A81.ipnetworksinc.net) (Ping timeout)
  547. # [03:45] * joduinn-mtg is now known as joduinn-afk
  548. # [03:45] <dholbert> jlebar (d'oh, gone now), I suspect http://mxr.mozilla.org/mozilla-central/source/content/html/content/src/nsHTMLIFrameElement.cpp
  549. # [03:46] * Joins: Ventron (michael@moz-ED780ED3.dyn.iinet.net.au)
  550. # [03:47] * Quits: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: gal)
  551. # [03:47] * Joins: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  552. # [03:49] * Joins: bnicholson (bnicholson@moz-D1AB96C1.hsd1.ca.comcast.net)
  553. # [03:49] * Joins: jlebar (jlebar@5AAE35B2.5EFFC0B8.24454B25.IP)
  554. # [03:49] * Quits: sdwilsh (sdwilsh@BEBE4533.89BC370D.6D4D60F7.IP) (Input/output error)
  555. # [03:49] * Joins: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP)
  556. # [03:49] * Quits: necolas (necolas@moz-4197BE5D.bb.sky.com) (Client exited)
  557. # [03:50] * Quits: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com) (Ping timeout)
  558. # [03:50] * Quits: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: gal)
  559. # [03:51] <Mossop> jlebar: <dholbert> jlebar (d'oh, gone now), I suspect http://mxr.mozilla.org/mozilla-central/source/content/html/content/src/nsHTMLIFrameElement.cpp
  560. # [03:51] * Quits: tfair (tfairey@moz-BBE3ABD.mv.mozilla.com) (Client exited)
  561. # [03:51] <jlebar> Mossop: dholbert thanks!
  562. # [03:52] <jlebar> I had to move my laptop.
  563. # [03:52] * jhford-buildduty is now known as jhford-work
  564. # [03:52] <dholbert> jlebar, np!
  565. # [03:52] <dholbert> Mossop, thanks!
  566. # [03:52] * Joins: m_kato (m_kato@moz-348F61F0.mozilla.or.jp)
  567. # [03:52] * Quits: hub (hub@21B7B9F2.B87E9213.6E712CE2.IP) (Ping timeout)
  568. # [03:53] * Quits: azakai (alon@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  569. # [03:56] <mcpherrin> How long does it take for crashes to show up on crash-stats.mo?
  570. # [03:58] * Joins: dwitte (dwitte@B5D55705.DFBA1754.DC877F3B.IP)
  571. # [03:58] * Quits: Mossop (mossop@moz-E325C2EC.dsl.dynamic.sonic.net) (Ping timeout)
  572. # [03:58] * Quits: raccettura (raccettura@moz-660B8F4B.hsd1.nj.comcast.net) (Ping timeout)
  573. # [03:59] * Quits: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com) (Input/output error)
  574. # [03:59] * Joins: raccettura (raccettura@moz-660B8F4B.hsd1.nj.comcast.net)
  575. # [04:00] * Quits: jimm (jmathies@moz-7F164CA1.pn.at.cox.net) (Quit: )
  576. # [04:01] * Joins: biesi (cbiesinger@moz-5EE692A7.ca.hfc.comcastbusiness.net)
  577. # [04:02] * Quits: rwaldron (rwaldron@moz-71B3012E.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com) (Quit: Leaving...)
  578. # [04:02] <dholbert> mcpherrin, first, you should be sure that they're actually submitted, by visiting about:crashes and clicking on the crash report ID (sometimes they don't submit until you do that)
  579. # [04:03] * Quits: andreasn (andreasn@moz-3CDFCC6A.a336.corp.bahnhof.se) (Ping timeout)
  580. # [04:03] <dholbert> mcpherrin, after I do that, the crash usually shows up within a few minutes, in my experience
  581. # [04:03] <mcpherrin> dholbert: It's there now (2 minutes later)
  582. # [04:03] <mcpherrin> thanks though.
  583. # [04:03] <dholbert> mcpherrin, cool
  584. # [04:03] <njn> khuey: ping
  585. # [04:03] <mcpherrin> looks like I'm crashing in an sqlite memory reporter :(
  586. # [04:04] <njn> mcpherrin: I'm about to look into that
  587. # [04:04] <njn> mcpherrin:Bug 708248]
  588. # [04:04] <njn> mcpherrin:Bug 708248]
  589. # [04:04] <njn> mcpherrin:Bug 708248
  590. # [04:04] <njn> argh
  591. # [04:04] * Quits: dholbert|afk (dholbert@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  592. # [04:05] <khuey> njn: pong
  593. # [04:05] <njn> khuey: didn't you write the style memory reporters?
  594. # [04:05] * Joins: rwaldron (rwaldron@moz-71B3012E.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com)
  595. # [04:05] <khuey> yes
  596. # [04:05] <mcpherrin> njn: sweet. stylish disabled and I can use my browser again :)
  597. # [04:05] <njn> khuey: but you want me to get a style peer to review my changes to your memory reporter?
  598. # [04:05] <khuey> yes
  599. # [04:05] <khuey> ideally
  600. # [04:05] <njn> khuey: who are the peers? dbaron, who else?
  601. # [04:06] * Quits: chewey (chewey@moz-D5E14ED2.dip0.t-ipconnect.de) (Ping timeout)
  602. # [04:06] <khuey> dbaron, bz
  603. # [04:06] <khuey> I don't think zwol is around much these days
  604. # [04:06] <khuey> it's not really that important that they look at it
  605. # [04:07] <khuey> just feels weird to r+ changes to parts of the code that I'm not a peer of
  606. # [04:07] * Joins: chewey (chewey@moz-6396626D.dip0.t-ipconnect.de)
  607. # [04:07] <njn> dude, you wrote the code
  608. # [04:08] * Quits: mascondante (mascondant@697AC6B3.8C6159FA.9A06DD32.IP) (Ping timeout)
  609. # [04:08] * Quits: rshetty (quassel@8A2853D6.707344F8.D30E9BEF.IP) (Ping timeout)
  610. # [04:08] <jlebar> Although I don't usually feel the same way, khuey isn't the only one who takes this position.
  611. # [04:08] * Quits: ejpbruel (ejpbruel@933E3A2E.83A511AD.F413BF4D.IP) (Quit: ejpbruel)
  612. # [04:09] <khuey> njn: that I wrote it is why I'm afraid of it ;-)
  613. # [04:10] * Joins: hub (hub@moz-E2FCA694.figuiere.net)
  614. # [04:10] * Quits: bnicholson (bnicholson@moz-D1AB96C1.hsd1.ca.comcast.net) (Ping timeout)
  615. # [04:11] * Joins: janv (varga@moz-C1261AFF.flarion.as5628.telecom.sk)
  616. # [04:18] <njn> firebot: uuid
  617. # [04:18] <firebot> c1d6001e-4fcb-4c40-bce1-5eba80bfd8f3 (/msg firebot cid for CID form)
  618. # [04:18] * Joins: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com)
  619. # [04:19] <mjschranz> Quick question for all the more experienced developers out there. The bug I was working on was set to r+, although I still needed to make some small changes to my patch. My reviewer told me to set it to r=him. Is it correct for me to assume that I should be setting it to r+ in this situation?
  620. # [04:20] <heycam> mjschranz, if the reviewer said "r=me with the following changes made" then there is no need to get review again
  621. # [04:21] <heycam> mjschranz, if you have commit access, you can feel free to land the patch with r=him in the commit message
  622. # [04:21] * Quits: lilmatt (mwillis@353F7E4C.C3161BD8.3318EDCA.IP) (Quit: lilmatt)
  623. # [04:21] <mjschranz> heycam: Right that was said in the bug ticket, but I just wasn't sure if I still had to set a specific status or not. Thanks!
  624. # [04:22] <heycam> mjschranz, if you don't have commit access and you need to upload the changed patch for someone else to land, still put r=him in the commit message of the patch. i don't think there's any need to set the r flag of the new attahcment itself.
  625. # [04:22] * Quits: cers (textual@moz-91830CD3.bynqu1.dynamic.dsl.tele.dk) (Ping timeout)
  626. # [04:23] <mjschranz> heycam: Thanks for your help.
  627. # [04:23] <khuey> yeah, actually setting the flag in bugzilla isn't that important
  628. # [04:23] <heycam> mjschranz, no problem
  629. # [04:24] <mjschranz> heycam: So setting my commit message to something like this would be fine? Bug 334573 - Changed all references of nsPLDOMEvent to nsAsyncDOMEvent r=sicking
  630. # [04:24] <heycam> mjschranz, yep looks perfect
  631. # [04:24] * Joins: Mardak (Mardak@moz-ED2A7100.dsl.pltn13.sbcglobal.net)
  632. # [04:26] * Joins: bnicholson (bnicholson@moz-D1AB96C1.hsd1.ca.comcast.net)
  633. # [04:26] * Joins: tfair (tfairey@moz-BBE3ABD.mv.mozilla.com)
  634. # [04:27] * Quits: Mardak (Mardak@moz-ED2A7100.dsl.pltn13.sbcglobal.net) (Quit: Mardak)
  635. # [04:28] * Quits: bnicholson (bnicholson@moz-D1AB96C1.hsd1.ca.comcast.net) (Ping timeout)
  636. # [04:29] * Joins: RyanVM (chatzilla@moz-D04D3C77.phlapa.fios.verizon.net)
  637. # [04:30] * Quits: Boriss (FlyingToas@moz-62AAA429.hsd1.ca.comcast.net) (Quit: Boriss)
  638. # [04:31] * Quits: tfair (tfairey@moz-BBE3ABD.mv.mozilla.com) (Client exited)
  639. # [04:31] * Joins: Boriss (FlyingToas@moz-62AAA429.hsd1.ca.comcast.net)
  640. # [04:32] * Joins: surkov (surkov@178F4FC2.D2B288F8.5D3F4C44.IP)
  641. # [04:32] * Quits: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com) (Input/output error)
  642. # [04:32] * Quits: Hendikins (wolfox@moz-9A361C95.static.internode.on.net) (Ping timeout)
  643. # [04:33] * Joins: jdm (jdm@moz-9AEDE212.cpe.net.cable.rogers.com)
  644. # [04:33] * Quits: Boriss (FlyingToas@moz-62AAA429.hsd1.ca.comcast.net) (Quit: Boriss)
  645. # [04:33] <jdm> jaws++
  646. # [04:33] * Joins: Hendikins (wolfox@moz-9A361C95.static.internode.on.net)
  647. # [04:34] <khuey> heycam: ping?
  648. # [04:34] <heycam> khuey, pong
  649. # [04:35] * Joins: dbaron (dbaron@moz-27F87443.dsl.dynamic.sonic.net)
  650. # [04:35] * ChanServ sets mode: +o dbaron
  651. # [04:35] <khuey> heycam: I'm looking at the webidl grammar
  652. # [04:36] <khuey> it looks like the last few things are unused?
  653. # [04:36] <heycam> the extended attribute things?
  654. # [04:36] <khuey> ExtendedAttributeNoArgs, etc
  655. # [04:36] <khuey> right
  656. # [04:36] <heycam> yeah, so they're used to define how the extended attributes that are defined in the spec are formed
  657. # [04:37] * Quits: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  658. # [04:37] <heycam> but the main grammar in general matches anything between the [] as long as it has balanced brackets
  659. # [04:37] <khuey> ah, so these are additional restrictions on the values of various extended attributes?
  660. # [04:38] <heycam> yeah
  661. # [04:38] <khuey> ok
  662. # [04:38] <heycam> but I want the stuff in the []s to be extensible to handle anything unambiguous
  663. # [04:39] * Parts: rjohnson19 (rjohnson19@moz-9148485F.hsd1.ma.comcast.net) (Leaving)
  664. # [04:41] * Quits: ashughes|afk (ashughes@moz-4C407EE8.vc.shawcable.net) (Quit: ashughes|afk)
  665. # [04:42] <jlebar> How do I get the window from an nsHTMLElement?
  666. # [04:42] <khuey> like, get the Window it is in?
  667. # [04:43] <mounir> jlebar: you get the document then the window?
  668. # [04:43] <khuey> right
  669. # [04:44] <jlebar> cool.
  670. # [04:45] * Quits: jlebar (jlebar@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: jlebar)
  671. # [04:47] * Quits: fzzzy (donovan@moz-2B41AF9B.lightspeed.mtvwca.sbcglobal.net) (Quit: fzzzy)
  672. # [04:47] * Joins: bnicholson (bnicholson@moz-D1AB96C1.hsd1.ca.comcast.net)
  673. # [04:48] <njn> khuey: any idea why "tar -cvhf" output during builds goes to stderr instead of stdout?
  674. # [04:48] * njn scratches head
  675. # [04:48] * Joins: jlebar (jlebar@5AAE35B2.5EFFC0B8.24454B25.IP)
  676. # [04:48] <khuey> nope
  677. # [04:50] <ewong> what's the hg command to check which branch I'm dev'ing in?
  678. # [04:50] <jlebar> ewong: hg summary?
  679. # [04:50] <ewong> jlebar: awesome! Thanks!
  680. # [04:52] <@bz_dinner> jlebar: so..
  681. # [04:52] <@bz_dinner> jlebar: what are you really trying to do?
  682. # [04:52] <@bz_dinner> jlebar: wrt getting the window?
  683. # [04:52] <sfink> njn: probably because it's sending the tarball to stdout already, so the -v output has to go somewhere else
  684. # [04:53] <jlebar> bz_dinner: So I'm implementing a function which lets privileged windows call a new function, queryState, on an iframe.
  685. # [04:53] <jlebar> bz_dinner: But I need to get the window before I can check whether it's privileged.
  686. # [04:53] <jlebar> bz_dinner: I figure OwnerDoc() is the right function to call, because I want to be able to call queryState even if the iframe in question isn't currently in the DOM?
  687. # [04:54] <khuey> you want to check the window that the script belong to
  688. # [04:54] <khuey> not the window that the iframe belongs to
  689. # [04:54] * philor is now known as philor|away
  690. # [04:56] <jlebar> khuey: I guess so...
  691. # [04:56] * Quits: Callek (chatzilla@moz-DD17331C.dhcp.oxfr.ma.charter.com) (Ping timeout)
  692. # [04:56] <jlebar> khuey: so my idl function wants to take an implicit jscontext?
  693. # [04:57] * Quits: mjschranz (mjschranz@80C6B800.531FD64C.630E4E47.IP) (Client exited)
  694. # [04:57] * njn wonders why Stylish would be causing the SQLite memory reporter to crash on Windows
  695. # [04:58] * Quits: clokep (clokep@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com) (Quit: Instantbird 1.2a1pre)
  696. # [04:58] <khuey> I think you just want to call nsContentUtils::GetWindowFromCaller
  697. # [04:58] <khuey> and then do your security checks on that window
  698. # [04:58] <khuey> bz_dinner may have a better idea
  699. # [04:58] * Joins: mijia (mijia@F165AA39.4A8300D6.21B6911E.IP)
  700. # [05:00] * Joins: tfair (tfairey@moz-BBE3ABD.mv.mozilla.com)
  701. # [05:00] * Joins: Mossop (mossop@moz-E325C2EC.dsl.dynamic.sonic.net)
  702. # [05:01] * Quits: bnicholson (bnicholson@moz-D1AB96C1.hsd1.ca.comcast.net) (Ping timeout)
  703. # [05:02] * Joins: mconley (mconley@moz-9C0F4EBF.cable.teksavvy.com)
  704. # [05:03] * Quits: jgriffin (jgriffin@5AAE35B2.5EFFC0B8.24454B25.IP) (Ping timeout)
  705. # [05:04] * Joins: jgriffin (jgriffin@5AAE35B2.5EFFC0B8.24454B25.IP)
  706. # [05:05] * Quits: jgriffin (jgriffin@5AAE35B2.5EFFC0B8.24454B25.IP) (Connection reset by peer)
  707. # [05:05] * Joins: jgriffin (jgriffin@5AAE35B2.5EFFC0B8.24454B25.IP)
  708. # [05:06] * bz_dinner is now known as bz
  709. # [05:06] * Joins: Callek (chatzilla@moz-DD17331C.dhcp.oxfr.ma.charter.com)
  710. # [05:06] <@bz> jlebar: So...
  711. # [05:07] <@bz> jlebar: I believe GetWindowFromCaller is the thing that tells you "which window does the currently executing JS belong to?"
  712. # [05:07] <@bz> jlebar: iirc, etc
  713. # [05:07] * Quits: Yogesh_G (chatzilla@AC9D62D4.FC13163A.9105FBCF.IP) (Ping timeout)
  714. # [05:08] <jlebar> bz: sounds good. Thanks!
  715. # [05:09] * Quits: Wes (chatzilla@A1FEE3E8.E3DA2587.9A5171B3.IP) (Connection reset by peer)
  716. # [05:10] * Joins: bnicholson (bnicholson@moz-D1AB96C1.hsd1.ca.comcast.net)
  717. # [05:11] * Joins: Wes (chatzilla@A1FEE3E8.E3DA2587.9A5171B3.IP)
  718. # [05:14] * Joins: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP)
  719. # [05:14] * jmaher is now known as jmaher|afk
  720. # [05:14] * Quits: tfair (tfairey@moz-BBE3ABD.mv.mozilla.com) (Client exited)
  721. # [05:15] * nthomas is now known as nthomas|away
  722. # [05:17] * Joins: dcamp (dave@moz-8EBEC133.hsd1.wa.comcast.net)
  723. # [05:17] * Quits: jgilbert (jgilbert@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  724. # [05:19] * Joins: brendan (brendaneic@moz-A286C218.hsd1.ca.comcast.net)
  725. # [05:20] * Joins: bsmith (bsmith@moz-E34A3D24.dsl.pltn13.sbcglobal.net)
  726. # [05:21] * Quits: raccettura (raccettura@moz-660B8F4B.hsd1.nj.comcast.net) (Quit: raccettura)
  727. # [05:21] * Quits: RyanVM (chatzilla@moz-D04D3C77.phlapa.fios.verizon.net) (Quit: ChatZilla 0.9.87-2011052417 [Firefox 11.0a1/20111206171139])
  728. # [05:21] * Joins: jprmc (jprmc@moz-F41B6661.tmodns.net)
  729. # [05:23] * Quits: mijia (mijia@F165AA39.4A8300D6.21B6911E.IP) (Quit: leaving)
  730. # [05:27] * Quits: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: gal)
  731. # [05:28] * Joins: mjschranz (mjschranz@moz-6FE6B833.cpe.net.cable.rogers.com)
  732. # [05:28] * Quits: Mook (mook@moz-B1410066.dsl.teksavvy.com) (Quit: ChatZilla 0.9.87-rdmsoft [XULRunner 6.0/20110811165603])
  733. # [05:28] * Quits: bnicholson (bnicholson@moz-D1AB96C1.hsd1.ca.comcast.net) (Quit: Leaving)
  734. # [05:29] * Joins: dRdR_ (dRdR@moz-BBE3ABD.mv.mozilla.com)
  735. # [05:30] * Quits: surkov (surkov@178F4FC2.D2B288F8.5D3F4C44.IP) (Ping timeout)
  736. # [05:31] * Quits: dRdR (dRdR@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  737. # [05:33] * Quits: rs (rs@moz-217F02CE.lightspeed.sntcca.sbcglobal.net) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 1.8.0.9/2006120508])
  738. # [05:35] * philor|away is now known as philor
  739. # [05:36] * Quits: mconley (mconley@moz-9C0F4EBF.cable.teksavvy.com) (Input/output error)
  740. # [05:38] * Quits: Waldo (waldo@moz-104CC309.mv.mozilla.com) (Quit: ChatZilla 0.9.87-3.1450hg.fc15 [XULRunner 7.0.1/20110930134335])
  741. # [05:40] * Joins: fzzzy (donovan@moz-2B41AF9B.lightspeed.mtvwca.sbcglobal.net)
  742. # [05:42] * Quits: fzzzy (donovan@moz-2B41AF9B.lightspeed.mtvwca.sbcglobal.net) (Quit: fzzzy)
  743. # [05:43] * glob|away is now known as glob
  744. # [05:43] * Joins: tfair (tfairey@moz-BBE3ABD.mv.mozilla.com)
  745. # [05:44] * Quits: cpearce (chatzilla@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  746. # [05:44] * Quits: tfair (tfairey@moz-BBE3ABD.mv.mozilla.com) (Client exited)
  747. # [05:46] * Quits: eflores (AndChat@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  748. # [05:47] <mbrubeck> glob: ping
  749. # [05:48] <glob> mbrubeck, pong
  750. # [05:48] * Quits: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  751. # [05:48] <mbrubeck> glob: I tried to change my email address on bmo, but the token expired before I got around to clicking on the confirmation link...
  752. # [05:48] * Joins: Mardak (Mardak@moz-ED2A7100.dsl.pltn13.sbcglobal.net)
  753. # [05:48] <mbrubeck> ...and now https://bugzilla.mozilla.org/userprefs.cgi?tab=account says "Confirmed email address: mbrubeck@mozilla.com; Completion date: 2011-12-10 12:38:42 PST" and won't let me change it again...
  754. # [05:49] <mbrubeck> ...is there any way around that? Will I be able to change it again after 2011-12-10?
  755. # [05:51] * Joins: surkov (surkov@E4B902A.26ED71FF.34044A7F.IP)
  756. # [05:53] <mbrubeck> (for anyone following along at home, glob fixed my problem out-of-channel)
  757. # [05:53] * Quits: bsmith (bsmith@moz-E34A3D24.dsl.pltn13.sbcglobal.net) (Ping timeout)
  758. # [05:54] <mconnor> mbrubeck: was about to ask if you needed help! :)
  759. # [05:55] * Quits: Mardak (Mardak@moz-ED2A7100.dsl.pltn13.sbcglobal.net) (Quit: Mardak)
  760. # [05:57] * Quits: jdm (jdm@moz-9AEDE212.cpe.net.cable.rogers.com) (Client exited)
  761. # [06:01] * Quits: jprmc (jprmc@moz-F41B6661.tmodns.net) (Ping timeout)
  762. # [06:07] * Joins: Poly-C (Poly-C@moz-1B17EAF2.dip.t-dialin.net)
  763. # [06:07] * Quits: Polynomial-C (Poly-C@moz-834FE53C.dip.t-dialin.net) (Ping timeout)
  764. # [06:08] * Joins: bbondy (bbondy@moz-28CF6D1C.home.cgocable.net)
  765. # [06:09] * Joins: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  766. # [06:11] * Joins: eflores (AndChat@538BABFE.A073F3E.97BBD552.IP)
  767. # [06:12] * timA|away is now known as timA
  768. # [06:19] * Joins: smooney (smooney@moz-3C7A0050.hsd1.ca.comcast.net)
  769. # [06:21] * timA is now known as timA|away
  770. # [06:22] * Joins: Boriss (FlyingToas@moz-62AAA429.hsd1.ca.comcast.net)
  771. # [06:23] * Joins: espindola (espindola@moz-E272665.dsl.teksavvy.com)
  772. # [06:23] * Quits: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Ping timeout)
  773. # [06:27] * Joins: akeybl (akeybl@moz-52D39FF6.hsd1.ca.comcast.net)
  774. # [06:28] * Joins: rniwa (rniwa@moz-E171DA5.sfba.hfc.comcastbusiness.net)
  775. # [06:28] * Quits: zuzelvp (zuzelvp@2112147D.C3507A2D.9A8C35B4.IP) (Ping timeout)
  776. # [06:28] * Joins: zuzelvp (zuzelvp@2112147D.C3507A2D.9A8C35B4.IP)
  777. # [06:29] * Joins: fzzzy (donovan@moz-2B41AF9B.lightspeed.mtvwca.sbcglobal.net)
  778. # [06:33] * Quits: roc (chatzilla@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  779. # [06:33] * Quits: rwaldron (rwaldron@moz-71B3012E.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com) (Quit: Linkinus - http://linkinus.com)
  780. # [06:36] * khuey is now known as khuey|away
  781. # [06:37] * Quits: sid0 (u2934@moz-160C58C6.com) (Ping timeout)
  782. # [06:38] * Quits: smvv (smvv@moz-ADA081D0.org) (Ping timeout)
  783. # [06:38] * Quits: nigelb (nigel@moz-8640053A.me) (Ping timeout)
  784. # [06:38] * Quits: dhtup (u1144@moz-160C58C6.com) (Ping timeout)
  785. # [06:38] * Quits: Unfocused (u2622@moz-160C58C6.com) (Ping timeout)
  786. # [06:38] * Quits: RST-J (RST-J@moz-343E9EC3.net) (Ping timeout)
  787. # [06:38] * Quits: ted2 (u2847@moz-160C58C6.com) (Ping timeout)
  788. # [06:38] * Quits: Asa (u3626@moz-160C58C6.com) (Ping timeout)
  789. # [06:38] * Quits: ttaubert (u2620@moz-160C58C6.com) (Ping timeout)
  790. # [06:38] * Quits: jaws (u2871@moz-160C58C6.com) (Ping timeout)
  791. # [06:38] * Quits: felipe (u2734@moz-160C58C6.com) (Ping timeout)
  792. # [06:45] * Joins: jaws (u2871@moz-160C58C6.com)
  793. # [06:46] * Quits: Hendikins (wolfox@moz-9A361C95.static.internode.on.net) (Ping timeout)
  794. # [06:46] * Quits: mbrubeck (mbrubeck@moz-755AD63.hsd1.wa.comcast.net) (Connection reset by peer)
  795. # [06:46] * Joins: mbrubeck (mbrubeck@moz-755AD63.hsd1.wa.comcast.net)
  796. # [06:46] * Joins: Hendikins (wolfox@moz-9A361C95.static.internode.on.net)
  797. # [06:46] * Joins: Asa (u3626@moz-160C58C6.com)
  798. # [06:46] * Joins: nigelb_ (nigel@moz-8640053A.me)
  799. # [06:47] * Quits: mjschranz (mjschranz@moz-6FE6B833.cpe.net.cable.rogers.com) (Client exited)
  800. # [06:47] * Joins: Unfocused (u2622@moz-160C58C6.com)
  801. # [06:48] * Joins: felipe (u2734@moz-160C58C6.com)
  802. # [06:48] * Joins: smvv (smvv@moz-ADA081D0.org)
  803. # [06:48] * Joins: RST-J (RST-J@moz-343E9EC3.net)
  804. # [06:48] * Quits: nigelb_ (nigel@moz-8640053A.me) (Quit: leaving)
  805. # [06:49] * Quits: squib (squib@moz-F5CA0CFB.dhcp.mdsn.wi.charter.com) (Quit: Leaving)
  806. # [06:50] * Joins: squib (squib@moz-F5CA0CFB.dhcp.mdsn.wi.charter.com)
  807. # [06:52] * Quits: felipe (u2734@moz-160C58C6.com) (Ping timeout)
  808. # [06:53] * Quits: Unfocused (u2622@moz-160C58C6.com) (Ping timeout)
  809. # [06:53] * zpao|detached is now known as zpao
  810. # [06:54] * Quits: smvv (smvv@moz-ADA081D0.org) (Ping timeout)
  811. # [06:54] * Quits: jaws (u2871@moz-160C58C6.com) (Ping timeout)
  812. # [06:55] * Joins: cpearce (chatzilla@moz-9AD49064.xdsl.xnet.co.nz)
  813. # [06:55] * Joins: smvv (smvv@moz-ADA081D0.org)
  814. # [06:56] * Joins: jaws (u2871@moz-160C58C6.com)
  815. # [06:56] * Quits: espindola (espindola@moz-E272665.dsl.teksavvy.com) (Quit: Ex-Chat)
  816. # [06:57] * Joins: felipe (u2734@moz-160C58C6.com)
  817. # [06:58] * Quits: erikvold (erikvold@AC7AE6DB.11D19A4C.67CA24A9.IP) (Quit: erikvold)
  818. # [06:58] * Quits: jimb (user@moz-BE7E90A8.hsd1.or.comcast.net) (Ping timeout)
  819. # [07:02] * Joins: ttaubert (u2620@moz-160C58C6.com)
  820. # [07:03] * Joins: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP)
  821. # [07:04] * Quits: njn (chatzilla@moz-3AB664F7.dyn.iinet.net.au) (Ping timeout)
  822. # [07:04] * Quits: biesi (cbiesinger@moz-5EE692A7.ca.hfc.comcastbusiness.net) (Ping timeout)
  823. # [07:09] * Parts: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP)
  824. # [07:09] * Quits: dRdR_ (dRdR@moz-BBE3ABD.mv.mozilla.com) (Client exited)
  825. # [07:09] * Joins: dRdR (dRdR@moz-BBE3ABD.mv.mozilla.com)
  826. # [07:13] * Quits: Wevah (Wevah@moz-97AD33CE.stcd.qwest.net) (Quit: Wevah)
  827. # [07:13] * Quits: dRdR (dRdR@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  828. # [07:15] * Joins: Mardak (Mardak@moz-ED2A7100.dsl.pltn13.sbcglobal.net)
  829. # [07:19] * Quits: pcwalton (pcwalton@moz-7B0110AD.mv.mozilla.com) (Quit: nbvcx)
  830. # [07:22] * Quits: lmandel (lmandel@moz-113D7D7C.cable.teksavvy.com) (Quit: lmandel)
  831. # [07:25] * heycam is now known as heycam|away
  832. # [07:27] * Joins: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net)
  833. # [07:28] * Joins: mgoodwin_ (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com)
  834. # [07:28] * Quits: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com) (Ping timeout)
  835. # [07:28] * Quits: mgoodwin_ (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com) (Quit: )
  836. # [07:28] * Joins: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com)
  837. # [07:29] * Quits: alex (alex@moz-BD8D0A09.lightspeed.sntcca.sbcglobal.net) (Client exited)
  838. # [07:31] * heycam|away is now known as heycam
  839. # [07:33] * Joins: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP)
  840. # [07:34] * Quits: smooney (smooney@moz-3C7A0050.hsd1.ca.comcast.net) (Quit: smooney)
  841. # [07:34] <@bz> njn: ping
  842. # [07:34] <@bz> hmm
  843. # [07:34] <@bz> no njn
  844. # [07:34] * Joins: mgoodwin_ (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com)
  845. # [07:34] * Quits: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com) (Ping timeout)
  846. # [07:35] * Joins: Unfocused (u2622@moz-160C58C6.com)
  847. # [07:37] * Quits: mgoodwin_ (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com) (Quit: )
  848. # [07:37] * Joins: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com)
  849. # [07:40] * Parts: lsumar (lsumar@538BABFE.A073F3E.97BBD552.IP) (Leaving)
  850. # [07:40] * Joins: wolfiR (wolfiR@moz-DE68FB1B.dip0.t-ipconnect.de)
  851. # [07:41] * Quits: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: gal)
  852. # [07:41] * Quits: mwu (mwu@5AAE35B2.5EFFC0B8.24454B25.IP) (Connection reset by peer)
  853. # [07:41] * Quits: jstraus (Adium@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: Leaving.)
  854. # [07:42] * Quits: jgriffin (jgriffin@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: jgriffin)
  855. # [07:42] * Joins: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP)
  856. # [07:43] * Quits: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: gal)
  857. # [07:46] * Joins: sicking (chatzilla@moz-229429EC.dsl.pltn13.sbcglobal.net)
  858. # [07:47] * jhford-work is now known as jhford-work-away
  859. # [07:47] * Joins: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP)
  860. # [07:47] * Joins: dRdR (dRdR@moz-57178BD3.hsd1.ca.comcast.net)
  861. # [07:47] <philor> masayuki: https://tbpl.mozilla.org/php/getParsedLog.php?id=7816314&tree=Mozilla-Inbound and https://tbpl.mozilla.org/php/getParsedLog.php?id=7814249&tree=Mozilla-Inbound look like they're probably fallout from your patch
  862. # [07:47] * Joins: jstraus (Adium@8ACF1000.5EFFC0B8.24454B25.IP)
  863. # [07:49] * Quits: eflores (AndChat@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  864. # [07:49] * Joins: bsmith (bsmith@moz-364A0C3E.hsd1.ca.comcast.net)
  865. # [07:49] * Quits: gwagner (idefix2@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: gwagner)
  866. # [07:50] <jlebar> To add a function to iframe, I just need to add a method to nsIHTMLFrameElement.idl? This doesn't seem to work.
  867. # [07:51] * Joins: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de)
  868. # [07:51] <@dbaron> bz, you know it is past normal working hours 8 hours behind you, right?
  869. # [07:51] <masayuki> philor: I think that it's same as bug 504586, it should be focus issue.
  870. # [07:51] <jlebar> dbaron: he's switched to Taipei time.
  871. # [07:52] <@dbaron> oh, ok
  872. # [07:52] * Joins: tfair (tfairey@moz-57178BD3.hsd1.ca.comcast.net)
  873. # [07:52] * jlebar isn't sure if dbaron took that seriously.
  874. # [07:53] * Joins: gal_ (gal@5AAE35B2.5EFFC0B8.24454B25.IP)
  875. # [07:53] * Quits: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP) (Ping timeout)
  876. # [07:53] <@dbaron> jlebar, a bunch of people are there this week, so I did, but now I'm not so sure
  877. # [07:53] * Quits: tfair (tfairey@moz-57178BD3.hsd1.ca.comcast.net) (Client exited)
  878. # [07:53] * Quits: rail_away (rail@261201A0.73F32077.5C565F38.IP) (Ping timeout)
  879. # [07:53] * Quits: gal_ (gal@5AAE35B2.5EFFC0B8.24454B25.IP) (Connection reset by peer)
  880. # [07:53] * Joins: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP)
  881. # [07:54] <jlebar> dbaron: I'm here in Taiwan, but bz isn't. But he's been going to bed after me and waking up before me. Which doesn't make much sense.
  882. # [07:54] <masayuki> philor: probably, my patch can cause it, but I think we should fix the bug 504586, looking the test now.
  883. # [07:54] * Joins: wesj (wesj@moz-98EE0B13.w90-46.abo.wanadoo.fr)
  884. # [07:54] <@dbaron> jlebar, oh, I was assuming bz was still in EST
  885. # [07:54] <@dbaron> jlebar, I was just referring to bz pinging njn
  886. # [07:55] <jlebar> dbaron: right.
  887. # [07:55] * Quits: mcmanus (mcmanus@moz-8C5E4939.maine.res.rr.com) (Ping timeout)
  888. # [07:56] * Joins: brendan_ (brendaneic@35E90EE3.B8B12C49.396B22AD.IP)
  889. # [07:56] <philor> I never really understood waitForFocus, but on the first one, I noticed that the test before it calls it, so I sort of figured the window would still have focus even if it had lost it along the way
  890. # [07:56] * Joins: mcmanus (mcmanus@moz-FE9B5BFD.twcny.res.rr.com)
  891. # [07:56] * Quits: brendan (brendaneic@moz-A286C218.hsd1.ca.comcast.net) (Ping timeout)
  892. # [07:56] * Quits: jlebar (jlebar@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: jlebar)
  893. # [07:56] * brendan_ is now known as brendan
  894. # [07:57] * Quits: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  895. # [07:59] * Joins: smontagu (chatzilla@moz-B8E666A2.red.bezeqint.net)
  896. # [07:59] * Quits: Mardak (Mardak@moz-ED2A7100.dsl.pltn13.sbcglobal.net) (Quit: Mardak)
  897. # [08:00] * Joins: RemusPop (remuspop@601F3B17.33662590.A5830293.IP)
  898. # [08:01] * Quits: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com) (Input/output error)
  899. # [08:03] * Quits: dcamp (dave@moz-8EBEC133.hsd1.wa.comcast.net) (Quit: Leaving...)
  900. # [08:05] * Quits: smontagu (chatzilla@moz-B8E666A2.red.bezeqint.net) (Ping timeout)
  901. # [08:05] * Quits: zandr (zandr@moz-891BD824.milewski.org) (Ping timeout)
  902. # [08:05] * Joins: nigelb (nigel@moz-8640053A.me)
  903. # [08:05] * Joins: Mardak (Mardak@moz-ED2A7100.dsl.pltn13.sbcglobal.net)
  904. # [08:06] * Quits: mdas (mdas@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: mdas)
  905. # [08:06] * Joins: smontagu (chatzilla@moz-B8E666A2.red.bezeqint.net)
  906. # [08:07] * Quits: chrisccoulson (chr1s@moz-692D94C8.cust-3601.ip.static.uno.uk.net) (Ping timeout)
  907. # [08:07] * Quits: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP) (Ping timeout)
  908. # [08:07] * Quits: zuzelvp (zuzelvp@2112147D.C3507A2D.9A8C35B4.IP) (Ping timeout)
  909. # [08:08] * Quits: bent (chatzilla@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: ChatZilla 0.9.87-rdmsoft [XULRunner 1.9.2.19/20110707195905])
  910. # [08:08] * Quits: dbradley (dbradley@moz-8FACAA93.fuse.net) (Quit: )
  911. # [08:09] * Quits: smontagu (chatzilla@moz-B8E666A2.red.bezeqint.net) (Ping timeout)
  912. # [08:09] * Quits: Mossop (mossop@moz-E325C2EC.dsl.dynamic.sonic.net) (Ping timeout)
  913. # [08:10] * Joins: rail_away (rail@261201A0.73F32077.5C565F38.IP)
  914. # [08:10] * Quits: cjones (cjones@5AAE35B2.5EFFC0B8.24454B25.IP) (Ping timeout)
  915. # [08:12] * Joins: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com)
  916. # [08:13] * Joins: smontagu (chatzilla@moz-B8E666A2.red.bezeqint.net)
  917. # [08:14] * Joins: cjones (cjones@5AAE35B2.5EFFC0B8.24454B25.IP)
  918. # [08:14] * Joins: zandr (zandr@moz-891BD824.milewski.org)
  919. # [08:15] * Joins: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP)
  920. # [08:15] <philor> bz: oh, that doesn't look good for you...
  921. # [08:17] <philor> but at least we've got those great stacks, just count up to 0x10896a6 in libxul.so, and there's the problem
  922. # [08:19] <@bz> philor: heh
  923. # [08:19] <@bz> philor: hrm
  924. # [08:19] <@bz> philor: lemme look, ok?
  925. # [08:20] <philor> bz: np, I hadn't even started to update a tree yet
  926. # [08:20] <@bz> yeah
  927. # [08:20] * @bz is building
  928. # [08:20] <@bz> might be 20 mins or os
  929. # [08:20] <@bz> er, so
  930. # [08:21] <@bz> wtf is there no stack on debug?
  931. # [08:21] <KWierso> stacks are overrated
  932. # [08:21] <philor> got me, nobody can ever simplify anything about that down to where I can understand it
  933. # [08:22] * Joins: TheOne (TheOne@moz-D58488C3.dfki.uni-kl.de)
  934. # [08:22] <philor> like, why are 3 out of 4 10.7 crashes crap-stacked, and the 4th is perfect?
  935. # [08:22] * Joins: magsout (magsout@moz-E559D13.fbx.proxad.net)
  936. # [08:23] <@bz> ok
  937. # [08:23] <@bz> so the good news is I know which of the patches did it
  938. # [08:23] <@bz> though not yet why
  939. # [08:23] * timA|away is now known as timA
  940. # [08:23] <@bz> the html5 test immediately following the last one that passed is this:
  941. # [08:23] <@bz> 185 <a><svg><tr><input></a>
  942. # [08:23] <@bz> 186 #errors
  943. # [08:23] <@bz> 187 #document
  944. # [08:23] <@bz> 188 | <html>
  945. # [08:23] <@bz> 189 | <head>
  946. # [08:23] <@bz> 190 | <body>
  947. # [08:23] <@bz> 191 | <a>
  948. # [08:23] <@bz> 192 | <svg svg>
  949. # [08:23] <@bz> 193 | <svg tr>
  950. # [08:23] <@bz> 194 | <svg input>
  951. # [08:24] * Quits: Mardak (Mardak@moz-ED2A7100.dsl.pltn13.sbcglobal.net) (Quit: Mardak)
  952. # [08:24] * Joins: daim (David_Mart@moz-EF3D4F79.fbx.proxad.net)
  953. # [08:24] * Joins: Adityab (quassel@59343EB9.AAEBE898.8D466B92.IP)
  954. # [08:24] * Quits: Adityab (quassel@59343EB9.AAEBE898.8D466B92.IP) (Quit: Adityab)
  955. # [08:25] * Joins: chrisccoulson (chr1s@moz-692D94C8.cust-3601.ip.static.uno.uk.net)
  956. # [08:25] * Quits: smontagu (chatzilla@moz-B8E666A2.red.bezeqint.net) (Ping timeout)
  957. # [08:25] * Quits: @dbaron (dbaron@moz-27F87443.dsl.dynamic.sonic.net) (Ping timeout)
  958. # [08:25] * @bz wishes the build told him what it's building
  959. # [08:26] <@bz> so I'd have some idea of where it is
  960. # [08:26] * Joins: smontagu (chatzilla@moz-B8E666A2.red.bezeqint.net)
  961. # [08:26] <philor> I think I saw a patch for that today
  962. # [08:26] <philor> so soon, maybe
  963. # [08:26] <@bz> yeah
  964. # [08:26] * Quits: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: gal)
  965. # [08:27] * Joins: dbaron (dbaron@moz-27F87443.dsl.dynamic.sonic.net)
  966. # [08:27] * ChanServ sets mode: +o dbaron
  967. # [08:27] * Quits: smontagu (chatzilla@moz-B8E666A2.red.bezeqint.net) (Input/output error)
  968. # [08:27] <@bz> ah, grepping ps ax for "g++" (but not "gcc") works
  969. # [08:27] * Joins: Mardak (Mardak@moz-ED2A7100.dsl.pltn13.sbcglobal.net)
  970. # [08:28] * Joins: smontagu (chatzilla@moz-B8E666A2.red.bezeqint.net)
  971. # [08:28] * Quits: Mardak (Mardak@moz-ED2A7100.dsl.pltn13.sbcglobal.net) (Quit: Mardak)
  972. # [08:28] <@bz> I fully expect this to be simple to fix once my build is done
  973. # [08:28] <@bz> failing that, I back out the SVG bits
  974. # [08:30] * Quits: klugefoo (kahr@moz-F88DFDF5.lightspeed.sntcca.sbcglobal.net) (Ping timeout)
  975. # [08:32] * Joins: tfair (tfairey@moz-57178BD3.hsd1.ca.comcast.net)
  976. # [08:33] * Joins: maikmerten (merten@moz-E254386D.cs.uni-dortmund.de)
  977. # [08:33] <tbsaunde> bz: I was just about to push to inbound want me to wait for you to figure that out??
  978. # [08:33] * Joins: klugefoo (kahr@moz-F88DFDF5.lightspeed.sntcca.sbcglobal.net)
  979. # [08:35] <@bz> hmm
  980. # [08:35] <@bz> I'd tend to say go ahead
  981. # [08:35] <tbsaunde> ok, then
  982. # [08:35] * Joins: mike5w3c_ (MikeS@moz-8CDB1382.pool.e-mobile.ne.jp)
  983. # [08:35] <@bz> (the Moth orange is also SVG-related)
  984. # [08:36] <@bz> or at least that test has lots of SVG in it
  985. # [08:36] * Quits: mike5w3c (MikeS@moz-5662A479.pool.e-mobile.ne.jp) (Ping timeout)
  986. # [08:36] * mike5w3c_ is now known as mike5w3c
  987. # [08:36] * @bz is in content/base now
  988. # [08:36] <@bz> well, in content/*
  989. # [08:36] <@bz> since it's all parallel
  990. # [08:36] <philor> oh, now *that's* a shock
  991. # [08:36] <philor> you get one good stack, from Android
  992. # [08:36] * Joins: bent (chatzilla@5AAE35B2.5EFFC0B8.24454B25.IP)
  993. # [08:37] <philor> or maybe not, maybe it's bogus
  994. # [08:37] * @bz looks
  995. # [08:38] <@bz> no, that's entirely possible
  996. # [08:38] * Joins: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  997. # [08:39] * Quits: mcmanus (mcmanus@moz-FE9B5BFD.twcny.res.rr.com) (Ping timeout)
  998. # [08:40] * Joins: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net)
  999. # [08:40] <@bz> ok
  1000. # [08:40] <@bz> this is totally my fault, I bet
  1001. # [08:40] <@bz> I also bet I know how to fix
  1002. # [08:40] * Joins: rshetty (quassel@A0EE3345.7215E38F.C842849F.IP)
  1003. # [08:40] * @bz just needs a build to test fi
  1004. # [08:41] <@bz> er, fix
  1005. # [08:41] <@bz> unless you want me to push it untested?
  1006. # [08:41] * Quits: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  1007. # [08:41] <philor> you're the inbound sheriff ;)
  1008. # [08:41] * Joins: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net)
  1009. # [08:41] <@bz> hmph
  1010. # [08:42] <philor> personally? I'd rather have your untested fix than have someone else on top of you
  1011. # [08:42] <@bz> ok
  1012. # [08:42] <@bz> pushing fix
  1013. # [08:42] <masayuki> philor: ok, looks like the frequency is too high on WinXP debug build, I'll backout it.
  1014. # [08:42] * Joins: mcmanus (mcmanus@moz-FE9B5BFD.twcny.res.rr.com)
  1015. # [08:43] <philor> masayuki: okay - I don't have any explanation for why it passed several times, and then settled into failing on that one push, but I don't even try to explain lots of our randomness
  1016. # [08:43] * @bz wishes hg would run faster on no cores
  1017. # [08:44] <@bz> just because there's a make -j4 in progress doesn't mean it should be slow!
  1018. # [08:44] <nigelb> Increase its niceness ;)
  1019. # [08:44] <@bz> its == make's?
  1020. # [08:44] <nigelb> No, hg
  1021. # [08:44] <nigelb> Or is it decrease
  1022. # [08:45] <@bz> you mean decrease, then?
  1023. # [08:45] <nigelb> bah. which gives it higher priority
  1024. # [08:45] <masayuki> philor: don't mind, I try fixing bug 504586. I believe that it's the actual cause.
  1025. # [08:45] * @bz wishes he could sanely renice the builds
  1026. # [08:45] <@bz> higher priority == lower niceness
  1027. # [08:45] <@bz> ok
  1028. # [08:45] <@bz> fix pushed
  1029. # [08:45] <nigelb> aha.
  1030. # [08:45] <nigelb> should have known :)
  1031. # [08:46] <masayuki> bz: can I backout my latest patch now?
  1032. # [08:47] * Quits: bsmith (bsmith@moz-364A0C3E.hsd1.ca.comcast.net) (Ping timeout)
  1033. # [08:48] <@bz> masayuki: go for it
  1034. # [08:48] * @bz is in layout land
  1035. # [08:48] <@bz> still nicely parallel
  1036. # [08:48] <@bz> over base and style at least
  1037. # [08:49] * Quits: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com) (Input/output error)
  1038. # [08:49] * Joins: stransky (stransky@moz-6F10C81D.net.upcbroadband.cz)
  1039. # [08:49] <masayuki> done.
  1040. # [08:49] * Joins: mdas (mdas@5AAE35B2.5EFFC0B8.24454B25.IP)
  1041. # [08:49] <@bz> so what I don't understant...
  1042. # [08:50] <@bz> is why I have 14 of these thing
  1043. # [08:50] <@bz> er, things
  1044. # [08:50] <@bz> I mean
  1045. # [08:50] * Quits: @dbaron (dbaron@moz-27F87443.dsl.dynamic.sonic.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  1046. # [08:50] <@bz> if I run with -jN
  1047. # [08:50] <@bz> should I really get more than N C compiler invocations?
  1048. # [08:50] * Joins: glazou (glazou@moz-204094DD.disruptive-innovations.fr)
  1049. # [08:51] <KWierso> baker's dozen is not sufficient, clearly
  1050. # [08:51] * Joins: darktrojan (geoff@9B1E044A.FDA75AE1.44E4C2B.IP)
  1051. # [08:51] <@bz> well
  1052. # [08:51] * Joins: whimboo (whimboo@moz-216F9AFA.superkabel.de)
  1053. # [08:51] <@bz> My value of N is nowhere near 14
  1054. # [08:51] <@bz> it's 6
  1055. # [08:51] <Callek> I run with -j300
  1056. # [08:51] <Callek> sometimes
  1057. # [08:51] <Callek> (when I do my computer hates me, since I only have an 8 core machine)
  1058. # [08:51] <glazou> bonjour
  1059. # [08:51] <@bz> my load average is about 6-8
  1060. # [08:51] <@bz> which makes sense...
  1061. # [08:52] <@bz> ah, down to only 10 compiler invocations, that's why
  1062. # [08:52] * Joins: kaze (kaze@moz-4BABD018.w90-46.abo.wanadoo.fr)
  1063. # [08:53] * Quits: Milos (milos@moz-5CBA6F5.dynamic.isp.telekom.rs) (Input/output error)
  1064. # [08:58] <squib> quick question if anyone's around who knows: in packages-manifest.in, are the lines like "
  1065. # [08:58] <squib> @BINPATH@/components/xul.xpt" there to build interface definitions for, in this case, content/xul/public/*.idl?
  1066. # [09:00] * Quits: mdas (mdas@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: mdas)
  1067. # [09:00] * Joins: sewardj (sewardj@moz-398EA7FF.dip.t-dialin.net)
  1068. # [09:00] * Joins: jhorak (jhorak@moz-107AD163.redhat.com)
  1069. # [09:00] * Joins: diogogmt (kvirc@moz-4D628198.cpe.net.cable.rogers.com)
  1070. # [09:01] <@bz> build done; testing
  1071. # [09:02] * Joins: mdas (mdas@5AAE35B2.5EFFC0B8.24454B25.IP)
  1072. # [09:03] <@bz> hmm
  1073. # [09:04] <@bz> this might still be broken
  1074. # [09:04] * @bz testing
  1075. # [09:05] <philor> squib: no, the makefiles already took care of building the idls into the xpts, they're in the manifest to tell packager which ones to smush together into the single browser.xpt or mail.xpt that we ship
  1076. # [09:06] * Joins: waschtl (waschtl@moz-A4ECE553.hsi4.kabel-badenwuerttemberg.de)
  1077. # [09:06] <philor> though it may be that we no longer actually have to list them, I remember being suspicious about that once but not whether I really looked
  1078. # [09:06] <@bz> oh
  1079. # [09:06] <@bz> duh
  1080. # [09:06] * @bz sighs
  1081. # [09:07] * Joins: Mardak (Mardak@moz-4FA48382.hsd1.ca.comcast.net)
  1082. # [09:07] <@bz> I'm crappy at this reviewing thing...
  1083. # [09:07] <philor> you should practice more!
  1084. # [09:07] <@bz> or rush less
  1085. # [09:07] <philor> just back him out and tell him to go back to flyfishing photography
  1086. # [09:08] <@bz> hmm?
  1087. # [09:08] * @bz is testing another followup now
  1088. # [09:08] <@bz> should fix the Mo for sure
  1089. # [09:08] <@bz> I haven't looked at the parser test yet
  1090. # [09:09] * Joins: roc (chatzilla@C0ACF8B.5E1E9EEA.613E47D1.IP)
  1091. # [09:09] * nhirata is now known as nhirata|zZz
  1092. # [09:09] <@bz> ok
  1093. # [09:09] * Quits: bent (chatzilla@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: ChatZilla 0.9.87-rdmsoft [XULRunner 1.9.2.19/20110707195905])
  1094. # [09:09] <@bz> yeah, this fixes Mo
  1095. # [09:10] * Parts: whimboo (whimboo@moz-216F9AFA.superkabel.de)
  1096. # [09:10] <@bz> running the m5 test now
  1097. # [09:10] <@bz> this might take a bit...
  1098. # [09:10] * Quits: m_kato (m_kato@moz-348F61F0.mozilla.or.jp) (Quit: Leaving...)
  1099. # [09:11] * Joins: jfkthame_afk (jfkthame@DBA4BEB5.90783722.9542EC20.IP)
  1100. # [09:11] * jfkthame_afk is now known as jfkthame
  1101. # [09:12] <@bz> pushing fix
  1102. # [09:12] <philor> another Brian O'Keefe is probably the world's second best flyfishing photographer
  1103. # [09:12] <@bz> ah
  1104. # [09:12] * @bz mumbles about weird jobs
  1105. # [09:13] <@bz> you did mean "flyfishing" as opposed to "flying fish"?
  1106. # [09:13] <philor> yup
  1107. # [09:13] <@bz> that's what I thought
  1108. # [09:13] * @bz shrugs
  1109. # [09:13] <@bz> I guess we all have weird jobs
  1110. # [09:14] <squib> philor: ah, well that probably explains the error i got anyway. (i'm trying to add html5 context menus to thunderbird.)
  1111. # [09:14] <squib> philor: thanks!
  1112. # [09:14] * Quits: wesj (wesj@moz-98EE0B13.w90-46.abo.wanadoo.fr) (Ping timeout)
  1113. # [09:14] * Parts: squib (squib@moz-F5CA0CFB.dhcp.mdsn.wi.charter.com) (Leaving)
  1114. # [09:15] * Quits: @dveditz (dveditz@moz-34991AF4.dhcp.cruzio.com) (Quit: dveditz)
  1115. # [09:16] * Quits: smontagu (chatzilla@moz-B8E666A2.red.bezeqint.net) (Ping timeout)
  1116. # [09:16] <philor> his job looks like http://brianokeefephotos.com/popup_photo4.php?recKey=1245 and mine doesn't
  1117. # [09:17] <glob> philor, you job could look like that, you're just one desktop wallpaper away :P
  1118. # [09:17] <darktrojan> nice photo, pity about the bloke fishing
  1119. # [09:17] <@bz> philor: your job probably has more terminals and editors, yes
  1120. # [09:17] * Quits: hub (hub@moz-E2FCA694.figuiere.net) (Ping timeout)
  1121. # [09:17] * Joins: smontagu (chatzilla@moz-B8E666A2.red.bezeqint.net)
  1122. # [09:18] * Joins: Yogesh_G (chatzilla@AC9D62D4.FC13163A.9105FBCF.IP)
  1123. # [09:18] * Joins: pascalc (chatzilla@moz-FEB99DDB.rev.sfr.net)
  1124. # [09:20] * Quits: smontagu (chatzilla@moz-B8E666A2.red.bezeqint.net) (Ping timeout)
  1125. # [09:21] * Joins: smontagu (chatzilla@moz-B8E666A2.red.bezeqint.net)
  1126. # [09:21] * Quits: sewardj (sewardj@moz-398EA7FF.dip.t-dialin.net) (Ping timeout)
  1127. # [09:23] <hsivonen> Do we have a list of the error console category strings (e.g. "DOM Events") somewhere?
  1128. # [09:23] * Quits: tbsaunde (tbsaunde@moz-9DECD0.pc.cs.cmu.edu) (Ping timeout)
  1129. # [09:23] <hsivonen> who consumes the strings? should I just make a new one up? Like "HTML Parser"?
  1130. # [09:24] * Quits: rail_away (rail@261201A0.73F32077.5C565F38.IP) (Ping timeout)
  1131. # [09:24] * jfkthame is now known as jfkthame_afk
  1132. # [09:25] * Joins: tbsaunde (tbsaunde@moz-9DECD0.pc.cs.cmu.edu)
  1133. # [09:26] * Quits: daim (David_Mart@moz-EF3D4F79.fbx.proxad.net) (Client exited)
  1134. # [09:26] * Quits: smontagu (chatzilla@moz-B8E666A2.red.bezeqint.net) (Ping timeout)
  1135. # [09:27] * Joins: smontagu (chatzilla@moz-B8E666A2.red.bezeqint.net)
  1136. # [09:27] * Joins: rail_away (rail@261201A0.73F32077.5C565F38.IP)
  1137. # [09:28] * Joins: dao (dao@moz-B2B491BF.superkabel.de)
  1138. # [09:30] * Quits: kaie (kaie@moz-47CA3B3B.dip.t-dialin.net) (Quit: Leaving)
  1139. # [09:30] * Quits: Yogesh_G (chatzilla@AC9D62D4.FC13163A.9105FBCF.IP) (Ping timeout)
  1140. # [09:31] * philor is now known as philor|away
  1141. # [09:31] * Joins: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com)
  1142. # [09:32] <@bz> hsivonen: the error console consumes the strings, no?
  1143. # [09:32] <@bz> hsivonen: or rather any console service listener can....
  1144. # [09:33] * Quits: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com) (Ping timeout)
  1145. # [09:35] <@bz> in practice, I think that just css is separated out in the default UI
  1146. # [09:35] <@bz> console^2 has js/css/xml
  1147. # [09:37] * Quits: surkov (surkov@E4B902A.26ED71FF.34044A7F.IP) (Quit: surkov)
  1148. # [09:39] * Quits: mixedpuppy (mixedpuppy@8218E429.CF4F0E4E.3ECF35D.IP) (Quit: mixedpuppy)
  1149. # [09:40] * Joins: protz (protz@moz-E29D2A15.inria.fr)
  1150. # [09:41] * Quits: mdas (mdas@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: mdas)
  1151. # [09:42] <hsivonen> bz: the error console has error/warning/message categories. the UI doesn't have a category for e.g. DOM events
  1152. # [09:42] * Joins: ctopper (craig@10F5C408.23A18F00.F9E1BAE1.IP)
  1153. # [09:42] <NeilAway> khuey|away: why not have the rule that copies the appropriate XPT to components depend on the XPT file, instead of recursively calling make?
  1154. # [09:42] <hsivonen> UI strings are hard to write
  1155. # [09:43] <hsivonen> so that they are truthful, understandable and short
  1156. # [09:43] * Joins: MarcoZ (marco.zehe@moz-14F312E2.dip.t-dialin.net)
  1157. # [09:44] * Joins: Milos (milos@moz-E31CD2CB.mozilla.org)
  1158. # [09:44] <@bz> hsivonen: it has ui for css vs "js", for sure
  1159. # [09:45] * Joins: whimboo1 (whimboo@moz-216F9AFA.superkabel.de)
  1160. # [09:45] * heycam is now known as heycam|away
  1161. # [09:45] <hsivonen> bz: I see no such UI on Linux
  1162. # [09:46] <@bz> hsivonen: are you looking at the error console or web console?
  1163. # [09:46] <hsivonen> bz: error console
  1164. # [09:46] * Joins: evilpie (chatzilla@moz-C3BBCA7D.pools.arcor-ip.net)
  1165. # [09:46] <@bz> ah
  1166. # [09:46] <@bz> yes, the error console doesn't have it
  1167. # [09:46] <@bz> the web console does
  1168. # [09:46] <@bz> as does console^2
  1169. # [09:47] <hsivonen> ok
  1170. # [09:47] <@bz> ok
  1171. # [09:47] <@bz> it's 3:40am
  1172. # [09:47] <@bz> bedtime
  1173. # [09:47] * bz is now known as bz_sleep
  1174. # [09:47] * Parts: whimboo1 (whimboo@moz-216F9AFA.superkabel.de)
  1175. # [09:48] * Joins: gabor (gabor@moz-3B57BCD1.catv.pool.telekom.hu)
  1176. # [09:48] * Joins: mwu (mwu@8ACF1000.5EFFC0B8.24454B25.IP)
  1177. # [09:49] * Quits: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  1178. # [09:49] * Quits: diogogmt (kvirc@moz-4D628198.cpe.net.cable.rogers.com) (Quit: KVIrc 4.1.1 Equilibrium http://www.kvirc.net/)
  1179. # [09:51] * Quits: birtles (chatzilla@moz-348F61F0.mozilla.or.jp) (Quit: ChatZilla 0.9.87-rdmsoft [XULRunner 1.9.0.17/2009122204])
  1180. # [09:51] * Quits: tfair (tfairey@moz-57178BD3.hsd1.ca.comcast.net) (Client exited)
  1181. # [09:52] * Joins: mdas (mdas@5AAE35B2.5EFFC0B8.24454B25.IP)
  1182. # [09:52] * Quits: fzzzy (donovan@moz-2B41AF9B.lightspeed.mtvwca.sbcglobal.net) (Quit: fzzzy)
  1183. # [09:56] * Joins: pnemsak (Miranda@moz-3D67D819.rainside.sk)
  1184. # [10:03] * Joins: fzzzy (donovan@moz-2B41AF9B.lightspeed.mtvwca.sbcglobal.net)
  1185. # [10:04] * Quits: fzzzy (donovan@moz-2B41AF9B.lightspeed.mtvwca.sbcglobal.net) (Quit: fzzzy)
  1186. # [10:05] * zpao is now known as zpao|detached
  1187. # [10:09] * CwiiisAway is now known as Cwiiis
  1188. # [10:12] * Joins: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com)
  1189. # [10:13] * Quits: kaze (kaze@moz-4BABD018.w90-46.abo.wanadoo.fr) (Ping timeout)
  1190. # [10:13] * Joins: msucan (msucan-@FA9E8863.56E67207.699550A1.IP)
  1191. # [10:15] * Joins: AutomatedTester (AutomatedT@moz-E2DE3599.as13285.net)
  1192. # [10:16] * Joins: Hughman (Hughman@moz-1727A300.static.tpgi.com.au)
  1193. # [10:17] * Quits: dRdR (dRdR@moz-57178BD3.hsd1.ca.comcast.net) (Client exited)
  1194. # [10:18] * Joins: wesj (wesj@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1195. # [10:20] * Quits: smontagu (chatzilla@moz-B8E666A2.red.bezeqint.net) (Ping timeout)
  1196. # [10:20] * Quits: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com) (Ping timeout)
  1197. # [10:20] * Joins: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com)
  1198. # [10:22] * Joins: robhawkes (robhawkes@moz-33A339B7.dsl.cnl.uk.net)
  1199. # [10:22] * mattwoodrow is now known as mattwoodrow|away
  1200. # [10:22] * Joins: smontagu (chatzilla@moz-B8E666A2.red.bezeqint.net)
  1201. # [10:23] * Quits: mwu (mwu@8ACF1000.5EFFC0B8.24454B25.IP) (Ping timeout)
  1202. # [10:23] * Quits: dao (dao@moz-B2B491BF.superkabel.de) (Quit: Leaving.)
  1203. # [10:23] * Quits: akeybl (akeybl@moz-52D39FF6.hsd1.ca.comcast.net) (Quit: Leaving...)
  1204. # [10:25] * Joins: sid0 (u2934@moz-160C58C6.com)
  1205. # [10:28] * Joins: mwu (mwu@5AAE35B2.5EFFC0B8.24454B25.IP)
  1206. # [10:28] * Joins: jlebar (jlebar@5AAE35B2.5EFFC0B8.24454B25.IP)
  1207. # [10:29] * Joins: gwagner (idefix2@5AAE35B2.5EFFC0B8.24454B25.IP)
  1208. # [10:30] * auscompgeek is now known as _aucg
  1209. # [10:31] * _aucg is now known as _403
  1210. # [10:31] * _403 is now known as auscompgeek
  1211. # [10:34] * Quits: mdas (mdas@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: mdas)
  1212. # [10:34] * Quits: cpearce (chatzilla@moz-9AD49064.xdsl.xnet.co.nz) (Ping timeout)
  1213. # [10:37] * Joins: mgoodwin_ (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com)
  1214. # [10:37] * Quits: Hughman (Hughman@moz-1727A300.static.tpgi.com.au) (Connection timed out)
  1215. # [10:38] * Quits: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com) (Ping timeout)
  1216. # [10:38] * Joins: Hughman (Hughman@moz-1727A300.static.tpgi.com.au)
  1217. # [10:39] * Quits: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  1218. # [10:39] * Quits: ctopper (craig@10F5C408.23A18F00.F9E1BAE1.IP) (Quit: ctopper)
  1219. # [10:41] * Quits: nthomas|away (chatzilla@E39DA02F.C8F27E0B.44E4C2B.IP) (Input/output error)
  1220. # [10:43] * Quits: pascalc (chatzilla@moz-FEB99DDB.rev.sfr.net) (Ping timeout)
  1221. # [10:49] * Joins: nthomas|away (chatzilla@E39DA02F.C8F27E0B.44E4C2B.IP)
  1222. # [10:53] * Quits: roc (chatzilla@C0ACF8B.5E1E9EEA.613E47D1.IP) (Ping timeout)
  1223. # [10:53] * Joins: bent (chatzilla@5AAE35B2.5EFFC0B8.24454B25.IP)
  1224. # [10:53] <NeilAway> mak++
  1225. # [10:55] * Joins: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1226. # [10:57] * Joins: mdas (mdas@5AAE35B2.5EFFC0B8.24454B25.IP)
  1227. # [10:59] * Quits: mgoodwin_ (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com) (Input/output error)
  1228. # [10:59] * glob is now known as glob|away
  1229. # [11:03] * Joins: Goldorak (chatzilla@6B0B3C96.E7E42A7B.187A1082.IP)
  1230. # [11:03] * Joins: imphil (philipp@moz-55513EF0.rad.med.uni-muenchen.de)
  1231. # [11:05] * Joins: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com)
  1232. # [11:05] * Joins: jgriffin (jgriffin@5AAE35B2.5EFFC0B8.24454B25.IP)
  1233. # [11:05] * Joins: florian (florian@moz-87C33FDA.kimsufi.com)
  1234. # [11:06] * Joins: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP)
  1235. # [11:07] * Quits: gwagner (idefix2@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: gwagner)
  1236. # [11:08] * Quits: GPHemsley (GPHemsley@moz-A2DF0FC4.hfc.comcastbusiness.net) (Ping timeout)
  1237. # [11:09] * Joins: GPHemsley (GPHemsley@moz-A2DF0FC4.hfc.comcastbusiness.net)
  1238. # [11:09] * Joins: asac (asac@moz-E42E0EAC.pppoe.wtnet.de)
  1239. # [11:11] * Quits: stransky (stransky@moz-6F10C81D.net.upcbroadband.cz) (Quit: Connection reset by beer)
  1240. # [11:15] * Joins: jgilbert (jgilbert@moz-2B3CF81C.hsd1.ca.comcast.net)
  1241. # [11:15] * ewong is now known as ewong|away
  1242. # [11:19] * mkelly|wfh is now known as mkelly
  1243. # [11:20] * Joins: davehunt_ (davehunt@moz-E2929564.dsl.in-addr.zen.co.uk)
  1244. # [11:20] * Quits: jlebar (jlebar@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: jlebar)
  1245. # [11:20] * Quits: davehunt|away (davehunt@moz-E31CD2CB.mozilla.org) (Ping timeout)
  1246. # [11:22] * Joins: jlebar (jlebar@5AAE35B2.5EFFC0B8.24454B25.IP)
  1247. # [11:22] * davehunt_ is now known as davehunt|away
  1248. # [11:23] * Joins: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  1249. # [11:24] * Quits: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com) (Input/output error)
  1250. # [11:24] * Quits: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  1251. # [11:24] * Joins: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  1252. # [11:24] * Joins: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  1253. # [11:25] * Joins: Yoric (Yoric@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1254. # [11:27] <glazou> !seen Pike
  1255. # [11:27] <firebot> pike was last seen 10 hours, 46 minutes and 19 seconds ago, saying 'bed time, g'night' in #mobile.
  1256. # [11:29] * Quits: peterv (peterv@moz-715F6D16.access.telenet.be) (Ping timeout)
  1257. # [11:32] * Joins: peterv (peterv@moz-715F6D16.access.telenet.be)
  1258. # [11:36] * Quits: jgriffin (jgriffin@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: jgriffin)
  1259. # [11:38] * Quits: cjones (cjones@5AAE35B2.5EFFC0B8.24454B25.IP) (Ping timeout)
  1260. # [11:39] * Quits: karl (karl@moz-1BD9459E.jetstream.xtra.co.nz) (Ping timeout)
  1261. # [11:41] * Joins: cjones (cjones@5AAE35B2.5EFFC0B8.24454B25.IP)
  1262. # [11:42] * Quits: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Ping timeout)
  1263. # [11:44] * Quits: robhawkes (robhawkes@moz-33A339B7.dsl.cnl.uk.net) (Quit: Linkinus - http://linkinus.com)
  1264. # [11:45] * Joins: chrisccoulson_ (chr1s@moz-692D94C8.cust-3601.ip.static.uno.uk.net)
  1265. # [11:45] * Quits: chrisccoulson (chr1s@moz-692D94C8.cust-3601.ip.static.uno.uk.net) (Connection reset by peer)
  1266. # [11:45] * Quits: chrisccoulson_ (chr1s@moz-692D94C8.cust-3601.ip.static.uno.uk.net) (Client exited)
  1267. # [11:45] * Joins: chrisccoulson (chr1s@moz-692D94C8.cust-3601.ip.static.uno.uk.net)
  1268. # [11:45] * Joins: andreasn (andreasn@moz-3CDFCC6A.a336.corp.bahnhof.se)
  1269. # [11:46] * davehunt|away is now known as davehunt
  1270. # [11:47] * Quits: jlebar (jlebar@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: jlebar)
  1271. # [11:47] * Quits: mdas (mdas@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: mdas)
  1272. # [11:47] * Joins: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  1273. # [11:48] * Joins: tH (Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com)
  1274. # [11:51] * Quits: rniwa (rniwa@moz-E171DA5.sfba.hfc.comcastbusiness.net) (Quit: rniwa)
  1275. # [11:53] * Joins: graememcc (chatzilla@moz-D52ADCCB.range109-151.btcentralplus.com)
  1276. # [11:53] * Joins: smaug (chatzilla@moz-3D102CE8.gprs.sl-laajakaista.fi)
  1277. # [11:53] * Joins: pascalc (chatzilla@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1278. # [11:54] * Joins: gandalf (zbraniecki@moz-C1F346A2.neoplus.adsl.tpnet.pl)
  1279. # [11:54] * Quits: mwu (mwu@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: This computer has gone to sleep)
  1280. # [11:54] * Joins: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com)
  1281. # [11:54] * Quits: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP) (Ping timeout)
  1282. # [11:55] * Joins: jacek (jacek@moz-5D707D3B.psi.wroc.pl)
  1283. # [11:58] * khuey|away is now known as khuey
  1284. # [11:58] * Quits: cjones (cjones@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: Leaving)
  1285. # [11:58] <khuey> NeilAway: I think the problem he's trying to solve is not linking the XPTs unnecessarily, not not copying htem unnecessarily
  1286. # [11:58] * timA is now known as timA|away
  1287. # [12:00] * Joins: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP)
  1288. # [12:01] * Joins: sewardj (sewardj@moz-398EA7FF.dip.t-dialin.net)
  1289. # [12:03] * Joins: stransky (stransky@moz-107AD163.redhat.com)
  1290. # [12:04] * Quits: bent (chatzilla@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: ChatZilla 0.9.87-rdmsoft [XULRunner 1.9.2.19/20110707195905])
  1291. # [12:06] * Joins: roc (chatzilla@C0ACF8B.5E1E9EEA.613E47D1.IP)
  1292. # [12:07] * jfkthame_afk is now known as jfkthame
  1293. # [12:09] * Joins: grubshka (grubshka@moz-646235CC.w109-212.abo.wanadoo.fr)
  1294. # [12:10] * Joins: robhawkes (robhawkes@moz-33A339B7.dsl.cnl.uk.net)
  1295. # [12:13] * Quits: kennyluck (kennyluck@moz-F168007D.dynamic.hinet.net) (Quit: kennyluck)
  1296. # [12:13] * Quits: sicking (chatzilla@moz-229429EC.dsl.pltn13.sbcglobal.net) (Ping timeout)
  1297. # [12:15] * Quits: pascalc (chatzilla@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Quit: bye)
  1298. # [12:15] * Quits: andreasn (andreasn@moz-3CDFCC6A.a336.corp.bahnhof.se) (Ping timeout)
  1299. # [12:15] * Quits: jfkthame (jfkthame@DBA4BEB5.90783722.9542EC20.IP) (Quit: jfkthame)
  1300. # [12:19] * Joins: clokep (clokep@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
  1301. # [12:23] * Quits: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Ping timeout)
  1302. # [12:26] * Joins: daim (David_Mart@779E3E00.1773D26C.C0FF2207.IP)
  1303. # [12:27] * Quits: Hughman (Hughman@moz-1727A300.static.tpgi.com.au) (Quit: Bye)
  1304. # [12:27] <NeilAway> khuey: sure, but making the copy depend on the link is saner than a recursive make
  1305. # [12:28] * Joins: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  1306. # [12:33] * Joins: jdm (jdm@CC0122E6.8F96AEA7.2D179A7D.IP)
  1307. # [12:33] * NeilAway is getting some aggressively delayed image decoding
  1308. # [12:35] * Joins: necolas (necolas@moz-4197BE5D.bb.sky.com)
  1309. # [12:36] * Quits: smontagu (chatzilla@moz-B8E666A2.red.bezeqint.net) (Ping timeout)
  1310. # [12:37] * Quits: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com) (Input/output error)
  1311. # [12:38] * Joins: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com)
  1312. # [12:40] * Quits: jhorak (jhorak@moz-107AD163.redhat.com) (Client exited)
  1313. # [12:44] * Quits: darktrojan (geoff@9B1E044A.FDA75AE1.44E4C2B.IP) (Quit: darktrojan)
  1314. # [12:46] * Joins: KaiRo (robert@moz-DE00DF1A.adsl.highway.telekom.at)
  1315. # [12:46] * Joins: smontagu (chatzilla@moz-5FE03E74.red.bezeqint.net)
  1316. # [12:47] * Ziggy|AWAY is now known as Ziggy_Maes
  1317. # [12:51] * Joins: Fallen|mac (kewisch@moz-263314FF.adsl.hansenet.de)
  1318. # [12:53] * Quits: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com) (Input/output error)
  1319. # [12:54] * Quits: decoder (quassel@moz-216446B9.own-hero.net) (Ping timeout)
  1320. # [12:55] * Joins: decoder (quassel@moz-216446B9.own-hero.net)
  1321. # [12:57] * Joins: jfkthame_afk (jfkthame@DBA4BEB5.90783722.9542EC20.IP)
  1322. # [12:57] * jfkthame_afk is now known as jfkthame
  1323. # [13:01] * Joins: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com)
  1324. # [13:01] * Quits: JPeterson (JPeterson@moz-B2998FD7.cust.tele2.se) (Connection reset by peer)
  1325. # [13:02] * Joins: JPeterson (JPeterson@moz-B2998FD7.cust.tele2.se)
  1326. # [13:02] * Joins: kennyluck (kennyluck@moz-25F02FD4.dynamic.hinet.net)
  1327. # [13:02] <smaug> what...
  1328. # [13:02] <smaug> I don't see mxr for release
  1329. # [13:02] <smaug> there is for Aurora and Beta
  1330. # [13:03] * Quits: mcmanus (mcmanus@moz-FE9B5BFD.twcny.res.rr.com) (Ping timeout)
  1331. # [13:04] * Quits: kennyluck (kennyluck@moz-25F02FD4.dynamic.hinet.net) (Ping timeout)
  1332. # [13:04] * Joins: kennyluck (kennyluck@moz-25F02FD4.dynamic.hinet.net)
  1333. # [13:05] * Quits: jacek (jacek@moz-5D707D3B.psi.wroc.pl) (Client exited)
  1334. # [13:05] * Joins: jacek (jacek@moz-5D707D3B.psi.wroc.pl)
  1335. # [13:05] * Quits: clokep (clokep@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com) (Quit: Instantbird 1.2a1pre)
  1336. # [13:06] * Quits: Fallen|mac (kewisch@moz-263314FF.adsl.hansenet.de) (Quit: Leaving.)
  1337. # [13:08] <jdm> smaug: yep, no release mxr
  1338. # [13:09] * Quits: Wes_ (chatzilla@moz-BEF0C255.page.ca) (Ping timeout)
  1339. # [13:10] * Quits: roc (chatzilla@C0ACF8B.5E1E9EEA.613E47D1.IP) (Ping timeout)
  1340. # [13:10] * Joins: mgoodwin_ (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com)
  1341. # [13:10] * Joins: Wes_ (chatzilla@moz-BEF0C255.page.ca)
  1342. # [13:11] * Quits: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com) (Ping timeout)
  1343. # [13:13] * Joins: roc (chatzilla@C0ACF8B.5E1E9EEA.613E47D1.IP)
  1344. # [13:13] * Quits: Cork[home] (none@moz-A686E97F.bredband.skanova.com) (Ping timeout)
  1345. # [13:14] * Joins: Cork[home] (none@moz-383B3DAE.bredband.skanova.com)
  1346. # [13:15] * Quits: AutomatedTester (AutomatedT@moz-E2DE3599.as13285.net) (Quit: AutomatedTester)
  1347. # [13:16] * Joins: Julian (chatzilla@moz-43E73578.greenbytes.de)
  1348. # [13:20] * Quits: kennyluck (kennyluck@moz-25F02FD4.dynamic.hinet.net) (Connection reset by peer)
  1349. # [13:21] * Joins: kennyluck (kennyluck@moz-25F02FD4.dynamic.hinet.net)
  1350. # [13:21] * Quits: johnath_home (noyb@moz-5A10C3E8.dsl.teksavvy.com) (Ping timeout)
  1351. # [13:22] * Joins: johnath_home (noyb@moz-5A10C3E8.dsl.teksavvy.com)
  1352. # [13:22] * Quits: kennyluck (kennyluck@moz-25F02FD4.dynamic.hinet.net) (Ping timeout)
  1353. # [13:23] * Joins: pascalc (chatzilla@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1354. # [13:23] <smaug> that is absolutely terrible
  1355. # [13:23] * Joins: kennyluck (kennyluck@moz-308EF337.dynamic.hinet.net)
  1356. # [13:23] * pascalc is now known as IRCMonkey33132
  1357. # [13:27] * Quits: kennyluck (kennyluck@moz-308EF337.dynamic.hinet.net) (Ping timeout)
  1358. # [13:27] * Quits: peterv (peterv@moz-715F6D16.access.telenet.be) (Connection reset by peer)
  1359. # [13:27] * Quits: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  1360. # [13:27] * IRCMonkey33132 is now known as pascalc
  1361. # [13:28] * Quits: bbondy (bbondy@moz-28CF6D1C.home.cgocable.net) (Ping timeout)
  1362. # [13:28] * Joins: kennyluck (kennyluck@moz-5D9A1DCF.dynamic.hinet.net)
  1363. # [13:28] <bhearsum|afk> yeah
  1364. # [13:28] <bhearsum|afk> =\
  1365. # [13:28] <bhearsum|afk> mxr is barely maintained at this point though
  1366. # [13:29] <Cork> why?
  1367. # [13:29] <Cork> (is it barly maintained)
  1368. # [13:29] * Joins: ejpbruel (ejpbruel@moz-5EE20326.adsl2.static.versatel.nl)
  1369. # [13:29] * bear-afk is now known as bear
  1370. # [13:32] <bhearsum|afk> the short answer is "it fell through the cracks"
  1371. # [13:32] * Joins: peterv (peterv@moz-715F6D16.access.telenet.be)
  1372. # [13:32] <bhearsum|afk> the long answer is something along the lines of legacy system that got maintained by a developer for a long time, and never picked up by webdev
  1373. # [13:32] <bhearsum|afk> it also has no active devs at this point, and security issues =\
  1374. # [13:37] * Joins: Pike (Pike@moz-E31CD2CB.mozilla.org)
  1375. # [13:37] * Quits: MarcoZ (marco.zehe@moz-14F312E2.dip.t-dialin.net) (Quit: Reboot.)
  1376. # [13:39] <smaug> mxr is yet the most important tool there is for devs
  1377. # [13:40] <hsivonen> is there some nice way to test (from mochitest) that certain console messages get emitted?
  1378. # [13:41] * Parts: Ventron (michael@moz-ED780ED3.dyn.iinet.net.au)
  1379. # [13:41] * Joins: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  1380. # [13:43] * Quits: asac (asac@moz-E42E0EAC.pppoe.wtnet.de) (Quit: leaving)
  1381. # [13:43] <hsivonen> what's the purpose of hiddenWindow.html and why does it declare a quirky doctype?
  1382. # [13:44] <Pike> IIRC, hiddenwindow is what makes the app stay around on mac when all windows are closed. at least that's the historical background
  1383. # [13:44] <NeilAway> yeah, but in that case it contains a XUL document
  1384. # [13:45] * Quits: lurking (chatzilla@moz-4E6F738.dhcp.embarqhsd.net) (Quit: ChatZilla 0.9.87-rdmsoft [XULRunner 1.9.0.17/2009122204])
  1385. # [13:45] * Joins: asac (asac@moz-E42E0EAC.pppoe.wtnet.de)
  1386. # [13:45] <hsivonen> NeilAway: hiddenWindow.html gets loaded on Linux
  1387. # [13:46] <glazou> that is used if no hiddenwindow is defined in the preferences
  1388. # [13:47] <glazou> http://mxr.mozilla.org/mozilla-central/source/xpfe/appshell/src/nsAppShellService.cpp#124
  1389. # [13:47] <glazou> Pike: hi
  1390. # [13:47] <glazou> Pike: I wanted to use compare-locales but I can't
  1391. # [13:47] <glazou> I wanted it to let me know if an entity/string is similar to the en-US version, as a warning
  1392. # [13:48] <glazou> do you it's a valid RFE ?
  1393. # [13:48] <khuey> did the zimbra reboot result in it start letting a bunch of spam through for anyone else?
  1394. # [13:48] * Joins: regen (Miller@moz-2FBAA89A.adsl.dynamic.seed.net.tw)
  1395. # [13:49] * Quits: jgilbert (jgilbert@moz-2B3CF81C.hsd1.ca.comcast.net) (Ping timeout)
  1396. # [13:49] <hsivonen> glazou: thanks. I still don't know why hiddenWindow.html is in the quirks mode
  1397. # [13:49] <hsivonen> not my problem, I suppose
  1398. # [13:49] <hsivonen> turns out that hiddenWindow.html not declaring its encoding is my problem, though
  1399. # [13:50] <NeilAway> hsivonen: I know, I was just pointing out that Pike was looking at the wrong hidden window
  1400. # [13:53] <Pike> glazou: with as much as you say, not really. I bet you could implement what you're looking for, but I wouldn't see that that solves a generic problem that should be upstreamed
  1401. # [13:53] <glazou> no worries
  1402. # [13:54] * ewong|sleep is now known as ewong
  1403. # [13:54] <jdm> hsivonen: pretty sure there's a SpecialPowers interface for console messages
  1404. # [13:54] <hsivonen> it seems that it's common for iframed ads not to declare their encoding
  1405. # [13:55] <jdm> hsivonen: http://mxr.mozilla.org/mozilla-central/source/testing/mochitest/tests/SimpleTest/specialpowersAPI.js?force=1#463
  1406. # [13:55] <jdm> huh, unused by any test
  1407. # [13:55] <jdm> that's interesting
  1408. # [13:55] <hsivonen> jdm: thanks!
  1409. # [13:56] <jdm> I know zwol had ideas about how to improve the console listener testing framework
  1410. # [13:56] <khuey> !seen Ms2ger
  1411. # [13:56] <firebot> ms2ger was last seen 15 hours, 37 minutes and 27 seconds ago, saying 'And act smug about it as well ;)' in #developers.
  1412. # [13:57] * Quits: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  1413. # [13:58] * Joins: kennyluck_ (kennyluck@moz-5D9A1DCF.dynamic.hinet.net)
  1414. # [13:59] * Quits: kennyluck (kennyluck@moz-5D9A1DCF.dynamic.hinet.net) (Ping timeout)
  1415. # [13:59] * kennyluck_ is now known as kennyluck
  1416. # [14:01] <jdm> why is hg fetch giving me a 403 :(
  1417. # [14:03] * Joins: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com)
  1418. # [14:04] <khuey> because hg fetch isn't a real command? :-P
  1419. # [14:05] <jdm> I have an extension that says otherwise
  1420. # [14:05] <jdm> so there
  1421. # [14:07] * Joins: andreasn (andreasn@moz-BB6A8755.bredband.comhem.se)
  1422. # [14:07] * Joins: MarcoZ (marco.zehe@moz-14F312E2.dip.t-dialin.net)
  1423. # [14:10] * Quits: mgoodwin_ (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com) (Quit: )
  1424. # [14:10] * Joins: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com)
  1425. # [14:11] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/0ca37155a577 - Kyle Huey - Bug 692067: Make WebSockets trigger content policies. r=smaug,dveditz
  1426. # [14:11] <firebot> http://hg.mozilla.org/mozilla-central/rev/ebe8aa6a1f35 - Kyle Huey - Merge b-s to m-c.
  1427. # [14:12] * Joins: sheppy (sheppy@moz-4992DE6D.static.kgpt.tn.charter.com)
  1428. # [14:12] * Joins: mconley (mconley@moz-9C0F4EBF.cable.teksavvy.com)
  1429. # [14:13] * jfkthame is now known as jfkthame_afk
  1430. # [14:15] * Joins: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1431. # [14:18] <mick_laptop> jesup: yes it did - everything works perfectly. thank you :)
  1432. # [14:19] * Quits: maikmerten (merten@moz-E254386D.cs.uni-dortmund.de) (Client exited)
  1433. # [14:21] * Joins: edmorley (edmorley@moz-340F3951.range86-144.btcentralplus.com)
  1434. # [14:22] * Quits: db48x2 (db48x@moz-15B14A73.hsd1.ca.comcast.net) (Ping timeout)
  1435. # [14:23] * davehunt is now known as davehunt|busy
  1436. # [14:24] * Quits: roc (chatzilla@C0ACF8B.5E1E9EEA.613E47D1.IP) (Ping timeout)
  1437. # [14:24] * Quits: mconley (mconley@moz-9C0F4EBF.cable.teksavvy.com) (Input/output error)
  1438. # [14:27] * Joins: boiled_sugar (boiled_sug@moz-FF55F505.dy.bbexcite.jp)
  1439. # [14:28] * Joins: Suresh (chatzilla@F4F621AA.92E1F220.EB06F97B.IP)
  1440. # [14:31] * Joins: lurking (chatzilla@moz-4E6F738.dhcp.embarqhsd.net)
  1441. # [14:31] * Joins: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com)
  1442. # [14:31] * rail_away is now known as rail
  1443. # [14:33] * Quits: jdm (jdm@CC0122E6.8F96AEA7.2D179A7D.IP) (Client exited)
  1444. # [14:34] * Joins: daoberes (chatzilla@D2B84AF4.C749D475.1139E686.IP)
  1445. # [14:34] * Quits: regen (Miller@moz-2FBAA89A.adsl.dynamic.seed.net.tw) (Quit: regen)
  1446. # [14:35] * Quits: smontagu (chatzilla@moz-5FE03E74.red.bezeqint.net) (Ping timeout)
  1447. # [14:35] * Joins: mike5w3c_ (MikeS@moz-D9E802E6.pool.e-mobile.ne.jp)
  1448. # [14:35] * Quits: mike5w3c (MikeS@moz-8CDB1382.pool.e-mobile.ne.jp) (Ping timeout)
  1449. # [14:36] * mike5w3c_ is now known as mike5w3c
  1450. # [14:36] <gabor> mrbkap: Hey, do you have a few minutes?
  1451. # [14:37] <sheppy> taras: I'm starting work on telemetry docs now; squeezing it in between Firefox 9 and Firefox 10 work. :)
  1452. # [14:42] * Quits: daoberes (chatzilla@D2B84AF4.C749D475.1139E686.IP) (Ping timeout)
  1453. # [14:43] * Joins: daoberes (chatzilla@D2B84AF4.C749D475.1139E686.IP)
  1454. # [14:46] * Quits: mike5w3c (MikeS@moz-D9E802E6.pool.e-mobile.ne.jp) (Ping timeout)
  1455. # [14:46] * jfkthame_afk is now known as jfkthame
  1456. # [14:47] <hsivonen> is someone already in the process of landing the ban for new XHR responseTypes in the sync mode?
  1457. # [14:48] <edmorley> !seen sicking
  1458. # [14:48] <firebot> sicking was last seen 13 hours, 15 minutes and 28 seconds ago, saying 'since a sync worker-xhr runs a normal async xhr on the main thread' in #content.
  1459. # [14:48] * Joins: mcmanus (mcmanus@moz-FE9B5BFD.twcny.res.rr.com)
  1460. # [14:48] * Joins: joey (chatzilla@moz-EFCB4CBF.princetowncable.com)
  1461. # [14:48] <smaug> hsivonen: I doubt
  1462. # [14:49] <hsivonen> smaug: ok. I'll land it.
  1463. # [14:49] <hsivonen> edmorley: I take it that it's safe to land on m-i, since it's obvious that the orange points to sicking's landing
  1464. # [14:50] <edmorley> hsivonen: if you give me 2-3 mins I'll backout, will mean less to star
  1465. # [14:50] <hsivonen> edmorley: ok
  1466. # [14:52] * Joins: ahal (ahal@moz-6CFF366A.cpe.net.cable.rogers.com)
  1467. # [14:52] * glob|away is now known as glob
  1468. # [14:53] <edmorley> hsivonen: done
  1469. # [14:55] * glazou is now known as glazou_postOffice
  1470. # [14:56] <khuey> edmorley: those IDB tests turned test_writerstarvation permaorange?
  1471. # [14:58] <hsivonen> edmorley: thanks
  1472. # [14:58] <edmorley> khuey: according to tbpl yes, was timeout/crash though so maybe it left the suite in a bad state?
  1473. # [14:58] <khuey> interesting
  1474. # [15:02] * Quits: Suresh (chatzilla@F4F621AA.92E1F220.EB06F97B.IP) (Ping timeout)
  1475. # [15:04] <gandalf> hsivonen: I'd like to expose the JSON structure as an attribute on document object so that users can modify it like a normal object (sth. like document.l10nData['foo'] = 3) - do I need to create some sort of nsIDOML10nData interface that has getters/setters or is there an easier way to expose a JS(JSON) object in DOM?
  1476. # [15:05] * glazou_postOffice is now known as glazou
  1477. # [15:05] * Joins: jprmc (jprmc@64400D8.5BCEC6DB.DA78B690.IP)
  1478. # [15:06] * Quits: jprmc (jprmc@64400D8.5BCEC6DB.DA78B690.IP) (Input/output error)
  1479. # [15:06] <hsivonen> gandalf: take a look at nsXMLHttpRequest::GetResponse in the JSON case
  1480. # [15:07] * Joins: AaronMT (AaronMT@moz-DEDA283.cpe.net.cable.rogers.com)
  1481. # [15:07] * Joins: redwood (chatzilla@moz-5B167C94.dial1.atlanta1.level3.net)
  1482. # [15:07] * Quits: daoberes (chatzilla@D2B84AF4.C749D475.1139E686.IP) (Quit: ChatZilla 0.9.87 [Firefox 3.6.17/20110428200938])
  1483. # [15:09] * Quits: kennyluck (kennyluck@moz-5D9A1DCF.dynamic.hinet.net) (Quit: kennyluck)
  1484. # [15:10] * Joins: davidb (davidb@F2D29657.F60B0462.67AC9B1.IP)
  1485. # [15:12] * Quits: nattokirai (nattokirai@moz-C97EE7C8.dynamic.ppp.asahi-net.or.jp) (Quit: nattokirai)
  1486. # [15:13] * Quits: bwinton_away (bwinton@D7D3C4B5.88764A66.72A31D6.IP) (Connection reset by peer)
  1487. # [15:14] * Quits: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP) (Ping timeout)
  1488. # [15:14] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Ping timeout)
  1489. # [15:15] * Joins: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP)
  1490. # [15:17] * Joins: mconley (mconley@F2D29657.F60B0462.67AC9B1.IP)
  1491. # [15:17] <hsivonen> sigh. someone on twitter complains that speculative loading (which makes all Web pages load faster--including legacy pages) interferes with his JS-based performance hacks
  1492. # [15:17] <Yoric> ...
  1493. # [15:18] <sheppy> ugh
  1494. # [15:18] * Quits: daim (David_Mart@779E3E00.1773D26C.C0FF2207.IP) (Ping timeout)
  1495. # [15:19] * Joins: daim (David_Mart@779E3E00.1773D26C.C0FF2207.IP)
  1496. # [15:19] <sheppy> taras: I assume that telemetry is mostly meant for Mozilla devs and not really for add-ons, or is it useful for both?
  1497. # [15:20] * Quits: redwood (chatzilla@moz-5B167C94.dial1.atlanta1.level3.net) (Ping timeout)
  1498. # [15:20] * Joins: mjschranz (mjschranz@moz-6FE6B833.cpe.net.cable.rogers.com)
  1499. # [15:20] * Joins: redwood (chatzilla@moz-5B167C94.dial1.atlanta1.level3.net)
  1500. # [15:21] * Quits: mjschranz (mjschranz@moz-6FE6B833.cpe.net.cable.rogers.com) (Client exited)
  1501. # [15:22] * Quits: redwood (chatzilla@moz-5B167C94.dial1.atlanta1.level3.net) (Quit: ChatZilla 0.9.87-rdmsoft [XULRunner 1.9.2/20100222071121])
  1502. # [15:22] * Joins: Suresh (chatzilla@3B39384A.BA83EDEB.EB06F97B.IP)
  1503. # [15:22] * jfkthame is now known as jfkthame_afk
  1504. # [15:23] <smaug> hsivonen: heh
  1505. # [15:23] <smaug> hsivonen: what kinds of perf tests is he doing
  1506. # [15:23] * Joins: ajuma (ajuma@F2D29657.F60B0462.67AC9B1.IP)
  1507. # [15:24] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
  1508. # [15:26] <hsivonen> smaug: swapping img src based on view port size
  1509. # [15:26] * Quits: gandalf (zbraniecki@moz-C1F346A2.neoplus.adsl.tpnet.pl) (Ping timeout)
  1510. # [15:27] <hsivonen> smaug: for parser-inserted imgs so that they show something when JS is disabled
  1511. # [15:27] <hsivonen> smaug: so not a perf test
  1512. # [15:27] <hsivonen> smaug: but a hack to serve different amounts of pixels to different clients
  1513. # [15:28] <hsivonen> smaug: so that clients that don't need a lot of pixels download fewer pixels
  1514. # [15:28] * Joins: gandalf (zbraniecki@moz-66B21229.neoplus.adsl.tpnet.pl)
  1515. # [15:29] * Joins: jdm (jdm@F2D29657.F60B0462.67AC9B1.IP)
  1516. # [15:29] * coop|afk is now known as coop
  1517. # [15:31] * Joins: maikmerten (merten@moz-E254386D.cs.uni-dortmund.de)
  1518. # [15:32] * Joins: madhava (madhava@F2D29657.F60B0462.67AC9B1.IP)
  1519. # [15:32] * Quits: Cork[home] (none@moz-383B3DAE.bredband.skanova.com) (Ping timeout)
  1520. # [15:35] * Quits: evilpie (chatzilla@moz-C3BBCA7D.pools.arcor-ip.net) (Input/output error)
  1521. # [15:35] * davehunt|busy is now known as davehunt|away
  1522. # [15:35] * Joins: evilpie (chatzilla@moz-C3BBCA7D.pools.arcor-ip.net)
  1523. # [15:36] * Quits: robhawkes (robhawkes@moz-33A339B7.dsl.cnl.uk.net) (Quit: Linkinus - http://linkinus.com)
  1524. # [15:37] * Quits: gmoro_ (gmoro@AF2F207A.7A9A6687.FA4F8D83.IP) (Ping timeout)
  1525. # [15:37] * Joins: gmoro_ (gmoro@AF2F207A.7A9A6687.FA4F8D83.IP)
  1526. # [15:37] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Ping timeout)
  1527. # [15:39] * Joins: cjones (cjones@5AAE35B2.5EFFC0B8.24454B25.IP)
  1528. # [15:39] * Joins: robhawkes (robhawkes@moz-33A339B7.dsl.cnl.uk.net)
  1529. # [15:41] * Joins: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  1530. # [15:41] <smaug> where can I download nightly chromium?
  1531. # [15:42] * jmaher|afk is now known as jmaher
  1532. # [15:42] * Joins: caillon (caillon@moz-186D75E2.hsd1.ca.comcast.net)
  1533. # [15:42] * Quits: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  1534. # [15:42] <jcranmer|away> nightly.mozilla.org? :-)
  1535. # [15:43] <smaug> bah
  1536. # [15:43] <sheppy> jcranmer|away++
  1537. # [15:44] <jcranmer|away> I'm sure there's an addon that makes FF look like Chromium
  1538. # [15:44] * Quits: nhirata|zZz (nhirata.bu@moz-2A9C9106.hsd1.ca.comcast.net) (Connection reset by peer)
  1539. # [15:44] * Joins: nhirata (nhirata.bu@moz-2A9C9106.hsd1.ca.comcast.net)
  1540. # [15:44] <smaug> actually, any nightly webkit
  1541. # [15:44] <smaug> running on linux
  1542. # [15:45] * Joins: lmandel (lmandel@F2D29657.F60B0462.67AC9B1.IP)
  1543. # [15:48] <Pike> smaug: http://dev.chromium.org/getting-involved/dev-channel doesn't list canary for linux :-/
  1544. # [15:48] * Joins: bwinton_away (bwinton@D7D3C4B5.88764A66.72A31D6.IP)
  1545. # [15:48] * Joins: mdas (mdas@5AAE35B2.5EFFC0B8.24454B25.IP)
  1546. # [15:49] <smaug> yeah
  1547. # [15:49] * glob is now known as glob|away
  1548. # [15:49] * Quits: ewong (chatzilla@moz-9FB094BA.static.netvigator.com) (Ping timeout)
  1549. # [15:50] * Joins: jprmc (jprmc@moz-7F2FF3EB.cpe.net.cable.rogers.com)
  1550. # [15:52] * Quits: magsout (magsout@moz-E559D13.fbx.proxad.net) (Connection reset by peer)
  1551. # [15:53] * Joins: bbondy (bbondy@moz-28CF6D1C.home.cgocable.net)
  1552. # [15:53] * Joins: magsout (magsout@moz-E559D13.fbx.proxad.net)
  1553. # [15:53] * jfkthame_afk is now known as jfkthame
  1554. # [15:54] * Quits: KLB (Kenneth_Ba@34D9F890.96E31AB3.58C7303A.IP) (Quit: ChatZilla 0.9.87 [Firefox 8.0/20111104165243])
  1555. # [15:55] * Quits: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com) (Input/output error)
  1556. # [15:55] <jfkthame> khuey: ping
  1557. # [15:56] <khuey> jfkthame: pong
  1558. # [15:56] * ddahl|away is now known as ddahl
  1559. # [15:56] <jfkthame> khuey: would you maybe be willing to review the build-system patch in bug 631479 sometime soon, if i switch the r? from ted to you (as i'm not sure he's around at the moment)
  1560. # [15:56] * Joins: dbradley (dbradley@moz-8FACAA93.fuse.net)
  1561. # [15:56] * Joins: rwaldron (rwaldron@moz-BDCCF091.hfc.comcastbusiness.net)
  1562. # [15:57] <khuey> gabor: patch looks pretty good, I left some comments
  1563. # [15:57] * gabor 's looking into it
  1564. # [15:57] <khuey> jfkthame: sure, I can do that now
  1565. # [15:58] * Joins: Bas (chatzilla@moz-B4DB3C59.ftth.concepts.nl)
  1566. # [15:58] <jfkthame> awesome - thanks
  1567. # [15:58] * bwinton_away is now known as bwinton
  1568. # [15:59] * Joins: beaufour (beaufour@18D5CC88.C7EE4FB2.ECED8BE3.IP)
  1569. # [16:00] * Joins: Fallen|mac (kewisch@moz-7BBE23F2.adsl.alicedsl.de)
  1570. # [16:01] * Joins: jhorak (jhorak@moz-107AD163.redhat.com)
  1571. # [16:01] * jhopkins|away is now known as jhopkins
  1572. # [16:01] * Joins: KLB (Kenneth_Ba@34D9F890.96E31AB3.58C7303A.IP)
  1573. # [16:01] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
  1574. # [16:01] * Joins: graydot (jeba@B6001B9.4E8FB30C.700C6EB0.IP)
  1575. # [16:02] * bhearsum|afk is now known as bhearsum
  1576. # [16:03] * Quits: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de) (Input/output error)
  1577. # [16:05] * Joins: zuzelvp (zuzelvp@2112147D.C3507A2D.9A8C35B4.IP)
  1578. # [16:07] <khuey> jfkthame: is this size_t size stuff used by the graphite makefiles we're including?
  1579. # [16:08] <jfkthame> khuey: there's some place in the code that requires SIZEOF_SIZE_T to be defined, i forget where offhand
  1580. # [16:08] * Joins: surkov (surkov@E4B902A.26ED71FF.34044A7F.IP)
  1581. # [16:08] <jfkthame> we don't actually include makefiles from upstream, but their build system sets it up and there's an #ifdef in the code that uses it, iirc
  1582. # [16:08] * Quits: smaug (chatzilla@moz-3D102CE8.gprs.sl-laajakaista.fi) (Ping timeout)
  1583. # [16:08] <khuey> ah
  1584. # [16:08] <khuey> ok
  1585. # [16:08] * Joins: AutomatedTester (AutomatedT@moz-E2DE3599.as13285.net)
  1586. # [16:10] * Joins: smaug (chatzilla@moz-3D102CE8.gprs.sl-laajakaista.fi)
  1587. # [16:10] * Quits: Mardak (Mardak@moz-4FA48382.hsd1.ca.comcast.net) (Quit: Mardak)
  1588. # [16:10] <jfkthame> hmm, just grepping the code and i'm not finding it... i wonder if that disappeared in the latest update of the code - i'll double-check - if so, we won't need that junk in our build either
  1589. # [16:12] <jfkthame> khuey: turns out it's obsolete :) ... consider that chunk to be removed
  1590. # [16:13] * joduinn-afk is now known as joduinn-commute
  1591. # [16:14] <khuey> oh
  1592. # [16:14] <khuey> ok
  1593. # [16:14] <bhearsum> bjacob: are you coming in to the office today?
  1594. # [16:14] * khuey deletes all his comments :-P
  1595. # [16:14] <bjacob> bhearsum: i am!
  1596. # [16:14] <bhearsum> great!
  1597. # [16:14] * Quits: tonymec (tonymec@F6247832.B37D948C.277517C1.IP) (Input/output error)
  1598. # [16:14] <bhearsum> i ned to talk to you at some point
  1599. # [16:14] <bhearsum> ned
  1600. # [16:14] <bhearsum> need
  1601. # [16:14] <bjacob> bhearsum: cool, i'll be in in ~45 min
  1602. # [16:15] * Quits: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Quit: Konversation terminated!)
  1603. # [16:15] * bear is now known as bear-afk
  1604. # [16:15] <khuey> jfkthame: one last question, what does graphite actually do?
  1605. # [16:16] <jfkthame> khuey: text shaping - layout behavior for complex scripts - a bit like opentype but addressing a different set of use cases, basically
  1606. # [16:17] <khuey> jfkthame: ok, why do we want to be able to disable it in configure?
  1607. # [16:18] * Joins: tonymec (tonymec@F6247832.B37D948C.277517C1.IP)
  1608. # [16:19] <jfkthame> that was mostly a precautionary move, in case we were to realize there's a critical flaw and we want to completely drop it out of the shipping product until fixed - though the runtime pref is probably all the kill-switch we need, really
  1609. # [16:19] <jfkthame> it's also possible (at least in my mind) that mobile, for example, might decide they don't want the added code footprint and decide to build without it, at least until there's more content out there
  1610. # [16:20] <khuey> ok
  1611. # [16:20] * Quits: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  1612. # [16:20] * Joins: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP)
  1613. # [16:20] <bhearsum> bjsounds good
  1614. # [16:21] <bhearsum> oh, he's gone
  1615. # [16:21] <khuey> "You submitted changes to attachment.cgi with an invalid token, which may indicate that someone tried to abuse you, for instance by making you click on a URL which redirected you here without your consent. "
  1616. # [16:22] <khuey> jfkthame: r+ with a few comments
  1617. # [16:22] * Quits: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com) (Input/output error)
  1618. # [16:23] <jfkthame> khuey: great, much appreciated :)
  1619. # [16:24] * Joins: hipokrit (hipokrit@moz-502C3BF.rackspace.net)
  1620. # [16:25] <khuey> np
  1621. # [16:25] <khuey> jfkthame: btw, with that harfbuzz crash from a couple weeks ago, did we understand the failure mode enough to write a testcase for it?
  1622. # [16:26] * Joins: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  1623. # [16:28] * Joins: jorendorff (jorendorff@moz-91590D94.hsd1.tn.comcast.net)
  1624. # [16:29] * bz_sleep is now known as bz
  1625. # [16:29] <jfkthame> khuey: not very readily, i think - maybe as part of an effort to create test fonts that exercise as many of the potential codepaths as possible - which is something i'd like us to pursue eventually
  1626. # [16:29] * Joins: jorendorff_ (jorendorff@moz-91590D94.hsd1.tn.comcast.net)
  1627. # [16:30] <khuey> yeah, that would be nice
  1628. # [16:30] * Quits: jorendorff (jorendorff@moz-91590D94.hsd1.tn.comcast.net) (Ping timeout)
  1629. # [16:30] * jorendorff_ is now known as jorendorff
  1630. # [16:31] * Joins: Cork[home] (none@moz-9CA8A1B8.bredband.skanova.com)
  1631. # [16:31] * khuey is now known as khuey|away
  1632. # [16:32] * Quits: AutomatedTester (AutomatedT@moz-E2DE3599.as13285.net) (Quit: AutomatedTester)
  1633. # [16:32] * philor|away is now known as philor
  1634. # [16:33] * Quits: Suresh (chatzilla@3B39384A.BA83EDEB.EB06F97B.IP) (Ping timeout)
  1635. # [16:33] * Quits: mdas (mdas@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: mdas)
  1636. # [16:34] * Quits: tonymec (tonymec@F6247832.B37D948C.277517C1.IP) (Ping timeout)
  1637. # [16:35] * Joins: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1638. # [16:35] <ejpbruel> did anybody happen to file a patch to nightly that fixed bug 702847?
  1639. # [16:36] * Joins: Suresh (chatzilla@3B39384A.BA83EDEB.EB06F97B.IP)
  1640. # [16:37] * Joins: dveditz (dveditz@moz-34991AF4.dhcp.cruzio.com)
  1641. # [16:37] * ChanServ sets mode: +o dveditz
  1642. # [16:38] * Joins: tonymec (tonymec@F6247832.B37D948C.277517C1.IP)
  1643. # [16:38] * Quits: NeilAway (neil@moz-5FDF475F.in-addr.btopenworld.com) (Ping timeout)
  1644. # [16:38] <jdm> davidb: http://www.joshmatthews.net/bugsahoy/
  1645. # [16:38] <davidb> ty
  1646. # [16:38] * Joins: ericb2 (X@moz-9C4C3DED.fbx.proxad.net)
  1647. # [16:38] * Joins: diogogmt (kvirc@moz-57B23647.senecac.on.ca)
  1648. # [16:39] * Joins: cers (textual@moz-E3288E2B.bynqu1.dynamic.dsl.tele.dk)
  1649. # [16:39] * Joins: hub (hub@moz-E2FCA694.figuiere.net)
  1650. # [16:39] * Joins: NeilAway (neil@moz-AF5C7C65.in-addr.btopenworld.com)
  1651. # [16:39] * Quits: jaws (u2871@moz-160C58C6.com) (Max SendQ exceeded)
  1652. # [16:40] * Joins: Waldo (waldo@moz-104CC309.mv.mozilla.com)
  1653. # [16:40] * Joins: jaws (u2871@moz-160C58C6.com)
  1654. # [16:40] * catlee-away is now known as catlee
  1655. # [16:41] * Quits: beaufour (beaufour@18D5CC88.C7EE4FB2.ECED8BE3.IP) (Quit: beaufour)
  1656. # [16:41] * Quits: TheOne (TheOne@moz-D58488C3.dfki.uni-kl.de) (Ping timeout)
  1657. # [16:45] * Joins: Wevah (Wevah@moz-97AD33CE.stcd.qwest.net)
  1658. # [16:46] * Quits: tonymec (tonymec@F6247832.B37D948C.277517C1.IP) (Ping timeout)
  1659. # [16:48] * Joins: mike5w3c (MikeS@moz-D9E802E6.pool.e-mobile.ne.jp)
  1660. # [16:48] * Quits: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP) (Ping timeout)
  1661. # [16:49] * Joins: TheLink (TheLink@moz-674305C4.pools.arcor-ip.net)
  1662. # [16:51] * Joins: tonymec (tonymec@F6247832.B37D948C.277517C1.IP)
  1663. # [16:51] <philor> isn't the lhs of http://mxr.mozilla.org/mozilla-central/source/content/html/content/test/file_fullscreen-esc-exit-inner.html?force=1#37 wrong?
  1664. # [16:52] * Quits: mike5w3c (MikeS@moz-D9E802E6.pool.e-mobile.ne.jp) (Ping timeout)
  1665. # [16:52] * Joins: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com)
  1666. # [16:52] * Joins: espindola (espindola@moz-9174375C.dsl.teksavvy.com)
  1667. # [16:53] <Waldo> kinda looks wrong!
  1668. # [16:53] * Joins: Joeh (joe@5A3923AA.BC22908.C7CEC4ED.IP)
  1669. # [16:54] * Joins: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP)
  1670. # [16:55] * nhirata is now known as nhirata|afk
  1671. # [16:56] * bear-afk is now known as bear
  1672. # [16:56] * Quits: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP) (Max SendQ exceeded)
  1673. # [16:56] <philor> not an excuse for WinXP to crash, but apparently I'm not going to find that part
  1674. # [16:58] <taras> sheppy: yes, it's for mozilla devs only atm
  1675. # [16:58] <glazou> Pike: ping
  1676. # [16:59] * Joins: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP)
  1677. # [17:00] * Quits: diogogmt (kvirc@moz-57B23647.senecac.on.ca) (Ping timeout)
  1678. # [17:01] * khuey|away is now known as khuey
  1679. # [17:01] * Joins: jimm (jmathies@moz-7F164CA1.pn.at.cox.net)
  1680. # [17:02] * Quits: nthomas|away (chatzilla@E39DA02F.C8F27E0B.44E4C2B.IP) (Ping timeout)
  1681. # [17:02] <Pike> glazou: pong
  1682. # [17:02] * Joins: nthomas|away (chatzilla@E39DA02F.C8F27E0B.44E4C2B.IP)
  1683. # [17:02] * Quits: Suresh (chatzilla@3B39384A.BA83EDEB.EB06F97B.IP) (Quit: Suresh)
  1684. # [17:03] * Joins: kumar (kmcmillan@moz-E31CD2CB.mozilla.org)
  1685. # [17:03] * Joins: fzzzy (donovan@moz-2B41AF9B.lightspeed.mtvwca.sbcglobal.net)
  1686. # [17:03] <glazou> Pike: just wrote this in two hours, JS only, my own parser, no regexps, I think you will like it when it's finished http://glazman.org/tmp/l10n-check.png
  1687. # [17:03] <glazou> that's an add-on to FF, of course
  1688. # [17:04] <glazou> more convenient than a commandline
  1689. # [17:04] * Quits: RemusPop (remuspop@601F3B17.33662590.A5830293.IP) (Client exited)
  1690. # [17:05] <Pike> if it works for you, great. not sure how it'd help me
  1691. # [17:05] * Quits: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP) (Ping timeout)
  1692. # [17:06] <glazou> it's not done yet
  1693. # [17:07] * rail is now known as rail_away
  1694. # [17:08] <Pike> that's not the question. I need code that runs as part of buildbot automation, and generates database entries to aggregate. not sure why I'd use a firefox addon for that
  1695. # [17:08] * Joins: Mardak (Mardak@moz-7B0110AD.mv.mozilla.com)
  1696. # [17:08] <glazou> sure
  1697. # [17:08] <glazou> not you, but the individual localizers could use it, right?
  1698. # [17:09] <Pike> sure, could. it'd probably have different results than the version I maintain, and I'm not going to maintain two, so we'll see
  1699. # [17:10] * Joins: dcamp (dave@moz-8EBEC133.hsd1.wa.comcast.net)
  1700. # [17:10] * rail_away is now known as rail
  1701. # [17:11] * Joins: mayhemer (Miranda@B3D46202.F87A741B.F23860FD.IP)
  1702. # [17:12] <nemo> So, I was reading http://www.scirra.com/blog/58/html5-2d-gaming-performance-analysis
  1703. # [17:12] <nemo> Which, unsurprisingly, had Chrome 15 beating the pants off everyone.
  1704. # [17:12] <nemo> For example, when I ran http://www.scirra.com/labs/perftest-webgl in Chrome 15 it was able to render 10,200 sprites at 30fps
  1705. # [17:13] <nemo> vs 1,800 for Firefox 8
  1706. # [17:13] <nemo> er
  1707. # [17:13] <nemo> correction.
  1708. # [17:13] <nemo> That wasn't what surprised me. What surprised me was 1,800 sprites in Firefox *11a* and 2,100 in Firefox 8
  1709. # [17:14] <nemo> guess that's yet another result of the tracing disabling?
  1710. # [17:14] <nemo> s/disabling/removal/
  1711. # [17:14] * Joins: ehsan (ehsan@F2D29657.F60B0462.67AC9B1.IP)
  1712. # [17:15] <smaug> nemo: please file some bugs
  1713. # [17:15] <nemo> woah. that's odd
  1714. # [17:15] <nemo> disabled tracing in FF8, and got 2800??
  1715. # [17:15] <smaug> that is odd
  1716. # [17:15] <nemo> maybe I'm not leaving their thingie running long enough :D
  1717. # [17:15] * Quits: gandalf (zbraniecki@moz-66B21229.neoplus.adsl.tpnet.pl) (Ping timeout)
  1718. # [17:15] * nemo lets it idle some more
  1719. # [17:16] * Quits: rhelmer (rhelmer@moz-B77DEAEB.mozilla.org) (Ping timeout)
  1720. # [17:16] <nemo> yeah, actually, 2800-3000
  1721. # [17:16] * Joins: gandalf (zbraniecki@moz-66B21229.neoplus.adsl.tpnet.pl)
  1722. # [17:17] * Joins: rhelmer (rhelmer@moz-B77DEAEB.mozilla.org)
  1723. # [17:17] <nemo> maybe nightly is just slower :)
  1724. # [17:17] * Joins: akeybl (akeybl@moz-52D39FF6.hsd1.ca.comcast.net)
  1725. # [17:18] * rhelmer is now known as IRCMonkey57977
  1726. # [17:18] * Quits: Fallen|mac (kewisch@moz-7BBE23F2.adsl.alicedsl.de) (Quit: Leaving.)
  1727. # [17:19] * Quits: protz (protz@moz-E29D2A15.inria.fr) (Quit: Leaving)
  1728. # [17:19] * Joins: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP)
  1729. # [17:20] * IRCMonkey57977 is now known as rhelmer
  1730. # [17:20] <nemo> smaug: ok. slightly faster w/ tracing disabled after leaving it to run for a minute each time (and restarting even though the tracing toggle does not need it I think)
  1731. # [17:20] <nemo> but not by much
  1732. # [17:21] * rail is now known as rail_away
  1733. # [17:22] * Joins: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP)
  1734. # [17:23] <nemo> smaug: yeah. leaving it alone for a minute each time. FF11a: ~1700 FF8 w/o tracing: ~2100 FF8 w/ tracing: ~2100 and maybe sliiiiightly faster w/o tracing
  1735. # [17:23] <nemo> and of course chrome 15: 10k+
  1736. # [17:24] <nemo> right-o, bug it is.
  1737. # [17:24] * Quits: brendan (brendaneic@35E90EE3.B8B12C49.396B22AD.IP) (Quit: brendan)
  1738. # [17:26] <jesup> firebot: uuid
  1739. # [17:26] <firebot> 5318bb73-948a-4de2-b608-fe6b01f0b828 (/msg firebot cid for CID form)
  1740. # [17:27] * rail_away is now known as rail
  1741. # [17:28] * Joins: tfair (tfairey@moz-57178BD3.hsd1.ca.comcast.net)
  1742. # [17:28] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  1743. # [17:29] * Joins: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP)
  1744. # [17:30] * Joins: daoberes (chatzilla@D2B84AF4.C749D475.1139E686.IP)
  1745. # [17:32] * Quits: gandalf (zbraniecki@moz-66B21229.neoplus.adsl.tpnet.pl) (Quit: Computer has gone to sleep.)
  1746. # [17:33] <gabor> khuey: do you know by any chance what should I include to have nsIThreadJSContextStack defined?
  1747. # [17:34] <khuey> gabor: nsIJSContextStack.h
  1748. # [17:35] * Quits: magsout (magsout@moz-E559D13.fbx.proxad.net) (No route to host)
  1749. # [17:35] * Joins: biesi (cbiesinger@moz-5EE692A7.ca.hfc.comcastbusiness.net)
  1750. # [17:35] * Joins: magsout (magsout@moz-E559D13.fbx.proxad.net)
  1751. # [17:36] * jwir3|away is now known as jwir3
  1752. # [17:36] * Quits: jacek (jacek@moz-5D707D3B.psi.wroc.pl) (Client exited)
  1753. # [17:36] * Quits: nhirata|afk (nhirata.bu@moz-2A9C9106.hsd1.ca.comcast.net) (Quit: nhirata|afk)
  1754. # [17:37] * Joins: kdcw (kdc@moz-F7413045.pk.shawcable.net)
  1755. # [17:37] * Quits: jhorak (jhorak@moz-107AD163.redhat.com) (Quit: Leaving)
  1756. # [17:37] * joduinn-commute is now known as joduinn-mtg
  1757. # [17:39] * coop is now known as coop|mtg
  1758. # [17:40] * Joins: jhorak (jhorak@moz-107AD163.redhat.com)
  1759. # [17:40] <gabor> khuey++
  1760. # [17:42] * Quits: wesj (wesj@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  1761. # [17:42] * Quits: coop|mtg (Chris@moz-AD0DAF62.dsl.bell.ca) (Ping timeout)
  1762. # [17:42] * jhford-work-away is now known as jhford-work
  1763. # [17:42] <ejpbruel> another dutch CA got hacked :D
  1764. # [17:42] <nemo> smaug: https://bugzilla.mozilla.org/show_bug.cgi?id=708641 - righto, there ya go :-)
  1765. # [17:42] <ejpbruel> boy, we sure suck
  1766. # [17:42] * Joins: mjschranz (mjschranz@moz-57B23647.senecac.on.ca)
  1767. # [17:42] <nemo> smaug: regression has a ? 'cause I was wondering if maybe this was just some lil' ol' ephemeral thing w/ nightly rather than something major
  1768. # [17:43] <nemo> ejpbruel: hacked or scammed?
  1769. # [17:43] <ejpbruel> nemo: hacked. apparently they were using phpmyadmin
  1770. # [17:43] <nemo> oh nice
  1771. # [17:43] <nemo> "Breached Gemnet internal documents appeared to have resided on a web database managed by PHPMyAdmin that did not have an access password set."
  1772. # [17:44] <nemo> that's not really a hack
  1773. # [17:44] <nemo> that's like saying someone hot wired my car, after I left it at the mall w/ the key in the ignition and the engine running
  1774. # [17:44] * Joins: coop (Chris@766EE2B2.8174F260.F7D14508.IP)
  1775. # [17:44] <ejpbruel> nemo: sure
  1776. # [17:44] <ejpbruel> but lets wait
  1777. # [17:44] <ejpbruel> this is the official statement of the CA
  1778. # [17:45] <ejpbruel> wouldnt be the first time they lied to cover their ass :)
  1779. # [17:45] <ejpbruel> at least not here
  1780. # [17:45] * jhford-work is now known as jhford-buildduty
  1781. # [17:46] <jwir3> nemo++
  1782. # [17:47] <nemo> ejpbruel: wouldn't that be lying to make themselves look worse though? :)
  1783. # [17:47] <ejpbruel> nemo: heh
  1784. # [17:47] * Joins: wesj (wesj@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1785. # [17:47] <khuey> nah
  1786. # [17:48] <khuey> once you've fucked up that badly you really can't look much worse
  1787. # [17:48] <ejpbruel> khuey: obviously, you are not familiar with the state of IT in the Netherlands
  1788. # [17:48] * Quits: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com) (Input/output error)
  1789. # [17:48] <khuey> it's true
  1790. # [17:49] <ejpbruel> khuey: on a more serious note, could you help me finding the right guy to ask about bug 697215?
  1791. # [17:49] <ejpbruel> bug 67125 firebot, come on
  1792. # [17:49] <ejpbruel> bug 697125
  1793. # [17:49] * Quits: merinui (merinui@moz-61C7235E.osk2.eonet.ne.jp) (Quit: Leaving...)
  1794. # [17:49] * coop is now known as coop|mtg
  1795. # [17:50] <khuey> firebot: bug 697125
  1796. # [17:50] <firebot> Bug https://bugzilla.mozilla.org/show_bug.cgi?id=697125 nor, --, ---, nobody, NEW, Attachments: single attachment opens on single click, multiple attachments need double click
  1797. # [17:50] * Joins: mike5w3c (MikeS@moz-D9E802E6.pool.e-mobile.ne.jp)
  1798. # [17:50] <ejpbruel> khuey: damnit
  1799. # [17:50] <ejpbruel> khuey: thats not even the right bug number
  1800. # [17:50] <ejpbruel> firebot: 697215
  1801. # [17:50] <firebot> ejpbruel: Sorry, I've no idea what '697215' might be.
  1802. # [17:50] <ejpbruel> shit
  1803. # [17:50] <ejpbruel> firebot: bug 697215
  1804. # [17:51] <firebot> Bug https://bugzilla.mozilla.org/show_bug.cgi?id=697215 nor, P2, ---, ejpbruel, NEW, Cannot scroll panel on OS X
  1805. # [17:51] <ejpbruel> thats the one!
  1806. # [17:51] <ejpbruel> that was a nice clusterfail btw
  1807. # [17:51] * Quits: bbondy (bbondy@moz-28CF6D1C.home.cgocable.net) (Client exited)
  1808. # [17:51] <khuey> ok
  1809. # [17:51] * Joins: beaufour (beaufour@18D5CC88.C7EE4FB2.ECED8BE3.IP)
  1810. # [17:51] <khuey> and what do you want me to do?
  1811. # [17:51] * Quits: jhorak (jhorak@moz-107AD163.redhat.com) (Quit: Leaving)
  1812. # [17:51] <ejpbruel> khuey: ok, so i have absolutely no clue where to start looking for the problem. i dont expect you to know either, but maybe you can at least point me towards the right guy
  1813. # [17:52] <khuey> ejpbruel: in https://github.com/mozilla/addon-sdk/commit/97b79af12284454986b4b87590860ae6911c8564 what is 'frame'?
  1814. # [17:52] <khuey> a xul element?
  1815. # [17:53] <ejpbruel> khuey: good question
  1816. # [17:53] <khuey> ejpbruel: the answer to that determines who I point you at
  1817. # [17:54] <ejpbruel> canuckistani: can you answer that question?
  1818. # [17:54] * Quits: pnemsak (Miranda@moz-3D67D819.rainside.sk) (Quit: pnemsak)
  1819. # [17:54] <khuey> we're setting 'flex' on it so I assume it's a xul something ...
  1820. # [17:55] * Joins: pnemsak (Miranda@moz-3D67D819.rainside.sk)
  1821. # [17:55] <ejpbruel> khuey: i guess so, i dont know all that much about the addon-sdk's internals, unfortunately
  1822. # [17:55] * Quits: mike5w3c (MikeS@moz-D9E802E6.pool.e-mobile.ne.jp) (Ping timeout)
  1823. # [17:56] * Quits: pnemsak (Miranda@moz-3D67D819.rainside.sk) (Quit: pnemsak)
  1824. # [17:56] * Quits: ddahl (ddahl@moz-6971CF66.hsd1.il.comcast.net) (Quit: Adios Amigos)
  1825. # [17:56] * Joins: bbondy (bbondy@moz-28CF6D1C.home.cgocable.net)
  1826. # [17:56] * Quits: biesi (cbiesinger@moz-5EE692A7.ca.hfc.comcastbusiness.net) (Ping timeout)
  1827. # [17:56] <khuey> ejpbruel: if it's a xul iframe, which it appears it is
  1828. # [17:56] * Joins: mkaply (chatzilla@moz-92EDDD02.lightspeed.austtx.sbcglobal.net)
  1829. # [17:56] * ChanServ sets mode: +o mkaply
  1830. # [17:56] <khuey> ejpbruel: I'd suggest you start with Enn
  1831. # [17:57] <ejpbruel> khuey: thanks!
  1832. # [17:57] <ejpbruel> Enn: ping
  1833. # [17:57] * Joins: sicking (chatzilla@moz-229429EC.dsl.pltn13.sbcglobal.net)
  1834. # [17:59] * Joins: mixedpuppy (mixedpuppy@8218E429.CF4F0E4E.3ECF35D.IP)
  1835. # [18:02] * Quits: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP) (Ping timeout)
  1836. # [18:02] * Quits: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: gal)
  1837. # [18:03] * Joins: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP)
  1838. # [18:04] * Quits: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP) (Ping timeout)
  1839. # [18:05] * lsblakk|afk is now known as lsblakk|tedx
  1840. # [18:05] * Joins: squib (squib-@moz-3F6F2A9C.ep.wisc.edu)
  1841. # [18:05] * Joins: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP)
  1842. # [18:05] * Quits: glazou (glazou@moz-204094DD.disruptive-innovations.fr) (Quit: glazou)
  1843. # [18:06] * Joins: nhirata (nhirata.bu@moz-BBE3ABD.mv.mozilla.com)
  1844. # [18:08] * Joins: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP)
  1845. # [18:08] <tbsaunde> surkov: I could review that if you want/win 23
  1846. # [18:09] * Quits: gal (gal@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: gal)
  1847. # [18:09] <surkov> tbsaunde: that huge patch?
  1848. # [18:09] * Joins: damons (gnubeard@moz-8B54AE90.hfc.comcastbusiness.net)
  1849. # [18:10] * coop|mtg is now known as coop
  1850. # [18:10] * Quits: caillon (caillon@moz-186D75E2.hsd1.ca.comcast.net) (Ping timeout)
  1851. # [18:10] <mayhemer> philor: re hi-res timer and windows PGO broken: I am not able reproduce the build error, I'm getting the following error during libxul build: shell32.lib(shguid.obj) : fatal error LNK1103: debugging information corrupt; recompile module
  1852. # [18:11] <mayhemer> philor: I've added /3GB to me boot.ini, btw
  1853. # [18:11] * Joins: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl)
  1854. # [18:12] <GPHemsley> you know there's a problem when going to about:memory causes two unresponsive script dialogs
  1855. # [18:14] <lurking> GPHemsley: I've not seen that
  1856. # [18:14] <jimm> mayhemer: sounds like mixed up sdk includes/lib paths.
  1857. # [18:15] <NeilAway> GPHemsley: heh
  1858. # [18:15] <jimm> from multiple sdks.
  1859. # [18:15] <GPHemsley> lurking: I'm pretty sure no one is a tab hoarder like I am. :)
  1860. # [18:15] <philor> mayhemer: did you try having the tryserver build it with PGO enabled? the other patch I hounded out of the tree over that same PGO error has relanded, so if tryserver doesn't mind building yours PGO'ed, I'd say you should just reland and hope it doesn't hit you again
  1861. # [18:15] <mayhemer> jimm: aha, I have multiple SDKs installed, I'll try to figure that out, thanks!
  1862. # [18:15] * Quits: not_gavin (gavin@D18F6DDB.6A393516.2321E71E.IP) (Connection reset by peer)
  1863. # [18:15] * Joins: not_gavin (gavin@D18F6DDB.6A393516.2321E71E.IP)
  1864. # [18:16] <mayhemer> philor: I don't know how to trigger PGO try :(
  1865. # [18:17] * Quits: tfair (tfairey@moz-57178BD3.hsd1.ca.comcast.net) (Client exited)
  1866. # [18:17] <lurking> GPHemsley: well, that could be - my avg is less 20 tabs most of the time
  1867. # [18:17] <GPHemsley> heh
  1868. # [18:17] <philor> mayhemer: add mk_add_options MOZ_PGO=1 to the end of browser/config/mozconfigs/win32/nightly
  1869. # [18:17] * Quits: damons (gnubeard@moz-8B54AE90.hfc.comcastbusiness.net) (Quit: damons)
  1870. # [18:19] <mayhemer> philor: ha! yes, I'll do that, thanks
  1871. # [18:19] <philor> beats having to build it yourself, for sure
  1872. # [18:19] * Quits: sicking (chatzilla@moz-229429EC.dsl.pltn13.sbcglobal.net) (Ping timeout)
  1873. # [18:21] * Joins: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com)
  1874. # [18:22] * Joins: smooney (smooney@moz-BBE3ABD.mv.mozilla.com)
  1875. # [18:22] * Joins: caillon (caillon@moz-186D75E2.hsd1.ca.comcast.net)
  1876. # [18:22] * Quits: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com) (Ping timeout)
  1877. # [18:23] * Quits: akeybl (akeybl@moz-52D39FF6.hsd1.ca.comcast.net) (Quit: Leaving...)
  1878. # [18:25] * Joins: armenzg (armenzg@moz-A6FE435.build.sjc1.mozilla.com)
  1879. # [18:26] * Quits: NeilAway (neil@moz-AF5C7C65.in-addr.btopenworld.com) (Ping timeout)
  1880. # [18:26] * sheppy is now known as sheppy-lunch
  1881. # [18:26] * Joins: Ms2ger (Ms2ger@8F3F920B.E925B5A0.37724B0D.IP)
  1882. # [18:27] * Joins: cpeterson (cpeterson@moz-BBE3ABD.mv.mozilla.com)
  1883. # [18:27] <ejpbruel> evilpie; how is your SIMD implementation coming along?
  1884. # [18:27] * Quits: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  1885. # [18:27] * armenzg is now known as armenzg_lunch
  1886. # [18:27] <evilpie> ejpbruel: well after the discussion i pulled back
  1887. # [18:27] <ejpbruel> evilpie: why's that?
  1888. # [18:27] <ejpbruel> evilpie: i missed that discussion apparently
  1889. # [18:27] * Joins: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com)
  1890. # [18:28] <evilpie> well the general tone was that this is probably not what most people want
  1891. # [18:29] * Joins: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  1892. # [18:29] <ejpbruel> evilpie: its interesting how most discussions on SIMD seem to end that way...
  1893. # [18:29] <evilpie> ejpbruel: did you retest JSIntString, i think there was some change to this failing test recently
  1894. # [18:30] <ejpbruel> evilpie: thanks for pointing that out. i will retest it.
  1895. # [18:30] * Joins: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com)
  1896. # [18:30] <ejpbruel> evilpie; im kind of disappointed that you pulled back. i liked your approach :(
  1897. # [18:30] <ejpbruel> id like to know what people *do* want
  1898. # [18:30] <evilpie> they seem to prefer something like RiverTrail
  1899. # [18:31] * coop is now known as coop|mtg
  1900. # [18:32] * catlee is now known as catlee-lunch
  1901. # [18:33] * rail is now known as rail-food
  1902. # [18:33] * Joins: mike5w3c (MikeS@moz-D9E802E6.pool.e-mobile.ne.jp)
  1903. # [18:33] * Quits: fabrice (fabrice@5AAE35B2.5EFFC0B8.24454B25.IP) (Ping timeout)
  1904. # [18:34] * Quits: Boriss (FlyingToas@moz-62AAA429.hsd1.ca.comcast.net) (Quit: Boriss)
  1905. # [18:35] <khuey> Ms2ger: so I hear you like WebIDL?
  1906. # [18:35] * Joins: kaie (kaie@moz-C719D870.dip.t-dialin.net)
  1907. # [18:35] <Ms2ger> khuey, this sounds an awful lot like a question I don't want to answer "yes" to
  1908. # [18:35] <khuey> lol
  1909. # [18:36] <Ms2ger> What are you getting at? :)
  1910. # [18:36] <khuey> I'm writing a WebIDL parser for us to use for the new DOM bindings
  1911. # [18:36] <ejpbruel> evilpie: hm, RiverTrail does look kind of nice
  1912. # [18:37] * Quits: kaie (kaie@moz-C719D870.dip.t-dialin.net) (Quit: Leaving)
  1913. # [18:37] <khuey> interested in reviewing when I'm done?
  1914. # [18:37] * Quits: magsout (magsout@moz-E559D13.fbx.proxad.net) (Ping timeout)
  1915. # [18:37] * khuey figures you're as qualified as anyone would be
  1916. # [18:38] <Ms2ger> Hrm
  1917. # [18:38] <Ms2ger> Let's say I'm happy to look at it :)
  1918. # [18:38] <khuey> heh, ok
  1919. # [18:39] * khuey will keep that in mind
  1920. # [18:39] * Quits: mike5w3c (MikeS@moz-D9E802E6.pool.e-mobile.ne.jp) (Ping timeout)
  1921. # [18:39] * Joins: clee (clee@moz-BBE3ABD.mv.mozilla.com)
  1922. # [18:39] * Quits: gcp (gpascutto@moz-D0E475EA.access.telenet.be) (Ping timeout)
  1923. # [18:40] <Ms2ger> bz, don't you need to set *_retval in the hasProp branch at https://bugzilla.mozilla.org/attachment.cgi?id=579970&action=diff?
  1924. # [18:40] * Joins: sheppy (sheppy@moz-7EAE095F.sip.tys.bellsouth.net)
  1925. # [18:40] <sewardj> !seen dbaron
  1926. # [18:40] <Ms2ger> --- Comment #4 from Ian 'Hixie' Hickson <ian@hixie.ch> 2011-12-07 22:49:03 UTC ---
  1927. # [18:40] <Ms2ger> Well that's just silly.
  1928. # [18:40] <firebot> dbaron was last seen 10 hours, 45 minutes and 45 seconds ago, saying 'jlebar, I was just referring to bz pinging njn' in #developers.
  1929. # [18:40] <Ms2ger> Hixie, welcome to the web :)
  1930. # [18:41] <sheppy> Heh
  1931. # [18:41] * Joins: gcp (gpascutto@moz-D0E475EA.access.telenet.be)
  1932. # [18:41] * Joins: ddahl (ddahl@moz-6971CF66.hsd1.il.comcast.net)
  1933. # [18:43] * Joins: northWind (northWind@F1451709.44D93D66.1139E686.IP)
  1934. # [18:44] * timA|away is now known as timA
  1935. # [18:44] * armenzg_lunch is now known as armenzg
  1936. # [18:45] * Quits: stransky (stransky@moz-107AD163.redhat.com) (Quit: Connection reset by beer)
  1937. # [18:45] * Joins: smontagu (chatzilla@moz-B51F6AC5.red.bezeqint.net)
  1938. # [18:45] * Quits: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  1939. # [18:45] * Joins: tfair (tfairey@moz-BBE3ABD.mv.mozilla.com)
  1940. # [18:46] * Joins: Mook_as (mook@moz-1FCC0032.activestate.com)
  1941. # [18:51] <NeilAway> interesting, Ms2ger's timezone is UTC
  1942. # [18:51] * Joins: regen (Miller@moz-2FBAA89A.adsl.dynamic.seed.net.tw)
  1943. # [18:51] * Joins: azakai (alon@moz-BBE3ABD.mv.mozilla.com)
  1944. # [18:52] <nigelb> NeilAway: I thought he was timezone-less ^-^
  1945. # [18:52] <regen> nigelb: if you travel all the time
  1946. # [18:52] * philor is now known as philor|away
  1947. # [18:53] * Quits: daim (David_Mart@779E3E00.1773D26C.C0FF2207.IP) (Quit: ChatZilla 0.9.87 [Firefox 8.0.1/20111120135848])
  1948. # [18:53] <jesup> khuey: webidl support would (have) made my life significantly easier (for webrtc). :-)
  1949. # [18:53] * Joins: ashughes (ashughes@21B7B9F2.B87E9213.6E712CE2.IP)
  1950. # [18:53] <smaug> I thought Ms2ger would be CET
  1951. # [18:54] <khuey> jesup: well it's a few engineer-years of effort away from completion
  1952. # [18:54] <khuey> ;-)
  1953. # [18:54] * Quits: gcp (gpascutto@moz-D0E475EA.access.telenet.be) (Ping timeout)
  1954. # [18:55] <regen> khuey: if edmorley died of work exhuastion, will you take his role?
  1955. # [18:55] * Joins: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com)
  1956. # [18:55] <khuey> lets hope it doesn't come to that
  1957. # [18:55] <Ms2ger> You sketch an awful picture
  1958. # [18:55] <Ms2ger> We'd need actual sheriffs!
  1959. # [18:55] * Quits: smontagu (chatzilla@moz-B51F6AC5.red.bezeqint.net) (Ping timeout)
  1960. # [18:56] * Quits: cjones (cjones@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: Leaving)
  1961. # [18:56] <Standard8> bbondy: I guess the signing stuff just landed...
  1962. # [18:56] * Joins: gcp (gpascutto@moz-D0E475EA.access.telenet.be)
  1963. # [18:57] <bbondy> Standard8: the releng stuff maybe, the service is pushed due to some security stuff that just came up
  1964. # [18:57] <jesup> So... I'm closing in on getting PeerConnection to build (patterned on WebSockets, since they overall are similar and both take params for new in js). I'm down to one error: DOMCI_DATA(PeerConnection, nsPeerConnection) throws an error: nsPeerConnection.cpp:75:11: error: expected constructor, destructor, or type conversion before ‘(’ token
  1965. # [18:57] <Standard8> ah
  1966. # [18:58] <jesup> Any suggestions where to look? I've made sure I have equivalent entries for WebSockets in all .h files MozWebSocket shows up in.
  1967. # [18:58] <khuey> jesup: did you include nsDOMClassInfoId.h?
  1968. # [18:58] <khuey> er
  1969. # [18:58] * Joins: jhammel (jhammel@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  1970. # [18:58] <khuey> ID.h
  1971. # [18:58] <regen> Jeff Walden — Kill the warnings. KILL THEM WITH FIRE. No bug, r=sparky
  1972. # [18:58] <Standard8> bbondy: ah, it was bug 481815
  1973. # [18:58] <bbondy> ya
  1974. # [18:58] <jesup> yes
  1975. # [18:58] <jesup> khuey: yes
  1976. # [18:58] * Quits: maikmerten (merten@moz-E254386D.cs.uni-dortmund.de) (Quit: Verlassend)
  1977. # [18:58] <regen> is jeff all right?
  1978. # [18:59] <khuey> jesup: and you added your thing to nsDOMClassInfoClasses.h?
  1979. # [18:59] <jesup> yes
  1980. # [19:00] * Quits: michal (michal@F8B4DDD2.FC749DA6.F23860FD.IP) (Ping timeout)
  1981. # [19:00] <jesup> DOMCI_CLASS(PeerConnection)
  1982. # [19:00] <Ms2ger> jesup, in the right order?
  1983. # [19:00] <khuey> it'll build in the wrong order
  1984. # [19:00] <khuey> it just explodes at runtime
  1985. # [19:00] <Ms2ger> Yeah, nvm me
  1986. # [19:01] <khuey> that error message really sounds like it doesn't know what DOMCI_DATA is
  1987. # [19:01] <jesup> Any easy way to unfold the macro and see the pp source?
  1988. # [19:01] <khuey> make -C objdir/foo/bar nsFoo.i ?
  1989. # [19:01] <sheppy> Hey, khuey has the honor of being the owner of the only remaining documentation issue for Firefox 9. :)
  1990. # [19:01] * Quits: mayhemer (Miranda@B3D46202.F87A741B.F23860FD.IP) (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
  1991. # [19:01] <khuey> heh
  1992. # [19:02] <khuey> how many more days do I have until release?
  1993. # [19:02] <khuey> :-P
  1994. # [19:02] <sheppy> :)
  1995. # [19:03] * Joins: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1996. # [19:03] * Joins: protz (jonathan@moz-7F6750F6.xulforum.org)
  1997. # [19:03] * Joins: Mossop (mossop@moz-E325C2EC.dsl.dynamic.sonic.net)
  1998. # [19:04] * Quits: waschtl (waschtl@moz-A4ECE553.hsi4.kabel-badenwuerttemberg.de) (Client exited)
  1999. # [19:04] * Quits: sfink (chatzilla@moz-139D44E0.dsl.pltn13.sbcglobal.net) (Client exited)
  2000. # [19:04] * Quits: espindola (espindola@moz-9174375C.dsl.teksavvy.com) (Ping timeout)
  2001. # [19:04] * Quits: cpeterson (cpeterson@moz-BBE3ABD.mv.mozilla.com) (Input/output error)
  2002. # [19:04] <Waldo> regen: why do you ask? (and yes, I'm fine, more or less)
  2003. # [19:04] * Quits: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2004. # [19:04] <regen> nothing :)
  2005. # [19:05] * Joins: smontagu (chatzilla@moz-28033D35.red.bezeqint.net)
  2006. # [19:05] <Ms2ger> khuey, you're not getting away with hard-coding "TEST-PASS" in every test, that much I can tell you :)
  2007. # [19:05] <khuey> Ms2ger: ha
  2008. # [19:05] * Joins: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com)
  2009. # [19:06] * Joins: anant (anant@moz-12AFB4A9.dsl.dynamic.sonic.net)
  2010. # [19:06] * Joins: brendan (brendaneic@moz-8B54AE90.hfc.comcastbusiness.net)
  2011. # [19:06] * Joins: dao (dao@moz-FACBC61B.superkabel.de)
  2012. # [19:06] * Quits: Julian (chatzilla@moz-43E73578.greenbytes.de) (Ping timeout)
  2013. # [19:06] * Joins: espindola (espindola@9401F39E.494971FD.F061A1E6.IP)
  2014. # [19:07] * Joins: terrence|away (terrence@moz-BBE3ABD.mv.mozilla.com)
  2015. # [19:07] * Joins: mgoodwin (mgoodwin@moz-4BB9E5E9.cable.virginmedia.com)
  2016. # [19:07] * Joins: bmoss|2 (bmoss@moz-BBE3ABD.mv.mozilla.com)
  2017. # [19:08] <jesup> khuey: DOMCI_DATA somehow isn't defined, even though the include file is included....
  2018. # [19:08] * Quits: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2019. # [19:09] <khuey> jesup: aha
  2020. # [19:09] <khuey> I know what you're doing wrong
  2021. # [19:09] <jesup> I see an #ifdef in there...
  2022. # [19:09] <Standard8> khuey: can I get rs for http://pastebin.mozilla.org/1396882 which is a bustage fix from http://hg.mozilla.org/mozilla-central/rev/6b60ebe2cae4 for comm-central?
  2023. # [19:09] <khuey> this summer one of our interns had the same problem
  2024. # [19:09] <khuey> we spent three hours debugging :-(
  2025. # [19:09] * armenzg is now known as armenzg_mtg
  2026. # [19:09] * coop|mtg is now known as coop
  2027. # [19:10] * Quits: regen (Miller@moz-2FBAA89A.adsl.dynamic.seed.net.tw) (Quit: regen)
  2028. # [19:10] <jesup> I spent about 4 hours last night, and a few more this morning (though fixing some other stuff too)
  2029. # [19:10] * Quits: gkw (gkw@moz-A7D8CA2A.hsd1.ca.comcast.net) (Ping timeout)
  2030. # [19:10] * Joins: Boriss (FlyingToas@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2031. # [19:10] <jesup> Figured it couldn't be that hard. :-)
  2032. # [19:10] <khuey> jesup: you needs a DEFINES += -D_IMPL_NS_LAYOUT in your makefile
  2033. # [19:10] <Ms2ger> \o/
  2034. # [19:11] <jesup> Right. I'd guessed that once I saw it wasn't defined. So obvious.
  2035. # [19:11] * khuey tries to kill that months ago and got scope creeped to death :-(
  2036. # [19:11] <khuey> Standard8: rs=me
  2037. # [19:11] <Standard8> khuey: thanks
  2038. # [19:12] <khuey> np
  2039. # [19:12] * Joins: stevee (Miranda@moz-BEBDF855.cable.virginmedia.com)
  2040. # [19:12] <khuey> jesup: https://bugzilla.mozilla.org/show_bug.cgi?id=659722#c8 :-(
  2041. # [19:12] <jesup> khuey: Can I add a line to nsDOMClassInfoID.h in my patch with a comment: if DOMCI_DATA() won't compile, add this define
  2042. # [19:13] * terrence|away is now known as terrence
  2043. # [19:13] <jesup> At least shortcut the next person who hits it
  2044. # [19:13] * bear is now known as bear-afk
  2045. # [19:13] * philor|away is now known as philor
  2046. # [19:13] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/5c8405e6226e - Mark Banner - Bustage fix for comm-central apps after bug 481815 - use MOZILLA_DIR not topsrcdir. rs=kheuy
  2047. # [19:13] * jesup thinks we should put more internal docs/warnings like that in
  2048. # [19:14] <khuey> sure
  2049. # [19:14] * Quits: hub (hub@moz-E2FCA694.figuiere.net) (Ping timeout)
  2050. # [19:14] <khuey> I'd rather we fixed the damn bug I filed
  2051. # [19:14] <khuey> but that'll help
  2052. # [19:14] <Ms2ger> Who's kheuy, and is he a qualified reviewer?
  2053. # [19:15] <Waldo> who's Ms2ger, and is he a qualified reviewer?
  2054. # [19:15] <Ms2ger> First is none of your business, second is no :)
  2055. # [19:15] * Joins: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2056. # [19:15] <jhammel> http://en.wikipedia.org/wiki/User:Ms2ger
  2057. # [19:15] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2058. # [19:15] * Joins: fang_ (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2059. # [19:16] * Quits: bmoss|2 (bmoss@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2060. # [19:16] * Quits: sheppy (sheppy@moz-7EAE095F.sip.tys.bellsouth.net) (Input/output error)
  2061. # [19:16] * Quits: fang_ (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2062. # [19:16] * Joins: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2063. # [19:17] * khuey is tempted to register Ms2gerSightings.com
  2064. # [19:17] <Ms2ger> <!doctype html>None
  2065. # [19:17] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2066. # [19:18] * Joins: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2067. # [19:18] <jhammel> khuey: Ms2ger.com is available
  2068. # [19:18] <edmorley> Ms2ger: you'll have to come to the next mozcamp eu
  2069. # [19:18] * Joins: sheppy (sheppy@moz-7EAE095F.sip.tys.bellsouth.net)
  2070. # [19:18] * Joins: michal (michal@F8B4DDD2.FC749DA6.F23860FD.IP)
  2071. # [19:18] <jhammel> khuey: get it before Ms2ger can and put up his homepage :P
  2072. # [19:18] <jhammel> her? its?
  2073. # [19:18] <khuey> jhammel: heh
  2074. # [19:18] <Ms2ger> their?
  2075. # [19:19] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2076. # [19:19] * Joins: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2077. # [19:19] <sheppy> Whose?
  2078. # [19:19] <jesup> khuey: Yeah! Finally nsPeerConnection.cpp compiles. We'll see about linking... :-)
  2079. # [19:19] * zpao|detached is now known as zpao
  2080. # [19:19] * Quits: By-Tor (bytor@moz-46974D0B.dyn.optonline.net) (Input/output error)
  2081. # [19:20] * Joins: akeybl (akeybl@moz-BBE3ABD.mv.mozilla.com)
  2082. # [19:20] <Waldo> you're using the ns prefix? :-(
  2083. # [19:20] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2084. # [19:20] * Joins: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2085. # [19:20] <edmorley> definitely her, Ms. 2ger
  2086. # [19:20] * Quits: boiled_sugar (boiled_sug@moz-FF55F505.dy.bbexcite.jp) (Quit: Leaving...)
  2087. # [19:20] <sheppy> Suddenly all becomes clear!
  2088. # [19:20] <jhammel> edmorley: what if its an anagram Mr. Ges the second?
  2089. # [19:21] * Joins: rs (rs@moz-217F02CE.lightspeed.sntcca.sbcglobal.net)
  2090. # [19:21] <khuey> jhammel: there's also Ms2g.er
  2091. # [19:21] <jhammel> khuey: nice
  2092. # [19:21] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2093. # [19:21] * Joins: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2094. # [19:21] <khuey> sadly registering domain names in eritrea seems to be impossible
  2095. # [19:21] <khuey> without travelling there
  2096. # [19:21] <Ms2ger> Expense it
  2097. # [19:21] <khuey> I doubt jst would approve
  2098. # [19:21] <sheppy> Heh
  2099. # [19:21] <edmorley> out of the pony fund
  2100. # [19:22] <sheppy> You guys get a pony fund? I want a pony fund!
  2101. # [19:22] * Joins: fang_ (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2102. # [19:22] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2103. # [19:22] * fang_ is now known as fang
  2104. # [19:22] <Ms2ger> sheppy, ask ted
  2105. # [19:23] * Quits: Yoric (Yoric@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Input/output error)
  2106. # [19:23] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2107. # [19:23] * Joins: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2108. # [19:24] * Joins: fang_ (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2109. # [19:24] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2110. # [19:24] * fang_ is now known as fang
  2111. # [19:24] * Joins: yuan (ywang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2112. # [19:24] <jesup> Waldo: habit. And keeping a consistent pattern has value; if we go and change all the files in the tree, that would work too. ;-)
  2113. # [19:25] <Waldo> we've long since abandoned consistency on this point :-)
  2114. # [19:25] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2115. # [19:25] * Joins: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2116. # [19:25] * Quits: sheppy (sheppy@moz-7EAE095F.sip.tys.bellsouth.net) (Quit: Leaving)
  2117. # [19:25] * Quits: surkov (surkov@E4B902A.26ED71FF.34044A7F.IP) (Quit: surkov)
  2118. # [19:26] <imphil> hm, strange crash. does anybody have an idea how that could happen or how to extend the check to at least prevent the crash? http://pastebin.mozilla.org/1396892 (ownerDoc in #5) happens with the XForms extension, but that should only be relevant insofar as there is xtf involved
  2119. # [19:26] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2120. # [19:26] * Joins: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2121. # [19:26] <Waldo> and while complete consistency has its aesthetic appeal, I've long since come to the conclusion that it's a case of perfect being the enemy of good, and more often than not stop energy in effect if perhaps not in intent
  2122. # [19:27] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2123. # [19:27] <khuey> imphil: something is pretty broken there ...
  2124. # [19:27] * Joins: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2125. # [19:27] <khuey> smaug: ^
  2126. # [19:27] <khuey> see imphil's stack
  2127. # [19:27] * Joins: biesi (cbiesinger@BEBE4533.89BC370D.6D4D60F7.IP)
  2128. # [19:28] <khuey> imphil: it looks like you're deleting the node in question twice
  2129. # [19:28] <smaug> khuey: imphil: looking
  2130. # [19:28] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2131. # [19:28] * Joins: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2132. # [19:28] <khuey> or maybe not
  2133. # [19:28] <khuey> but there's deleted memory floating around
  2134. # [19:28] <khuey> firebot: d8d8d8d8?
  2135. # [19:28] <firebot> khuey: Sorry, I've no idea what 'd8d8d8d8' might be.
  2136. # [19:28] <khuey> bah
  2137. # [19:29] <khuey> useless bot
  2138. # [19:29] * Quits: mjschranz (mjschranz@moz-57B23647.senecac.on.ca) (Client exited)
  2139. # [19:29] <imphil> *gg*
  2140. # [19:29] <smaug> imphil: which version of FF?
  2141. # [19:29] <Waldo> firebot 0xd8d8d8d8
  2142. # [19:29] <firebot> Waldo: hmm... I think 0xd8d8d8d8 is leaky MARKER2_0 or nsFixedSizeAllocator's deletion pattern
  2143. # [19:29] <smaug> and it could be XTF related
  2144. # [19:29] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2145. # [19:29] <imphil> gecko 8 release
  2146. # [19:29] * Joins: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2147. # [19:30] <smaug> imphil: can you get crash-reported ID?
  2148. # [19:30] <smaug> crash-report id
  2149. # [19:30] * Quits: ejpbruel (ejpbruel@moz-5EE20326.adsl2.static.versatel.nl) (Quit: ejpbruel)
  2150. # [19:30] * Joins: gkw (gkw@moz-BBE3ABD.mv.mozilla.com)
  2151. # [19:30] <imphil> smaug, it was a debug build without crash reporter (and it's actually still open in gdb)
  2152. # [19:30] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2153. # [19:30] * Quits: northWind (northWind@F1451709.44D93D66.1139E686.IP) (Ping timeout)
  2154. # [19:30] * Joins: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2155. # [19:31] * Quits: gkw (gkw@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  2156. # [19:31] * Joins: hub (hub@21B7B9F2.B87E9213.6E712CE2.IP)
  2157. # [19:31] * Joins: karl (karl@moz-98FDE453.jetstream.xtra.co.nz)
  2158. # [19:31] * jwir3 is now known as jwir3|lunch
  2159. # [19:31] <smaug> imphil: can you point which line is crashing?
  2160. # [19:31] * Joins: gkw (gkw@moz-BBE3ABD.mv.mozilla.com)
  2161. # [19:31] <smaug> er
  2162. # [19:31] <smaug> grr
  2163. # [19:31] <smaug> we don't have mxr for release
  2164. # [19:32] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2165. # [19:32] * Joins: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2166. # [19:32] * Quits: armenzg_mtg (armenzg@moz-A6FE435.build.sjc1.mozilla.com) (Ping timeout)
  2167. # [19:32] <gavin> should be the same as beta, right?
  2168. # [19:32] * Joins: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com)
  2169. # [19:32] <gavin> oh, I guess not after release
  2170. # [19:32] <imphil> ownerDoc->ClearBoxObjectFor(elem);
  2171. # [19:32] <smaug> it certainly isn't same as beta
  2172. # [19:33] * Joins: fang_ (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2173. # [19:33] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2174. # [19:33] * fang_ is now known as fang
  2175. # [19:33] * Joins: Honza (chatzilla@E07BF19C.5BB5597D.D0083327.IP)
  2176. # [19:34] <imphil> smaug, http://hg.mozilla.org/releases/mozilla-release/file/463b6cbdef7c/content/base/src/nsNodeUtils.cpp#l307
  2177. # [19:34] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2178. # [19:34] * Joins: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2179. # [19:34] * Quits: gabor (gabor@moz-3B57BCD1.catv.pool.telekom.hu) (Ping timeout)
  2180. # [19:34] <ddahl> anyone know about this crash on Mac OS? http://pastebin.mozilla.org/1396901
  2181. # [19:35] * Joins: fang_ (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2182. # [19:35] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2183. # [19:35] * fang_ is now known as fang
  2184. # [19:35] * Joins: mjschranz (mjschranz@moz-57B23647.senecac.on.ca)
  2185. # [19:35] <Standard8> well these days you should probably get used to firefox and not firefox-bin, but as they are copies, it shouldn't matter
  2186. # [19:35] * sheppy-lunch is now known as sheppy
  2187. # [19:36] <Standard8> isn't that something to do with the wrong architecture?
  2188. # [19:36] <Standard8> ddahl: ^^^ i.e. 32 vs 64
  2189. # [19:36] * Joins: nohup (Mibbit@31BE6F07.9083A694.9CA62458.IP)
  2190. # [19:36] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2191. # [19:36] * Joins: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2192. # [19:36] <ddahl> Standard8: happens either way
  2193. # [19:36] <ddahl> i downloaded the latest 8.0.1 for mac os this morning, new profile too
  2194. # [19:37] <ddahl> i see bug 701449
  2195. # [19:37] <smaug> imphil: is the ownerDoc dead even before ClearBoxObjectFor?
  2196. # [19:37] * Joins: bnicholson (bnicholson@moz-BBE3ABD.mv.mozilla.com)
  2197. # [19:38] * Parts: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2198. # [19:38] * rail-food is now known as rail
  2199. # [19:38] * Joins: armenzg_mtg (armenzg@A6CB2BBF.5BCEC6DB.DA78B690.IP)
  2200. # [19:39] * Joins: bholley (bholley@moz-FCAF9AAB.hsd1.ca.comcast.net)
  2201. # [19:39] <philor> huh, why would a nightly hit the "configure has changed and needs to be run" warning?
  2202. # [19:39] <Standard8> ddahl: try something like 'arch -i386 firefox -p'
  2203. # [19:39] <Standard8> ddahl: I doubt that is it, I could be going down the wrong route with this
  2204. # [19:41] <ddahl> Standard8: that does work. weird
  2205. # [19:41] <Standard8> ddahl: ted might remember more, but I think there was something about directly running firefox on 10.5 needs the arch option
  2206. # [19:41] <khuey> Ms2ger: I added some tests that aren't hardcoded to pass for you :-P
  2207. # [19:41] <imphil> smaug, I'm not sure I get that question -- how would I check?
  2208. # [19:42] * Quits: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2209. # [19:42] <ddahl> Standard8: thx
  2210. # [19:42] <jimm> my local pop email access just came back
  2211. # [19:42] * Quits: MarcoZ (marco.zehe@moz-14F312E2.dip.t-dialin.net) (Quit: Tomorrow!)
  2212. # [19:43] <Ms2ger> khuey, harness.ok(True, "TEST-PASS | Parsing a silly interface doesn't throw.")
  2213. # [19:43] <bsmedberg> hehe!
  2214. # [19:43] * Quits: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  2215. # [19:43] <khuey> woops
  2216. # [19:43] <khuey> I forgot to remove TEST-PASS From that one
  2217. # [19:44] <khuey> also, I was referring to test_interface
  2218. # [19:44] * Joins: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com)
  2219. # [19:44] <Ms2ger> Well, you got half your tests right :)
  2220. # [19:44] * Quits: Boriss (FlyingToas@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Client exited)
  2221. # [19:44] * Joins: Boriss (FlyingToas@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2222. # [19:45] * Joins: pnemsak (Miranda@moz-7409BD53.orange.sk)
  2223. # [19:45] * Quits: pnemsak (Miranda@moz-7409BD53.orange.sk) (Connection reset by peer)
  2224. # [19:45] * Joins: pnemsak (Miranda@moz-7409BD53.orange.sk)
  2225. # [19:46] * Joins: pcwalton (pcwalton@moz-7B0110AD.mv.mozilla.com)
  2226. # [19:46] <nemo> smaug: oh. and I put JS engine for that bug, but it was a complete guess of course :) could be in rendering for all I know
  2227. # [19:47] * Joins: rniwa (rniwa@5CA6DC39.C60FE7DC.4065847B.IP)
  2228. # [19:48] * Quits: jhopkins (jhopkins@moz-41E1D586.tb.shawcable.net) (Ping timeout)
  2229. # [19:48] * Quits: mjschranz (mjschranz@moz-57B23647.senecac.on.ca) (Client exited)
  2230. # [19:48] * Joins: mjschranz (mjschranz@FA65BD34.33EE9F8A.1139E686.IP)
  2231. # [19:48] * Joins: jhopkins (jhopkins@moz-41E1D586.tb.shawcable.net)
  2232. # [19:49] <smaug> nemo: well, lots of it was in js eng
  2233. # [19:50] * Joins: jet (junglecode@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2234. # [19:51] * Joins: damons (gnubeard@moz-8B54AE90.hfc.comcastbusiness.net)
  2235. # [19:51] <ehsan> zpao: ping
  2236. # [19:51] * Joins: sfink (chatzilla@moz-BBE3ABD.mv.mozilla.com)
  2237. # [19:51] <zpao> ehsan: pong
  2238. # [19:51] <ehsan> hey
  2239. # [19:51] <ehsan> zpao: have you seen https://bugzilla.mozilla.org/show_bug.cgi?id=708251 ?
  2240. # [19:52] <zpao> ehsan: i have
  2241. # [19:52] <ehsan> zpao: have we changed anything recently about how sessionstore works?
  2242. # [19:53] * Quits: ahal (ahal@moz-6CFF366A.cpe.net.cable.rogers.com) (Client exited)
  2243. # [19:53] * Joins: Mnyromyr (Mnyromyr@B2521176.7B0892CB.771966F7.IP)
  2244. # [19:53] <zpao> i vaguely recall us changing to respecting the startup preference in that case
  2245. # [19:53] <ehsan> hmm
  2246. # [19:54] * ehsan tries to remember where the code responsible for this lives
  2247. # [19:55] <zpao> ehsan: yup, https://bugzilla.mozilla.org/show_bug.cgi?id=660785
  2248. # [19:56] * Joins: redfive (chatzilla@moz-B94E1A81.ipnetworksinc.net)
  2249. # [19:57] <ddahl> looks like I am the proud owner of one of those beachballing mac firefox profiles
  2250. # [19:57] * Quits: damons (gnubeard@moz-8B54AE90.hfc.comcastbusiness.net) (Quit: damons)
  2251. # [19:58] <ehsan> zpao: hehe, thanks :)
  2252. # [19:58] <ddahl> is there a bug specifically on debugging and reporting what is happening when we start and hang forever based on a craptastic profile?
  2253. # [19:58] <zpao> ehsan: no problem. i'm commenting now
  2254. # [19:59] <ddahl> maybe taras knows offhand? ^^
  2255. # [19:59] <ehsan> k
  2256. # [19:59] * Joins: magsout (magsout@moz-E559D13.fbx.proxad.net)
  2257. # [19:59] * Joins: jimb (user@moz-BE7E90A8.hsd1.or.comcast.net)
  2258. # [20:00] * Quits: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com) (Quit: mccr8)
  2259. # [20:01] * Quits: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2260. # [20:01] * jhammel is now known as jhammel|mtg
  2261. # [20:03] * Joins: jhammel (jhammel@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2262. # [20:03] * Joins: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com)
  2263. # [20:04] * Joins: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com)
  2264. # [20:07] * armenzg_mtg is now known as armenzg
  2265. # [20:07] * Quits: magsout (magsout@moz-E559D13.fbx.proxad.net) (Ping timeout)
  2266. # [20:08] * Quits: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2267. # [20:09] * Joins: WeirdAl (chatzilla@moz-D461843.ask.info)
  2268. # [20:10] <WeirdAl> Hey, guys. Can someone do a try-server push for bug 525816? I haven't been able to run a full-regression test on it, and tryserver can do that.
  2269. # [20:10] <Ms2ger> Sure
  2270. # [20:10] * Quits: grubshka (grubshka@moz-646235CC.w109-212.abo.wanadoo.fr) (Ping timeout)
  2271. # [20:11] <WeirdAl> thanks - I just want to see if my patch breaks something else (unlikely, but you never know)
  2272. # [20:11] * catlee-lunch is now known as catlee
  2273. # [20:12] * Quits: clee (clee@moz-BBE3ABD.mv.mozilla.com) (Quit: clee)
  2274. # [20:12] * Joins: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com)
  2275. # [20:13] * Joins: Julian (chatzilla@moz-9E4A6276.dip.t-dialin.net)
  2276. # [20:13] * Joins: felipe|tab (AndChat@moz-BBE3ABD.mv.mozilla.com)
  2277. # [20:13] * Quits: dwitte (dwitte@B5D55705.DFBA1754.DC877F3B.IP) (Quit: Leaving)
  2278. # [20:14] * Joins: c0smikdebris (c0smikdebr@AE0E7D8.44738DE.274D17D6.IP)
  2279. # [20:15] * Joins: clee (clee@moz-BBE3ABD.mv.mozilla.com)
  2280. # [20:15] * Joins: AutomatedTester (AutomatedT@moz-E2DE3599.as13285.net)
  2281. # [20:15] * Joins: like (go@C8444F12.489325BB.6654B540.IP)
  2282. # [20:15] <like> selam
  2283. # [20:15] * Quits: like (go@C8444F12.489325BB.6654B540.IP) (Quit: )
  2284. # [20:16] * Quits: anant (anant@moz-12AFB4A9.dsl.dynamic.sonic.net) (Ping timeout)
  2285. # [20:17] <Ms2ger> WeirdAl, https://tbpl.mozilla.org/?tree=Try&rev=0dfcd86957d7
  2286. # [20:17] * Joins: alice0775 (Mibbit@moz-D8180516.osaka.ocn.ne.jp)
  2287. # [20:17] * Joins: anant (anant@moz-12AFB4A9.dsl.dynamic.sonic.net)
  2288. # [20:18] <WeirdAl> -a means "all"?
  2289. # [20:18] <edmorley> WeirdAl: yup
  2290. # [20:18] <WeirdAl> cool
  2291. # [20:18] <WeirdAl> so in about 4 to 8 hours I should have a pretty good idea
  2292. # [20:19] <Ms2ger> Does anybody maintain the trychooser extension?
  2293. # [20:21] * Joins: jhammink (textual@moz-7B0110AD.mv.mozilla.com)
  2294. # [20:21] * Quits: @mkaply (chatzilla@moz-92EDDD02.lightspeed.austtx.sbcglobal.net) (Ping timeout)
  2295. # [20:21] * sancus is now known as sancus_
  2296. # [20:21] * sancus_ is now known as sancus
  2297. # [20:23] * Joins: mkaply (chatzilla@moz-92EDDD02.lightspeed.austtx.sbcglobal.net)
  2298. # [20:23] * ChanServ sets mode: +o mkaply
  2299. # [20:23] * Joins: northWind (northWind@F1451709.44D93D66.1139E686.IP)
  2300. # [20:25] <sfink> I want a tool that I can point to a patch, and have it create a bug, update the patch description to "Bug NNNN - Fix warnings. r=woof!", attach the patch, mark it checkin-needed, and leave me alone. Anything already exist?
  2301. # [20:25] <jhammel> bzexport? ::shrug::
  2302. # [20:25] <jhammel> i suppose not
  2303. # [20:25] <khuey> bzexport?
  2304. # [20:25] * Joins: ejpbruel (ejpbruel@BE7AA7B8.AC20774A.78FB44E5.IP)
  2305. # [20:25] <khuey> it can do half of that
  2306. # [20:26] * Joins: jduell (jduell@moz-2D9EDA98.lightspeed.sntcca.sbcglobal.net)
  2307. # [20:26] <sfink> Hm, yeah. I guess it just needs a --new-bug option or something.
  2308. # [20:27] * bear-afk is now known as bear
  2309. # [20:28] * Joins: priya (priya@moz-BBE3ABD.mv.mozilla.com)
  2310. # [20:29] * Joins: mayhemer (Miranda@B3D46202.F87A741B.F23860FD.IP)
  2311. # [20:30] * Quits: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2312. # [20:30] * Quits: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  2313. # [20:30] * jwir3|lunch is now known as jwir3
  2314. # [20:30] * Quits: florian (florian@moz-87C33FDA.kimsufi.com) (Quit: Instantbird 1.2a1pre)
  2315. # [20:31] * Joins: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  2316. # [20:31] * Joins: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2317. # [20:31] <msucan> where is the code that handles what is typed in the urlbar? the code that handles the Entery key event
  2318. # [20:32] <jhammel> sfink: yes, it is a commonly requested feature
  2319. # [20:32] * Quits: c0smikdebris (c0smikdebr@AE0E7D8.44738DE.274D17D6.IP) (Quit: Computer has gone to sleep.)
  2320. # [20:32] * Quits: rs (rs@moz-217F02CE.lightspeed.sntcca.sbcglobal.net) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 1.8.0.9/2006120508])
  2321. # [20:33] * Quits: Julian (chatzilla@moz-9E4A6276.dip.t-dialin.net) (Quit: ChatZilla 0.9.87 [Firefox 8.0/20111104165243])
  2322. # [20:34] * Quits: Boriss (FlyingToas@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Ping timeout)
  2323. # [20:36] * Joins: Boriss (FlyingToas@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2324. # [20:36] * Joins: mreid_ (mark@moz-7B0110AD.mv.mozilla.com)
  2325. # [20:37] * timA is now known as timA|brb
  2326. # [20:39] <jduell> So is it just me, or has mozilla.com email been down for more than a day?
  2327. # [20:39] <jduell> (or maybe no one's sending me any more email: that would be nice)
  2328. # [20:39] <khuey> it's back up
  2329. # [20:39] <khuey> or at least it's supposed to be
  2330. # [20:39] <jhammel> khuey: only zimbra, right? no IMAP?
  2331. # [20:40] * Joins: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com)
  2332. # [20:40] * jhammel checks: yes
  2333. # [20:40] <khuey> right
  2334. # [20:40] <khuey> jduell: yeah, IMAP is turned off
  2335. # [20:40] <khuey> if that's how you get your email
  2336. # [20:41] <jduell> khuey: ah, so zimbra works? Any timeline for IMAP to return?
  2337. # [20:41] * Quits: philipp64|laptop (chatzilla@moz-49802010.redfish-solutions.com) (Ping timeout)
  2338. # [20:41] <Standard8> see your email ;-)
  2339. # [20:41] <khuey> yes
  2340. # [20:41] <khuey> your email explains it better than I can
  2341. # [20:41] <Standard8> there's a global from mrz
  2342. # [20:42] <bsmedberg> there is?
  2343. # [20:42] * Quits: nohup (Mibbit@31BE6F07.9083A694.9CA62458.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2344. # [20:42] <Standard8> yep
  2345. # [20:43] <dao> jduell, bsmedberg: https://intranet.mozilla.org/forum/viewtopic.php?f=4&t=402
  2346. # [20:43] <NeilAway> hmm, Ms2ger doesn't use the userbox
  2347. # [20:43] <bsmedberg> hrm, I must still not be getting my @m.c email then
  2348. # [20:43] * Joins: ted2 (u2847@moz-160C58C6.com)
  2349. # [20:44] * timA|brb is now known as timA
  2350. # [20:45] * Quits: mjschranz (mjschranz@FA65BD34.33EE9F8A.1139E686.IP) (Ping timeout)
  2351. # [20:45] * Joins: jauip (x@moz-2E73ACE4.wp.shawcable.net)
  2352. # [20:45] * Quits: jauip (x@moz-2E73ACE4.wp.shawcable.net) (Quit: jauip)
  2353. # [20:45] <bsmedberg> aha, it forgot my forwarding setting apparently
  2354. # [20:46] * Quits: clee (clee@moz-BBE3ABD.mv.mozilla.com) (Quit: clee)
  2355. # [20:46] <jduell> bsmedberg: do you know if we have a way to get the total disk space on a partition? https://bugzilla.mozilla.org/show_bug.cgi?id=707402#c2
  2356. # [20:47] * zpao is now known as zpao|detached
  2357. # [20:47] <bsmedberg> jduell: if MXR were responding I think I could find a method
  2358. # [20:47] * Joins: felipe2 (AndChat@moz-BBE3ABD.mv.mozilla.com)
  2359. # [20:47] * Quits: felipe|tab (AndChat@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  2360. # [20:47] * Quits: Cork[home] (none@moz-9CA8A1B8.bredband.skanova.com) (Ping timeout)
  2361. # [20:47] * Quits: felipe2 (AndChat@moz-BBE3ABD.mv.mozilla.com) (Quit: Bye)
  2362. # [20:47] <bsmedberg> jduell: well there's nsILocalFile.diskSpaceAvailable
  2363. # [20:48] <bsmedberg> jduell: but I don't actually know whether that gives you the total size or the free size
  2364. # [20:48] <jduell> bsmedberg: I assume it's the free size
  2365. # [20:48] <bsmedberg> don't assume
  2366. # [20:48] <bsmedberg> the docstring is vague
  2367. # [20:49] * Joins: grubshka (grubshka@moz-646235CC.w109-212.abo.wanadoo.fr)
  2368. # [20:49] <jduell> bsmedberg: I'll go make sure of that now--we've been using it to guess a smart cache size for the last year :)
  2369. # [20:50] * heycam|away is now known as heycam
  2370. # [20:51] * Joins: sicking (chatzilla@moz-BBE3ABD.mv.mozilla.com)
  2371. # [20:51] * Joins: ahal (ahal@moz-6CFF366A.cpe.net.cable.rogers.com)
  2372. # [20:52] * Joins: Cork[home] (none@moz-9CA8A1B8.bredband.skanova.com)
  2373. # [20:52] <humph> has anyone ever hit issues with EventUtils synthesizeMouse on OS X?
  2374. # [20:53] * Joins: rs (rs@moz-BBE3ABD.mv.mozilla.com)
  2375. # [20:53] <humph> I'm trying to test mouse movement, but on mac it's not doing what I'd expect, and it does on windows
  2376. # [20:54] <mcpherrin> diskSpaceAvailable appears to be free space, but the number is bigger than what `df' reports.
  2377. # [20:54] <smaug> humph: what are you trying to do?
  2378. # [20:55] <humph> smaug: just move the mouse over + down, and make sure it gets there
  2379. # [20:55] <humph> works fine on windows, is ignored on mac
  2380. # [20:55] <smaug> should work
  2381. # [20:55] * zpao|detached is now known as zpao
  2382. # [20:55] <smaug> since there are plenty of tests for that
  2383. # [20:55] <humph> agreed
  2384. # [20:56] * Joins: DGMurdockIII (dgmurdocki@moz-E933B63.hsd1.il.comcast.net)
  2385. # [20:56] * Joins: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  2386. # [20:57] <jduell> bsmedberg: it's free space. So we currently have no API for getting total disk space, but both unix (fstat) and windows (GetDiskFreeSpaceEx) provide that info. Can I write a patch to add 'totalDiskSpace' to nsILocalFile?
  2387. # [20:57] <jduell> Would it need an OS/2 patch?
  2388. # [20:57] * Joins: bretr (bret_recka@moz-BBE3ABD.mv.mozilla.com)
  2389. # [20:58] <edmorley> imelven: thanks :-)
  2390. # [21:00] * Joins: cpeterson (cpeterson@moz-BBE3ABD.mv.mozilla.com)
  2391. # [21:01] <Ms2ger> jduell, bsmedberg doesn't care about OS/2, don't you know?
  2392. # [21:01] * Quits: anant (anant@moz-12AFB4A9.dsl.dynamic.sonic.net) (Ping timeout)
  2393. # [21:02] * Joins: mcsmurf (mcsmurf@moz-892F2B17.dip.t-dialin.net)
  2394. # [21:02] * Joins: anant (anant@moz-12AFB4A9.dsl.dynamic.sonic.net)
  2395. # [21:04] * Quits: jhammel (jhammel@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: leaving)
  2396. # [21:04] * jhammel|mtg is now known as jhammel
  2397. # [21:04] * Joins: ericjung (Mibbit@5210CFD5.1A5EA44.72B23B3D.IP)
  2398. # [21:05] <imelven> edmorley: no problem always happy to help :)
  2399. # [21:06] * Quits: sheppy (sheppy@moz-4992DE6D.static.kgpt.tn.charter.com) (Quit: sheppy)
  2400. # [21:08] * Joins: clee (clee@moz-BBE3ABD.mv.mozilla.com)
  2401. # [21:08] * Joins: mjschranz (mjschranz@67B989D4.531FD64C.630E4E47.IP)
  2402. # [21:09] * Quits: imphil (philipp@moz-55513EF0.rad.med.uni-muenchen.de) (Ping timeout)
  2403. # [21:09] * jhammel is now known as jhammel|noms
  2404. # [21:10] * nthomas|away is now known as nthomas
  2405. # [21:11] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: fang)
  2406. # [21:11] * Quits: yuan (ywang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: yuan)
  2407. # [21:12] * Joins: bsmith (bsmith@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2408. # [21:12] * Joins: cpearce (chatzilla@538BABFE.A073F3E.97BBD552.IP)
  2409. # [21:12] <khuey> heycam: ping?
  2410. # [21:12] * timA is now known as timA|lunch
  2411. # [21:14] * Joins: dbaron (dbaron@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2412. # [21:14] * ChanServ sets mode: +o dbaron
  2413. # [21:14] * Quits: kdcw (kdc@moz-F7413045.pk.shawcable.net) (Quit: HydraIRC -> http://www.hydrairc.com <- Organize your IRC)
  2414. # [21:14] * Joins: diogogmt (kvirc@moz-4D628198.cpe.net.cable.rogers.com)
  2415. # [21:14] * Joins: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com)
  2416. # [21:14] * armenzg is now known as armenzg_brb
  2417. # [21:15] <ejpbruel> Enn: ping
  2418. # [21:15] <Enn> hi
  2419. # [21:16] * Joins: armenzg (armenzg@moz-8555CE12.cable.teksavvy.com)
  2420. # [21:16] * Quits: armenzg_brb (armenzg@A6CB2BBF.5BCEC6DB.DA78B690.IP) (Ping timeout)
  2421. # [21:16] <ejpbruel> Enn: hi!
  2422. # [21:16] <ejpbruel> i have a weird platform issue which with i hope you could be of some assistance
  2423. # [21:16] * armenzg is now known as armenzg_brb
  2424. # [21:17] <Enn> ok
  2425. # [21:17] * Joins: mascondante (mascondant@697AC6B3.8C6159FA.9A06DD32.IP)
  2426. # [21:17] * Joins: philipp64|laptop (chatzilla@moz-49802010.redfish-solutions.com)
  2427. # [21:18] <ejpbruel> firebot: bug 697215
  2428. # [21:18] <firebot> Bug https://bugzilla.mozilla.org/show_bug.cgi?id=697215 nor, P2, ---, ejpbruel, NEW, Cannot scroll panel on OS X
  2429. # [21:18] <ejpbruel> particularly the last comment
  2430. # [21:18] <ejpbruel> i have no idea where to start looking for this problem, so any pointers you could give me would be most appreicated
  2431. # [21:19] * Quits: pascalc (chatzilla@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  2432. # [21:19] <khuey> heycam: actually, nevermind, I just can't read your spec :-P
  2433. # [21:21] * mattwoodrow|away is now known as mattwoodrow
  2434. # [21:22] <Enn> ejpbruel: looks more like a graphics issue.
  2435. # [21:22] * Joins: northWind_ (northWind@F1451709.44D93D66.1139E686.IP)
  2436. # [21:22] * Joins: pascalc (chatzilla@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  2437. # [21:22] * Quits: northWind (northWind@F1451709.44D93D66.1139E686.IP) (Ping timeout)
  2438. # [21:22] <ejpbruel> Enn: yeah, so the thing is that scrolling borks, but only on OS X, and only with that css uncommented
  2439. # [21:23] * jhopkins is now known as jhopkins|phone
  2440. # [21:23] <Enn> ejpbruel: probably best to ask someone on the graphics team such as joe drew that would be able to help or better redirect you
  2441. # [21:24] * Quits: northWind_ (northWind@F1451709.44D93D66.1139E686.IP) (Ping timeout)
  2442. # [21:24] * Joins: whimboo (whimboo@moz-216F9AFA.superkabel.de)
  2443. # [21:24] <ejpbruel> Enn: what is his irc handle?
  2444. # [21:24] <Ms2ger> joe, ^
  2445. # [21:24] <ejpbruel> Enn: also, what channel is the graphics team in?
  2446. # [21:24] <Ms2ger> #gfx?
  2447. # [21:24] <joe> ejpbruel: #gfx :)
  2448. # [21:24] <Enn> ejpbruel: if there was a simple testcase in the bug, I could partially investigate
  2449. # [21:25] <ejpbruel> Enn: funny, i was thinking the exact same thing :D
  2450. # [21:28] * Joins: northWind (northWind@67B989D4.531FD64C.630E4E47.IP)
  2451. # [21:28] * Joins: roc (chatzilla@538BABFE.A073F3E.97BBD552.IP)
  2452. # [21:29] * jhopkins|phone is now known as jhopkins
  2453. # [21:29] <felipe> given a font family name, is there a way in JS to tell if it's a serif or sans-serif font?
  2454. # [21:30] <Ms2ger> No
  2455. # [21:30] * Quits: northWind (northWind@67B989D4.531FD64C.630E4E47.IP) (Ping timeout)
  2456. # [21:30] * Parts: whimboo (whimboo@moz-216F9AFA.superkabel.de)
  2457. # [21:30] <Ms2ger> How would you go about that, and why do you need it?
  2458. # [21:31] * Joins: northWind (northWind@75F08BC5.C672A675.1139E686.IP)
  2459. # [21:31] <felipe> Ms2ger: porting this to JS: http://mxr.mozilla.org/mozilla-central/source/browser/components/migration/src/nsIEProfileMigrator.cpp#290 , wondering if there was a JS api around it
  2460. # [21:31] * Quits: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  2461. # [21:32] * timA|lunch is now known as timA
  2462. # [21:32] <Ms2ger> Hmm
  2463. # [21:32] <Ms2ger> ctypes?
  2464. # [21:33] <felipe> yeah
  2465. # [21:33] * felipe wonders if ctypes supports function callbacks
  2466. # [21:33] <Ms2ger> Or default to sans-serif
  2467. # [21:33] <Ms2ger> It's not like anybody uses IE anymore
  2468. # [21:33] * Joins: timA1 (tabraldes@moz-535753DA.hsd1.or.comcast.net)
  2469. # [21:34] <felipe> but the windows default is serif!
  2470. # [21:34] * Quits: timA (tabraldes@moz-535753DA.hsd1.or.comcast.net) (Ping timeout)
  2471. # [21:34] <Ms2ger> Or serif
  2472. # [21:34] <felipe> :)
  2473. # [21:34] * Ms2ger doesn't care
  2474. # [21:34] * timA1 is now known as timA
  2475. # [21:34] * Quits: rshetty (quassel@A0EE3345.7215E38F.C842849F.IP) (Client exited)
  2476. # [21:36] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-1.9.2/rev/eefedeec832e - Rafael Ávila de Espíndola - Bug 704622 - Sync the OSX and Unix logic for handling file name extensions. r=smichaud, a=akeybl.
  2477. # [21:36] <khuey> we still land stuff on 1.9.2? :-P
  2478. # [21:36] * Quits: tH (Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com) (Ping timeout)
  2479. # [21:37] * Joins: abwillis (abwillis@9877934.9DD4DBBF.6A7A197.IP)
  2480. # [21:37] * Joins: tH (Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com)
  2481. # [21:37] <ted2> sad
  2482. # [21:38] * terrence is now known as terrence|away
  2483. # [21:38] * Joins: imphil (philipp@moz-655EF802.customer.m-online.net)
  2484. # [21:40] * Cwiiis is now known as CwiiisAway
  2485. # [21:40] * bear is now known as bear-afk
  2486. # [21:42] <philor> not as sad as finding out at 10pm that we didn't land the cert expiration patch there
  2487. # [21:42] * armenzg_brb is now known as armenzg
  2488. # [21:44] * Quits: smaug (chatzilla@moz-3D102CE8.gprs.sl-laajakaista.fi) (Ping timeout)
  2489. # [21:44] * juanb is now known as juanb|afk
  2490. # [21:45] * davehunt|away is now known as davehunt|busy
  2491. # [21:45] <NeilAway> dbaron: please let me know whether https://bugzilla.mozilla.org/show_bug.cgi?id=698256#c6 is unclear, thanks
  2492. # [21:46] * Quits: wesj (wesj@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Input/output error)
  2493. # [21:46] * Joins: damons (gnubeard@moz-8B54AE90.hfc.comcastbusiness.net)
  2494. # [21:47] <Callek> bbondy: ping?
  2495. # [21:47] <bbondy> Callek: hi
  2496. # [21:47] <Callek> something broke SeaMonkey, and I have a funny feeling its related to the work you're doing
  2497. # [21:47] * Quits: smontagu (chatzilla@moz-28033D35.red.bezeqint.net) (Ping timeout)
  2498. # [21:47] <Callek> make[5]: *** No rule to make target `/e/builds/slave/comm-cen-trunk-w32-dbg/build/toolkit/mozapps/installer/signing.mk'. Stop.
  2499. # [21:48] <Callek> all platforms though it looks like
  2500. # [21:48] <bbondy> Callek: none of my work has landed
  2501. # [21:48] <mcsmurf> already fixed
  2502. # [21:48] <mcsmurf> Standard8 fixed that
  2503. # [21:48] <Callek> mcsmurf: ahh great :-)
  2504. # [21:48] * Callek ducks
  2505. # [21:48] <mcsmurf> ;)
  2506. # [21:48] <bbondy> :)
  2507. # [21:48] <Callek> missed teh cset describing it
  2508. # [21:48] <mcsmurf> at least I think that it was fixed http://hg.mozilla.org/mozilla-central/rev/5c8405e6226e
  2509. # [21:49] <mcsmurf> locally this checkin did fix my build error
  2510. # [21:49] <Callek> yea looks like that was it
  2511. # [21:49] <mcsmurf> the error is in suite/ right?
  2512. # [21:49] <mcsmurf> ok
  2513. # [21:49] <Callek> suite/installer
  2514. # [21:49] <bbondy> Callek: I think catlee and team landed some signing stuff for some binaries not sure if related
  2515. # [21:49] <mcsmurf> yes
  2516. # [21:49] <catlee> yep
  2517. # [21:49] <catlee> I think Standard8 fixed
  2518. # [21:50] <bbondy> k
  2519. # [21:50] * Quits: anant (anant@moz-12AFB4A9.dsl.dynamic.sonic.net) (Ping timeout)
  2520. # [21:50] <Standard8> yeah, TB is looking more fixed
  2521. # [21:51] <khuey> apparently 'letmein' is a banned password for yammer
  2522. # [21:51] * Joins: anant (anant@moz-12AFB4A9.dsl.dynamic.sonic.net)
  2523. # [21:51] <Callek> khuey: then you should use 'password'
  2524. # [21:51] * Quits: Wes_ (chatzilla@moz-BEF0C255.page.ca) (Client exited)
  2525. # [21:51] <khuey> heh
  2526. # [21:52] * Quits: ejpbruel (ejpbruel@BE7AA7B8.AC20774A.78FB44E5.IP) (Quit: ejpbruel)
  2527. # [21:52] <Ms2ger> /msg nickserv ghost khuey letmein
  2528. # [21:52] <Ms2ger> Oops
  2529. # [21:52] <khuey> nice try
  2530. # [21:53] <khuey> my nickserv password is pretty easy but it's not letmein
  2531. # [21:53] <Ms2ger> Is that a dare?
  2532. # [21:53] <bbondy> hah
  2533. # [21:54] <Jesse> taras: does https://bugzilla.mozilla.org/show_bug.cgi?id=393664 block https://bugzilla.mozilla.org/show_bug.cgi?id=662444 ?
  2534. # [21:55] * Quits: Ziggy_Maes (ZiggyMaes@6B780D9D.A4A6DE76.7B12EFB3.IP) (Ping timeout)
  2535. # [21:57] * Quits: mjschranz (mjschranz@67B989D4.531FD64C.630E4E47.IP) (Ping timeout)
  2536. # [22:02] * Quits: janv (varga@moz-C1261AFF.flarion.as5628.telecom.sk) (Quit: This computer has gone to sleep)
  2537. # [22:02] * Quits: chrisccoulson (chr1s@moz-692D94C8.cust-3601.ip.static.uno.uk.net) (Quit: Ex-Chat)
  2538. # [22:05] * Joins: ejpbruel (ejpbruel@moz-7A5C08E9.zeelandnet.nl)
  2539. # [22:06] * Quits: Ms2ger (Ms2ger@8F3F920B.E925B5A0.37724B0D.IP) (Quit: nn)
  2540. # [22:06] <bhearsum> jrmuizel: did you file a bug on that thing you said you were going to?
  2541. # [22:06] * coop is now known as coop|triage
  2542. # [22:06] * Quits: gkw (gkw@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2543. # [22:06] * Joins: Ziggy|AWAY (ZiggyMaes@6B780D9D.A4A6DE76.7B12EFB3.IP)
  2544. # [22:06] <jrmuizel> bhearsum: yes
  2545. # [22:06] * Ziggy|AWAY is now known as Ziggy_Maes
  2546. # [22:06] <bhearsum> cool
  2547. # [22:07] <jrmuizel> bhearsum: bug 708632
  2548. # [22:07] <@bz> jlebar: ping
  2549. # [22:07] * ashughes is now known as ashughes|meeting
  2550. # [22:07] * Quits: damons (gnubeard@moz-8B54AE90.hfc.comcastbusiness.net) (Quit: damons)
  2551. # [22:08] * Joins: gkw (gkw@moz-BBE3ABD.mv.mozilla.com)
  2552. # [22:08] * Joins: mjschranz (mjschranz@445ACC23.531FD64C.630E4E47.IP)
  2553. # [22:08] * aki is now known as aki|food
  2554. # [22:08] * Joins: dholbert_ (dholbert@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2555. # [22:09] * RaFromBRC is now known as RaFromBRC|lunch
  2556. # [22:09] * Quits: gkw (gkw@moz-BBE3ABD.mv.mozilla.com) (Quit: Instantbird 1.1)
  2557. # [22:09] * Joins: gkw (gkw@moz-BBE3ABD.mv.mozilla.com)
  2558. # [22:09] * Joins: florian (florian@moz-87C33FDA.kimsufi.com)
  2559. # [22:10] * Joins: chrisccoulson (chr1s@moz-692D94C8.cust-3601.ip.static.uno.uk.net)
  2560. # [22:10] * Quits: dholbert_ (dholbert@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: Ex-Chat)
  2561. # [22:12] * Quits: madhava (madhava@F2D29657.F60B0462.67AC9B1.IP) (Connection reset by peer)
  2562. # [22:12] * Joins: madhava (madhava@F2D29657.F60B0462.67AC9B1.IP)
  2563. # [22:12] * Quits: smooney (smooney@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2564. # [22:14] * Quits: alice0775 (Mibbit@moz-D8180516.osaka.ocn.ne.jp) (Quit: http://www.mibbit.com ajax IRC Client)
  2565. # [22:14] * Quits: jhammink (textual@moz-7B0110AD.mv.mozilla.com) (Quit: Computer has gone to sleep.)
  2566. # [22:15] <blizzard> juanb|afk: you around?
  2567. # [22:15] * Quits: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP) (Quit: Konversation terminated!)
  2568. # [22:15] * Joins: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP)
  2569. # [22:16] * Quits: clee (clee@moz-BBE3ABD.mv.mozilla.com) (Quit: clee)
  2570. # [22:16] * Quits: protz (jonathan@moz-7F6750F6.xulforum.org) (Quit: Leaving)
  2571. # [22:16] * jhammel|noms is now known as jhammel
  2572. # [22:17] * Joins: smooney (smooney@moz-BBE3ABD.mv.mozilla.com)
  2573. # [22:18] * Joins: clee (clee@moz-BBE3ABD.mv.mozilla.com)
  2574. # [22:18] * Quits: jprmc (jprmc@moz-7F2FF3EB.cpe.net.cable.rogers.com) (Ping timeout)
  2575. # [22:18] * Joins: timeless_xchat (timeless@moz-19E01B2C.tmodns.net)
  2576. # [22:19] * Quits: cpeterson (cpeterson@moz-BBE3ABD.mv.mozilla.com) (Input/output error)
  2577. # [22:19] * Quits: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com) (Ping timeout)
  2578. # [22:20] * ericjung is now known as timeless-victim
  2579. # [22:21] * Joins: taf2 (taf2@moz-109A7DA8.bltmmd.fios.verizon.net)
  2580. # [22:21] * Quits: taf2 (taf2@moz-109A7DA8.bltmmd.fios.verizon.net) (Quit: taf2)
  2581. # [22:22] * timeless-victim is now known as ericjung
  2582. # [22:22] * Quits: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP) (Quit: Konversation terminated!)
  2583. # [22:22] * Joins: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP)
  2584. # [22:22] * Joins: smaug (chatzilla@moz-969F8D80.gprs.sl-laajakaista.fi)
  2585. # [22:23] <nigelb> How did I misunderstand checkin-needed to be a whiteboard flag instead of a keyword :/
  2586. # [22:23] <nigelb> Clearly I can't read.
  2587. # [22:24] * Quits: Ziggy_Maes (ZiggyMaes@6B780D9D.A4A6DE76.7B12EFB3.IP) (Ping timeout)
  2588. # [22:26] * nthomas is now known as nthomas|mtg
  2589. # [22:26] * catlee is now known as catlee-mtg
  2590. # [22:26] <ted2> nigelb: the fact that we have two fields with similar purposes right next to each other?
  2591. # [22:26] * Quits: madhava (madhava@F2D29657.F60B0462.67AC9B1.IP) (Quit: madhava)
  2592. # [22:26] <ted2> understandably confusing
  2593. # [22:26] * Joins: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com)
  2594. # [22:26] * Joins: smontagu (chatzilla@moz-6AC82795.red.bezeqint.net)
  2595. # [22:27] <nigelb> ted2: Also, I think people are programmed to catch this mistake. Or maybe bugzilla is.
  2596. # [22:27] <nigelb> I used it in whiteboard at least 3 to 4 times before someone pointed it out to me today :)
  2597. # [22:27] <smaug> hmm, having 10+ tbpl tabs open can really kill the network connection
  2598. # [22:27] <ted2> bugzilla is definitely not :)
  2599. # [22:28] * Quits: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP) (Quit: Konversation terminated!)
  2600. # [22:28] * Joins: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP)
  2601. # [22:28] <WeirdAl> :( I find it a little hard to believe that my xhr-timeout patch caused all those problems on Android-opt... https://tbpl.mozilla.org/?tree=Try&rev=0dfcd86957d7
  2602. # [22:29] <khuey> WeirdAl: you can ignore android opt reftests
  2603. # [22:29] <edmorley> WeirdAl: it didn't ; that's native
  2604. # [22:29] <khuey> they're totally busted
  2605. # [22:29] * Quits: cers (textual@moz-E3288E2B.bynqu1.dynamic.dsl.tele.dk) (Ping timeout)
  2606. # [22:30] * Quits: smaug (chatzilla@moz-969F8D80.gprs.sl-laajakaista.fi) (Ping timeout)
  2607. # [22:31] * Joins: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2608. # [22:32] * Joins: cers (textual@moz-E3288E2B.bynqu1.dynamic.dsl.tele.dk)
  2609. # [22:32] <philor> straw poll: what's more confusing, seeing all that crap that cannot run in tbpl, or not seeing it in tbpl but getting email about it?
  2610. # [22:32] <philor> and yeah, I know the answer you want to give, "don't run shit that doesn't run as part of -a"
  2611. # [22:33] * Quits: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  2612. # [22:33] * Quits: cers (textual@moz-E3288E2B.bynqu1.dynamic.dsl.tele.dk) (Ping timeout)
  2613. # [22:33] * Joins: timeless_xchat1 (timeless@moz-7F7426EF.phlapa.fios.verizon.net)
  2614. # [22:34] * Quits: timeless_xchat (timeless@moz-19E01B2C.tmodns.net) (Ping timeout)
  2615. # [22:34] <mbrubeck> personally I find the emails useless
  2616. # [22:34] * Joins: Ziggy|AWAY (ZiggyMaes@6B780D9D.A4A6DE76.7B12EFB3.IP)
  2617. # [22:34] * Ziggy|AWAY is now known as Ziggy_Maes
  2618. # [22:34] <mbrubeck> so I want tbpl to tell me what to care about
  2619. # [22:34] * aki|food is now known as aki
  2620. # [22:35] * Quits: @mkaply (chatzilla@moz-92EDDD02.lightspeed.austtx.sbcglobal.net) (Ping timeout)
  2621. # [22:35] * Joins: Wes_ (chatzilla@moz-BEF0C255.page.ca)
  2622. # [22:35] * Joins: matti (chatzilla@moz-3B573723.dip.t-dialin.net)
  2623. # [22:36] * Joins: mkaply (chatzilla@moz-92EDDD02.lightspeed.austtx.sbcglobal.net)
  2624. # [22:36] * ChanServ sets mode: +o mkaply
  2625. # [22:36] <taras> Jesse: no idea
  2626. # [22:36] * Joins: cers (textual@moz-E3288E2B.bynqu1.dynamic.dsl.tele.dk)
  2627. # [22:37] <taras> i dont think it blocks
  2628. # [22:37] <taras> but i'm not sure what the relationship is
  2629. # [22:37] <Jesse> taras: the question is whether exit(0) will cause the same thing to happen
  2630. # [22:38] * Joins: gandalf (zbraniecki@moz-9C4FC873.neoplus.adsl.tpnet.pl)
  2631. # [22:38] <Jesse> taras: as crashing, force-quitting, or pausing in gdb
  2632. # [22:38] * Joins: cpeterson (cpeterson@moz-BBE3ABD.mv.mozilla.com)
  2633. # [22:39] * Quits: Boriss (FlyingToas@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Client exited)
  2634. # [22:39] * Joins: Boriss (FlyingToas@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2635. # [22:39] * RaFromBRC|lunch is now known as RaFromBRC
  2636. # [22:39] * Joins: yuan (ywang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2637. # [22:39] <philor> jmaher: tree=Try&noignore=1 for your native Android reftest and crashtest and browser-chrome and jsreftest greening up try pushes, I just hid them
  2638. # [22:39] * bear-afk is now known as bear
  2639. # [22:39] * Joins: darktrojan (geoff@9B1E044A.FDA75AE1.44E4C2B.IP)
  2640. # [22:39] * Joins: imanuel (isaac@moz-5CC4F60D.actrix.co.nz)
  2641. # [22:40] * Quits: cers (textual@moz-E3288E2B.bynqu1.dynamic.dsl.tele.dk) (Ping timeout)
  2642. # [22:40] * Quits: msucan (msucan-@FA9E8863.56E67207.699550A1.IP) (Quit: .)
  2643. # [22:40] * Quits: imanuel (isaac@moz-5CC4F60D.actrix.co.nz) (Quit: leaving)
  2644. # [22:41] * Quits: Goldorak (chatzilla@6B0B3C96.E7E42A7B.187A1082.IP) (Quit: ChatZilla 0.9.87 [Firefox 8.0/20111104165243])
  2645. # [22:41] * Joins: cers (textual@moz-E3288E2B.bynqu1.dynamic.dsl.tele.dk)
  2646. # [22:43] * Quits: clee (clee@moz-BBE3ABD.mv.mozilla.com) (Quit: clee)
  2647. # [22:43] * Joins: dRdR (dRdR@moz-BBE3ABD.mv.mozilla.com)
  2648. # [22:44] * Quits: davidb (davidb@F2D29657.F60B0462.67AC9B1.IP) (Quit: davidb)
  2649. # [22:44] * Joins: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  2650. # [22:44] * Joins: jprmc (jprmc@moz-7F2FF3EB.cpe.net.cable.rogers.com)
  2651. # [22:44] * Joins: njn (chatzilla@moz-3AB664F7.dyn.iinet.net.au)
  2652. # [22:45] * Quits: redfive (chatzilla@moz-B94E1A81.ipnetworksinc.net) (Ping timeout)
  2653. # [22:45] * Joins: redfive (chatzilla@moz-B94E1A81.ipnetworksinc.net)
  2654. # [22:45] <jmaher> philor: you hid reftest on try for android?
  2655. # [22:46] <@bz> is mozilla.com mail still down?
  2656. # [22:46] <hub> IMAP
  2657. # [22:46] <dRdR> bz: no just imap and all email from the 22nd onward is lost
  2658. # [22:46] <hub> try the web mail
  2659. # [22:46] <hub> dRdR: so all, for me
  2660. # [22:46] <dRdR> hub: :(
  2661. # [22:47] <taras> Jesse: no idea
  2662. # [22:47] <@bz> dRdR: _ouch_
  2663. # [22:47] <philor> jmaher: I hid all the permabusted things that we have hidden everywhere else
  2664. # [22:47] * joduinn-mtg is now known as joduinn
  2665. # [22:47] <@bz> dRdR: that... sucks
  2666. # [22:47] <philor> including reftest
  2667. # [22:47] * @bz considers resending some mail
  2668. # [22:47] <dRdR> bz: yeah, apparently someone jinxed a raid 5
  2669. # [22:47] <jmaher> philor: ok; I hope to have most of it fixed next week
  2670. # [22:47] <@bz> dRdR: I assume imap is still being worked on?
  2671. # [22:48] <dRdR> bz: yeah they have it disabled, they can re-enable it at any time
  2672. # [22:48] <dRdR> I forgot their reason for disabling it
  2673. # [22:48] <@bz> hrm
  2674. # [22:48] * Quits: Ziggy_Maes (ZiggyMaes@6B780D9D.A4A6DE76.7B12EFB3.IP) (Ping timeout)
  2675. # [22:48] <dRdR> they sent out an email shortly after webmail was restored so you can read that
  2676. # [22:48] <khuey> so that people don't lose their local copies of their mail
  2677. # [22:48] <dRdR> that would probably be it
  2678. # [22:48] <Jesse> like i lost my local copy of my calendar
  2679. # [22:48] <khuey> if their client syncs with the server
  2680. # [22:50] <@bz> hmm
  2681. # [22:50] <@bz> ok, fair
  2682. # [22:50] <@bz> another question
  2683. # [22:50] <@bz> were the various mozilla.com mailing list archives still working?
  2684. # [22:50] * @bz goes to check
  2685. # [22:50] <@bz> hrm
  2686. # [22:50] <khuey> lists.mozilla.com appears to be ... unhealthy
  2687. # [22:50] <Mook_as> news.mozilla.org was slightly broken yesterday, but got a better today, IIRC?
  2688. # [22:51] * jcranmer|away is now known as jcranmer
  2689. # [22:51] * Joins: smaug (chatzilla@moz-1E1CCE50.gprs.sl-laajakaista.fi)
  2690. # [22:52] * Quits: dcamp (dave@moz-8EBEC133.hsd1.wa.comcast.net) (Quit: Leaving...)
  2691. # [22:52] * Quits: dao (dao@moz-FACBC61B.superkabel.de) (Quit: Leaving.)
  2692. # [22:52] <Callek> Mook_as: news.m.o broken? thats giganews hosted
  2693. # [22:53] <Mook_as> Callek: or just me connection being crap. (yeah, I knew about the giganews part.)
  2694. # [22:53] <Mook_as> I just figured it decided to fall over because, hey, everything-else.mozilla.org was doing it
  2695. # [22:54] <khuey> it probably just felt left out
  2696. # [22:54] <khuey> "all the cool kids are down, why am I still working?"
  2697. # [22:54] * Joins: clee (clee@moz-BBE3ABD.mv.mozilla.com)
  2698. # [22:54] <Callek> lol
  2699. # [22:55] <jhammel> ahal: ping
  2700. # [22:55] <ahal> jhammel: pong
  2701. # [22:55] <jhammel> ahal: sorry, meant to do that in #ateam
  2702. # [22:56] * @bz reads list archives to see what mail he missed
  2703. # [22:56] <jhammel> bz: you've heard we're converting Firefox to a google app engine app right?
  2704. # [22:57] <@bz> jhammel: meh
  2705. # [22:57] * @bz is being serious here
  2706. # [22:57] * Quits: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com) (Ping timeout)
  2707. # [22:57] <@bz> there were some threads that he hadn't realized were still ongoing that people are waiting for answers from him on
  2708. # [22:57] <@bz> I wonder whether we can get mailman to redeliver list mails to moco addresses?
  2709. # [22:58] * Quits: caillon (caillon@moz-186D75E2.hsd1.ca.comcast.net) (Ping timeout)
  2710. # [22:58] * Joins: fang_ (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2711. # [22:58] * Joins: caillon (caillon@moz-186D75E2.hsd1.ca.comcast.net)
  2712. # [22:59] * Joins: fang__ (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2713. # [22:59] * Quits: fang_ (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2714. # [22:59] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Ping timeout)
  2715. # [22:59] * fang__ is now known as fang
  2716. # [22:59] * Joins: fang_ (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2717. # [22:59] * Quits: fang (zfang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Connection reset by peer)
  2718. # [22:59] * fang_ is now known as fang
  2719. # [22:59] * Joins: Ziggy|AWAY (ZiggyMaes@6B780D9D.A4A6DE76.7B12EFB3.IP)
  2720. # [22:59] * Ziggy|AWAY is now known as Ziggy_Maes
  2721. # [23:00] * Joins: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com)
  2722. # [23:00] <Tobbi> Hmm, I just got some compiler warning inside a file for an uninitialized int 'ch'. I copied the function here: http://pastebin.com/C98eUefj Does anyone know where ch gets its value in the first place? I see the value being referenced but we never assign anything to it, am I right?
  2723. # [23:00] * catlee-mtg is now known as catlee
  2724. # [23:01] <Tobbi> (for reference: The function is from nsprpub/pr/src/io/prprf.c
  2725. # [23:01] * Joins: jhammink (textual@moz-7B0110AD.mv.mozilla.com)
  2726. # [23:01] * Quits: smaug (chatzilla@moz-1E1CCE50.gprs.sl-laajakaista.fi) (Input/output error)
  2727. # [23:01] * heycam is now known as heycam|away
  2728. # [23:01] * Joins: rjohnson19 (rjohnson19@moz-9148485F.hsd1.ma.comcast.net)
  2729. # [23:01] <Mook_as> Tobbi: http://mxr.mozilla.org/mozilla-central/source/nsprpub/pr/src/io/prscanf.c#115 ?
  2730. # [23:02] * Quits: Ziggy_Maes (ZiggyMaes@6B780D9D.A4A6DE76.7B12EFB3.IP) (Ping timeout)
  2731. # [23:02] * Joins: smaug (chatzilla@moz-1E1CCE50.gprs.sl-laajakaista.fi)
  2732. # [23:02] <@bz> so in the zimbra webmail
  2733. # [23:03] <@bz> how do I see all the mail?
  2734. # [23:03] <@bz> not just the first 100 of them?
  2735. # [23:03] <Callek> Tobbi: and looks like from scanning that function that all uses of ch are first tested "WITHIN_WIDTH"
  2736. # [23:04] * Quits: smaug (chatzilla@moz-1E1CCE50.gprs.sl-laajakaista.fi) (Ping timeout)
  2737. # [23:04] <dRdR> bz: if you scroll down to the bottom it should keep loading them
  2738. # [23:04] <Tobbi> Alright. I will probably not do anything about that source code then..
  2739. # [23:04] <Tobbi> I was going to init it with 0 just to get rid of the warning.
  2740. # [23:05] <@bz> dRdR: it doesn't
  2741. # [23:05] * jmaher is now known as jmaher|afk
  2742. # [23:05] <dRdR> bz: noscript or something?
  2743. # [23:05] <@bz> nope
  2744. # [23:06] <dRdR> bz: weird, using fx 9 or newer?
  2745. # [23:06] <@bz> An unknown error (mail.NO_SUCH_BLOB) has occurred.
  2746. # [23:06] <dRdR> 0_o I got nothing
  2747. # [23:06] <@bz> using nightly
  2748. # [23:06] <dRdR> same
  2749. # [23:06] <@bz> then after that unknown error, no more loading
  2750. # [23:06] <dRdR> bz: apparently yammer also works
  2751. # [23:07] <@bz> (it's in the "Loading...." state, but no actual loading)
  2752. # [23:07] <dRdR> if you have that it might work
  2753. # [23:07] * @bz doesn't have yammer
  2754. # [23:07] * Quits: nthomas|mtg (chatzilla@E39DA02F.C8F27E0B.44E4C2B.IP) (Ping timeout)
  2755. # [23:07] <dRdR> but not if you set it up now apparently
  2756. # [23:07] <dRdR> okay
  2757. # [23:07] <kbrosnan> bz: old mail
  2758. # [23:07] <Tobbi> Mook_as, Sorry, where you asking where the source code was in mxr I was refererring to?
  2759. # [23:07] <Tobbi> *were
  2760. # [23:07] <@bz> kbrosnan: hmm?
  2761. # [23:07] <@bz> kbrosnan: what about it?
  2762. # [23:07] <Mook_as> Tobbi: no; that's where ch is assigned to.
  2763. # [23:07] <Tobbi> Ah.
  2764. # [23:08] <@bz> ah, I see
  2765. # [23:08] <Mook_as> (conditionally, of course; so you'll want to check that all reads from ch use the same condition)
  2766. # [23:08] <kbrosnan> bz: old mail is not hooked up
  2767. # [23:08] * Quits: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2768. # [23:08] <@bz> if I try to load a mail range that includes an old mail, I get that error and it stops loading altogether
  2769. # [23:08] * Joins: romeo (romeo@moz-2025E6C6.k602.webspeed.dk)
  2770. # [23:08] <@bz> which means that I can't view the mail sorted in ascending date order
  2771. # [23:08] <@bz> lovely
  2772. # [23:08] * @bz cries
  2773. # [23:08] <@bz> ok
  2774. # [23:08] <Tobbi> Mook_as, I probably get some easier warning to start with ;) I'm merely a beginner more or less to this.
  2775. # [23:08] <@bz> that's it for the day
  2776. # [23:08] * bz is now known as bz_away
  2777. # [23:08] * philor is now known as philor|away
  2778. # [23:08] <Tobbi> Mozilla's source is very advanced, I'm glad I got it to compile for the first time.
  2779. # [23:09] * Joins: nthomas|mtg (chatzilla@E39DA02F.C8F27E0B.44E4C2B.IP)
  2780. # [23:09] * Joins: mjschranz_ (mjschranz@445ACC23.531FD64C.630E4E47.IP)
  2781. # [23:09] * Quits: TheLink (TheLink@moz-674305C4.pools.arcor-ip.net) (Client exited)
  2782. # [23:09] * Quits: mjschranz (mjschranz@445ACC23.531FD64C.630E4E47.IP) (Ping timeout)
  2783. # [23:09] * armenzg is now known as armenzg_dinner
  2784. # [23:09] * Joins: dcamp (dave@moz-8EBEC133.hsd1.wa.comcast.net)
  2785. # [23:10] * Quits: caillon (caillon@moz-186D75E2.hsd1.ca.comcast.net) (Quit: caillon)
  2786. # [23:10] * joduinn is now known as joduinn-mtg
  2787. # [23:10] * Quits: DGMurdockIII (dgmurdocki@moz-E933B63.hsd1.il.comcast.net) (Quit: get satisfied! • :: core-networks.de ««« (Gamers.IRC) »»» gamersirc.net ::)
  2788. # [23:11] * Joins: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com)
  2789. # [23:11] * nthomas|mtg is now known as nthomas
  2790. # [23:11] * Quits: Mardak (Mardak@moz-7B0110AD.mv.mozilla.com) (Quit: Mardak)
  2791. # [23:12] * nthomas is now known as nthomas|away
  2792. # [23:12] * Joins: jarib (jarib@5E8BCC57.F2902D31.B1C414DA.IP)
  2793. # [23:13] <NeilAway> dbaron: it's not required, but the point is to use the new method ;-)
  2794. # [23:13] * Quits: hipokrit (hipokrit@moz-502C3BF.rackspace.net) (Quit: Leaving)
  2795. # [23:13] <dRdR> bz_away: I get that ssame error now too, but only when I try to open an older message
  2796. # [23:13] <Tobbi> Mook_as, Never mind. I can initialize it with 0, as it gets passed the proper value later, anyway.
  2797. # [23:13] <Tobbi> So, it won't change anything ;)
  2798. # [23:13] * Joins: DGMurdockIII (dgmurdocki@moz-E933B63.hsd1.il.comcast.net)
  2799. # [23:16] <kbrosnan> dRdR: any message with a recive date before the outage is offline atm
  2800. # [23:16] * Joins: Ziggy_Maes (ZiggyMaes@6B780D9D.A4A6DE76.7B12EFB3.IP)
  2801. # [23:16] <dRdR> kbrosnan: okay, thanks
  2802. # [23:16] <kbrosnan> only the message headers were restored as part of the initial restore
  2803. # [23:17] <kbrosnan> mrz said something about processing the older data over the next several days
  2804. # [23:17] * philor|away is now known as philor
  2805. # [23:17] * Quits: Jesse (jruderman@moz-537BCF9.hsd1.ca.comcast.net) (Quit: Jesse)
  2806. # [23:18] <cpearce> philor: Shall we disable test_fullscreenapi on winxp to reduce the bugspam? It's finally starting to get to me.
  2807. # [23:18] <philor> cpearce: we should indeed
  2808. # [23:18] <cpearce> philor: I will make it happen.
  2809. # [23:19] <philor> sadly, despite having added OS to specialpowers, I don't really know what format it is, so while I suspect you want to .test for "WINNT 5\.1" I'm not entirely sure
  2810. # [23:19] * Joins: eflores (AndChat@538BABFE.A073F3E.97BBD552.IP)
  2811. # [23:20] * Quits: karl (karl@moz-98FDE453.jetstream.xtra.co.nz) (Ping timeout)
  2812. # [23:20] <cpearce> philor: "ifeq ($(OS_ARCH)$(OS_RELEASE),WINNT5.1)" in the makefile seems to be working.
  2813. # [23:21] <ted2> cpearce: that's not gonna work
  2814. # [23:21] * Quits: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  2815. # [23:21] <ted2> we build on Win2k3 machines, which is where the makefiles run
  2816. # [23:21] <philor> and that one build runs on Win7 and WinXP
  2817. # [23:21] <cpearce> Nuts.
  2818. # [23:21] <ted2> but then we run the same build+test package on all the different test machines (winxp, win7)
  2819. # [23:21] <jarib> mrbkap: hi. i work on webdriver (which has an ext. that automates firefox), and i'm hitting some issues with sites that set document.domain and unwrapped elements in the extension
  2820. # [23:22] <jarib> wondering if you're available for a chat
  2821. # [23:22] <philor> cpearce: you want http://mxr.mozilla.org/mozilla-central/source/layout/base/tests/test_reftests_with_caret.html?force=1#97 in the test itself, only for 5\.1 not all win
  2822. # [23:22] * Joins: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  2823. # [23:22] <cpearce> Righto.
  2824. # [23:24] * Quits: Ziggy_Maes (ZiggyMaes@6B780D9D.A4A6DE76.7B12EFB3.IP) (Ping timeout)
  2825. # [23:25] * Quits: wolfiR (wolfiR@moz-DE68FB1B.dip0.t-ipconnect.de) (Quit: Leaving)
  2826. # [23:25] * Quits: smooney (smooney@moz-BBE3ABD.mv.mozilla.com) (Quit: smooney)
  2827. # [23:27] * Joins: wesj (wesj@moz-98EE0B13.w90-46.abo.wanadoo.fr)
  2828. # [23:27] * Joins: smooney (smooney@moz-BBE3ABD.mv.mozilla.com)
  2829. # [23:29] * Joins: damons (gnubeard@moz-8B54AE90.hfc.comcastbusiness.net)
  2830. # [23:29] * Quits: rs (rs@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2831. # [23:29] <Pike> bhearsum: I don't understand your question in bug 698425
  2832. # [23:29] * Quits: juanb|afk (jbecerra@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2833. # [23:29] * catlee is now known as catlee-away
  2834. # [23:29] * rail is now known as rail_away
  2835. # [23:30] * Quits: jhammink (textual@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  2836. # [23:30] * Quits: akeybl (akeybl@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2837. # [23:30] * Quits: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2838. # [23:30] <bhearsum> Pike: you said you wanted to use the build config and tweak it, right?
  2839. # [23:31] * heycam|away is now known as heycam
  2840. # [23:32] <jwir3> ms2ger, ping?
  2841. # [23:32] * Joins: jhammink (textual@moz-7B0110AD.mv.mozilla.com)
  2842. # [23:32] * Joins: rs (rs@moz-BBE3ABD.mv.mozilla.com)
  2843. # [23:32] * bhearsum has to leave in 5min
  2844. # [23:32] * Joins: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com)
  2845. # [23:32] * Joins: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com)
  2846. # [23:32] <jhammel> jwir3: he is gone
  2847. # [23:32] <jwir3> ah
  2848. # [23:32] <jwir3> yes, I just realized that ;)
  2849. # [23:32] <Pike> bhearsum: well, in the patch, not as part of the build process
  2850. # [23:32] <@bz_away> so wait
  2851. # [23:33] <jwir3> no worries, I'll catch him tomorrow :)
  2852. # [23:33] <Pike> I'll comment in the bug again
  2853. # [23:33] <@bz_away> I certainly have mail from after the 22nd
  2854. # [23:33] <bhearsum> ah, ok
  2855. # [23:33] <bhearsum> i might be ok with that
  2856. # [23:33] <@bz_away> what's the actual state of what got lost?
  2857. # [23:33] * bhearsum is now known as bhearsum|afk
  2858. # [23:33] * @bz_away is trying to figure out what he needs to resend
  2859. # [23:33] * Quits: mjschranz_ (mjschranz@445ACC23.531FD64C.630E4E47.IP) (Client exited)
  2860. # [23:33] * bz_away is now known as bz
  2861. # [23:34] <Waldo> bz: note that if the recipients had save-mail-offline set, they might have copies regardless (unless this is stuff sent just super-recently)
  2862. # [23:34] <@bz> gah
  2863. # [23:34] <@bz> $%^$%&^%& zimbra
  2864. # [23:34] * @bz loses a bunch of checks, starts over
  2865. # [23:35] * Quits: cers (textual@moz-E3288E2B.bynqu1.dynamic.dsl.tele.dk) (Ping timeout)
  2866. # [23:35] <@bz> Waldo: I'm interested in stuff I sent recently here
  2867. # [23:35] <Waldo> ah
  2868. # [23:35] * Joins: cers (textual@moz-E3288E2B.bynqu1.dynamic.dsl.tele.dk)
  2869. # [23:35] <@bz> Waldo: I assume old stuff is archived and will appear eventually
  2870. # [23:35] * Joins: bent (chatzilla@moz-55C9388.dynamic-ip.hinet.net)
  2871. # [23:35] <kbrosnan> more or less anything from friday to monday some time
  2872. # [23:36] <kbrosnan> stuff that you sent during that time and currently is missing
  2873. # [23:36] <kbrosnan> anything after they started mail queuing on monday should get through
  2874. # [23:37] * Quits: damons (gnubeard@moz-8B54AE90.hfc.comcastbusiness.net) (Quit: damons)
  2875. # [23:37] * Joins: william (william@moz-F520842D.uwaterloo.ca)
  2876. # [23:38] <kbrosnan> sadly it requires you to know what other mozillians may or may not have read
  2877. # [23:38] <@bz> right
  2878. # [23:38] * @bz will just resend everything he sent in that time interval
  2879. # [23:39] * Quits: bbondy (bbondy@moz-28CF6D1C.home.cgocable.net) (Ping timeout)
  2880. # [23:39] * mattwoodrow is now known as mattwoodrow|away
  2881. # [23:40] <@bz> hrm
  2882. # [23:40] <@bz> there is at least one mail that I think I sent that is not showing up in the list archives either...
  2883. # [23:40] <@bz> was that down for a bit too?
  2884. # [23:40] * Joins: akeybl (akeybl@moz-BBE3ABD.mv.mozilla.com)
  2885. # [23:40] * Standard8 is now known as Standard8Away
  2886. # [23:40] * Quits: Standard8Away (Standard8@B7F1AE36.48015583.54C3481B.IP) (Quit: ZNC - http://znc.in)
  2887. # [23:41] <kbrosnan> check news.mozilla.org directly?
  2888. # [23:42] * Joins: Jesse (jruderman@moz-BBE3ABD.mv.mozilla.com)
  2889. # [23:43] * Quits: lmandel (lmandel@F2D29657.F60B0462.67AC9B1.IP) (Quit: lmandel)
  2890. # [23:43] <jcranmer> you know
  2891. # [23:43] * timA is now known as timA|brb
  2892. # [23:44] <jcranmer> I want to shoot anyone who designed an API that uses wstring
  2893. # [23:44] <jcranmer> I'm fine (although annoyed) with AString
  2894. # [23:44] <jcranmer> but wstring just requires so many hoops
  2895. # [23:45] * Quits: nhirata (nhirata.bu@moz-BBE3ABD.mv.mozilla.com) (Quit: nhirata)
  2896. # [23:45] <jcranmer> especially when you're trying to call it with what is effectively a const char*
  2897. # [23:45] * Joins: loadbang (loadbang@moz-311690C1.range86-166.btcentralplus.com)
  2898. # [23:45] <loadbang> https://web.tweetdeck.com/web/unsupported.html
  2899. # [23:45] <loadbang> :-/
  2900. # [23:45] * Quits: bent (chatzilla@moz-55C9388.dynamic-ip.hinet.net) (Quit: ChatZilla 0.9.87-rdmsoft [XULRunner 1.9.2.19/20110707195905])
  2901. # [23:47] <roc> gah
  2902. # [23:48] <roc> what happens if you spoof the UA?
  2903. # [23:48] <mcpherrin> Tweetdeck's beta works in firefox.
  2904. # [23:48] <mcsmurf> browser detection - some things never change
  2905. # [23:48] * Quits: joey (chatzilla@moz-EFCB4CBF.princetowncable.com) (Quit: ChatZilla 0.9.87 [Firefox 10.0a2/20111206042029])
  2906. # [23:48] <decoder> has anyone seen this build error before? http://pastebin.mozilla.org/1397328
  2907. # [23:49] <philor> "executing negative control" sounds less like a make check failure than military newspeak for wrecking a vehicle
  2908. # [23:49] <khuey> roc: it works
  2909. # [23:49] <khuey> or the page loads, at least
  2910. # [23:49] <loadbang> mcpherrin: I do not think this is the beta.
  2911. # [23:49] * Joins: mdas (mdas@5AAE35B2.5EFFC0B8.24454B25.IP)
  2912. # [23:49] <loadbang> mcpherrin: the beta is now released.
  2913. # [23:49] <mcsmurf> decoder: normal Linux? but no, haven't seen this before
  2914. # [23:50] <decoder> mcsmurf: normal linux, building with clang
  2915. # [23:50] <mcpherrin> loadbang: I see.
  2916. # [23:50] <decoder> I didnt get this error few weeks ago
  2917. # [23:50] <decoder> now it's there
  2918. # [23:50] <decoder> :/
  2919. # [23:50] <roc> mcpherrin: well, that's good
  2920. # [23:50] <khuey> roc: it appears to be fully functional ifyou spoof the UA
  2921. # [23:51] <roc> ha
  2922. # [23:51] <roc> file a tech evangelism bug? start a twitter war?
  2923. # [23:51] <khuey> yeah, I'll file a TE bu
  2924. # [23:51] <khuey> g
  2925. # [23:51] <mcpherrin>
  2926. # [23:52] <khuey> there is a bunch of webkit specific css
  2927. # [23:52] * timeless_xchat1 is now known as timeless_xchat
  2928. # [23:52] * Quits: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP) (Quit: Konversation terminated!)
  2929. # [23:52] * Joins: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP)
  2930. # [23:52] * bwinton is now known as bwinton_away
  2931. # [23:53] * Joins: aja (chatzilla@E496969A.1647490.7880DB15.IP)
  2932. # [23:53] * Quits: evilpie (chatzilla@moz-C3BBCA7D.pools.arcor-ip.net) (Quit: ChatZilla 0.9.87 [Firefox 11.0a1/20111208031134])
  2933. # [23:54] * Joins: lsumar (lsumar@538BABFE.A073F3E.97BBD552.IP)
  2934. # [23:54] <khuey> filed 708857
  2935. # [23:54] * Quits: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com) (Ping timeout)
  2936. # [23:54] <@bz> kbrosnan: this is not a news.mozilla.org list
  2937. # [23:55] * Quits: northWind (northWind@75F08BC5.C672A675.1139E686.IP) (Ping timeout)
  2938. # [23:55] <@bz> khuey: starting a twitter war is not a bad idea either
  2939. # [23:55] <@bz> khuey: make sure to cc Alex Russel, of course
  2940. # [23:55] <khuey> who do I start a war with?
  2941. # [23:55] * khuey has no idea who these tweetdeck people are
  2942. # [23:55] <@bz> khuey: since he's so sure web devs test in multiple engines
  2943. # [23:55] <khuey> ha
  2944. # [23:55] * philor is now known as philor|away
  2945. # [23:56] <@bz> khuey: actually, I'll just directly tweet alex
  2946. # [23:56] * bwinton_away is now known as bwinton
  2947. # [23:56] * Quits: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP) (Quit: Konversation terminated!)
  2948. # [23:56] <khuey> heh, ok
  2949. # [23:56] * Joins: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP)
  2950. # [23:57] * Quits: @mkaply (chatzilla@moz-92EDDD02.lightspeed.austtx.sbcglobal.net) (Ping timeout)
  2951. # [23:57] <gavin> isn't this more likely to be a case of "we tested in firefox but found a bug and couldn't figure out how to fix it"?
  2952. # [23:57] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  2953. # [23:57] * bwinton is now known as bwinton_away
  2954. # [23:57] * Quits: ericjung (Mibbit@5210CFD5.1A5EA44.72B23B3D.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2955. # [23:57] <@bz> gavin: not likely, honestly
  2956. # [23:57] <khuey> well, they're rejecting IE 9 too
  2957. # [23:58] * khuey test opera
  2958. # [23:58] <mcpherrin> They're whitelisting Chrome/Safari.
  2959. # [23:58] <@bz> gavin: more like a case of "we didn't even bother trying to make all our webkit-specific crap work in any other browser, so we'll just block them all"
  2960. # [23:58] <khuey> hmm, I don't have opera anymore
  2961. # [23:58] <gavin> bz: yeah, I guess that's true
  2962. # [23:58] <khuey> bz: it doesn't even look like they have much webkit specific crap
  2963. # [23:58] <@bz> gavin: and since his argument is that webdevs write cross-browser code...
  2964. # [23:58] * timA|brb is now known as timA
  2965. # [23:58] * khuey sees a bit of CSS
  2966. # [23:58] <mcpherrin> They block Opera.
  2967. # [23:58] <@bz> khuey: yeah, well
  2968. # [23:59] <khuey> maybe some of the JS ... /me isn't going to exercise the whole site
  2969. # [23:59] <mcpherrin> I saw a few javascript errors from date parsing
  2970. # [23:59] * Quits: jhk_ (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  2971. # [23:59] <khuey> is tweetdeck actually done by twitter itself?
  2972. # [23:59] <mcpherrin> I think twitter bought them.
  2973. # Session Close: Fri Dec 09 00:00:00 2011

The end :)