/irc-logs / mozilla / #developers / 2012-09-01 / end

Options:

  1. # Session Start: Sat Sep 01 00:00:00 2012
  2. # Session Ident: #developers
  3. # [00:00] <glandium> bz: when you have several programs fighting to create the same file, you can have some fun
  4. # [00:00] * Joins: dherman (dherman@760AC4C2.91CA4A91.90924F23.IP)
  5. # [00:00] <@bz> sure
  6. # [00:00] <glandium> bz: specifically, it depends how GlobalGen.py creates the file
  7. # [00:00] <sid0> basically recursive make considered harmful
  8. # [00:00] <@bz> but why are they fighting?
  9. # [00:00] <sid0> glandium: it's a standard open wb
  10. # [00:00] <@bz> It should have been created once by the initial build in dom/bindings
  11. # [00:01] <@bz> and should now be up to date
  12. # [00:01] <@bz> right?
  13. # [00:01] <sid0> yeah :s
  14. # [00:01] <glandium> bz: because you have n invocations of $(MAKE) -C .. somethingBinding.h, with four different something
  15. # [00:01] * khuey is now known as khuey|away
  16. # [00:01] <sid0> glandium: no, no, before that
  17. # [00:01] * Quits: cjones (cjones@11E71FBB.B8F00FAF.56644CA2.IP) (Ping timeout)
  18. # [00:01] <@bz> right
  19. # [00:01] <sid0> glandium: while dom/bindings was being build
  20. # [00:01] <sid0> er, built
  21. # [00:01] * Quits: pcwalton (pcwalton@moz-7B0110AD.mv.mozilla.com) (Quit: nbvcx)
  22. # [00:01] <@bz> and all of those depend on ParserResults.pkl
  23. # [00:01] <@bz> which should already be up to date
  24. # [00:01] * Joins: odin_ (Odin@moz-66D3502E.zone5.bethere.co.uk)
  25. # [00:01] <@bz> clearly it's not, since there's code rebuilding it!
  26. # [00:01] * @bz is trying to understand why
  27. # [00:02] * Quits: capella (chatzilla@moz-DD0C7E4F.twcny.res.rr.com) (Quit: ChatZilla 0.9.88.2 [Firefox 18.0a1/20120831080444])
  28. # [00:02] <sid0> is there any chance one of its deps gets touched?
  29. # [00:02] <glandium> that could be a genuine bug in pymake
  30. # [00:02] <glandium> or a pure race condition
  31. # [00:02] <sid0> glandium: gnu make does the same thing
  32. # [00:02] <sid0> I think
  33. # [00:02] * Joins: cjones (cjones@11E71FBB.B8F00FAF.56644CA2.IP)
  34. # [00:02] <glandium> look what i had to do for nsinstall https://bug784262.bugzilla.mozilla.org/attachment.cgi?id=656913 because several processes were fighting to compile it
  35. # [00:03] <glandium> and without that, i even was getting segfaults !
  36. # [00:03] * Quits: sliv (spyros@moz-EAB86BCB.cti.gr) (Connection reset by peer)
  37. # [00:03] * Joins: jeremyhu (jeremyhu@moz-75C113CA.outersquare.org)
  38. # [00:03] <glandium> like, nsinstall was there, ran once, twice, and kaboom segfault
  39. # [00:03] * Joins: sliv (livathinos@moz-EAB86BCB.cti.gr)
  40. # [00:04] <glandium> because a gcc that started before the two runs overwrote the program that was built and used by another instance of make
  41. # [00:05] <glandium> and not atomically at that, so the file was not complete by the time the kernel was trying to execute it
  42. # [00:05] * Quits: jeremyhu (jeremyhu@moz-75C113CA.outersquare.org) (Ping timeout)
  43. # [00:05] * catlee is now known as catlee-away
  44. # [00:05] * Joins: capella (chatzilla@moz-DD0C7E4F.twcny.res.rr.com)
  45. # [00:05] * Quits: vikash (vikash@DBCA04FE.38F0169.5D9ABA9F.IP) (Quit: Leaving)
  46. # [00:06] * Joins: pcwalton (pcwalton@moz-7B0110AD.mv.mozilla.com)
  47. # [00:07] * Quits: Archaeopteryx (itsme@moz-756328DB.cust.telecolumbus.net) (Quit: Too much information in my brain driving me insane)
  48. # [00:09] * Quits: cjones (cjones@11E71FBB.B8F00FAF.56644CA2.IP) (Ping timeout)
  49. # [00:09] * Quits: fs (Elchi3@B9C9103E.56629902.2EC4CA51.IP) (Quit: Leaving)
  50. # [00:09] * AaronMT|away is now known as AaronMT|afk
  51. # [00:09] <sid0> glandium: see this build log for example: https://tbpl.mozilla.org/php/getParsedLog.php?id=14881812&tree=Firefox&full=1
  52. # [00:10] <sid0> glandium: this generates GlobalGen.py twice
  53. # [00:10] <sid0> er
  54. # [00:10] <sid0> the pkl file twice
  55. # [00:10] <JonathanS> http://tirania.org/blog/archive/2012/Aug-29.html Funny, was he is a part of GNOME foundation?
  56. # [00:10] <sid0> glandium: and the two are pretty spaced apart so it's maybe not a race
  57. # [00:10] <sid0> maybe some dependency does seem out of date to make
  58. # [00:10] <sid0> :|
  59. # [00:11] <mbrubeck> JonathanS: He was the founder of the GNOME project. :/
  60. # [00:11] <glandium> sid0: mmmm these are far from each other
  61. # [00:11] <sid0> glandium: exactly
  62. # [00:11] <sid0> glandium: I think a make/pymake debug run will help
  63. # [00:11] * Joins: cjones (cjones@15798911.D822C0E9.56644CA2.IP)
  64. # [00:11] <sid0> I'll try to do one tomorrow
  65. # [00:11] <JonathanS> mbrubeck, so it was his fault to make GNOME sucks?
  66. # [00:12] <mbrubeck> JonathanS: And yes, he was one of the original board members of the GNOME Foundation
  67. # [00:13] * Joins: Mossop_ (mossop@E9758364.9EC0A5AF.CFE928A7.IP)
  68. # [00:13] * Quits: Mossop (mossop@E9758364.9EC0A5AF.CFE928A7.IP) (Ping timeout)
  69. # [00:14] * Quits: aki (aki@moz-A18C1E59.members.linode.com) (Quit: ZNC - http://znc.sourceforge.net)
  70. # [00:14] * joduinn-food is now known as joduinn
  71. # [00:14] * Mossop_ is now known as Mossop
  72. # [00:14] * Quits: evilpie (chatzilla@moz-6C259A01.pools.arcor-ip.net) (Quit: ChatZilla 0.9.88.2 [Firefox 15.0/20120825192204])
  73. # [00:15] * Quits: KWierso|Home (chatzilla@moz-296B3117.hsd1.ca.comcast.net) (Ping timeout)
  74. # [00:15] * Joins: brendan (brendaneic@A2C92C1B.6A726B95.DCA7D3F.IP)
  75. # [00:15] * Quits: ishan_jain (ishan@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  76. # [00:15] <jesup> !seen standard8
  77. # [00:15] <firebot> standard8 was last seen 4 hours, 38 minutes and 14 seconds ago, changing nick to Standard8Away.
  78. # [00:16] <JonathanS> mbrubeck, I'm not keen of GNOME and Ubuntu.
  79. # [00:16] * Joins: KWierso|Home (chatzilla@moz-296B3117.hsd1.ca.comcast.net)
  80. # [00:17] * Joins: JeroenDeDauw (jeroen@3D8B249.714666EF.52AB9A83.IP)
  81. # [00:17] <glandium> sid0: running make in dom/bindings runs BindingGen for each file each time
  82. # [00:17] * rail is now known as rail_away
  83. # [00:17] <glandium> but not GlobalGen. at least not here
  84. # [00:18] * philor|away is now known as philor
  85. # [00:18] * Quits: beaufour (beaufour@moz-DC1D9B4C.nycmny.fios.verizon.net) (Quit: beaufour)
  86. # [00:18] * bz is now known as bz_away
  87. # [00:19] <glandium> sid0: it doesn't seem to happen on my builds (i don't know if it's old or new, but an aurora build from today (which i have the full log for) ran GlobalGen only once
  88. # [00:20] <sid0> :s
  89. # [00:20] * Joins: bnicholson (bnicholson@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  90. # [00:20] * Quits: @smaug (chatzilla@moz-3C907DEA.elisa-laajakaista.fi) (Ping timeout)
  91. # [00:21] <glandium> sid0: i found it, i think
  92. # [00:22] <glandium> sid0: looks like the python scripts are trying to be smart, and don't touch the file if they don't change in content
  93. # [00:22] <glandium> since they don't touch the file... make will try to recreate them because their dependencies are still newer
  94. # [00:22] <sid0> fffffuuuuuuuu
  95. # [00:23] <glandium> at least, that's what happens with bindinggen
  96. # [00:23] <glandium> i guess globalgen does the same
  97. # [00:23] * jcranmer|away is now known as jcranmer
  98. # [00:23] * Joins: pwalton (pcwalton@moz-BBE3ABD.mv.mozilla.com)
  99. # [00:23] <glandium> indeed, it does
  100. # [00:23] <sid0> bah
  101. # [00:24] * Quits: pcwalton (pcwalton@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  102. # [00:24] * pwalton is now known as pcwalton
  103. # [00:24] <@bz_away> globalgen always writes the pkl, no?
  104. # [00:25] * Quits: teoli_ (teoli@EDB1D55.195E6A26.F1085784.IP) (Input/output error)
  105. # [00:25] * @bz_away did check that
  106. # [00:25] <glandium> bz_away: if replaceFileIfChanged(filename, code):
  107. # [00:25] <glandium> ah ParserResults.pkl is always written, true
  108. # [00:27] * Quits: RealRaven (Thunderbir@C6BC2410.D3E479AE.C3498625.IP) (Client exited)
  109. # [00:28] * Joins: aki (aki@moz-A18C1E59.members.linode.com)
  110. # [00:28] * Quits: ketas (ketas@195.20.191.90.dyn.estpak.ee) (Quit: Changing server)
  111. # [00:28] * Quits: JeroenDeDauw (jeroen@3D8B249.714666EF.52AB9A83.IP) (Ping timeout)
  112. # [00:28] * Joins: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com)
  113. # [00:29] * Quits: smooney (smooney@moz-57825793.hsd1.ca.comcast.net) (Ping timeout)
  114. # [00:29] * Quits: lmandel (lmandel@moz-E928DD26.dsl.bell.ca) (Quit: lmandel)
  115. # [00:31] <glandium> sid0: wait, that log you linked... obviously it's going to run twice on a osx universal build, where we build the tree once for x86 and once for x86-64, in two different objdirs
  116. # [00:32] <sid0> glandium: I'm pretty sure I found Linux builds too
  117. # [00:32] <sid0> hmm
  118. # [00:32] * Quits: myk (myk@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  119. # [00:32] * Quits: dherman (dherman@760AC4C2.91CA4A91.90924F23.IP) (Ping timeout)
  120. # [00:32] * Joins: myk (myk@moz-BBE3ABD.mv.mozilla.com)
  121. # [00:32] <sid0> glandium: but yes I'll look at it tomorrow
  122. # [00:33] <glandium> sid0: i still think race conditions can happen
  123. # [00:33] * Quits: brendan (brendaneic@A2C92C1B.6A726B95.DCA7D3F.IP) (Quit: brendan)
  124. # [00:33] <sid0> I'm sure they can
  125. # [00:33] <glandium> sid0: but two clearly separate runs shouldn't be happening
  126. # [00:33] <sid0> I don't see the point of replaceFileIfChanged *at all*
  127. # [00:34] <sid0> if you're called to make it you obviously *must* touch it
  128. # [00:34] <sid0> that's the entire point of your existence
  129. # [00:34] <sid0> unless I'm missing something
  130. # [00:34] <glandium> you'd be rebuilding the world
  131. # [00:34] <glandium> or whatever includes these bindings
  132. # [00:34] <sid0> well if the target were up to date you'd not be run in the first place
  133. # [00:35] <sid0> that's my point
  134. # [00:35] <glandium> sid0: look at the dependencies for these files
  135. # [00:35] <glandium> any of these deps can have modifications that do not impact the content of the resulting files
  136. # [00:35] <sid0> well then why is it a dependency
  137. # [00:35] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d0789db68c77 - Luke Wagner - Bug 787246 - rm OffTheBooks/Foreground/UnwantedForeground gunk (r=billm)
  138. # [00:35] <glandium> Like, changing the MPL license on the py script :)
  139. # [00:35] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/949ade2a2ea1 - Luke Wagner - Bug 787291 - add pod_malloc<T> et al (r=billm)
  140. # [00:36] * Quits: StockHunter (StockHunte@moz-C0D4659B.ldv-co.client.bresnan.net) (Quit: KVIrc 4.0.4 Insomnia http://www.kvirc.net/)
  141. # [00:36] <sid0> the result should absolutely be touched
  142. # [00:36] <sid0> the world should absolutely be rebuilt if you're changing a comment
  143. # [00:36] <glandium> sid0: i don't agree
  144. # [00:36] <sid0> that's how make works!
  145. # [00:36] <sid0> make expects recipes to leave targets newer than dependencies
  146. # [00:36] <glandium> sid0: look at it this way: you have a script that generates headers
  147. # [00:36] <glandium> you change the script to handle a new type, for a new header
  148. # [00:37] <glandium> do you want the other headers to be regenerated?
  149. # [00:37] <sid0> yes!
  150. # [00:37] <gps> yes
  151. # [00:37] <sid0> otherwise the entire premise of make falls apart
  152. # [00:37] * Quits: xakz (XaMaD@moz-34FBE388.fbx.proxad.net) (Ping timeout)
  153. # [00:38] <glandium> i certainly don't
  154. # [00:38] <@roc> tjereno need
  155. # [00:38] <@roc> blah
  156. # [00:38] * Quits: Yoric (Yoric@moz-920DB13B.fbx.proxad.net) (Connection reset by peer)
  157. # [00:38] <sid0> at the end of a recipe, the target should be newer than all the dependencies
  158. # [00:38] <@roc> there's no need to nag me for reviews less than one hour after requesting the review. Especially during the weekend.
  159. # [00:38] * Quits: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com) (Quit: bmoss)
  160. # [00:39] <@gavin> oh. I thought "tjereno need" was your password.
  161. # [00:39] <sid0> glandium: if your compiler changed wouldn't you want to rebuild the world?
  162. # [00:39] <sid0> regardless of whether the object file is the same
  163. # [00:39] <glandium> sid0: in practice, in our case, it's not so much of a problem, because it just means you may be running the rule again a few times and, more importantly, avoid rebuilding a lot of files
  164. # [00:39] * Joins: ketas (ketas@195.20.191.90.dyn.estpak.ee)
  165. # [00:39] <sid0> well then these sorts of problems are always going to happen
  166. # [00:40] <sid0> you either buy into how make works or you don't
  167. # [00:40] <glandium> sid0: no, because they only happen because we do recursive make
  168. # [00:40] * Joins: cc (cc@moz-C24560BF.w92-140.abo.wanadoo.fr)
  169. # [00:40] <@roc> gavin: hey, that is a good password. I think I'll useit.
  170. # [00:40] <sid0> well it's a combination
  171. # [00:41] * Quits: mkaply (mkaply@moz-92EDDD02.lightspeed.austtx.sbcglobal.net) (Quit: mkaply)
  172. # [00:41] <glandium> non-recursive make doesn't need the target to even exist to consider it fulfilled once run
  173. # [00:41] * Joins: luke (andhow@moz-BBE3ABD.mv.mozilla.com)
  174. # [00:41] <glandium> even when not phony
  175. # [00:41] <sid0> sure I agree
  176. # [00:41] <luke> dbaron: RAMPAGE
  177. # [00:41] <sid0> absolutely
  178. # [00:42] <sid0> ok, let me rephrase -- it's the entire premise of recursive make, where there's a good chance a target will be run multiple times
  179. # [00:42] <sid0> and it had better be newer than its deps after the first time
  180. # [00:43] <glandium> sid0: and in our case, running a few rules a couple times is better then rebuilding everything
  181. # [00:43] <sid0> hm
  182. # [00:43] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/ec63d3b35553 - Brian Nicholson - Bug 786842 - Fix replaceBrs() typo for checking whitespace. r=lucasr
  183. # [00:44] * nmatsakis is now known as nmatsakis-away
  184. # [00:44] <sid0> I wonder how hard it would be to switch over just dom/ to non-recursive make
  185. # [00:45] * padenot is now known as padenot|away
  186. # [00:45] <billm> dbaron: ping
  187. # [00:45] <@dbaron> billm, pong
  188. # [00:45] <billm> dbaron: do you have a list of all the bugs you're closing?
  189. # [00:46] * Quits: lduros (lduros@moz-D41962F7.phil.east.verizon.net) (Ping timeout)
  190. # [00:46] <@dbaron> billm, yes
  191. # [00:46] <billm> dbaron: could you post it in the bad slave bug?
  192. # [00:46] <@dbaron> billm, I'm trying to figure out how to turn the result of a query into a list
  193. # [00:46] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/d474bda79729 - Brian Nicholson - Bug 786623 - Use mobile UA for YouTube on tablets. r=mfinkle
  194. # [00:47] <billm> dbaron: it looks like you can get query results in XML (and maybe CSV)
  195. # [00:48] * Joins: lduros (lduros@moz-D41962F7.phil.east.verizon.net)
  196. # [00:48] <billm> dbaron: the csv looks pretty simple. could you just post that?
  197. # [00:49] * padenot|away is now known as padenot
  198. # [00:49] * Quits: jimm (jmathies@moz-7F164CA1.pn.at.cox.net) (Quit: )
  199. # [00:51] <@dbaron> billm, posted to bug
  200. # [00:51] <billm> dbaron: thanks
  201. # [00:53] <@dbaron> billm, er, sorry, there was a midair collision... now it's really posted
  202. # [00:56] * Quits: karl (karl@moz-8FA687C8.jetstream.xtra.co.nz) (Ping timeout)
  203. # [00:57] * Misanthrope is now known as John-Galt
  204. # [00:58] * Joins: Yoric (Yoric@moz-920DB13B.fbx.proxad.net)
  205. # [00:59] * Quits: florian (Instantbir@moz-87C33FDA.kimsufi.com) (Quit: Instantbird 1.3a1pre -- http://www.instantbird.com)
  206. # [01:01] * Quits: Yoric (Yoric@moz-920DB13B.fbx.proxad.net) (Ping timeout)
  207. # [01:02] * padenot is now known as padenot|away
  208. # [01:03] * Quits: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP) (Ping timeout)
  209. # [01:04] * Quits: Mossop (mossop@E9758364.9EC0A5AF.CFE928A7.IP) (Ping timeout)
  210. # [01:04] * Quits: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk) (Quit: This computer has gone to sleep)
  211. # [01:04] * Joins: Yoric (Yoric@moz-920DB13B.fbx.proxad.net)
  212. # [01:05] * Quits: jgriffin (jgriffin@moz-DD9CBA45.hsd1.wa.comcast.net) (Quit: jgriffin)
  213. # [01:05] <@gavin> jdm: did I do the whiteboard annotations right on https://bugzilla.mozilla.org/show_bug.cgi?id=721165 ?
  214. # [01:05] * Joins: jgriffin (jgriffin@moz-DD9CBA45.hsd1.wa.comcast.net)
  215. # [01:06] * davehunt|away is now known as davehunt
  216. # [01:06] * Quits: robhawkes (robhawkes@moz-33A339B7.dsl.cnl.uk.net) (Quit: Leaving...)
  217. # [01:07] <@roc> why am I getting "zip error: Nothing to do! (/home/roc/obj-central/obj-fennec-debug/mobile/android/installer/../../../dist/gecko.ap_)" trying to "make package" a Fennec debug build?
  218. # [01:11] <jdm> gavin: yep!
  219. # [01:13] * Quits: AaronMT|afk (AaronMT@moz-5DF3A271.cpe.net.cable.rogers.com) (Quit: Textual IRC Client: www.textualapp.com)
  220. # [01:15] * callek-afk is now known as Callek
  221. # [01:15] * Quits: Goldorak (chatzilla@5DBDFA7B.6D3510EC.187A1082.IP) (Ping timeout)
  222. # [01:15] * Quits: jdm (jdm@F2D29657.F60B0462.67AC9B1.IP) (Quit: Lost terminal)
  223. # [01:16] * davehunt is now known as davehunt|away
  224. # [01:16] * Joins: merinui (merinui@moz-1D8A7606.osk2.eonet.ne.jp)
  225. # [01:16] * Joins: Goldorak (chatzilla@5DBDFA7B.6D3510EC.187A1082.IP)
  226. # [01:17] * Quits: Goldorak (chatzilla@5DBDFA7B.6D3510EC.187A1082.IP) (Quit: ChatZilla 0.9.88-rdmsoft [XULRunner 1.9.0.17/2009122204])
  227. # [01:21] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/a412d39f5526 - Rafael Ávila de Espíndola - Bug 787568 - Upgrade clang to r161152. r=rail.
  228. # [01:21] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/98a37bb0fbdc - Rafael Ávila de Espíndola - Bug 787568 - Upgrade clang to r161152. r=rail.
  229. # [01:22] * Quits: Yoric (Yoric@moz-920DB13B.fbx.proxad.net) (Connection timed out)
  230. # [01:22] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Client exited)
  231. # [01:22] * Quits: ircloggr (nodebot@moz-96935DC4.compute-1.amazonaws.com) (Client exited)
  232. # [01:23] * Quits: Nikopol (nikopol@moz-68B53A37.chaosorigin.com) (Ping timeout)
  233. # [01:23] * Joins: Nikopol (nikopol@moz-68B53A37.chaosorigin.com)
  234. # [01:23] * Joins: ircloggr (nodebot@moz-61E413B7.compute-1.amazonaws.com)
  235. # [01:23] * padenot|away is now known as padenot
  236. # [01:24] * padenot is now known as padenot|away
  237. # [01:26] * Quits: ehsan (ehsan@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  238. # [01:26] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/26e4b997779e - Wes Johnston - backout 58b937c070d6
  239. # [01:26] * Quits: ejpbruel (ejpbruel@E9758364.9EC0A5AF.CFE928A7.IP) (Ping timeout)
  240. # [01:26] * Joins: Mano (mano@4AE6E53A.EC757A99.39716721.IP)
  241. # [01:32] * Joins: jeremyhu (jeremyhu@moz-75C113CA.outersquare.org)
  242. # [01:32] * Joins: jeremyhu|nanake (jeremyhu@moz-BA77680E.cs.berkeley.edu)
  243. # [01:34] * Quits: jeremyhu (jeremyhu@moz-75C113CA.outersquare.org) (Ping timeout)
  244. # [01:35] <Callek> espindola: I'm realy busy right now, but my point with |To make our infra use something from in tree is a much different/bigger problem, and would need to change whether we did that from in talos or in m-c as far as "where does the code live".| was not that we shouldn't/can't make the changes to make it better -- only that "move talos from here to there" is a net 0 win, doesn't make that...
  245. # [01:35] <Callek> ...easier at all, like was said in the comment I replied against
  246. # [01:36] <espindola> Callek, and my point is that it is a way
  247. # [01:36] <espindola> I have idea how hard it is
  248. # [01:36] <espindola> and yes, I am really busy too
  249. # [01:36] * Joins: azakai (alon@moz-BBE3ABD.mv.mozilla.com)
  250. # [01:37] <Callek> espindola: "it is a way" doesn't translate to "it makes that easier"
  251. # [01:38] * Joins: drexler (chatzilla@moz-BD26ECCD.hsd1.vt.comcast.net)
  252. # [01:38] <espindola> lets please discuss on the bug, not everyone is reading #developers
  253. # [01:39] * padenot|away is now known as padenot
  254. # [01:40] * Joins: lmandel (lmandel@moz-E928DD26.dsl.bell.ca)
  255. # [01:40] * Joins: jgilbert (jgilbert@moz-BBE3ABD.mv.mozilla.com)
  256. # [01:41] * Quits: Mano (mano@4AE6E53A.EC757A99.39716721.IP) (Client exited)
  257. # [01:41] * Joins: brendan (brendaneic@moz-41BA54D6.dynamic.adsl.gvt.net.br)
  258. # [01:41] * nmatsakis-away is now known as nmatsakis
  259. # [01:42] * Quits: tn (tn@moz-2E73ACE4.wp.shawcable.net) (Ping timeout)
  260. # [01:42] * padenot is now known as padenot|away
  261. # [01:42] * Quits: lmandel (lmandel@moz-E928DD26.dsl.bell.ca) (Ping timeout)
  262. # [01:44] * Quits: todesschaf (hurley@moz-E76806A0.dsl.static.sonic.net) (Quit: todesschaf)
  263. # [01:44] * Quits: Asa (asa@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  264. # [01:46] * Joins: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com)
  265. # [01:46] * Joins: darktrojan (geoff@moz-30B3CCFD.telstraclear.net)
  266. # [01:49] * Quits: smagnin (pike@moz-DEF53BC9.fbx.proxad.net) (Client exited)
  267. # [01:50] * Quits: mccr8 (mccr8@moz-BBE3ABD.mv.mozilla.com) (Quit: mccr8)
  268. # [01:51] * Quits: odin_ (Odin@moz-66D3502E.zone5.bethere.co.uk) (Ping timeout)
  269. # [01:51] * mattwoodrow|away is now known as mattwoodrow
  270. # [01:52] * Joins: tn (tn@moz-2E73ACE4.wp.shawcable.net)
  271. # [01:53] * Joins: RealRaven (Thunderbir@C6BC2410.D3E479AE.C3498625.IP)
  272. # [01:53] * Quits: cpeterson (cpeterson@moz-175D1473.hsd1.ca.comcast.net) (Input/output error)
  273. # [01:53] * Quits: jimb (user@9E727688.17C2F9C.163DC5C6.IP) (Input/output error)
  274. # [01:54] * Quits: RealRaven (Thunderbir@C6BC2410.D3E479AE.C3498625.IP) (Client exited)
  275. # [01:54] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/fb8074886fb0 - Jeff Gilbert - Bug 784925 - Add MakeCurrent for OGL Layers Readback path - r=bjacob
  276. # [01:56] * padenot|away is now known as padenot
  277. # [01:57] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/7f57250ac7d1 - Jeff Gilbert - Bug 735932 - Fix no-alpha ReadPixels on Mac+nVidia - r=bjacob
  278. # [01:57] * padenot is now known as padenot|away
  279. # [01:59] * Quits: sfink (chatzilla@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  280. # [02:00] * Quits: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com) (Ping timeout)
  281. # [02:01] * Joins: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com)
  282. # [02:02] * padenot|away is now known as padenot
  283. # [02:02] <Callek> dbaron: without looking [yet] does your bad slave script have any protection for short lived intermittents taht are obsolete now -- as well?
  284. # [02:02] <@dbaron> Callek, the script doesn't directly blame a particular slave; there's an assumption that there will be some of those
  285. # [02:03] <Callek> incase they were single or twice-only marked to a slave, but long since code-fixed, and said slave ran 1,000's of jobs since then
  286. # [02:03] * Quits: bdahl (bdahl@moz-BBE3ABD.mv.mozilla.com) (Client exited)
  287. # [02:03] <@dbaron> Callek, What I was looking at were slaves that had a disproportionate number of "this slave was the only slave ever to see a particular bug"
  288. # [02:03] <Callek> dbaron: I guess more "did you check on those types of issues as you called out slaves"
  289. # [02:03] <@dbaron> Callek, e.g., in many cases, almost all the slaves have 0-3 occurrences of being the only slave to see a bug
  290. # [02:03] <@dbaron> Callek, and then there was a slave with 15 and another with 20
  291. # [02:03] <Callek> if you think its irrelevant I'll take your word for it here
  292. # [02:04] <@dbaron> Callek, I think it's not relevant.
  293. # [02:04] <@dbaron> Callek, as I went through the bugs, there were quite a few that had only happened once
  294. # [02:04] <Callek> yea 15 bugs for one slave, in a relatively recent date is a good indicator of "bad slave"
  295. # [02:04] <Callek> :-)
  296. # [02:04] * Quits: gaston (landry@moz-2911F07A.rhaalovely.net) (Ping timeout)
  297. # [02:04] * geekboy is now known as geekboy|afk
  298. # [02:04] <@dbaron> Callek, but there were also quite a few that happened multiple times but only on one or two particular slaves
  299. # [02:04] <Callek> dbaron: thanks for that script/investigation btw. really helpful!
  300. # [02:05] <@dbaron> sure
  301. # [02:05] * Joins: bdahl (bdahl@moz-BBE3ABD.mv.mozilla.com)
  302. # [02:08] * Quits: tanvi (tanvi@moz-9440AA69.hsd1.ca.comcast.net) (Quit: Leaving.)
  303. # [02:09] * Quits: andersh_ (andersh@moz-E9E49875.bredband.3.dk) (Connection reset by peer)
  304. # [02:10] * Quits: myk (myk@moz-BBE3ABD.mv.mozilla.com) (Quit: Instantbird 1.3a1pre -- http://www.instantbird.com)
  305. # [02:10] * Quits: jgriffin (jgriffin@moz-DD9CBA45.hsd1.wa.comcast.net) (Quit: goes to refill his long margarita)
  306. # [02:11] * Joins: gaston (landry@moz-2911F07A.rhaalovely.net)
  307. # [02:12] * Quits: sworkman (sworkman@moz-825EC923.hsd1.ca.comcast.net) (Quit: sworkman)
  308. # [02:13] * Joins: mccr8 (mccr8@moz-EB2F197F.dsl.dynamic.sonic.net)
  309. # [02:14] * Quits: bdahl (bdahl@moz-BBE3ABD.mv.mozilla.com) (Client exited)
  310. # [02:16] * Joins: jimb (user@9E727688.17C2F9C.163DC5C6.IP)
  311. # [02:17] * Quits: akeybl (akeybl@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving...)
  312. # [02:18] * Joins: mccr8_ (mccr8@moz-EB2F197F.dsl.dynamic.sonic.net)
  313. # [02:18] * Quits: mccr8_ (mccr8@moz-EB2F197F.dsl.dynamic.sonic.net) (Quit: mccr8_)
  314. # [02:19] * Quits: mccr8 (mccr8@moz-EB2F197F.dsl.dynamic.sonic.net) (Ping timeout)
  315. # [02:19] * Joins: mccr8 (mccr8@moz-EB2F197F.dsl.dynamic.sonic.net)
  316. # [02:19] * Joins: akeybl (akeybl@moz-BBE3ABD.mv.mozilla.com)
  317. # [02:19] * Joins: Yoric (Yoric@moz-920DB13B.fbx.proxad.net)
  318. # [02:19] * Joins: reuben (reuben@moz-3D306503.res-com.wayinternet.com.br)
  319. # [02:19] * Quits: bnicholson (bnicholson@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: Leaving)
  320. # [02:20] <reuben> !seen jdm
  321. # [02:20] <firebot> jdm was last seen 68 minutes and 14 seconds ago, saying 'gavin: yep!' in #developers.
  322. # [02:20] * Quits: akeybl (akeybl@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving...)
  323. # [02:21] * Quits: mcomella (mcomella@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: Leaving.)
  324. # [02:21] * Quits: brendan (brendaneic@moz-41BA54D6.dynamic.adsl.gvt.net.br) (Quit: brendan)
  325. # [02:22] * Joins: ekr (ekr@moz-A62EC22B.hfc.comcastbusiness.net)
  326. # [02:22] * Quits: darin (darin@moz-CD91E596.google.com) (Ping timeout)
  327. # [02:23] * Quits: TheLink (TheLink@moz-7DF028C8.pools.arcor-ip.net) (Client exited)
  328. # [02:23] * Quits: jhammel (jhammel@moz-E31CD2CB.mozilla.org) (Quit: leaving)
  329. # [02:23] * Quits: lduros (lduros@moz-D41962F7.phil.east.verizon.net) (Client exited)
  330. # [02:26] * NeilAway wonders whether froydnj read hg revsets and (more importantly) whether it was actually helpful
  331. # [02:28] * Quits: Mardak (Mardak@moz-BBE3ABD.mv.mozilla.com) (Quit: Mardak)
  332. # [02:29] * Quits: ctopper (craig@C3495DA.BA3DBA56.AE2B2F80.IP) (Quit: ctopper)
  333. # [02:30] * Quits: stevee (Miranda@moz-17087BE2.cable.virginmedia.com) (Quit: Miranda IM - Multi protocol instant messenger @ www.miranda-im.org)
  334. # [02:33] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/7a86d43be76f - Shane Caraveo - Bug 787093 - Some links from social dialogs open in the current tab. r=gavin
  335. # [02:33] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/7a3368523776 - Jonathan Griffin - Bug 787520 - Fix test_log.py, a=test-only, DONTBUILD because NPOTB
  336. # [02:33] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/e3e7f8f7796d - Jonathan Griffin - Bug 779011 - Clean up properly after JS exceptions during async_execute calls, a=test-only, DONTBUILD because NPOTB
  337. # [02:33] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/62bfaa4500ca - Ryan VanderMeulen - Merge m-c to inbound.
  338. # [02:33] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/e56edfeb2bb4 - Philipp von Weitershausen - Back out 982d02faef3f (bug 777145) for B2G marionette bustage
  339. # [02:33] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/b772555c0fcc - Philipp von Weitershausen - Merge a PGO-green inbound changeset to m-c.
  340. # [02:34] * Quits: Yoric (Yoric@moz-920DB13B.fbx.proxad.net) (Input/output error)
  341. # [02:38] * Quits: @roc (chatzilla@C0ACF8B.5E1E9EEA.613E47D1.IP) (Ping timeout)
  342. # [02:39] * Joins: roc (chatzilla@C0ACF8B.5E1E9EEA.613E47D1.IP)
  343. # [02:39] * ChanServ sets mode: +o roc
  344. # [02:40] * Quits: espadrine (thaddee_ty@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  345. # [02:42] * Quits: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com) (Ping timeout)
  346. # [02:42] * khuey|away is now known as khuey
  347. # [02:44] * Joins: ekr_ (ekr@moz-D7997EC8.rtfm.com)
  348. # [02:44] * Quits: hobophobe (hobophobe@CEB7969B.BA9CDF59.295A79F4.IP) (Quit: Ommm.......)
  349. # [02:47] * Joins: odin_ (Odin@moz-66D3502E.zone5.bethere.co.uk)
  350. # [02:47] * Quits: dzbarsky (Adium@moz-59812CB1.hsd1.pa.comcast.net) (Quit: Leaving.)
  351. # [02:48] * Quits: valenting (Thunderbir@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  352. # [02:49] * Joins: Mardak (Mardak@moz-2BCEAB1.dsl.static.sonic.net)
  353. # [02:50] * Joins: dzbarsky (Adium@moz-59812CB1.hsd1.pa.comcast.net)
  354. # [02:52] * Joins: surkov (surkov@CE4382E5.84614B10.33A1AC3C.IP)
  355. # [02:52] * philor is now known as philor|away
  356. # [02:53] * Joins: sfink (chatzilla@moz-AB059898.dsl.pltn13.sbcglobal.net)
  357. # [02:53] * Quits: marco (Thunderbir@3A4EDD25.A00BAEB.10DC0B64.IP) (Quit: marco)
  358. # [02:54] * Quits: Mook_as (mook@moz-1FCC0032.activestate.com) (Quit: ChatZilla 0.9.88-rdmsoft [XULRunner 1.9.2.13/20101203074205])
  359. # [02:54] * Joins: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
  360. # [02:58] * Quits: ekr (ekr@moz-A62EC22B.hfc.comcastbusiness.net) (Quit: ekr)
  361. # [02:58] * ekr_ is now known as ekr
  362. # [02:58] * Joins: ericjung (Mibbit@moz-F14FA912.bstnma.fios.verizon.net)
  363. # [02:59] * Joins: Asa (asa@D13E5E3F.A1EC5031.204CA821.IP)
  364. # [02:59] * ewong|away is now known as ewong
  365. # [03:03] * Quits: cc (cc@moz-C24560BF.w92-140.abo.wanadoo.fr) (Quit: cc)
  366. # [03:04] * mattwoodrow is now known as mattwoodrow|away
  367. # [03:05] * Quits: jeremyhu|nanake (jeremyhu@moz-BA77680E.cs.berkeley.edu) (Input/output error)
  368. # [03:05] * Joins: jeremyhu (jeremyhu@moz-BA77680E.cs.berkeley.edu)
  369. # [03:06] * Quits: jimb (user@9E727688.17C2F9C.163DC5C6.IP) (Input/output error)
  370. # [03:06] * Quits: jeremyhu (jeremyhu@moz-BA77680E.cs.berkeley.edu) (Input/output error)
  371. # [03:08] * Quits: TheOne (one@moz-C7043CC6.dip.t-dialin.net) (Input/output error)
  372. # [03:08] * Joins: cc (cc@moz-C24560BF.w92-140.abo.wanadoo.fr)
  373. # [03:09] * Joins: jeremyhu (jeremyhu@moz-BA77680E.cs.berkeley.edu)
  374. # [03:10] * Quits: @dbaron (dbaron@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Ping timeout)
  375. # [03:10] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/078f3af11d13 - Boris Zbarsky - Bug 786105. Setting inline style properties to null should remove them, just like setting them to empty string does. r=peterv
  376. # [03:10] * Quits: jduell (jduell@moz-88E2A9EB.hsd1.wa.comcast.net) (Ping timeout)
  377. # [03:12] * Quits: reuben (reuben@moz-3D306503.res-com.wayinternet.com.br) (Ping timeout)
  378. # [03:14] * Quits: FusedTogether (Thunderbir@8CCD9A70.E49ADE39.2D7E49EB.IP) (Quit: FusedTogether)
  379. # [03:14] * Quits: sewardj (sewardj@moz-6B3F705D.dip.t-dialin.net) (Ping timeout)
  380. # [03:15] * Joins: sewardj (sewardj@moz-59562E5C.dip.t-dialin.net)
  381. # [03:15] * Quits: Boriss (FlyingToas@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: Boriss)
  382. # [03:19] * Quits: Mardak (Mardak@moz-2BCEAB1.dsl.static.sonic.net) (Quit: Mardak)
  383. # [03:19] * Quits: pcwalton (pcwalton@moz-BBE3ABD.mv.mozilla.com) (Quit: pcwalton)
  384. # [03:20] * Joins: jeremyhu|nanake (jeremyhu@moz-75C113CA.outersquare.org)
  385. # [03:20] * Joins: Mardak (Mardak@moz-2BCEAB1.dsl.static.sonic.net)
  386. # [03:21] * Joins: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net)
  387. # [03:21] * Quits: philipp64|laptop (chatzilla@moz-B40B9015.ctcweb.net) (Ping timeout)
  388. # [03:22] * Quits: jeremyhu|nanake (jeremyhu@moz-75C113CA.outersquare.org) (Ping timeout)
  389. # [03:22] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/77c30c1388ee - Siddharth Agarwal - Bug 787600 - Pymake: Shell commands in submakes don't honour exported PATH and don't receive exported envvars. r=gps
  390. # [03:22] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/f51b4777dbf8 - Siddharth Agarwal - Bug 784910 - Pymake: adjust sys.path so that native commands can load other modules from their own directories. r=ted
  391. # [03:22] * Joins: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk)
  392. # [03:23] * Quits: cjones (cjones@15798911.D822C0E9.56644CA2.IP) (Ping timeout)
  393. # [03:23] * Joins: cjones (cjones@15798911.D822C0E9.56644CA2.IP)
  394. # [03:24] * Joins: philipp64|laptop (chatzilla@moz-BBAB109F.redfish-solutions.com)
  395. # [03:25] * Quits: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk) (Ping timeout)
  396. # [03:25] * padenot is now known as padenot|away
  397. # [03:26] * Quits: odin_ (Odin@moz-66D3502E.zone5.bethere.co.uk) (Ping timeout)
  398. # [03:27] * Quits: ericjung (Mibbit@moz-F14FA912.bstnma.fios.verizon.net) (Quit: http://www.mibbit.com ajax IRC Client)
  399. # [03:27] * Quits: azakai (alon@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  400. # [03:31] * Quits: Mardak (Mardak@moz-2BCEAB1.dsl.static.sonic.net) (Quit: Mardak)
  401. # [03:31] * Quits: cjones (cjones@15798911.D822C0E9.56644CA2.IP) (Ping timeout)
  402. # [03:32] * Quits: mccr8 (mccr8@moz-EB2F197F.dsl.dynamic.sonic.net) (Quit: mccr8)
  403. # [03:32] * Quits: mdas|train (mdas@CAB30FBD.8F96AEA7.2D179A7D.IP) (Quit: mdas|train)
  404. # [03:32] * Joins: jeremyhu|nanake (jeremyhu@moz-75C113CA.outersquare.org)
  405. # [03:33] * Quits: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net) (Client exited)
  406. # [03:34] * Joins: mdas (mdas@CAB30FBD.8F96AEA7.2D179A7D.IP)
  407. # [03:35] * Quits: mdas (mdas@CAB30FBD.8F96AEA7.2D179A7D.IP) (Quit: mdas)
  408. # [03:36] * Joins: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk)
  409. # [03:36] * Quits: ekr (ekr@moz-D7997EC8.rtfm.com) (Ping timeout)
  410. # [03:38] * Quits: shedammit (shedammit@moz-A95F12B1.members.linode.com) (Ping timeout)
  411. # [03:40] * Joins: shedammit (shedammit@moz-A95F12B1.members.linode.com)
  412. # [03:40] * Quits: mats (chatzilla@E8A3702C.D5022173.8500CC29.IP) (Quit: ChatZilla 0.9.88.2 [Firefox 15.0/20120824154833])
  413. # [03:44] * padenot|away is now known as padenot
  414. # [03:45] * Quits: terrence (terrence@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  415. # [03:46] * Joins: cjones (cjones@731B316.A0248ED6.56644CA2.IP)
  416. # [03:47] * Quits: jorendorff (jorendorff@moz-91590D94.hsd1.tn.comcast.net) (Quit: jorendorff)
  417. # [03:50] * Quits: zzzzz_ (chatzilla@moz-107FCDBA.hfc.comcastbusiness.net) (Quit: ChatZilla 0.9.87 [Firefox 15.0/20120824154833])
  418. # [03:51] * Quits: chewey (chewey@moz-4D013E9A.dip0.t-ipconnect.de) (NickServ (GHOST command used by chewey_))
  419. # [03:51] * Joins: chewey (chewey@moz-5D1C938C.dip0.t-ipconnect.de)
  420. # [03:54] * jmaher|afk is now known as jmaher
  421. # [03:55] * joduinn is now known as joduinn-afk
  422. # [03:55] * khuey is now known as khuey|away
  423. # [03:58] * Joins: Boriss (FlyingToas@moz-62AAA429.hsd1.ca.comcast.net)
  424. # [03:58] * Joins: benjamin (bpeterson@moz-DB4A9C19.scl3.mozilla.com)
  425. # [03:58] * Parts: benjamin (bpeterson@moz-DB4A9C19.scl3.mozilla.com)
  426. # [03:59] * khuey|away is now known as khuey
  427. # [04:00] * Quits: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net) (Ping timeout)
  428. # [04:02] * Joins: hub (hub@moz-E2FCA694.figuiere.net)
  429. # [04:03] * Joins: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP)
  430. # [04:05] * Quits: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP) (Quit: brendan)
  431. # [04:07] * Joins: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP)
  432. # [04:13] * Quits: cjones (cjones@731B316.A0248ED6.56644CA2.IP) (Ping timeout)
  433. # [04:13] * coop is now known as coop|afk
  434. # [04:13] * Joins: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net)
  435. # [04:14] * Joins: dbaron (dbaron@moz-9221B6DD.dsl.dynamic.sonic.net)
  436. # [04:14] * ChanServ sets mode: +o dbaron
  437. # [04:14] * Quits: kmoir-afk (chatzilla@moz-B0E71877.wireless.telus.com) (Ping timeout)
  438. # [04:15] * Joins: kmoir-afk (chatzilla@moz-ED3249A4.dmz.releng.scl3.mozilla.com)
  439. # [04:17] * Joins: cpeterson (cpeterson@moz-175D1473.hsd1.ca.comcast.net)
  440. # [04:18] * Joins: cjones (cjones@731B316.A0248ED6.56644CA2.IP)
  441. # [04:18] * Joins: brendan_ (brendaneic@29D68D0B.41C58073.748B6D8D.IP)
  442. # [04:18] * Quits: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP) (Connection reset by peer)
  443. # [04:18] * brendan_ is now known as brendan
  444. # [04:20] * Quits: Waldo (waldo@moz-BBE3ABD.mv.mozilla.com) (Quit: ChatZilla 0.9.87-5.1450hg.fc17 [XULRunner 14.0.1/20120717123646])
  445. # [04:20] * Quits: cc (cc@moz-C24560BF.w92-140.abo.wanadoo.fr) (Quit: cc)
  446. # [04:22] * Quits: nmatsakis (nmatsakis@31F52E50.3AD3A61B.2321E71E.IP) (Quit: Computer has gone to sleep.)
  447. # [04:22] * Quits: dzbarsky (Adium@moz-59812CB1.hsd1.pa.comcast.net) (Quit: Leaving.)
  448. # [04:24] * shorlander is now known as shorlander-away
  449. # [04:24] * Joins: nmatsakis (nmatsakis@31F52E50.3AD3A61B.2321E71E.IP)
  450. # [04:24] * Quits: bonnie (bbsurender@3035F4A5.3753335A.B66DD36E.IP) (Quit: Ex-Chat)
  451. # [04:24] * Quits: shorlander-away (shorlander@moz-853043D6.dhcp.insightbb.com) (Quit: Quit)
  452. # [04:26] * khuey is now known as khuey|away
  453. # [04:32] * Joins: karl (karl@moz-C24B2728.jetstream.xtra.co.nz)
  454. # [04:33] * Quits: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net) (Ping timeout)
  455. # [04:34] * Joins: bonnie (bbsurender@3035F4A5.3753335A.B66DD36E.IP)
  456. # [04:34] * Quits: azakai|far (alon@moz-8D0CC798.lightspeed.sntcca.sbcglobal.net) (Ping timeout)
  457. # [04:35] * Quits: bonnie (bbsurender@3035F4A5.3753335A.B66DD36E.IP) (Quit: Ex-Chat)
  458. # [04:35] * jmaher is now known as jmaher|afk
  459. # [04:36] * Joins: azakai|far (alon@moz-8D0CC798.lightspeed.sntcca.sbcglobal.net)
  460. # [04:37] * Quits: coop|afk (Chris@moz-ED3249A4.dmz.releng.scl3.mozilla.com) (Ping timeout)
  461. # [04:38] * Joins: dao (dao@moz-7AD9D13C.superkabel.de)
  462. # [04:46] * Quits: ewong (chatzilla@moz-E5D50C2E.static.netvigator.com) (Input/output error)
  463. # [04:47] * Joins: ewong (chatzilla@moz-E5D50C2E.static.netvigator.com)
  464. # [04:48] * Joins: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net)
  465. # [04:49] * Joins: bc (bc@454BDC37.1D5E8529.AC69809B.IP)
  466. # [04:51] * Joins: bnicholson (bnicholson@moz-DB4A9C19.scl3.mozilla.com)
  467. # [04:52] * Quits: rjohnson19 (chatzilla@moz-9148485F.hsd1.ma.comcast.net) (Quit: ChatZilla 0.9.88-rdmsoft [XULRunner 1.9.0.17/2009122204])
  468. # [04:54] * Quits: cjones (cjones@731B316.A0248ED6.56644CA2.IP) (Ping timeout)
  469. # [04:56] * philor|away is now known as philor
  470. # [04:57] * Quits: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP) (Quit: brendan)
  471. # [04:58] * Joins: mib_gsxfbh (Mibbit@388D987B.394FADDA.341544B3.IP)
  472. # [04:59] * Quits: mib_gsxfbh (Mibbit@388D987B.394FADDA.341544B3.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  473. # [05:01] * Quits: JonathanS (JonathanS@17EDFC35.8737F162.521902B0.IP) (Quit: Computer has gone to sleep.)
  474. # [05:05] * Joins: cjones (cjones@731B316.A0248ED6.56644CA2.IP)
  475. # [05:05] * Joins: Mook (Daily@moz-8F011215.dsl.teksavvy.com)
  476. # [05:07] * Joins: jdm (jdm@F2D29657.F60B0462.67AC9B1.IP)
  477. # [05:15] * Joins: kk1fff (kk1fff@moz-5C9F220D.dynamic.hinet.net)
  478. # [05:16] * Quits: nigelb (nigel@moz-8640053A.me) (Client exited)
  479. # [05:18] * Joins: nigelb (nigel@moz-8640053A.me)
  480. # [05:20] * philor is now known as philor|away
  481. # [05:21] * Quits: cjones (cjones@731B316.A0248ED6.56644CA2.IP) (Ping timeout)
  482. # [05:23] * Quits: kmoir-afk (chatzilla@moz-ED3249A4.dmz.releng.scl3.mozilla.com) (Ping timeout)
  483. # [05:25] * Quits: dao (dao@moz-7AD9D13C.superkabel.de) (Quit: Leaving.)
  484. # [05:29] * philor|away is now known as philor
  485. # [05:30] * Joins: cjones (cjones@731B316.A0248ED6.56644CA2.IP)
  486. # [05:35] * Quits: kk1fff (kk1fff@moz-5C9F220D.dynamic.hinet.net) (Quit: Leaving.)
  487. # [05:38] * Joins: jduell (jduell@moz-F20EC42A.hfc.comcastbusiness.net)
  488. # [05:40] * philor is now known as philor|away
  489. # [05:43] * Quits: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com) (Quit: Instantbird 1.3a1pre -- http://www.instantbird.com)
  490. # [05:49] * Quits: bnicholson (bnicholson@moz-DB4A9C19.scl3.mozilla.com) (Quit: Leaving)
  491. # [05:50] * Quits: espindola (espindola@moz-BCBD8315.dsl.teksavvy.com) (Quit: Ex-Chat)
  492. # [05:55] * Quits: bc (bc@454BDC37.1D5E8529.AC69809B.IP) (Ping timeout)
  493. # [05:56] * khuey|away is now known as khuey
  494. # [05:56] * Quits: gustavold (gustavold@AACA9B2.3CA89884.FBFF2E6D.IP) (Ping timeout)
  495. # [05:56] * Joins: kk1fff (kk1fff@moz-5C9F220D.dynamic.hinet.net)
  496. # [05:56] * Joins: gustavold (gustavold@AACA9B2.3CA89884.FBFF2E6D.IP)
  497. # [05:57] * Quits: jeremyhu|nanake (jeremyhu@moz-75C113CA.outersquare.org) (Ping timeout)
  498. # [05:58] * Quits: surkov (surkov@CE4382E5.84614B10.33A1AC3C.IP) (Quit: surkov)
  499. # [06:00] * Joins: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com)
  500. # [06:01] * mattwoodrow|away is now known as mattwoodrow
  501. # [06:02] * Joins: harth (harth@moz-FF915E69.bb.sky.com)
  502. # [06:05] * Quits: harth (harth@moz-FF915E69.bb.sky.com) (Input/output error)
  503. # [06:07] * Joins: ekr (ekr@moz-A62EC22B.hfc.comcastbusiness.net)
  504. # [06:07] * Quits: ekr (ekr@moz-A62EC22B.hfc.comcastbusiness.net) (Quit: ekr)
  505. # [06:07] * Joins: ekr (ekr@moz-A62EC22B.hfc.comcastbusiness.net)
  506. # [06:09] * Quits: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com) (Client exited)
  507. # [06:15] * Joins: bnicholson (bnicholson@moz-F08A2DE.hsd1.ca.comcast.net)
  508. # [06:15] * Quits: cjones (cjones@731B316.A0248ED6.56644CA2.IP) (Quit: Leaving)
  509. # [06:26] * khuey is now known as khuey|away
  510. # [06:29] * Quits: cpeterson (cpeterson@moz-175D1473.hsd1.ca.comcast.net) (Input/output error)
  511. # [06:36] * Quits: drexler (chatzilla@moz-BD26ECCD.hsd1.vt.comcast.net) (Ping timeout)
  512. # [06:37] * Joins: drexler (chatzilla@moz-BD26ECCD.hsd1.vt.comcast.net)
  513. # [06:39] * Joins: jeremyhu|nanake (jeremyhu@moz-75C113CA.outersquare.org)
  514. # [06:41] * Quits: jeremyhu|nanake (jeremyhu@moz-75C113CA.outersquare.org) (Ping timeout)
  515. # [06:41] * Joins: jeremyhu|nanake (jeremyhu@moz-75C113CA.outersquare.org)
  516. # [06:42] * Joins: lmandel (lmandel@moz-E928DD26.dsl.bell.ca)
  517. # [06:43] * Quits: jeremyhu|nanake (jeremyhu@moz-75C113CA.outersquare.org) (Ping timeout)
  518. # [06:44] * Joins: jeremyhu|nanake (jeremyhu@moz-75C113CA.outersquare.org)
  519. # [06:48] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/c2e7034b1f86 - Shu-yu Guo - Bug 787282 - Initialize all slots in ParallelArray constructor when GC might trigger (r=billm)
  520. # [06:57] * Joins: harth (harth@moz-FF915E69.bb.sky.com)
  521. # [06:59] * Quits: nmatsakis (nmatsakis@31F52E50.3AD3A61B.2321E71E.IP) (Quit: Computer has gone to sleep.)
  522. # [06:59] * Quits: harth (harth@moz-FF915E69.bb.sky.com) (Input/output error)
  523. # [07:00] * Quits: jdm (jdm@F2D29657.F60B0462.67AC9B1.IP) (Ping timeout)
  524. # [07:01] * Quits: biesi_ (cbiesinger@moz-5EE692A7.ca.hfc.comcastbusiness.net) (Ping timeout)
  525. # [07:02] * Joins: Yoric (Yoric@moz-920DB13B.fbx.proxad.net)
  526. # [07:10] * Quits: wesj (Instantbir@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Ping timeout)
  527. # [07:11] * Joins: JonathanS (JonathanS@17EDFC35.8737F162.521902B0.IP)
  528. # [07:23] * jcranmer is now known as jcranmer|away
  529. # [07:25] * Joins: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  530. # [07:28] * Quits: @dbaron (dbaron@moz-9221B6DD.dsl.dynamic.sonic.net) (Ping timeout)
  531. # [07:30] * Joins: jwilde (Earlybird@moz-23E1A364.aton.com)
  532. # [07:31] * Joins: damons (gnubeard@moz-37F0FA87.hsd1.ca.comcast.net)
  533. # [07:33] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  534. # [07:34] * Quits: karl (karl@moz-C24B2728.jetstream.xtra.co.nz) (Ping timeout)
  535. # [07:34] * Quits: @roc (chatzilla@C0ACF8B.5E1E9EEA.613E47D1.IP) (Ping timeout)
  536. # [07:35] * Quits: Yoric (Yoric@moz-920DB13B.fbx.proxad.net) (Input/output error)
  537. # [07:36] * Joins: akeybl (akeybl@moz-52D39FF6.hsd1.ca.comcast.net)
  538. # [07:37] * Quits: jduell (jduell@moz-F20EC42A.hfc.comcastbusiness.net) (Ping timeout)
  539. # [07:37] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Input/output error)
  540. # [07:40] * Quits: ekr (ekr@moz-A62EC22B.hfc.comcastbusiness.net) (Quit: ekr)
  541. # [07:45] * Joins: nrc (nrc@4B76F2B0.D05BE748.613E47D1.IP)
  542. # [07:45] * heycam is now known as heycam|away
  543. # [07:46] * Quits: akeybl (akeybl@moz-52D39FF6.hsd1.ca.comcast.net) (Quit: Leaving...)
  544. # [07:49] * Joins: wesj (Instantbir@moz-135A9FA9.hsd1.ca.comcast.net)
  545. # [07:50] * Joins: jhk (jhk@8E6C34C1.A3F9767A.1C37C358.IP)
  546. # [07:51] * mjschranz_away is now known as mjschranz
  547. # [07:52] * Quits: wesj (Instantbir@moz-135A9FA9.hsd1.ca.comcast.net) (Input/output error)
  548. # [07:58] * Joins: ctopper (craig@C3495DA.BA3DBA56.AE2B2F80.IP)
  549. # [08:01] * Joins: mike5w3c (MikeS@moz-2D8D6CA8.xgsspn.imtp.tachikawa.spmode.ne.jp)
  550. # [08:01] * Joins: teoli (teoli@EDB1D55.195E6A26.F1085784.IP)
  551. # [08:01] * Quits: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Ping timeout)
  552. # [08:03] * Quits: bb10 (bb10@moz-C7B05616.org) (Ping timeout)
  553. # [08:04] * Joins: atte (atte@moz-401E92F1.dhcp.inet.fi)
  554. # [08:04] * Joins: bb10 (bb10@moz-C7B05616.org)
  555. # [08:05] * Quits: jwilde (Earlybird@moz-23E1A364.aton.com) (Quit: jwilde)
  556. # [08:05] * Joins: jwilde (Earlybird@moz-23E1A364.aton.com)
  557. # [08:05] * Joins: bc (bc@454BDC37.1D5E8529.AC69809B.IP)
  558. # [08:06] * Quits: trevorh (trevor@moz-AEB41D93.lns4.woo.bigpond.net.au) (Ping timeout)
  559. # [08:06] * Joins: Mardak (Mardak@moz-4FA48382.hsd1.ca.comcast.net)
  560. # [08:08] * mjschranz is now known as mjschranz_away
  561. # [08:10] * Quits: lmandel (lmandel@moz-E928DD26.dsl.bell.ca) (Quit: lmandel)
  562. # [08:10] * Quits: kk1fff (kk1fff@moz-5C9F220D.dynamic.hinet.net) (Quit: Leaving.)
  563. # [08:11] * ewong is now known as ewong|away
  564. # [08:11] * Quits: fitzgen (fitzgen@moz-BBE3ABD.mv.mozilla.com) (Quit: zzzzzzzzz)
  565. # [08:13] * Quits: hub (hub@moz-E2FCA694.figuiere.net) (Ping timeout)
  566. # [08:13] * Fallen|away is now known as Fallen
  567. # [08:20] * Quits: chewey (chewey@moz-5D1C938C.dip0.t-ipconnect.de) (Input/output error)
  568. # [08:23] * Joins: trevorh (trevor@moz-AA211701.lns2.woo.bigpond.net.au)
  569. # [08:25] * Joins: chewey (chewey@moz-5D1C938C.dip0.t-ipconnect.de)
  570. # [08:30] * Quits: drexler (chatzilla@moz-BD26ECCD.hsd1.vt.comcast.net) (Ping timeout)
  571. # [08:33] * Joins: fitzgen (fitzgen@moz-85EBB8A.dia.static.qwest.net)
  572. # [08:38] * Quits: jgilbert (jgilbert@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  573. # [08:39] * Joins: dbaron (dbaron@moz-9221B6DD.dsl.dynamic.sonic.net)
  574. # [08:39] * ChanServ sets mode: +o dbaron
  575. # [08:44] * Joins: teoli_ (teoli@EDB1D55.195E6A26.F1085784.IP)
  576. # [08:45] * Quits: teoli (teoli@EDB1D55.195E6A26.F1085784.IP) (Ping timeout)
  577. # [08:46] * Quits: bc (bc@454BDC37.1D5E8529.AC69809B.IP) (Ping timeout)
  578. # [08:47] * Quits: jeremyhu|nanake (jeremyhu@moz-75C113CA.outersquare.org) (Ping timeout)
  579. # [09:01] * Quits: Mook (Daily@moz-8F011215.dsl.teksavvy.com) (Quit: Mook)
  580. # [09:04] * Joins: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net)
  581. # [09:05] * Joins: biesi_ (cbiesinger@moz-5EE692A7.ca.hfc.comcastbusiness.net)
  582. # [09:10] * Joins: Ms2ger (Ms2ger@4346D5C2.336EB8AC.37724B0D.IP)
  583. # [09:13] * Quits: fitzgen (fitzgen@moz-85EBB8A.dia.static.qwest.net) (Ping timeout)
  584. # [09:19] * Joins: bc (bc@454BDC37.1D5E8529.AC69809B.IP)
  585. # [09:20] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/43e3314f1da8 - Landry Breuil - Bug 786588: Readd 32 bits padding for non-methodjit 32 bits archs. r=njn
  586. # [09:20] * Quits: @dbaron (dbaron@moz-9221B6DD.dsl.dynamic.sonic.net) (Ping timeout)
  587. # [09:21] * Quits: mikeperry (mikeperry@moz-F65CEB14.snydernet.net) (Quit: leaving)
  588. # [09:24] * Joins: |Stan| (Stan@moz-5533C8F1.dip.t-dialin.net)
  589. # [09:24] * Quits: Stan_ (Stan@moz-D596A80E.dip.t-dialin.net) (Ping timeout)
  590. # [09:32] * Quits: biesi_ (cbiesinger@moz-5EE692A7.ca.hfc.comcastbusiness.net) (Ping timeout)
  591. # [09:37] * Quits: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net) (Client exited)
  592. # [09:37] <Ms2ger> dbaron++
  593. # [09:43] * Quits: bc (bc@454BDC37.1D5E8529.AC69809B.IP) (Ping timeout)
  594. # [09:44] * Quits: ctopper (craig@C3495DA.BA3DBA56.AE2B2F80.IP) (Quit: ctopper)
  595. # [09:47] * Joins: sankha93 (sankha93@CAF6D3FF.9C875DCD.9105FBCF.IP)
  596. # [09:53] * Joins: victorporof (victorporo@A3CC5C2.F695A43D.79933D60.IP)
  597. # [09:56] * Joins: Mossop (mossop@E9758364.9EC0A5AF.CFE928A7.IP)
  598. # [09:59] * philor|away is now known as philor
  599. # [10:00] * Quits: KWierso (KWierso@E9758364.9EC0A5AF.CFE928A7.IP) (Ping timeout)
  600. # [10:00] * Joins: jeremyhu|nanake (jeremyhu@moz-75C113CA.outersquare.org)
  601. # [10:02] * Quits: jeremyhu|nanake (jeremyhu@moz-75C113CA.outersquare.org) (Ping timeout)
  602. # [10:03] * Joins: jorendorff (jorendorff@moz-91590D94.hsd1.tn.comcast.net)
  603. # [10:09] * Joins: fredw (fredw@moz-B9C110E2.fbx.proxad.net)
  604. # [10:16] * Quits: Mardak (Mardak@moz-4FA48382.hsd1.ca.comcast.net) (Quit: Mardak)
  605. # [10:18] * Joins: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl)
  606. # [10:18] * Joins: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com)
  607. # [10:19] * Joins: dzbarsky (Adium@moz-59812CB1.hsd1.pa.comcast.net)
  608. # [10:23] * Quits: nrc (nrc@4B76F2B0.D05BE748.613E47D1.IP) (Ping timeout)
  609. # [10:25] * Quits: Elen (El@moz-729280DD.dhcp.inet.fi) (Ping timeout)
  610. # [10:25] * Quits: jorendorff (jorendorff@moz-91590D94.hsd1.tn.comcast.net) (Quit: Eaten by grue.)
  611. # [10:25] * Joins: valenting (Thunderbir@moz-85EBB8A.dia.static.qwest.net)
  612. # [10:32] * Quits: kinetik (kinetik@B0506AEA.F200EF31.613E47D1.IP) (Ping timeout)
  613. # [10:33] * Quits: dzbarsky (Adium@moz-59812CB1.hsd1.pa.comcast.net) (Quit: Leaving.)
  614. # [10:35] * Joins: surkov (surkov@CE4382E5.84614B10.33A1AC3C.IP)
  615. # [10:35] * Joins: kinetik (kinetik@B0506AEA.F200EF31.613E47D1.IP)
  616. # [10:37] * Joins: florian (Instantbir@moz-87C33FDA.kimsufi.com)
  617. # [10:38] * Quits: bnicholson (bnicholson@moz-F08A2DE.hsd1.ca.comcast.net) (Quit: Leaving)
  618. # [10:40] * philor is now known as philor|away
  619. # [10:40] * Joins: Mano (mano@4AE6E53A.EC757A99.39716721.IP)
  620. # [10:43] * Quits: jhopkins (jhopkins@moz-216F9986.tb.shawcable.net) (Connection reset by peer)
  621. # [10:43] * Joins: jhopkins (jhopkins@moz-216F9986.tb.shawcable.net)
  622. # [10:43] * Joins: cdiehl_ (cdiehl@moz-D00DE29.pool.mediaways.net)
  623. # [10:45] * Quits: cdiehl (cdiehl@moz-96842B0A.pool.mediaways.net) (Ping timeout)
  624. # [10:45] * cdiehl_ is now known as cdiehl
  625. # [10:46] * Joins: Mardak (Mardak@moz-4FA48382.hsd1.ca.comcast.net)
  626. # [10:46] * Fallen is now known as Fallen|away
  627. # [10:47] * Quits: surkov (surkov@CE4382E5.84614B10.33A1AC3C.IP) (Quit: surkov)
  628. # [10:52] * Quits: jhk (jhk@8E6C34C1.A3F9767A.1C37C358.IP) (Ping timeout)
  629. # [10:53] * Joins: GinaYeh-laptop (GinaYeh@moz-76E845E1.dynamic.hinet.net)
  630. # [10:53] * Joins: surkov (surkov@CE4382E5.84614B10.33A1AC3C.IP)
  631. # [10:54] * Joins: Archaeopteryx (itsme@moz-756328DB.cust.telecolumbus.net)
  632. # [10:55] * Quits: surkov (surkov@CE4382E5.84614B10.33A1AC3C.IP) (Quit: surkov)
  633. # [10:55] * Quits: damons (gnubeard@moz-37F0FA87.hsd1.ca.comcast.net) (Quit: damons)
  634. # [10:55] * Joins: surkov (surkov@CE4382E5.84614B10.33A1AC3C.IP)
  635. # [10:56] * Quits: surkov (surkov@CE4382E5.84614B10.33A1AC3C.IP) (Quit: surkov)
  636. # [10:58] * Joins: msucan (mihai@17969768.DD17A642.B4CEF140.IP)
  637. # [11:01] * Quits: Mossop (mossop@E9758364.9EC0A5AF.CFE928A7.IP) (Quit: Fleeing the scene)
  638. # [11:02] * Joins: jhk (jhk@8E6C34C1.A3F9767A.1C37C358.IP)
  639. # [11:03] * Joins: Goldorak (chatzilla@5DBDFA7B.6D3510EC.187A1082.IP)
  640. # [11:04] * Joins: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP)
  641. # [11:05] * Quits: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  642. # [11:06] * Joins: thbet (kvirc@moz-20AEDF17.omega118.maxonline.com.sg)
  643. # [11:06] * Quits: fredw (fredw@moz-B9C110E2.fbx.proxad.net) (Quit: Leaving.)
  644. # [11:06] <thbet> hi, can anyone help me with this error on line 1?
  645. # [11:06] <thbet> http://pastebin.mozilla.org/1795558
  646. # [11:07] <thbet> my project uses NSS library. do I have to export NSS symbols in .mozconfig?
  647. # [11:08] * Joins: Darwesh (chatzilla@49B1B402.E8EF102F.901B3F5.IP)
  648. # [11:09] * Quits: Enn (enn@moz-A875DFED.cpe.net.cable.rogers.com) (Quit: ChatZilla 0.9.88.2 [Firefox 15.0/20120824154833])
  649. # [11:12] * Joins: xakz (XaMaD@moz-34FBE388.fbx.proxad.net)
  650. # [11:13] * Joins: robhawkes (robhawkes@moz-33A339B7.dsl.cnl.uk.net)
  651. # [11:20] * Quits: valenting (Thunderbir@moz-85EBB8A.dia.static.qwest.net) (Ping timeout)
  652. # [11:23] * Fallen|away is now known as Fallen
  653. # [11:27] * Quits: Mano (mano@4AE6E53A.EC757A99.39716721.IP) (Client exited)
  654. # [11:28] * Joins: squeakytoy (christoffe@moz-79070305.dynamic.se.alltele.net)
  655. # [11:29] * Joins: stefanh_netbook (chatzilla@moz-3EED0162.customers.ownit.se)
  656. # [11:29] * Joins: smagnin (pike@moz-DEF53BC9.fbx.proxad.net)
  657. # [11:31] * Quits: thbet (kvirc@moz-20AEDF17.omega118.maxonline.com.sg) (Quit: KVIrc 4.0.4 Insomnia http://www.kvirc.net/)
  658. # [11:32] * Quits: victorporof (victorporo@A3CC5C2.F695A43D.79933D60.IP) (Quit: victorporof)
  659. # [11:33] * Quits: teoli_ (teoli@EDB1D55.195E6A26.F1085784.IP) (Input/output error)
  660. # [11:35] * Quits: xakz (XaMaD@moz-34FBE388.fbx.proxad.net) (Quit: Lost terminal)
  661. # [11:36] * Joins: xakz (XaMaD@moz-34FBE388.fbx.proxad.net)
  662. # [11:36] * Joins: TheLink (TheLink@moz-7DF028C8.pools.arcor-ip.net)
  663. # [11:38] * Quits: Archaeopteryx (itsme@moz-756328DB.cust.telecolumbus.net) (Quit: Too much information in my brain driving me insane)
  664. # [11:39] * Joins: valenting (Thunderbir@moz-85EBB8A.dia.static.qwest.net)
  665. # [11:39] * Quits: valenting (Thunderbir@moz-85EBB8A.dia.static.qwest.net) (Input/output error)
  666. # [11:39] * Joins: valenting (Thunderbir@moz-85EBB8A.dia.static.qwest.net)
  667. # [11:41] * Joins: bc (bc@454BDC37.1D5E8529.AC69809B.IP)
  668. # [11:42] * Joins: Mano (mano@4AE6E53A.EC757A99.39716721.IP)
  669. # [11:43] * Joins: fs (Elchi3@B9C9103E.56629902.2EC4CA51.IP)
  670. # [11:43] * Quits: bc (bc@454BDC37.1D5E8529.AC69809B.IP) (Ping timeout)
  671. # [11:47] * Joins: maikmerten (maikmerten@moz-5C84B979.dynamic.qsc.de)
  672. # [11:49] * Joins: jeremyhu|nanake (jeremyhu@moz-75C113CA.outersquare.org)
  673. # [11:49] * Quits: stefanh_netbook (chatzilla@moz-3EED0162.customers.ownit.se) (Quit: ChatZilla 0.9.88.2 [Firefox 14.0.1/20120713224749])
  674. # [11:50] * Quits: jeremyhu|nanake (jeremyhu@moz-75C113CA.outersquare.org) (Ping timeout)
  675. # [11:52] * Joins: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP)
  676. # [11:53] * Joins: dao (dao@moz-D61FA145.superkabel.de)
  677. # [11:54] * Quits: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP) (Quit: brendan)
  678. # [11:54] * Quits: Mano (mano@4AE6E53A.EC757A99.39716721.IP) (Client exited)
  679. # [11:57] * Quits: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net) (Ping timeout)
  680. # [11:58] * Quits: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk) (Quit: This computer has gone to sleep)
  681. # [12:02] * Joins: Elen (El@moz-729280DD.dhcp.inet.fi)
  682. # [12:04] * Quits: GinaYeh-laptop (GinaYeh@moz-76E845E1.dynamic.hinet.net) (Quit: Leaving)
  683. # [12:05] * Quits: schien-laptop_ (schien@moz-51ED10AE.dynamic.hinet.net) (Input/output error)
  684. # [12:13] * Joins: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk)
  685. # [12:15] * Joins: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net)
  686. # [12:24] * Quits: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net) (Quit: Ex-Chat)
  687. # [12:26] <Ms2ger> Hey guys, today is International Bacon Day!
  688. # [12:28] * Quits: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk) (Ping timeout)
  689. # [12:29] <NeilAway> Ms2ger--
  690. # [12:29] <NeilAway> (wrong channel)
  691. # [12:29] <Ms2ger> Every channel is a bacon channel, heretic
  692. # [12:29] <darktrojan> bacon is relevant to #developers
  693. # [12:29] * Quits: florian (Instantbir@moz-87C33FDA.kimsufi.com) (Quit: Instantbird 1.3a1pre -- http://www.instantbird.com)
  694. # [12:30] * Joins: zzzzz_ (chatzilla@moz-107FCDBA.hfc.comcastbusiness.net)
  695. # [12:31] * Quits: mike5w3c (MikeS@moz-2D8D6CA8.xgsspn.imtp.tachikawa.spmode.ne.jp) (Ping timeout)
  696. # [12:31] * mattwoodrow is now known as mattwoodrow|away
  697. # [12:31] <darktrojan> maybe not #vegetarian, Ms2ger
  698. # [12:31] * Joins: mike5w3c (MikeS@moz-C3194FE8.xgsspn.imtp.tachikawa.spmode.ne.jp)
  699. # [12:33] * Joins: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk)
  700. # [12:35] * Joins: cc (cc@moz-C24560BF.w92-140.abo.wanadoo.fr)
  701. # [12:37] * Joins: smaug (chatzilla@moz-3C907DEA.elisa-laajakaista.fi)
  702. # [12:37] * ChanServ sets mode: +o smaug
  703. # [12:37] * Joins: rajul (quassel@3AF75EA2.8AB0B0A3.F44414AF.IP)
  704. # [12:39] * mattwoodrow|away is now known as mattwoodrow
  705. # [12:41] * Quits: @smaug (chatzilla@moz-3C907DEA.elisa-laajakaista.fi) (Ping timeout)
  706. # [12:44] * Joins: willyaranda (willyarand@moz-D4AE0008.dynamic.jazztel.es)
  707. # [12:47] * Joins: jduell (jduell@moz-F20EC42A.hfc.comcastbusiness.net)
  708. # [12:48] * Joins: kaze` (kaze@C70B5B95.3364AC41.56644CA2.IP)
  709. # [12:52] * Joins: karl (karl@moz-3C01C372.jetstream.xtra.co.nz)
  710. # [12:53] * Quits: AryehGregor (AryehGrego@F3B92AD6.C1A33F19.C605BBF7.IP) (Ping timeout)
  711. # [12:53] * Joins: TheOne (one@moz-556B8D33.dip.t-dialin.net)
  712. # [12:53] * Quits: sankha93 (sankha93@CAF6D3FF.9C875DCD.9105FBCF.IP) (Quit: Leaving.)
  713. # [12:53] * Joins: AryehGregor (AryehGrego@4A76B368.F2D2BE0C.78D2F5C4.IP)
  714. # [12:55] * Joins: andersh (andersh@moz-BC1E5091.bredband.oister.dk)
  715. # [12:55] * Quits: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  716. # [12:56] * Joins: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP)
  717. # [12:59] * Joins: jacek (jacek@moz-5D707D3B.psi.wroc.pl)
  718. # [13:00] * Quits: karl (karl@moz-3C01C372.jetstream.xtra.co.nz) (Ping timeout)
  719. # [13:00] * Joins: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP)
  720. # [13:12] * Joins: marco (Thunderbir@6D86B2BF.60DCEFAD.10DC0B64.IP)
  721. # [13:15] * Quits: marco (Thunderbir@6D86B2BF.60DCEFAD.10DC0B64.IP) (Ping timeout)
  722. # [13:16] * Quits: decoder (quassel@moz-216446B9.own-hero.net) (Ping timeout)
  723. # [13:16] * Joins: marco (Thunderbir@6D86B2BF.60DCEFAD.10DC0B64.IP)
  724. # [13:18] * Joins: decoder (quassel@moz-216446B9.own-hero.net)
  725. # [13:19] * Quits: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk) (Quit: This computer has gone to sleep)
  726. # [13:20] * mattwoodrow is now known as mattwoodrow|away
  727. # [13:21] * Joins: aleth (aleth@moz-24EE697D.ictp.it)
  728. # [13:22] * aleth wonders what happened to the 'new' FF download panel (is it still preffed off?)
  729. # [13:23] * Joins: FusedTogether (Thunderbir@8CCD9A70.E49ADE39.2D7E49EB.IP)
  730. # [13:24] <marco> aleth: bug 747422
  731. # [13:26] <aleth> marco: Thanks! Only asking because it was briefly turned on for Aurora 16...
  732. # [13:33] * mjschranz_away is now known as mjschranz
  733. # [13:35] * Joins: bc (bc@454BDC37.1D5E8529.AC69809B.IP)
  734. # [13:36] * Joins: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk)
  735. # [13:36] * Parts: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk) (Leaving)
  736. # [13:36] * mjschranz is now known as mjschranz_away
  737. # [13:37] * Joins: jeremyhu|nanake (jeremyhu@moz-75C113CA.outersquare.org)
  738. # [13:39] * Quits: jeremyhu|nanake (jeremyhu@moz-75C113CA.outersquare.org) (Ping timeout)
  739. # [13:41] * Quits: Goldorak (chatzilla@5DBDFA7B.6D3510EC.187A1082.IP) (Ping timeout)
  740. # [13:45] * Quits: marco (Thunderbir@6D86B2BF.60DCEFAD.10DC0B64.IP) (Quit: marco)
  741. # [13:45] * Joins: fabrice (fabrice@C70B5B95.3364AC41.56644CA2.IP)
  742. # [13:46] * Joins: marco (Thunderbir@6D86B2BF.60DCEFAD.10DC0B64.IP)
  743. # [13:49] * Quits: jhk (jhk@8E6C34C1.A3F9767A.1C37C358.IP) (Ping timeout)
  744. # [13:50] * Quits: WG9s (bill@moz-D750CC69.maine.res.rr.com) (Quit: ChatZilla 0.9.87-5.1450hg.fc17 [XULRunner 15.0/20120827125645])
  745. # [13:50] <Callek> aleth: yes, that it was turned on, on aurora at all, was a bug
  746. # [13:50] * Joins: jhk (jhk@8E6C34C1.A3F9767A.1C37C358.IP)
  747. # [13:51] <Callek> (you shouldn't have gotten an aurora update at all with it turned on, -- it was our fault that that happened)
  748. # [13:51] <Callek> the download button will not be in its new locations for end-users without the new download panel... fwiw
  749. # [13:51] * Quits: jwilde (Earlybird@moz-23E1A364.aton.com) (Ping timeout)
  750. # [13:52] * Quits: kaze` (kaze@C70B5B95.3364AC41.56644CA2.IP) (Ping timeout)
  751. # [13:53] * Joins: kmoir-afk (chatzilla@moz-ECBAC1F2.wireless.telus.com)
  752. # [13:56] * Quits: jduell (jduell@moz-F20EC42A.hfc.comcastbusiness.net) (Ping timeout)
  753. # [13:58] * Joins: odin_ (Odin@moz-66D3502E.zone5.bethere.co.uk)
  754. # [14:04] * Quits: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP) (Quit: brendan)
  755. # [14:10] * Quits: rajul (quassel@3AF75EA2.8AB0B0A3.F44414AF.IP) (Client exited)
  756. # [14:11] * Quits: marco (Thunderbir@6D86B2BF.60DCEFAD.10DC0B64.IP) (Ping timeout)
  757. # [14:17] <mounir> baku: ping
  758. # [14:18] * Joins: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
  759. # [14:20] * Quits: gustavold (gustavold@AACA9B2.3CA89884.FBFF2E6D.IP) (Quit: Leaving.)
  760. # [14:21] * Quits: FusedTogether (Thunderbir@8CCD9A70.E49ADE39.2D7E49EB.IP) (Ping timeout)
  761. # [14:21] * Joins: victorporof (victorporo@5E3230DC.6D2FB7A4.79933D60.IP)
  762. # [14:25] * Joins: FusedTogether (Thunderbir@8BD12562.EB20C806.D39A8B3F.IP)
  763. # [14:25] * Quits: tonymec|away (tonymec@moz-63372887.adsl-dyn.isp.belgacom.be) (Ping timeout)
  764. # [14:29] * Joins: stevee (Miranda@moz-17087BE2.cable.virginmedia.com)
  765. # [14:30] * Joins: marco (Thunderbir@6D86B2BF.60DCEFAD.10DC0B64.IP)
  766. # [14:31] * Joins: smaug (chatzilla@moz-3C907DEA.elisa-laajakaista.fi)
  767. # [14:31] * ChanServ sets mode: +o smaug
  768. # [14:33] * Quits: FusedTogether (Thunderbir@8BD12562.EB20C806.D39A8B3F.IP) (Ping timeout)
  769. # [14:34] * Joins: andreasn (andreasn@moz-171E5C3D.a336.priv.bahnhof.se)
  770. # [14:37] * Joins: FusedTogether (Thunderbir@8BD12562.EB20C806.D39A8B3F.IP)
  771. # [14:39] * Quits: @smaug (chatzilla@moz-3C907DEA.elisa-laajakaista.fi) (Ping timeout)
  772. # [14:39] * Quits: fabrice (fabrice@C70B5B95.3364AC41.56644CA2.IP) (Ping timeout)
  773. # [14:40] * Joins: stefanh (stefanh@moz-3EED0162.customers.ownit.se)
  774. # [14:41] * stefanh is now known as stefanh|away
  775. # [14:41] * Joins: fabrice (fabrice@2D9B2328.2BDEAC60.56644CA2.IP)
  776. # [14:41] * Quits: dao (dao@moz-D61FA145.superkabel.de) (Quit: Leaving.)
  777. # [14:44] * Quits: andreasn (andreasn@moz-171E5C3D.a336.priv.bahnhof.se) (Connection reset by peer)
  778. # [14:45] * Joins: andreasn (andreasn@moz-171E5C3D.a336.priv.bahnhof.se)
  779. # [14:46] * Joins: srini533 (Mibbit@DACDBB41.D0DE5103.BD94A9D5.IP)
  780. # [14:49] * Joins: Thomasy (chatzilla@moz-B53403DD.dynamic.kbronet.com.tw)
  781. # [14:50] * Quits: Thomasy (chatzilla@moz-B53403DD.dynamic.kbronet.com.tw) (Client exited)
  782. # [14:52] * Quits: cc (cc@moz-C24560BF.w92-140.abo.wanadoo.fr) (Quit: cc)
  783. # [14:54] * Joins: brendan (brendaneic@C2BDF0E7.F79BB743.6057D976.IP)
  784. # [14:54] * Joins: cc (cc@moz-C24560BF.w92-140.abo.wanadoo.fr)
  785. # [14:58] * Quits: cc (cc@moz-C24560BF.w92-140.abo.wanadoo.fr) (Ping timeout)
  786. # [14:59] <sid0> posted about pymake to m.d.platform and m.d.builds
  787. # [14:59] * Quits: mw22 (chatzilla@moz-FB753258.adsl.wanadoo.nl) (Ping timeout)
  788. # [15:00] * Quits: FusedTogether (Thunderbir@8BD12562.EB20C806.D39A8B3F.IP) (Ping timeout)
  789. # [15:01] * Joins: cc (cc@moz-9BCC1559.w90-46.abo.wanadoo.fr)
  790. # [15:04] * Quits: srini533 (Mibbit@DACDBB41.D0DE5103.BD94A9D5.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  791. # [15:04] * Joins: FusedTogether (Thunderbir@8CCD9A70.E49ADE39.2D7E49EB.IP)
  792. # [15:06] * Joins: rjohnson19 (chatzilla@moz-9148485F.hsd1.ma.comcast.net)
  793. # [15:07] <darktrojan> sid0++
  794. # [15:08] * Joins: Suresh (chatzilla@5690A85B.6095F024.EB06F97B.IP)
  795. # [15:08] <darktrojan> sid0, I don't suppose that means they got a python upgrade, does it?
  796. # [15:09] <sid0> darktrojan: well the windows builders were already on 2.6
  797. # [15:09] <darktrojan> oh
  798. # [15:09] <sid0> pymake needs 2.6+
  799. # [15:10] <darktrojan> what are the windows test machines running?
  800. # [15:10] <sid0> uh
  801. # [15:10] <sid0> I'm not sure
  802. # [15:10] <sid0> but they don't use make!
  803. # [15:10] <darktrojan> k, nm
  804. # [15:10] * Parts: aleth (aleth@moz-24EE697D.ictp.it)
  805. # [15:12] <darktrojan> I was working on parallel xpcshell tests, but I stopped since some of the testers run 2.5 and I need 2.6
  806. # [15:13] <sid0> aqh
  807. # [15:13] <sid0> er
  808. # [15:13] <sid0> ah
  809. # [15:13] <sid0> there's a bug to upgrade everything to 2.7
  810. # [15:13] * Joins: lduros (lduros@moz-D41962F7.phil.east.verizon.net)
  811. # [15:13] <darktrojan> yeah I know
  812. # [15:14] * Quits: darktrojan (geoff@moz-30B3CCFD.telstraclear.net) (Quit: darktrojan)
  813. # [15:15] * Joins: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com)
  814. # [15:17] <Ms2ger> There's been one for ages
  815. # [15:17] * Quits: brendan (brendaneic@C2BDF0E7.F79BB743.6057D976.IP) (Quit: brendan)
  816. # [15:17] * Quits: lerc (quassel@121-74-245-130.telstraclear.net) (Ping timeout)
  817. # [15:21] * Quits: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com) (Client exited)
  818. # [15:25] * Joins: deLta30_ (quassel@8E6C34C1.A3F9767A.1C37C358.IP)
  819. # [15:25] * Quits: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  820. # [15:28] * Quits: bc (bc@454BDC37.1D5E8529.AC69809B.IP) (Ping timeout)
  821. # [15:32] * Quits: TheOne (one@moz-556B8D33.dip.t-dialin.net) (Input/output error)
  822. # [15:33] * Joins: StockHunter (StockHunte@moz-C0D4659B.ldv-co.client.bresnan.net)
  823. # [15:36] * Joins: mike5w3c_ (MikeS@moz-4D5F5A07.xgsspn.imtp.tachikawa.spmode.ne.jp)
  824. # [15:36] * mjschranz_away is now known as mjschranz
  825. # [15:36] * Quits: mike5w3c (MikeS@moz-C3194FE8.xgsspn.imtp.tachikawa.spmode.ne.jp) (Ping timeout)
  826. # [15:36] * mike5w3c_ is now known as mike5w3c
  827. # [15:38] * Joins: surkov (surkov@CE4382E5.84614B10.33A1AC3C.IP)
  828. # [15:38] * Joins: RyanVM (RyanVM@moz-403902F0.phlapa.fios.verizon.net)
  829. # [15:44] * Quits: mikeratcliffe (mikeratcli@moz-70EA295B.evosurge.com) (Client exited)
  830. # [15:47] * Joins: brendan (brendaneic@C2BDF0E7.F79BB743.6057D976.IP)
  831. # [15:49] * Quits: kmoir-afk (chatzilla@moz-ECBAC1F2.wireless.telus.com) (Ping timeout)
  832. # [15:51] * Joins: dao (dao@moz-D61FA145.superkabel.de)
  833. # [15:51] * Quits: andreasn (andreasn@moz-171E5C3D.a336.priv.bahnhof.se) (Quit: Ex-Chat)
  834. # [15:52] * Quits: cc (cc@moz-9BCC1559.w90-46.abo.wanadoo.fr) (Quit: cc)
  835. # [15:52] * Joins: WG9s (bill@moz-D750CC69.maine.res.rr.com)
  836. # [15:53] * ewong|sleep is now known as ewong
  837. # [15:54] <ewong> mbrubeck: ping
  838. # [15:54] * Quits: valenting (Thunderbir@moz-85EBB8A.dia.static.qwest.net) (Ping timeout)
  839. # [15:56] * Quits: dao (dao@moz-D61FA145.superkabel.de) (Quit: Leaving.)
  840. # [15:58] <ewong> mbrubeck actually nvm.. wanted to ask you about bug #683833 and how I have no idea how to get it to refresh.. but I'll catch you later.. unping
  841. # [15:58] * ewong is now known as ewong|sleep
  842. # [16:03] * ewong|sleep is now known as ewong
  843. # [16:05] * Quits: marco (Thunderbir@6D86B2BF.60DCEFAD.10DC0B64.IP) (Ping timeout)
  844. # [16:05] * Joins: marco (Thunderbir@6D86B2BF.60DCEFAD.10DC0B64.IP)
  845. # [16:06] * Quits: WG9s (bill@moz-D750CC69.maine.res.rr.com) (Quit: ChatZilla 0.9.87-5.1450hg.fc17 [XULRunner 15.0/20120827125645])
  846. # [16:06] * Quits: brendan (brendaneic@C2BDF0E7.F79BB743.6057D976.IP) (Quit: brendan)
  847. # [16:07] * Joins: JeroenDeDauw (jeroen@moz-54A77D60.dip.t-dialin.net)
  848. # [16:11] * Joins: jdm (jdm@moz-4F4DD68.cable.teksavvy.com)
  849. # [16:17] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  850. # [16:17] * Joins: RealRaven (Thunderbir@4F68D432.50CFDD29.C3498625.IP)
  851. # [16:20] * Joins: ekr (ekr@moz-D7997EC8.rtfm.com)
  852. # [16:20] * Joins: vikash (vikash@DBCA04FE.38F0169.5D9ABA9F.IP)
  853. # [16:22] * Joins: drexler (chatzilla@moz-BD26ECCD.hsd1.vt.comcast.net)
  854. # [16:22] * Quits: vikash (vikash@DBCA04FE.38F0169.5D9ABA9F.IP) (Ping timeout)
  855. # [16:23] * Joins: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com)
  856. # [16:24] * Quits: macmaN (chezburger@moz-DA23949E.dyn.estpak.ee) (Ping timeout)
  857. # [16:25] * Quits: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com) (Client exited)
  858. # [16:26] * Joins: mikeratcliffe (mikeratcli@moz-70EA295B.evosurge.com)
  859. # [16:26] * Joins: cc (cc@moz-9BCC1559.w90-46.abo.wanadoo.fr)
  860. # [16:26] * Joins: vikash (vikash@DBCA04FE.38F0169.5D9ABA9F.IP)
  861. # [16:26] * Fallen is now known as Fallen|away
  862. # [16:32] * Quits: drexler (chatzilla@moz-BD26ECCD.hsd1.vt.comcast.net) (Quit: ChatZilla 0.9.88-rdmsoft [XULRunner 1.9.0.17/2009122204])
  863. # [16:32] * Joins: drexler (chatzilla@moz-BD26ECCD.hsd1.vt.comcast.net)
  864. # [16:38] * ewong is now known as ewong|sleep
  865. # [16:39] * Quits: zzzzz_ (chatzilla@moz-107FCDBA.hfc.comcastbusiness.net) (Ping timeout)
  866. # [16:39] * Joins: zzzzz_ (chatzilla@moz-107FCDBA.hfc.comcastbusiness.net)
  867. # [16:40] * Joins: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP)
  868. # [16:42] * Quits: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP) (Quit: brendan)
  869. # [16:44] * mjschranz is now known as mjschranz_away
  870. # [16:46] * Joins: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP)
  871. # [16:47] * Fallen|away is now known as Fallen
  872. # [16:49] * Quits: jhk (jhk@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  873. # [16:52] * Quits: vikash (vikash@DBCA04FE.38F0169.5D9ABA9F.IP) (Ping timeout)
  874. # [16:55] * Joins: TheOne (one@moz-556B8D33.dip.t-dialin.net)
  875. # [16:55] * Quits: surkov (surkov@CE4382E5.84614B10.33A1AC3C.IP) (Quit: surkov)
  876. # [16:59] * Joins: smaug (chatzilla@moz-3C907DEA.elisa-laajakaista.fi)
  877. # [16:59] * ChanServ sets mode: +o smaug
  878. # [17:02] <marco> how can I get a pointer to a nsRefPtr object?
  879. # [17:03] <sid0> marco: do you mean the underlying pointer?
  880. # [17:03] * Joins: schien-laptop (schien@moz-51ED10AE.dynamic.hinet.net)
  881. # [17:03] <sid0> I think it's .get() or something
  882. # [17:04] <Ms2ger> marco, .get(), but why do you need it?
  883. # [17:05] * Quits: ewong|sleep (chatzilla@moz-5B0EF77B.static.netvigator.com) (Ping timeout)
  884. # [17:05] <marco> Ms2ger: I've a nsRefPtr object that I want to static cast
  885. # [17:05] <Ms2ger> Ah
  886. # [17:06] * Joins: ewong|sleep (chatzilla@moz-5B0EF77B.static.netvigator.com)
  887. # [17:07] * Quits: fabrice (fabrice@2D9B2328.2BDEAC60.56644CA2.IP) (Quit: Leaving.)
  888. # [17:07] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Input/output error)
  889. # [17:08] * Quits: @smaug (chatzilla@moz-3C907DEA.elisa-laajakaista.fi) (Ping timeout)
  890. # [17:08] * Joins: vikash (vikash@DBCA04FE.38F0169.5D9ABA9F.IP)
  891. # [17:09] * Joins: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com)
  892. # [17:10] * Quits: cc (cc@moz-9BCC1559.w90-46.abo.wanadoo.fr) (Quit: cc)
  893. # [17:15] * Quits: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP) (Quit: brendan)
  894. # [17:16] * Quits: vikash (vikash@DBCA04FE.38F0169.5D9ABA9F.IP) (Quit: Leaving)
  895. # [17:18] * Quits: Suresh (chatzilla@5690A85B.6095F024.EB06F97B.IP) (Ping timeout)
  896. # [17:21] * Joins: andreasn (andreasn@moz-171E5C3D.a336.priv.bahnhof.se)
  897. # [17:23] * Joins: dao (dao@moz-B16A317D.superkabel.de)
  898. # [17:24] * Joins: vikash (vikash@DBCA04FE.38F0169.5D9ABA9F.IP)
  899. # [17:24] * Quits: vikash (vikash@DBCA04FE.38F0169.5D9ABA9F.IP) (Client exited)
  900. # [17:24] * Joins: vikash (vikash@DBCA04FE.38F0169.5D9ABA9F.IP)
  901. # [17:32] * Joins: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP)
  902. # [17:39] * Quits: dao (dao@moz-B16A317D.superkabel.de) (Quit: Leaving.)
  903. # [17:39] * Quits: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP) (Quit: brendan)
  904. # [17:42] * Joins: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  905. # [17:45] * jcranmer|away is now known as jcranmer
  906. # [17:45] * Fallen is now known as Fallen|away
  907. # [17:46] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/72e7dbce3872 - Marco Castelluccio - Bug 778029 - Fix distorted windowless flash with X11 GL layers. r=BenWa
  908. # [17:46] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/304f86e12b60 - Gene Lian - Bug 785298 - Tests for carrying a customized message to notify "mozsettings-changed" observers. r=gwagner
  909. # [17:46] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/12b61cd59f69 - Atte Kemppila - Bug 771888 - Fix tree selection handling in Page Info > Media. r=adw
  910. # [17:46] <Ms2ger> Nope, doesn't look like the leak in browser_bug784142.js is going to get filed
  911. # [17:46] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/ebc0ba34959d - Michael Kohler - Bug 610017 - _isCmdLineEmpty should not clobber window.arguments[0]. r=ttaubert
  912. # [17:46] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/dff1055c2f50 - Gene Lian - Bug 785298 - Settings API: set() can carry a customized message to notify "mozsettings-changed" observers. r=gwagner
  913. # [17:46] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/a88c590a2c0b - David Rajchenbach-Teller - Bug 769191 - Have OS.File.prototype.{readTo, write} extrapolate a default length. r=froydnj
  914. # [17:46] * Ms2ger looks for someone to blame for browser_DeferredTask.js instead
  915. # [17:46] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/978761f9b84e - Paul Adenot - Bug 783953 - Rename MOZ_SAMPLE_TYPE_S16LE to MOZ_SAMPLE_TYPE_S16. r=kinetik,roc
  916. # [17:47] * Quits: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com) (Ping timeout)
  917. # [17:48] * Quits: deLta30_ (quassel@8E6C34C1.A3F9767A.1C37C358.IP) (Ping timeout)
  918. # [17:49] * Ms2ger complains in bug 775328
  919. # [17:52] * Joins: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
  920. # [17:53] * Quits: eeejay (eeejay@254285E4.737470A8.A0C1B52F.IP) (Ping timeout)
  921. # [17:53] * Joins: Mook (Daily@moz-8F011215.dsl.teksavvy.com)
  922. # [17:54] * Fallen|away is now known as Fallen
  923. # [18:00] * Joins: eeejay (eeejay@254285E4.737470A8.A0C1B52F.IP)
  924. # [18:01] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  925. # [18:02] * Quits: vikash (vikash@DBCA04FE.38F0169.5D9ABA9F.IP) (Client exited)
  926. # [18:08] <RyanVM> Ms2ger: feel free to file too ;)
  927. # [18:08] <Ms2ger> Wasn't someone doing a tool?
  928. # [18:08] * Joins: WG9s (bill@moz-D750CC69.maine.res.rr.com)
  929. # [18:09] * Quits: ekr (ekr@moz-D7997EC8.rtfm.com) (Ping timeout)
  930. # [18:10] <jdm> it sounded like edmorley's plans were in motion, so I stopped working on mine
  931. # [18:11] * Quits: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com) (Client exited)
  932. # [18:11] * Joins: evilpie (chatzilla@moz-C21AD520.pools.arcor-ip.net)
  933. # [18:14] * Quits: tchevalier (Daily@moz-CB77F747.w81-251.abo.wanadoo.fr) (Quit: tchevalier)
  934. # [18:14] * Joins: tchevalier (Daily@moz-CB77F747.w81-251.abo.wanadoo.fr)
  935. # [18:23] * Quits: mbrubeck (mbrubeck@moz-755AD63.hsd1.wa.comcast.net) (Quit: Leaving.)
  936. # [18:26] * Joins: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com)
  937. # [18:28] * Quits: jacek (jacek@moz-5D707D3B.psi.wroc.pl) (Quit: Konversation terminated!)
  938. # [18:29] * Joins: mbrubeck (mbrubeck@moz-755AD63.hsd1.wa.comcast.net)
  939. # [18:30] * Quits: mbrubeck (mbrubeck@moz-755AD63.hsd1.wa.comcast.net) (Quit: Leaving.)
  940. # [18:33] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Input/output error)
  941. # [18:34] * Joins: twi (Adium@moz-59F9C571.cust.dsl.vodafone.it)
  942. # [18:35] * Joins: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net)
  943. # [18:41] * Quits: TheOne (one@moz-556B8D33.dip.t-dialin.net) (Input/output error)
  944. # [18:43] * Joins: macmaN (chezburger@moz-DA23949E.dyn.estpak.ee)
  945. # [18:45] * Joins: Goldorak (chatzilla@5DBDFA7B.6D3510EC.187A1082.IP)
  946. # [18:47] * Joins: jeremyhu|nanake (jeremyhu@moz-75C113CA.outersquare.org)
  947. # [18:51] * Joins: ctopper (craig@C3495DA.BA3DBA56.AE2B2F80.IP)
  948. # [18:54] * Joins: dzbarsky (Adium@moz-59812CB1.hsd1.pa.comcast.net)
  949. # [18:54] * Joins: kdeeq (chatzilla@moz-937443ED.elisa-laajakaista.fi)
  950. # [18:55] * Joins: jwilde (Earlybird@moz-23E1A364.aton.com)
  951. # [18:55] * Joins: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP)
  952. # [18:59] * Joins: smaug (chatzilla@moz-3C907DEA.elisa-laajakaista.fi)
  953. # [18:59] * ChanServ sets mode: +o smaug
  954. # [19:00] * Joins: Mano (mano@4AE6E53A.EC757A99.39716721.IP)
  955. # [19:00] * Quits: marco (Thunderbir@6D86B2BF.60DCEFAD.10DC0B64.IP) (Quit: marco)
  956. # [19:04] * Joins: cc (cc@moz-9BCC1559.w90-46.abo.wanadoo.fr)
  957. # [19:04] * Quits: RyanVM (RyanVM@moz-403902F0.phlapa.fios.verizon.net) (Quit: ChatZilla 0.9.88.2 [Firefox 18.0a1/20120827163248])
  958. # [19:06] * Joins: automata (automata@3E0AB089.8DDD1F9.16867D26.IP)
  959. # [19:08] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/e4d15fd2146d - Abhishek Potnis - Bug 785319 - Don't throw when setting WebSocket.binaryType to an invalid value; f=Ms2ger r=smaug
  960. # [19:08] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/ed82d3fb789c - Zuhao(Joe) Chen - Bug 784602 - Add identity prefs to about:config. r=MattN
  961. # [19:11] * Parts: lduros (lduros@moz-D41962F7.phil.east.verizon.net)
  962. # [19:12] * Quits: ctopper (craig@C3495DA.BA3DBA56.AE2B2F80.IP) (Quit: ctopper)
  963. # [19:13] * Joins: lduros (lduros@moz-D41962F7.phil.east.verizon.net)
  964. # [19:13] * Parts: lduros (lduros@moz-D41962F7.phil.east.verizon.net)
  965. # [19:13] * Joins: lduros (lduros@moz-D41962F7.phil.east.verizon.net)
  966. # [19:14] * Quits: deLta30 (quassel@8E6C34C1.A3F9767A.1C37C358.IP) (Client exited)
  967. # [19:15] <decoder> how do I run a single crashtest like content/xul/templates/src/crashtests/329335-1.xul
  968. # [19:16] <decoder> that also requires chrome privs I think?
  969. # [19:16] <Ms2ger> You don't run a single crashtest
  970. # [19:17] <Ms2ger> TEST_PATH=content/xul/templates/src/crashtests/crashtests.list make crashtest
  971. # [19:17] <Ms2ger> is close, though
  972. # [19:17] <decoder> Ms2ger: I tried that
  973. # [19:17] <decoder> im seeing lots of security errors there
  974. # [19:17] <Ms2ger> How silly
  975. # [19:17] <Ms2ger> That shouldn't happen
  976. # [19:17] <decoder> i guess it's because xul is disabled by default?
  977. # [19:18] <Ms2ger> No issues here
  978. # [19:20] <decoder> hm *double checks*
  979. # [19:20] <decoder> im running make crashtest right now without test path to compare
  980. # [19:20] * Quits: maikmerten (maikmerten@moz-5C84B979.dynamic.qsc.de) (Client exited)
  981. # [19:24] * Quits: andreasn (andreasn@moz-171E5C3D.a336.priv.bahnhof.se) (Ping timeout)
  982. # [19:26] * Joins: dbaron (dbaron@moz-9221B6DD.dsl.dynamic.sonic.net)
  983. # [19:26] * ChanServ sets mode: +o dbaron
  984. # [19:26] * Quits: jdm (jdm@moz-4F4DD68.cable.teksavvy.com) (Quit: Lost terminal)
  985. # [19:27] * Quits: zzzzz_ (chatzilla@moz-107FCDBA.hfc.comcastbusiness.net) (Quit: ChatZilla 0.9.87 [Firefox 15.0/20120824154833])
  986. # [19:27] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
  987. # [19:28] * Joins: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP)
  988. # [19:28] * Quits: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com) (Client exited)
  989. # [19:31] * Quits: twi (Adium@moz-59F9C571.cust.dsl.vodafone.it) (Quit: Leaving.)
  990. # [19:33] * Quits: Mano (mano@4AE6E53A.EC757A99.39716721.IP) (Broken pipe)
  991. # [19:35] * Joins: twi (Adium@moz-59F9C571.cust.dsl.vodafone.it)
  992. # [19:35] * Quits: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net) (Client exited)
  993. # [19:35] * Quits: twi (Adium@moz-59F9C571.cust.dsl.vodafone.it) (Quit: Leaving.)
  994. # [19:35] * Quits: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP) (Quit: brendan)
  995. # [19:36] * Joins: twi (Adium@moz-59F9C571.cust.dsl.vodafone.it)
  996. # [19:36] * Joins: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com)
  997. # [19:39] * Joins: gustavold (gustavold@AACA9B2.3CA89884.FBFF2E6D.IP)
  998. # [19:40] * Quits: kdeeq (chatzilla@moz-937443ED.elisa-laajakaista.fi) (Client exited)
  999. # [19:44] * Joins: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP)
  1000. # [19:46] * Quits: jhopkins (jhopkins@moz-216F9986.tb.shawcable.net) (Quit: jhopkins)
  1001. # [19:47] * Quits: jeremyhu|nanake (jeremyhu@moz-75C113CA.outersquare.org) (Ping timeout)
  1002. # [19:48] * Quits: evilpie (chatzilla@moz-C21AD520.pools.arcor-ip.net) (Input/output error)
  1003. # [19:48] * Quits: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP) (Quit: brendan)
  1004. # [19:49] * Quits: capella (chatzilla@moz-DD0C7E4F.twcny.res.rr.com) (Quit: ChatZilla 0.9.88.2 [Firefox 18.0a1/20120831080444])
  1005. # [19:49] * Joins: capella (chatzilla@moz-DD0C7E4F.twcny.res.rr.com)
  1006. # [19:50] * Joins: lahabana (charlymolt@moz-AAF2BBD1.studby.ntnu.no)
  1007. # [19:51] * Joins: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP)
  1008. # [19:52] * Quits: AryehGregor (AryehGrego@4A76B368.F2D2BE0C.78D2F5C4.IP) (Ping timeout)
  1009. # [19:52] * Joins: AryehGregor (AryehGrego@4A76B368.F2D2BE0C.78D2F5C4.IP)
  1010. # [19:52] * Quits: lahabana (charlymolt@moz-AAF2BBD1.studby.ntnu.no) (Connection reset by peer)
  1011. # [19:52] * Joins: lahabana (charlymolt@moz-AAF2BBD1.studby.ntnu.no)
  1012. # [19:53] * Quits: brendan (brendaneic@29D68D0B.41C58073.748B6D8D.IP) (Quit: brendan)
  1013. # [19:55] * Quits: macmaN (chezburger@moz-DA23949E.dyn.estpak.ee) (Ping timeout)
  1014. # [19:58] * Quits: sfink (chatzilla@moz-AB059898.dsl.pltn13.sbcglobal.net) (Ping timeout)
  1015. # [20:00] * Joins: vikash (vikash@DBCA04FE.38F0169.5D9ABA9F.IP)
  1016. # [20:01] * Joins: dao (dao@moz-F4FB0916.superkabel.de)
  1017. # [20:02] * Joins: mkaply (mkaply@moz-92EDDD02.lightspeed.austtx.sbcglobal.net)
  1018. # [20:02] * Fallen is now known as Fallen|away
  1019. # [20:03] * Quits: Mook (Daily@moz-8F011215.dsl.teksavvy.com) (Quit: Mook)
  1020. # [20:05] * Joins: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net)
  1021. # [20:05] * Quits: JPeterson (JPeterson@moz-68CC06AD.cust.tele2.se) (Ping timeout)
  1022. # [20:05] * Quits: victorporof (victorporo@5E3230DC.6D2FB7A4.79933D60.IP) (Quit: victorporof)
  1023. # [20:07] * Joins: victorporof (victorporo@5E3230DC.6D2FB7A4.79933D60.IP)
  1024. # [20:09] * Joins: myk (myk@moz-64D96850.dsl.dynamic.sonic.net)
  1025. # [20:10] * Joins: mats (chatzilla@E8A3702C.D5022173.8500CC29.IP)
  1026. # [20:11] * Quits: cc (cc@moz-9BCC1559.w90-46.abo.wanadoo.fr) (Quit: cc)
  1027. # [20:11] * Quits: mats (chatzilla@E8A3702C.D5022173.8500CC29.IP) (Quit: ChatZilla 0.9.88.2 [Firefox 15.0/20120824154833])
  1028. # [20:12] * Joins: mats (Earlybird@E8A3702C.D5022173.8500CC29.IP)
  1029. # [20:14] * Quits: AryehGregor (AryehGrego@4A76B368.F2D2BE0C.78D2F5C4.IP) (Ping timeout)
  1030. # [20:14] * Joins: AryehGregor (AryehGrego@4A76B368.F2D2BE0C.78D2F5C4.IP)
  1031. # [20:17] * Quits: FusedTogether (Thunderbir@8CCD9A70.E49ADE39.2D7E49EB.IP) (Ping timeout)
  1032. # [20:18] * Joins: bc (bc@454BDC37.1D5E8529.AC69809B.IP)
  1033. # [20:19] * Quits: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net) (Client exited)
  1034. # [20:21] * khuey|away is now known as khuey
  1035. # [20:21] * Quits: dao (dao@moz-F4FB0916.superkabel.de) (Quit: Leaving.)
  1036. # [20:22] * Joins: mats_ (chatzilla@E8A3702C.D5022173.8500CC29.IP)
  1037. # [20:22] * Quits: vikash (vikash@DBCA04FE.38F0169.5D9ABA9F.IP) (Quit: Leaving)
  1038. # [20:23] * NeilAway wonders whether anyone has run the clang static analyser
  1039. # [20:24] * Joins: jhk (jhk@8E6C34C1.A3F9767A.1C37C358.IP)
  1040. # [20:25] * Joins: raccettura (raccettura@moz-660B8F4B.hsd1.nj.comcast.net)
  1041. # [20:27] * Quits: mats (Earlybird@E8A3702C.D5022173.8500CC29.IP) (Quit: mats)
  1042. # [20:27] * mats_ is now known as mats
  1043. # [20:27] * Quits: mats (chatzilla@E8A3702C.D5022173.8500CC29.IP) (Quit: ChatZilla 0.9.88.2 [Firefox 15.0/20120824154833])
  1044. # [20:27] <Ms2ger> NeilAway, I've seen bugs filed about its output
  1045. # [20:27] <Ms2ger> That was a while back, though
  1046. # [20:29] <drexler> Ms2ger: quick question.
  1047. # [20:29] <Ms2ger> Shoot
  1048. # [20:29] <drexler> Ms2ger: do you know where the code for an alert pop up lives in content?
  1049. # [20:30] <Ms2ger> nsGlobalWindow::Alert
  1050. # [20:30] <drexler> thanks.
  1051. # [20:30] <Ms2ger> At least the first layer :)
  1052. # [20:30] * mjschranz_away is now known as mjschranz
  1053. # [20:30] * Joins: fabrice (fabrice@E2AD0C0E.78DF3BC0.56644CA2.IP)
  1054. # [20:33] * Joins: FusedTogether (Thunderbir@8CCD9A70.E49ADE39.2D7E49EB.IP)
  1055. # [20:33] * mjschranz is now known as mjschranz_away
  1056. # [20:33] <WG9s> drexler, but are ou looiing for alert or notification.
  1057. # [20:34] <drexler> WG9s: alert from JS
  1058. # [20:34] <WG9s> hmm my bad typing took over.
  1059. # [20:35] <WG9s> ok wanted top make sure alert form javascript was what you were loking for.
  1060. # [20:35] <drexler> WG9s: np
  1061. # [20:35] <WG9s> sometimes people ask about things very loosely using terms and we pint them in entirely the worng direction si all.
  1062. # [20:37] * Joins: jeremyhu|nanake (jeremyhu@moz-75C113CA.outersquare.org)
  1063. # [20:37] <WG9s> and i have continued to point out that i really seem to have no typing ability (where actually the issue is I learned to touch type back when there were largely manual typewriters) and I rally have never been able to get used to a flat keyboard at all.
  1064. # [20:42] * Joins: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP)
  1065. # [20:42] * Joins: sfink (chatzilla@moz-BD9FC79C.hfc.comcastbusiness.net)
  1066. # [20:44] * Joins: jduell (jduell@moz-F20EC42A.hfc.comcastbusiness.net)
  1067. # [20:48] <drexler> WG9s: specifically i'm looking for the place when an OK is pressed in the alert. probably asking too much. (going line by line to find it)
  1068. # [20:48] <Ms2ger> Mm, that's probably somewhere in browser/
  1069. # [20:49] * Quits: @smaug (chatzilla@moz-3C907DEA.elisa-laajakaista.fi) (Ping timeout)
  1070. # [20:49] * Joins: brendan (brendaneic@moz-BD851B6A.cslce300.ipd.brasiltelecom.net.br)
  1071. # [20:49] <Ms2ger> gavin or dao might know
  1072. # [20:49] * Quits: WG9s (bill@moz-D750CC69.maine.res.rr.com) (Quit: ChatZilla 0.9.87-5.1450hg.fc17 [XULRunner 15.0/20120827125645])
  1073. # [20:49] * Joins: bnicholson (bnicholson@moz-F08A2DE.hsd1.ca.comcast.net)
  1074. # [20:50] * Quits: FusedTogether (Thunderbir@8CCD9A70.E49ADE39.2D7E49EB.IP) (Quit: FusedTogether)
  1075. # [20:50] * Joins: WG9s (bill@moz-D750CC69.maine.res.rr.com)
  1076. # [20:51] <drexler> probably get them when they hop online tonight. thanks :)
  1077. # [20:51] <WG9s> was loking for other channels like either javascirpt or ecma, neither seems to exist. :-(
  1078. # [20:52] <WG9s> and somehow trying to connect got me disconnected form moznet. not at all sure why.
  1079. # [20:52] * Fallen|away is now known as Fallen
  1080. # [20:52] * Quits: bb10 (bb10@moz-C7B05616.org) (Ping timeout)
  1081. # [20:53] * Joins: bb10 (bb10@moz-C7B05616.org)
  1082. # [20:57] * Quits: shedammit (shedammit@moz-A95F12B1.members.linode.com) (Ping timeout)
  1083. # [20:59] * Joins: fitzgen (fitzgen@moz-85EBB8A.dia.static.qwest.net)
  1084. # [21:00] * Quits: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP) (Quit: Leaving.)
  1085. # [21:00] * Quits: drexler (chatzilla@moz-BD26ECCD.hsd1.vt.comcast.net) (Ping timeout)
  1086. # [21:03] * Joins: macmaN (chezburger@moz-DA23949E.dyn.estpak.ee)
  1087. # [21:06] * Quits: mkaply (mkaply@moz-92EDDD02.lightspeed.austtx.sbcglobal.net) (Quit: mkaply)
  1088. # [21:07] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Ping timeout)
  1089. # [21:09] * Quits: sfink (chatzilla@moz-BD9FC79C.hfc.comcastbusiness.net) (Ping timeout)
  1090. # [21:14] * sheeri-afk is now known as sheeri
  1091. # [21:15] * Quits: jduell (jduell@moz-F20EC42A.hfc.comcastbusiness.net) (Ping timeout)
  1092. # [21:18] * Joins: cc (cc@moz-9BCC1559.w90-46.abo.wanadoo.fr)
  1093. # [21:18] * Quits: cc (cc@moz-9BCC1559.w90-46.abo.wanadoo.fr) (Quit: cc)
  1094. # [21:21] * Quits: brendan (brendaneic@moz-BD851B6A.cslce300.ipd.brasiltelecom.net.br) (Quit: brendan)
  1095. # [21:21] * Joins: reuben (reuben@moz-3D306503.res-com.wayinternet.com.br)
  1096. # [21:22] * Joins: gwagner (idefix2@BD043B9E.6910ADCF.56644CA2.IP)
  1097. # [21:23] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/b1f9a8d75e20 - Shu-yu Guo - Bug 787667 - Fix bounds checking on multidimensional ParallelArray (r=dvander)
  1098. # [21:24] * Quits: Goldorak (chatzilla@5DBDFA7B.6D3510EC.187A1082.IP) (Ping timeout)
  1099. # [21:25] * Joins: Goldorak (chatzilla@5DBDFA7B.6D3510EC.187A1082.IP)
  1100. # [21:25] * Joins: brendan (brendaneic@moz-BD851B6A.cslce300.ipd.brasiltelecom.net.br)
  1101. # [21:26] * Joins: merike|away (quassel@moz-4199E140.cable.starman.ee)
  1102. # [21:26] * merike|away is now known as merike
  1103. # [21:32] * Quits: brendan (brendaneic@moz-BD851B6A.cslce300.ipd.brasiltelecom.net.br) (Quit: brendan)
  1104. # [21:35] * Quits: Ms2ger (Ms2ger@4346D5C2.336EB8AC.37724B0D.IP) (Quit: nn)
  1105. # [21:35] * Quits: loadRPi (pi@moz-17FFE1EB.range81-151.btcentralplus.com) (Ping timeout)
  1106. # [21:35] * Quits: gwagner (idefix2@BD043B9E.6910ADCF.56644CA2.IP) (Quit: gwagner)
  1107. # [21:35] * Joins: brendan (brendaneic@moz-BD851B6A.cslce300.ipd.brasiltelecom.net.br)
  1108. # [21:36] * Joins: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net)
  1109. # [21:38] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/24d7f059eed2 - Frank Yan - Bug 782324 - Add support in JarMaker for file names that contain '@'. r=khuey
  1110. # [21:39] * Joins: ekr (ekr@moz-D7997EC8.rtfm.com)
  1111. # [21:42] * Joins: sfink (chatzilla@moz-BD9FC79C.hfc.comcastbusiness.net)
  1112. # [21:45] * Joins: shedammit (shedammit@moz-A95F12B1.members.linode.com)
  1113. # [21:47] * khuey is now known as khuey|away
  1114. # [21:48] * Quits: fabrice (fabrice@E2AD0C0E.78DF3BC0.56644CA2.IP) (Quit: Leaving.)
  1115. # [21:51] * Quits: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net) (Client exited)
  1116. # [21:55] * Joins: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net)
  1117. # [21:56] * Joins: gwagner (idefix2@BD043B9E.6910ADCF.56644CA2.IP)
  1118. # [21:56] * Joins: smaug (chatzilla@moz-3C907DEA.elisa-laajakaista.fi)
  1119. # [21:56] * ChanServ sets mode: +o smaug
  1120. # [21:57] * sheeri is now known as sheeri-afk
  1121. # [21:58] * Joins: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl)
  1122. # [21:59] * Quits: brendan (brendaneic@moz-BD851B6A.cslce300.ipd.brasiltelecom.net.br) (Quit: brendan)
  1123. # [22:01] * Joins: janv (varga@moz-B6E52297.flarion.as5628.telecom.sk)
  1124. # [22:02] * Joins: aleth (aleth@moz-24EE697D.ictp.it)
  1125. # [22:02] * Quits: gwagner (idefix2@BD043B9E.6910ADCF.56644CA2.IP) (Quit: gwagner)
  1126. # [22:02] <aleth> What function do I need to call to trigger a recalculation of the coordinates of all the listitems in a listbox? It's clear this happens sometimes, but I can't find it in the code.
  1127. # [22:03] * Joins: loadRPi (pi@moz-9D605755.range86-148.btcentralplus.com)
  1128. # [22:04] * Quits: dzbarsky (Adium@moz-59812CB1.hsd1.pa.comcast.net) (Ping timeout)
  1129. # [22:05] * Quits: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com) (Quit: Instantbird 1.3a1pre -- http://www.instantbird.com)
  1130. # [22:05] * Joins: dzbarsky (Adium@moz-59812CB1.hsd1.pa.comcast.net)
  1131. # [22:08] * Quits: Goldorak (chatzilla@5DBDFA7B.6D3510EC.187A1082.IP) (Ping timeout)
  1132. # [22:08] * Quits: cpearce (chatzilla@moz-8CBCCDA6.xdsl.xnet.co.nz) (Client exited)
  1133. # [22:08] * Quits: WG9s (bill@moz-D750CC69.maine.res.rr.com) (Quit: ChatZilla 0.9.87-5.1450hg.fc17 [XULRunner 15.0/20120827125645])
  1134. # [22:09] * Joins: Goldorak (chatzilla@5DBDFA7B.6D3510EC.187A1082.IP)
  1135. # [22:12] * Joins: gwagner (idefix2@BD043B9E.6910ADCF.56644CA2.IP)
  1136. # [22:13] * Joins: brendan (brendaneic@moz-BD851B6A.cslce300.ipd.brasiltelecom.net.br)
  1137. # [22:15] <decoder> can anyone tell me what component nsPermissionManager is? and who to cc for problems?
  1138. # [22:16] * Quits: gwagner (idefix2@BD043B9E.6910ADCF.56644CA2.IP) (Quit: gwagner)
  1139. # [22:17] * Joins: jet (junglecode@moz-79F891EE.hsd1.ca.comcast.net)
  1140. # [22:18] * Quits: merinui (merinui@moz-1D8A7606.osk2.eonet.ne.jp) (Quit: Leaving...)
  1141. # [22:22] <reuben> decoder, https://wiki.mozilla.org/Modules/All#Cookies_and_Permissions
  1142. # [22:22] * Quits: garnacho (carlos@moz-800BEE18.static.user.ono.com) (Ping timeout)
  1143. # [22:26] * Joins: dao (dao@moz-F4FB0916.superkabel.de)
  1144. # [22:26] * Fallen is now known as Fallen|away
  1145. # [22:27] * Quits: sfink (chatzilla@moz-BD9FC79C.hfc.comcastbusiness.net) (Ping timeout)
  1146. # [22:27] * Joins: lerc (quassel@moz-25860754.telstraclear.net)
  1147. # [22:29] * merike is now known as merike|away
  1148. # [22:31] * Quits: brendan (brendaneic@moz-BD851B6A.cslce300.ipd.brasiltelecom.net.br) (Quit: brendan)
  1149. # [22:31] * Quits: @bz_away (bzbarsky@moz-F9F3C337.bstnma.fios.verizon.net) (Ping timeout)
  1150. # [22:32] * Joins: bz_away (bzbarsky@moz-F9F3C337.bstnma.fios.verizon.net)
  1151. # [22:32] * Quits: Goldorak (chatzilla@5DBDFA7B.6D3510EC.187A1082.IP) (Ping timeout)
  1152. # [22:32] <decoder> reuben: thanks!
  1153. # [22:32] * Joins: mib_38cmcp (Mibbit@F1C96834.3A343ADF.B1EC621E.IP)
  1154. # [22:32] <mib_38cmcp> hi
  1155. # [22:33] * Joins: Goldorak (chatzilla@5DBDFA7B.6D3510EC.187A1082.IP)
  1156. # [22:33] * Joins: adev (adev@moz-24EE697D.ictp.it)
  1157. # [22:36] * Quits: adev (adev@moz-24EE697D.ictp.it) (Quit: Instantbird 1.3a1pre -- http://www.instantbird.com)
  1158. # [22:37] * Quits: dzbarsky (Adium@moz-59812CB1.hsd1.pa.comcast.net) (Ping timeout)
  1159. # [22:37] * Quits: mib_38cmcp (Mibbit@F1C96834.3A343ADF.B1EC621E.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1160. # [22:39] * Quits: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net) (Client exited)
  1161. # [22:40] * Joins: adev (adev@moz-24EE697D.ictp.it)
  1162. # [22:42] * Quits: jet (junglecode@moz-79F891EE.hsd1.ca.comcast.net) (Quit: jet)
  1163. # [22:43] * mattwoodrow|away is now known as mattwoodrow
  1164. # [22:44] * Quits: adev (adev@moz-24EE697D.ictp.it) (Quit: Instantbird 1.3a1pre -- http://www.instantbird.com)
  1165. # [22:45] * Joins: rajul (quassel@8544EA09.78EE3644.9DA13C14.IP)
  1166. # [22:45] * Joins: sfink (chatzilla@moz-BD9FC79C.hfc.comcastbusiness.net)
  1167. # [22:49] * mjschranz_away is now known as mjschranz
  1168. # [22:52] * Joins: hub (hub@moz-E2FCA694.figuiere.net)
  1169. # [22:52] * mattwoodrow is now known as mattwoodrow|away
  1170. # [22:53] * mjschranz is now known as mjschranz_away
  1171. # [22:53] * Fallen|away is now known as Fallen
  1172. # [22:56] * Quits: atte (atte@moz-401E92F1.dhcp.inet.fi) (Client exited)
  1173. # [22:57] * Joins: tonymec__ (tonymec@30279589.A54F7B7E.277517C1.IP)
  1174. # [22:57] * tonymec__ is now known as tonymec|away
  1175. # [22:58] * Quits: Goldorak (chatzilla@5DBDFA7B.6D3510EC.187A1082.IP) (Ping timeout)
  1176. # [22:58] * Quits: bz_away (bzbarsky@moz-F9F3C337.bstnma.fios.verizon.net) (Ping timeout)
  1177. # [22:59] * Joins: Goldorak (chatzilla@5DBDFA7B.6D3510EC.187A1082.IP)
  1178. # [23:00] * Joins: adev (adev@moz-24EE697D.ictp.it)
  1179. # [23:01] * Joins: Mook (Daily@moz-8F011215.dsl.teksavvy.com)
  1180. # [23:02] * Quits: StockHunter (StockHunte@moz-C0D4659B.ldv-co.client.bresnan.net) (Quit: Leaving)
  1181. # [23:03] * Quits: adev (adev@moz-24EE697D.ictp.it) (Input/output error)
  1182. # [23:03] * Joins: adev (adev@moz-24EE697D.ictp.it)
  1183. # [23:05] * Quits: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  1184. # [23:09] * Joins: FusedTogether (Thunderbir@8CCD9A70.E49ADE39.2D7E49EB.IP)
  1185. # [23:09] * Joins: ekr_ (ekr@moz-A62EC22B.hfc.comcastbusiness.net)
  1186. # [23:11] * Joins: tonymec (tonymec@30279589.A54F7B7E.277517C1.IP)
  1187. # [23:12] * Quits: jwilde (Earlybird@moz-23E1A364.aton.com) (Input/output error)
  1188. # [23:12] * Joins: jwilde (Earlybird@moz-23E1A364.aton.com)
  1189. # [23:13] * Quits: reuben (reuben@moz-3D306503.res-com.wayinternet.com.br) (Quit: Textual IRC Client: www.textualapp.com)
  1190. # [23:15] * Quits: rajul (quassel@8544EA09.78EE3644.9DA13C14.IP) (Client exited)
  1191. # [23:15] * Quits: bnicholson (bnicholson@moz-F08A2DE.hsd1.ca.comcast.net) (Ping timeout)
  1192. # [23:16] * Joins: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net)
  1193. # [23:17] * Quits: jwilde (Earlybird@moz-23E1A364.aton.com) (Quit: jwilde)
  1194. # [23:17] * Joins: jwilde (Thunderbir@moz-23E1A364.aton.com)
  1195. # [23:25] * Joins: WG9s (bill@moz-D750CC69.maine.res.rr.com)
  1196. # [23:25] * Quits: jhk (jhk@8E6C34C1.A3F9767A.1C37C358.IP) (Ping timeout)
  1197. # [23:26] <@dbaron> Assertion failure: mDocument->IsXUL() || mDocument->GetReadyStateEnum() == nsIDocument::READYSTATE_INTERACTIVE || (mDocument->GetReadyStateEnum() == nsIDocument::READYSTATE_UNINITIALIZED && NS_IsAboutBlank(mDocument->GetDocumentURI())) (Bad readystate), at /home/dbaron/builds/ssd/mozilla-central/mozilla/layout/base/nsDocumentViewer.cpp:1017
  1198. # [23:26] * Quits: adev (adev@moz-24EE697D.ictp.it) (Quit: Instantbird 1.3a1pre -- http://www.instantbird.com)
  1199. # [23:26] * Joins: adev (adev@moz-24EE697D.ictp.it)
  1200. # [23:26] * Quits: adev (adev@moz-24EE697D.ictp.it) (Input/output error)
  1201. # [23:28] * Joins: azakai (alon@moz-8D0CC798.lightspeed.sntcca.sbcglobal.net)
  1202. # [23:28] * Quits: azakai|far (alon@moz-8D0CC798.lightspeed.sntcca.sbcglobal.net) (Ping timeout)
  1203. # [23:28] * Quits: azakai (alon@moz-8D0CC798.lightspeed.sntcca.sbcglobal.net) (Client exited)
  1204. # [23:28] * Quits: martyn (martyn@moz-B7D2E286.webport-cl2-hg5.ilford.mdip.bt.net) (Ping timeout)
  1205. # [23:30] * Quits: Darwesh (chatzilla@49B1B402.E8EF102F.901B3F5.IP) (Ping timeout)
  1206. # [23:31] * Joins: Darwesh (chatzilla@49B1B402.E8EF102F.901B3F5.IP)
  1207. # [23:31] * Quits: bc (bc@454BDC37.1D5E8529.AC69809B.IP) (Ping timeout)
  1208. # [23:32] * Quits: dao (dao@moz-F4FB0916.superkabel.de) (Quit: Leaving.)
  1209. # [23:32] * Joins: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net)
  1210. # [23:32] * Joins: karl (karl@moz-7156AB2B.jetstream.xtra.co.nz)
  1211. # [23:33] * Joins: nmatsakis (nmatsakis@31F52E50.3AD3A61B.2321E71E.IP)
  1212. # [23:34] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/eba09afbc1f4 - Wellington Fernando de Macedo - Bug 740862 - "ASSERTION: Freeze() failed" in nsEventSource::Observe(dom-window-frozen). r=smaug
  1213. # [23:37] * Quits: RealRaven (Thunderbir@4F68D432.50CFDD29.C3498625.IP) (Client exited)
  1214. # [23:40] * Quits: msucan (mihai@17969768.DD17A642.B4CEF140.IP) (Quit: Leaving.)
  1215. # [23:41] * Joins: ferongr (ferongr@moz-4781AFE1.tellas.gr)
  1216. # [23:42] * Quits: ferongr (ferongr@moz-4781AFE1.tellas.gr) (NickServ (GHOST command used by `ferongr))
  1217. # [23:42] * Joins: ferongr (ferongr@moz-4781AFE1.tellas.gr)
  1218. # [23:42] * Joins: dzbarsky (Adium@moz-59812CB1.hsd1.pa.comcast.net)
  1219. # [23:42] * Joins: wesj (Daily@moz-FC9D6E4.hsd1.ca.comcast.net)
  1220. # [23:43] * Quits: wesj (Daily@moz-FC9D6E4.hsd1.ca.comcast.net) (Quit: wesj)
  1221. # [23:43] <@smaug> dbaron: you'd want hsivonen, but he is away
  1222. # [23:43] * Joins: wesj (Daily@moz-FC9D6E4.hsd1.ca.comcast.net)
  1223. # [23:45] * Quits: Elen (El@moz-729280DD.dhcp.inet.fi) (Ping timeout)
  1224. # [23:46] * Quits: xakz (XaMaD@moz-34FBE388.fbx.proxad.net) (Ping timeout)
  1225. # [23:47] * khuey|away is now known as khuey
  1226. # [23:47] * Joins: Jesse (jruderman@moz-BBB5DE6B.san.res.rr.com)
  1227. # [23:48] * Joins: adev (adev@moz-24EE697D.ictp.it)
  1228. # [23:48] * Joins: RealRaven (Thunderbir@4F68D432.50CFDD29.C3498625.IP)
  1229. # [23:49] * Quits: automata (automata@3E0AB089.8DDD1F9.16867D26.IP) (Ping timeout)
  1230. # [23:50] * Joins: Elen (El@moz-729280DD.dhcp.inet.fi)
  1231. # [23:50] * Joins: merinui (merinui@moz-1D8A7606.osk2.eonet.ne.jp)
  1232. # [23:51] * Joins: Archaeopteryx (itsme@moz-756328DB.cust.telecolumbus.net)
  1233. # [23:51] * Quits: adev (adev@moz-24EE697D.ictp.it) (Input/output error)
  1234. # [23:51] * Joins: azakai|far (alon@moz-90E3042.lightspeed.sntcca.sbcglobal.net)
  1235. # [23:53] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
  1236. # [23:55] * Joins: loadbang (loadbang@moz-9D605755.range86-148.btcentralplus.com)
  1237. # [23:55] * Joins: Jesse_ (jruderman@moz-BBB5DE6B.san.res.rr.com)
  1238. # [23:55] * Quits: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net) (Client exited)
  1239. # [23:56] * Quits: Jesse (jruderman@moz-BBB5DE6B.san.res.rr.com) (Ping timeout)
  1240. # [23:56] * Quits: karl (karl@moz-7156AB2B.jetstream.xtra.co.nz) (Ping timeout)
  1241. # [23:58] * Joins: mccr8 (mccr8@moz-EB2F197F.dsl.dynamic.sonic.net)
  1242. # Session Close: Sun Sep 02 00:00:00 2012

The end :)