/irc-logs / mozilla / #developers / 2014-03-14 / end

Options:

  1. # Session Start: Fri Mar 14 00:00:00 2014
  2. # Session Ident: #developers
  3. # [00:00] <@smaug> hmm
  4. # [00:00] <@smaug> do you want LinkedList then?
  5. # [00:00] <tbsaunde> that would be rediculiously slow
  6. # [00:00] <@smaug> that wouldn't do copy-ctor
  7. # [00:00] <@smaug> but if you want a list and not array...
  8. # [00:00] * Quits: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  9. # [00:01] <tbsaunde> smaug: yeah, I was talking about copy ctor not ds
  10. # [00:01] <@smaug> cabanier: is this performance critical ?
  11. # [00:01] <@smaug> and if so, what part is perf critical
  12. # [00:01] <cabanier> smaug: not really
  13. # [00:02] <cabanier> smaug: it would be in the event handling for hit regions
  14. # [00:02] <cabanier> smaug: so not rendering
  15. # [00:02] <@smaug> and the list/array would contain what?
  16. # [00:02] <cabanier> smaug: there wouldn't be that many regions so the list would stay small
  17. # [00:03] <cabanier> smaug: list of paths that needs to be hit tested
  18. # [00:03] * @smaug should read the thread about canvas+hit regions
  19. # [00:03] * Quits: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP) (Quit: Leaving)
  20. # [00:03] <cabanier> smaug: with their corresponding controls and ids
  21. # [00:04] * Quits: fox2mike (shyam@C62C4188.66A0454.467F5724.IP) (Ping timeout)
  22. # [00:04] * Quits: rbarnes (rbarnes@4CF1311C.2018CD83.B532E9A1.IP) (Input/output error)
  23. # [00:04] <@smaug> cabanier: and new paths can be removed and inserted
  24. # [00:04] <cabanier> smaug: yes
  25. # [00:04] <@smaug> why would you need copy-ctor?
  26. # [00:04] <cabanier> smaug: the last one inserted will be the first one that is hit-test
  27. # [00:05] * Quits: Jesse (jruderman@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Jesse)
  28. # [00:05] <cabanier> smaug: in the case of std::list, inserting in the list would create a copy
  29. # [00:06] * Quits: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro) (Ping timeout)
  30. # [00:06] <@smaug> ah, of the thing you insert
  31. # [00:06] * Quits: victorporof_ (victorporo@13F2CEC5.7672369.D8E68FF6.IP) (Quit: victorporof_)
  32. # [00:06] <cabanier> smaug: regions can be removed so there would be holes in the array
  33. # [00:06] <@smaug> cabanier: I thought you need to take a copy of the whole list
  34. # [00:06] <cabanier> smaug: no
  35. # [00:06] * Joins: jrm2k6 (jrm2k6@moz-876091EF.sd.sd.cox.net)
  36. # [00:06] <@smaug> ok, LinkedList sounds like better option then
  37. # [00:07] <cabanier> smaug: yes
  38. # [00:07] <@smaug> you can insert and remove stuff O(1)
  39. # [00:07] <cabanier> smaug: thanks for pointing it out
  40. # [00:07] <@smaug> http://mxr.mozilla.org/mozilla-central/source/mfbt/LinkedList.h
  41. # [00:07] <cabanier> smaug: good. that will happen quite often
  42. # [00:08] * Joins: Jesse (jruderman@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  43. # [00:08] * Joins: fox2mike (shyam@moz-8DDA37AB.fox2mike.net)
  44. # [00:08] * julienw is now known as julienw_afk
  45. # [00:09] <@smaug> LinkedList may increase memusage ofc
  46. # [00:09] <@smaug> but if there aren't that many items..
  47. # [00:10] <cabanier> what would you consider many items?
  48. # [00:10] <@smaug> hundreds?
  49. # [00:10] <cabanier> I think that will be unusual
  50. # [00:10] * Joins: williecheong (Adium@moz-CF8BEBEF.dia.static.qwest.net)
  51. # [00:11] * Quits: bnicholson (bnicholson@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  52. # [00:11] <cabanier> at most a couple dozen
  53. # [00:11] * Joins: therube (chatzilla@moz-A5CC1EE2.hsd1.md.comcast.net)
  54. # [00:12] * Quits: arnaud_bienner (arno@moz-A1109EC1.dsl.sta.abo.bbox.fr) (Quit: Ex-Chat)
  55. # [00:13] * Joins: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP)
  56. # [00:13] * Quits: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP) (Max SendQ exceeded)
  57. # [00:13] * Joins: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP)
  58. # [00:14] * Quits: marxin (marxin@moz-97B87435.scz.novell.com) (Ping timeout)
  59. # [00:14] * Quits: marxin_ (marxin@moz-97B87435.scz.novell.com) (Ping timeout)
  60. # [00:14] * Joins: emerson (emerson@moz-45E8E520.hsd1.mi.comcast.net)
  61. # [00:14] * Quits: emerson (emerson@moz-45E8E520.hsd1.mi.comcast.net) (Max SendQ exceeded)
  62. # [00:15] * Joins: marxin (marxin@moz-C41E88F0.emea.novell.com)
  63. # [00:15] * Joins: marxin_ (marxin@moz-C41E88F0.emea.novell.com)
  64. # [00:15] * Quits: gargsms (gargsms@7FDD62B0.DEBD96D2.1C37C358.IP) (Quit: Leaving)
  65. # [00:15] * Quits: ggp (ggp@7407F9B9.7D8E47F4.1160D82E.IP) (Input/output error)
  66. # [00:15] * Quits: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP) (Client exited)
  67. # [00:15] * nthomas is now known as nthomas|away
  68. # [00:15] * Quits: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP) (Quit: RealRaven)
  69. # [00:16] * Joins: emerson (emerson@moz-45E8E520.hsd1.mi.comcast.net)
  70. # [00:16] * Joins: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP)
  71. # [00:16] * Joins: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP)
  72. # [00:17] * Quits: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP) (Max SendQ exceeded)
  73. # [00:18] * Quits: therube (chatzilla@moz-A5CC1EE2.hsd1.md.comcast.net) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 1.9.0.19/2010031422])
  74. # [00:18] * Joins: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP)
  75. # [00:18] * Joins: bnicholson (bnicholson@moz-BBE3ABD.mv.mozilla.com)
  76. # [00:19] * Quits: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP) (Quit: RealRaven)
  77. # [00:19] * Quits: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP) (Max SendQ exceeded)
  78. # [00:19] * Joins: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP)
  79. # [00:20] * Joins: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP)
  80. # [00:20] * Joins: brendan (brendaneic@moz-BBE3ABD.mv.mozilla.com)
  81. # [00:20] * Quits: cstipkovic (uid6805@moz-E77DEB21.irccloud.com) (Quit: Connection closed for inactivity)
  82. # [00:20] * Joins: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net)
  83. # [00:22] * Quits: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP) (Quit: RealRaven)
  84. # [00:22] * Quits: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net) (Quit: OSError: [Errno 130] Owner died)
  85. # [00:22] * Joins: gwagner_ (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  86. # [00:22] * Quits: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP) (Max SendQ exceeded)
  87. # [00:23] * Joins: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP)
  88. # [00:23] * Joins: doctrv (emerson@moz-45E8E520.hsd1.mi.comcast.net)
  89. # [00:23] * Joins: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP)
  90. # [00:23] * Quits: doctrv (emerson@moz-45E8E520.hsd1.mi.comcast.net) (Connection reset by peer)
  91. # [00:23] * Joins: doctrv (emerson@moz-45E8E520.hsd1.mi.comcast.net)
  92. # [00:23] * Quits: emerson (emerson@moz-45E8E520.hsd1.mi.comcast.net) (Ping timeout)
  93. # [00:23] * doctrv is now known as emerson
  94. # [00:23] * Quits: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP) (Max SendQ exceeded)
  95. # [00:24] * Quits: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP) (Quit: RealRaven)
  96. # [00:24] * Quits: smontagu (chatzilla@moz-3CCB3491.red.bezeqint.net) (Ping timeout)
  97. # [00:24] * Joins: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP)
  98. # [00:24] * Joins: sicking (sicking@moz-BBE3ABD.mv.mozilla.com)
  99. # [00:24] * Joins: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP)
  100. # [00:24] * Quits: gandalf (zbraniecki@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  101. # [00:25] * jorendorff is now known as jorendorff_away
  102. # [00:25] * Quits: mt (mt@moz-5F16805E.hsd1.ca.comcast.net) (Quit: Leaving.)
  103. # [00:26] * Quits: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP) (Max SendQ exceeded)
  104. # [00:26] * Joins: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP)
  105. # [00:28] * Quits: @dbaron (dbaron@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  106. # [00:28] * Joins: dbaron (dbaron@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  107. # [00:28] * ChanServ sets mode: +ao dbaron dbaron
  108. # [00:29] * Quits: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP) (Quit: RealRaven)
  109. # [00:29] * Joins: jchaulk (jchaulk-20@moz-A5DF7EB9.dsl.teksavvy.com)
  110. # [00:29] * Joins: AaronMT (AaronMT@moz-53D1D1F.cpe.net.cable.rogers.com)
  111. # [00:29] * Joins: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP)
  112. # [00:30] * Quits: vichen (vichen@moz-5FF3F4B1.dynamic.hinet.net) (Quit: vichen)
  113. # [00:30] * Quits: h4writer (h4writer@moz-6BDA8831.access.telenet.be) (Ping timeout)
  114. # [00:31] * Joins: Boriss (Boriss@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  115. # [00:32] * Quits: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP) (Quit: RealRaven)
  116. # [00:32] * Quits: marxin (marxin@moz-C41E88F0.emea.novell.com) (Ping timeout)
  117. # [00:32] * Quits: marxin_ (marxin@moz-C41E88F0.emea.novell.com) (Ping timeout)
  118. # [00:32] * Joins: marxin (marxin@moz-97B87435.scz.novell.com)
  119. # [00:32] * Joins: marxin_ (marxin@moz-97B87435.scz.novell.com)
  120. # [00:32] * Joins: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net)
  121. # [00:33] * Joins: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP)
  122. # [00:33] <@njn> glandium: in your post about directory tiles, it wasn't entirely obvious to me the difference between the "acceptable" and "unacceptable" cases. Was it the visual design, or the sites being linked to, or something else?
  123. # [00:33] * Quits: ahal (ahal@moz-7DE89BF0.cable.teksavvy.com) (Ping timeout)
  124. # [00:33] <glandium> njn: the visual design
  125. # [00:33] * retornam is now known as retornam|away
  126. # [00:34] * Quits: jedp (jedp@moz-BBE3ABD.mv.mozilla.com) (Quit: Computer has gone to sleep.)
  127. # [00:34] <glandium> njn: but as i said, i don't want to make up my mind until i see what's really going to be there
  128. # [00:35] * Joins: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com)
  129. # [00:35] * Quits: AaronMT (AaronMT@moz-53D1D1F.cpe.net.cable.rogers.com) (Quit: Textual IRC Client: www.textualapp.com)
  130. # [00:35] * Quits: jdm (jdm@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Lost terminal)
  131. # [00:36] * Quits: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP) (Client exited)
  132. # [00:36] * Quits: jrm2k6 (jrm2k6@moz-876091EF.sd.sd.cox.net) (Client exited)
  133. # [00:37] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  134. # [00:37] * Joins: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP)
  135. # [00:37] * Joins: aja (Instantbir@B4907B00.C750B320.7880DB15.IP)
  136. # [00:37] * Quits: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP) (Max SendQ exceeded)
  137. # [00:38] * Joins: milan (milan@moz-B6BC80A6.west.biz.rr.com)
  138. # [00:39] * Quits: jimb (user@125EF623.B2666F0E.66399531.IP) (Ping timeout)
  139. # [00:39] * whimboo is now known as whimboo|afk
  140. # [00:39] * Quits: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP) (Quit: RealRaven)
  141. # [00:40] * Joins: victorporof (victorporo@moz-FFB76956.cpe.net.cable.rogers.com)
  142. # [00:40] * Joins: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP)
  143. # [00:40] * Quits: milan (milan@moz-B6BC80A6.west.biz.rr.com) (Ping timeout)
  144. # [00:41] * Quits: gwagner_ (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner_)
  145. # [00:41] * Quits: jammink (textual@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  146. # [00:41] * Quits: jammink_ (textual@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  147. # [00:41] * Joins: gandalf (zbraniecki@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  148. # [00:42] * Quits: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving.)
  149. # [00:42] * Joins: michal (michal@4D91A4AE.76DE1060.FAF22AF7.IP)
  150. # [00:42] * Quits: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP) (Quit: RealRaven)
  151. # [00:43] * Joins: valentin (Thunderbir@34F4ACDA.7F69ED53.FAF22AF7.IP)
  152. # [00:45] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Client exited)
  153. # [00:46] * Joins: jammink (textual@moz-BBE3ABD.mv.mozilla.com)
  154. # [00:46] * Joins: jammink_ (textual@moz-BBE3ABD.mv.mozilla.com)
  155. # [00:46] * Quits: jimm (jmathies@moz-DF439B90.pn.at.cox.net) (Quit: )
  156. # [00:47] <@njn> glandium: so the unacceptable one was too garish?
  157. # [00:48] <glandium> njn: too advertisy
  158. # [00:48] * Quits: rstrong (rstrong@moz-217F02CE.lightspeed.sntcca.sbcglobal.net) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 1.8.0.9/2006120508])
  159. # [00:49] <glandium> too shipping center flyer, if you prefer
  160. # [00:49] <glandium> shopping
  161. # [00:51] <philor> ApplicationReputationService?
  162. # [00:51] <@njn> glandium: needs more Instragram filters
  163. # [00:52] * Quits: valentin (Thunderbir@34F4ACDA.7F69ED53.FAF22AF7.IP) (Ping timeout)
  164. # [00:52] <philor> oh, ApplicationRepuationService as in hg qbackout -r cd5ce2a9aceb, I see
  165. # [00:53] * Joins: valentin (Thunderbir@34F4ACDA.7F69ED53.FAF22AF7.IP)
  166. # [00:53] * Quits: benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  167. # [00:53] * Quits: aklotz (Thunderbir@FD1E68D2.64455FB.F97ED6F2.IP) (Quit: aklotz)
  168. # [00:54] * Joins: Rik (rik@moz-E813DFA5.fbx.proxad.net)
  169. # [00:54] * Joins: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net)
  170. # [00:55] * Quits: ekr (ekr@moz-7B0110AD.mv.mozilla.com) (Quit: ekr)
  171. # [00:55] <glandium> erf, a typo got me on http://moilla.org/
  172. # [00:57] * Quits: geekboy (geekboy@moz-BBE3ABD.mv.mozilla.com) (Input/output error)
  173. # [00:58] * Quits: gkw2 (Mibbit@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: http://www.mibbit.com ajax IRC Client)
  174. # [00:58] * Joins: dashed (dashed@moz-84DD998B.cpe.net.cable.rogers.com)
  175. # [00:58] * Joins: benvie (bbenvie@5FD20F9A.53D07D95.EFF8B7BF.IP)
  176. # [00:59] * Quits: myk (myk@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  177. # [00:59] * Quits: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com) (Quit: juanb)
  178. # [00:59] * Joins: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca)
  179. # [00:59] * Joins: ggp (ggp@2517BFAF.BFDA0A02.9F9EFC6F.IP)
  180. # [00:59] * Joins: myk (myk@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  181. # [00:59] * Quits: AsaDotzler (textual@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  182. # [01:02] <philor> that's a glaring typo - everybody knows it should be Enquire
  183. # [01:02] * Quits: @ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  184. # [01:04] * Fallen is now known as Fallen|away
  185. # [01:05] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  186. # [01:06] * Joins: cpearce (chatzilla@8ACF1000.5EFFC0B8.24454B25.IP)
  187. # [01:06] * Quits: erahm (Adium@125EF623.B2666F0E.66399531.IP) (Quit: Leaving.)
  188. # [01:06] * Quits: Akhil_T (Akhil@moz-A376BF12.hsd1.tx.comcast.net) (Ping timeout)
  189. # [01:08] * Joins: Akhil_T (Akhil@moz-A376BF12.hsd1.tx.comcast.net)
  190. # [01:08] * Quits: myk (myk@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  191. # [01:08] * Joins: Akhil_T_ (Akhil@moz-A376BF12.hsd1.tx.comcast.net)
  192. # [01:09] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Quit: Leaving.)
  193. # [01:09] * Quits: Akhil_T (Akhil@moz-A376BF12.hsd1.tx.comcast.net) (Ping timeout)
  194. # [01:11] <KWierso|sheriffduty> philor: any idea what those windows build failures were about?
  195. # [01:11] <mmc> kwierso, i forgot to change a uuid. would that cause breakage on inbound but not try?
  196. # [01:11] * Quits: odin_ (Odin@moz-66D3502E.zone5.bethere.co.uk) (Ping timeout)
  197. # [01:12] <KWierso|sheriffduty> probably
  198. # [01:12] <mmc> :(
  199. # [01:12] <mmc> sorry
  200. # [01:12] * Joins: mt (mt@moz-5F16805E.hsd1.ca.comcast.net)
  201. # [01:12] * nthomas|away is now known as nthomas
  202. # [01:12] * Joins: odin_ (Odin@moz-66D3502E.zone5.bethere.co.uk)
  203. # [01:14] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  204. # [01:15] * Quits: Gijs (gijs@moz-E5F83CA.adsl-surfen.hetnet.nl) (Quit: sleep time)
  205. # [01:16] * Quits: victorporof (victorporo@moz-FFB76956.cpe.net.cable.rogers.com) (Ping timeout)
  206. # [01:17] * Quits: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca) (Ping timeout)
  207. # [01:17] * Parts: williecheong (Adium@moz-CF8BEBEF.dia.static.qwest.net)
  208. # [01:18] * Joins: victorporof (victorporo@moz-FFB76956.cpe.net.cable.rogers.com)
  209. # [01:18] * Joins: victorporof_ (victorporo@moz-FFB76956.cpe.net.cable.rogers.com)
  210. # [01:18] * khuey is now known as khuey|away
  211. # [01:18] * ewong|away is now known as ewong
  212. # [01:20] * Quits: victorporof (victorporo@moz-FFB76956.cpe.net.cable.rogers.com) (Ping timeout)
  213. # [01:22] * Quits: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net) (Ping timeout)
  214. # [01:22] * Joins: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net)
  215. # [01:22] * Quits: m_gol (m_gol@moz-4A03F5C1.dynamic.chello.pl) (Quit: Leaving...)
  216. # [01:24] * Quits: catalinn (Thunderbir@11BF4B12.7F10AE13.A721DA5F.IP) (Ping timeout)
  217. # [01:25] * Quits: sfoster (sfoster@moz-961AB6F2.hsd1.or.comcast.net) (Ping timeout)
  218. # [01:25] * jlund is now known as jlund|afk
  219. # [01:25] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Client exited)
  220. # [01:25] * Joins: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca)
  221. # [01:25] * Quits: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: pcwalton)
  222. # [01:26] * jhopkins|bbl is now known as jhopkins
  223. # [01:27] * Quits: bwc (Adium@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  224. # [01:27] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  225. # [01:27] * Quits: cpeterson (cpeterson@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  226. # [01:27] * Joins: cpeterson (cpeterson@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  227. # [01:27] * Quits: kip (kip@A6CF435B.D1155E2C.CFC2A289.IP) (Quit: )
  228. # [01:28] * Quits: valentin (Thunderbir@34F4ACDA.7F69ED53.FAF22AF7.IP) (Ping timeout)
  229. # [01:28] * Joins: valentin (Thunderbir@34F4ACDA.7F69ED53.FAF22AF7.IP)
  230. # [01:28] * retornam|away is now known as retornam
  231. # [01:29] * Quits: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca) (Ping timeout)
  232. # [01:29] * Quits: benvie (bbenvie@5FD20F9A.53D07D95.EFF8B7BF.IP) (Ping timeout)
  233. # [01:29] * Quits: Waldo (waldo@moz-9754CB0.hsd1.ca.comcast.net) (Quit: ChatZilla 0.9.87-8.1450hg.fc20 [XULRunner 27.0/20140203120101])
  234. # [01:29] * retornam is now known as retornam|away
  235. # [01:30] * Quits: mt (mt@moz-5F16805E.hsd1.ca.comcast.net) (Quit: Leaving.)
  236. # [01:30] * Joins: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com)
  237. # [01:30] * Joins: benvie (bbenvie@5FD20F9A.53D07D95.EFF8B7BF.IP)
  238. # [01:30] * Joins: mt (mt@moz-5F16805E.hsd1.ca.comcast.net)
  239. # [01:30] * Joins: vichen (vichen@moz-99690620.hinet-ip.hinet.net)
  240. # [01:31] * Joins: jgilbert_ (jgilbert@moz-BBE3ABD.mv.mozilla.com)
  241. # [01:32] * Quits: jammink (textual@moz-BBE3ABD.mv.mozilla.com) (Quit: Computer has gone to sleep.)
  242. # [01:32] * Quits: jammink_ (textual@moz-BBE3ABD.mv.mozilla.com) (Quit: Computer has gone to sleep.)
  243. # [01:32] * Quits: jgilbert (jgilbert@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  244. # [01:33] * Quits: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net) (Input/output error)
  245. # [01:33] <philor> KWierso|sheriffduty: icu build failures? gasp!
  246. # [01:33] <philor> this must be a day with "day" in the name
  247. # [01:33] * Joins: jammink (textual@moz-BBE3ABD.mv.mozilla.com)
  248. # [01:34] * Joins: ehsan (ehsan@moz-1780D827.cable.teksavvy.com)
  249. # [01:34] * ChanServ sets mode: +o ehsan
  250. # [01:34] * Joins: jammink_ (textual@moz-BBE3ABD.mv.mozilla.com)
  251. # [01:35] * Quits: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  252. # [01:35] * Joins: billm (billm@moz-E7C99C14.lightspeed.sntcca.sbcglobal.net)
  253. # [01:36] <philor> heh, and billm broke metrochrome just a day or so too early :)
  254. # [01:36] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  255. # [01:36] * Quits: jammink_ (textual@moz-BBE3ABD.mv.mozilla.com) (Quit: Textual IRC Client: http://www.textualapp.com/)
  256. # [01:36] * Quits: jammink (textual@moz-BBE3ABD.mv.mozilla.com) (Quit: Textual IRC Client: http://www.textualapp.com/)
  257. # [01:36] <KWierso|sheriffduty> yeah
  258. # [01:36] <billm> philor: what, are we hiding those tests?
  259. # [01:37] * Quits: mwargers (mwargers@moz-AF369B35.adsl.online.nl) (Ping timeout)
  260. # [01:37] * Quits: Dagger (Dagger@moz-2B01C171.cable.virginm.net) (Ping timeout)
  261. # [01:37] * Quits: st3fan (stefan@moz-6078D3C7.norad.org) (Ping timeout)
  262. # [01:37] * Joins: st3fan (stefan@moz-6078D3C7.norad.org)
  263. # [01:38] * Joins: Dagger (Dagger@moz-2B01C171.cable.virginm.net)
  264. # [01:39] <billm> anyway, I will back out
  265. # [01:39] <KWierso|sheriffduty> billm: too late :)
  266. # [01:39] * Joins: milan (milan@moz-B6BC80A6.west.biz.rr.com)
  267. # [01:39] <billm> KWierso|sheriffduty: thanks
  268. # [01:39] * khuey|away is now known as khuey
  269. # [01:40] * khuey is now known as khuey|caltrain
  270. # [01:40] * Quits: Mook_as (mook@moz-1FCC0032.activestate.com) (Quit: Mook_as)
  271. # [01:40] * Joins: mwargers (mwargers@moz-AF369B35.adsl.online.nl)
  272. # [01:41] * Quits: milan (milan@moz-B6BC80A6.west.biz.rr.com) (Ping timeout)
  273. # [01:42] * Quits: mccr9 (mccr8@moz-BBE3ABD.mv.mozilla.com) (Quit: computer sleep)
  274. # [01:42] * terrence-flu is now known as terrence-afk
  275. # [01:42] * Quits: erick (erick@E1304535.2A7189BF.BE19388.IP) (Ping timeout)
  276. # [01:43] * Joins: erick (erick@E1304535.2A7189BF.BE19388.IP)
  277. # [01:43] * Quits: drno (nohlmeier@moz-BBE3ABD.mv.mozilla.com) (Quit: drno)
  278. # [01:43] * Quits: mwu (mwu@moz-2E883D31.hsd1.nj.comcast.net) (Quit: Leaving)
  279. # [01:44] <lsblakk> vlad: ping
  280. # [01:45] * Quits: bajaj (Adium@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  281. # [01:45] * Joins: bajaj (Adium@moz-BBE3ABD.mv.mozilla.com)
  282. # [01:45] * Joins: erahm (Adium@moz-A511F1A0.hsd1.or.comcast.net)
  283. # [01:46] * Joins: Dwight_Stegall (YIM@moz-EE25458F.client.mchsi.com)
  284. # [01:47] * Quits: mt (mt@moz-5F16805E.hsd1.ca.comcast.net) (Quit: Leaving.)
  285. # [01:47] * joshua-s is now known as joshua-s|zzz
  286. # [01:47] <philor> billm: yeah, https://bugzilla.mozilla.org/show_bug.cgi?id=983269
  287. # [01:49] <jld> Apparently I need to fix code that's been in NSPR since "Free the lizard". Yay?
  288. # [01:49] <jld> Although I didn't actually assign that bug to myself. Hm.
  289. # [01:50] * Quits: cpearce (chatzilla@8ACF1000.5EFFC0B8.24454B25.IP) (Ping timeout)
  290. # [01:51] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  291. # [01:51] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Client exited)
  292. # [01:51] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  293. # [01:51] <tbsaunde> jld: why?
  294. # [01:51] * Joins: Waldo (waldo@moz-BBE3ABD.mv.mozilla.com)
  295. # [01:52] * Joins: mccr8 (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net)
  296. # [01:52] <jld> tbsaunde: It's calling waitpid(-1, ...) and collecting dead children that belong to IPC.
  297. # [01:52] <jld> tbsaunde: It seems to be one of the causes of bug 933680.
  298. # [01:53] <glandium> jld: good luck fixing that
  299. # [01:53] <glandium> jld: there's a bug about that somewhere iirc
  300. # [01:53] <glandium> essentially, nspr assumes it's alone handling subprocesses
  301. # [01:53] <glandium> that worked fine for us 10 years ago
  302. # [01:54] <glandium> (in fact, nspr assumes it's alone handling anything)
  303. # [01:54] * Joins: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  304. # [01:54] * capella is now known as capella|away
  305. # [01:54] <jld> glandium: It's fine as long as nobody starts up NSPR's child machinery. I'm still not sure why try/buildbot do that and my local runs don't.
  306. # [01:54] * Quits: bajaj (Adium@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  307. # [01:55] <tbsaunde> jld: yeah, sounds fun
  308. # [01:55] <jld> Bug 745212.
  309. # [01:55] * Quits: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  310. # [01:55] * curtisk is now known as curtisk|afk
  311. # [01:55] * Quits: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net) (Ping timeout)
  312. # [01:56] <glandium> jld: nsIProcess uses nspr
  313. # [01:56] <glandium> i'm sure other things do as well
  314. # [01:56] * Joins: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net)
  315. # [01:56] * Quits: erick (erick@E1304535.2A7189BF.BE19388.IP) (Ping timeout)
  316. # [01:57] <jld> glandium: There's a confluence of other bugs such that (if it's a refcount-logging-enabled build) the IPC code hangs around forever trying to waitpid the child that NSPR stole. And its signal handler delegates to the older NSPR handler. So if the pid is reused for an nsIProcess, IPC steals that child from NSPR and the nsIProcess user blocks forever.
  317. # [01:57] <jld> ...that might have gotten cut off.
  318. # [01:57] * Quits: bnicholson (bnicholson@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  319. # [01:57] * nsm is now known as nsm|away
  320. # [01:57] <jld> Well, "blocks forever" until the test times our and fails.
  321. # [01:58] <jld> s/our/out
  322. # [01:58] * Joins: AsaDotzler (textual@4508CAE6.38324963.204CA821.IP)
  323. # [01:59] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  324. # [01:59] <glandium> the best thing to do imho would be to stop using nspr for anything that is not nss
  325. # [01:59] <glandium> one piece at a time
  326. # [02:00] * Joins: mt (mt@moz-5F16805E.hsd1.ca.comcast.net)
  327. # [02:00] * Quits: AsaDotzler (textual@4508CAE6.38324963.204CA821.IP) (Ping timeout)
  328. # [02:00] <@khuey|caltrain> glandium++
  329. # [02:01] <jld> Also, https://bugzilla.mozilla.org/show_bug.cgi?id=227246 seems to be approximately the same thing.
  330. # [02:01] <glandium> jld: i think that's the bug i had in mind
  331. # [02:01] * Quits: Akhil_T_ (Akhil@moz-A376BF12.hsd1.tx.comcast.net) (Quit: Computer has gone to sleep.)
  332. # [02:02] * Joins: AsaDotzler (textual@4508CAE6.38324963.204CA821.IP)
  333. # [02:02] * Quits: Boriss (Boriss@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  334. # [02:04] <jld> So should I dupe the 2-year-old bug onto the 10-year-old bug, or vice versa, or neither?
  335. # [02:04] <fabrice1> jld: keep the oldest one to be proud when you fix it!
  336. # [02:05] <philor> don't do it!
  337. # [02:05] <philor> I fixed a 5-digit bug once, and then for the sin of pride I had to fix three followups
  338. # [02:05] * Quits: mccr8 (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net) (Quit: )
  339. # [02:06] * Quits: fabrice1 (fabrice@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  340. # [02:06] <glandium> jld: the 10-year-old bug is a nspr bug. don't fix nspr. fix gecko by not using nspr.
  341. # [02:07] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  342. # [02:07] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  343. # [02:07] * Quits: michal (michal@4D91A4AE.76DE1060.FAF22AF7.IP) (Ping timeout)
  344. # [02:08] * Joins: geekboy (geekboy@moz-2F998E60.dsl.static.sonic.net)
  345. # [02:08] * Joins: michal (michal@4D91A4AE.76DE1060.FAF22AF7.IP)
  346. # [02:09] <tbsaunde> glandium: I think we all agree with you, but every know and again I don't think its unreasonable to hope fixing nspr is the path of least resistance
  347. # [02:09] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  348. # [02:10] * Quits: geekboy (geekboy@moz-2F998E60.dsl.static.sonic.net) (Ping timeout)
  349. # [02:10] <tbsaunde> of course you end up learning its only a path to sadness, but perhaps learning that the hard way is for the best and makes people more interested in killing it
  350. # [02:11] <aja> ryanvm: last m-i to m-c merge broke win64 build?
  351. # [02:11] <hub> long live the NSPR
  352. # [02:12] <jld> I don't completely understand why NSPR needs to have a background thread do waitpid() and then collect the info so it can be exposed over another waitpid()-like interface.
  353. # [02:12] <jld> But I haven't looked that closely at NSPR yet, and I don't know if that would be a wise choice.
  354. # [02:12] * Quits: valentin (Thunderbir@34F4ACDA.7F69ED53.FAF22AF7.IP) (Ping timeout)
  355. # [02:13] * Joins: valentin (Thunderbir@34F4ACDA.7F69ED53.FAF22AF7.IP)
  356. # [02:13] <glandium> tbsaunde: nspr is used by too many other things that might assume how it works to risk touching it
  357. # [02:14] <glandium> jld: because nspr is a "portable" runtime. you use the same functions on unix and windows.
  358. # [02:14] <tbsaunde> glandium: the problem I see with that argument is that then anything important can never be fixed
  359. # [02:14] <glandium> jld: there is no waitpid for windows
  360. # [02:14] <jld> glandium: But I'm wondering why the Unix implementation needs to do that. I think the answer is PR_DetachProcess.
  361. # [02:15] <philor> aja: just ICU, nobody really expects it to build very often
  362. # [02:15] <glandium> tbsaunde: why do you think i want us to kill nspr use?
  363. # [02:15] <tbsaunde> glandium: so we don't have to deal with it is why I want to kill it
  364. # [02:16] <jld> I will note that NSPR seems to do a better job of exposing consistent platform-independent interfaces than the Chromium IPC stuff.
  365. # [02:16] <glandium> jld: i don't think the chromium ipc stuff even tries to be consistent across platforms
  366. # [02:17] * Joins: elin (elin@moz-99690620.hinet-ip.hinet.net)
  367. # [02:17] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  368. # [02:17] * nsm|away is now known as nsm
  369. # [02:18] <jld> glandium: It tries, but it doesn't try very hard.
  370. # [02:18] * Quits: mikeratcliffe (Adium@1B67F073.8F445B48.7CCB197A.IP) (Quit: Leaving.)
  371. # [02:18] * Quits: @dbaron (dbaron@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  372. # [02:18] * Joins: dbaron (dbaron@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  373. # [02:18] * ChanServ sets mode: +ao dbaron dbaron
  374. # [02:18] * Quits: jchaulk (jchaulk-20@moz-A5DF7EB9.dsl.teksavvy.com) (Quit: Leaving.)
  375. # [02:19] * Joins: jchaulk (jchaulk-20@moz-A5DF7EB9.dsl.teksavvy.com)
  376. # [02:19] <nemo> *sigh*
  377. # [02:19] * Quits: twi (Adium@moz-ED056769.cust.vodafonedsl.it) (Quit: Leaving.)
  378. # [02:19] <nemo> looks like monster madness guys killed the open demo
  379. # [02:19] <nemo> https://blog.mozilla.org/blog/2013/12/12/first-3d-commercial-web-game-powered-by-asm-js-unveiled/
  380. # [02:19] <nemo> is now a dead link
  381. # [02:19] * Joins: twi (Adium@moz-ED056769.cust.vodafonedsl.it)
  382. # [02:20] * Quits: ggp (ggp@2517BFAF.BFDA0A02.9F9EFC6F.IP) (Input/output error)
  383. # [02:20] * Quits: twi (Adium@moz-ED056769.cust.vodafonedsl.it) (Quit: Leaving.)
  384. # [02:20] * Joins: ggp (ggp@2517BFAF.BFDA0A02.9F9EFC6F.IP)
  385. # [02:20] * khuey|caltrain is now known as khuey|away
  386. # [02:20] * Joins: karl (karl@8ACF1000.5EFFC0B8.24454B25.IP)
  387. # [02:20] <aja> philor: occasional internationalized win64 builds?
  388. # [02:20] * Joins: twi (Adium@moz-ED056769.cust.vodafonedsl.it)
  389. # [02:20] * khuey|away is now known as khuey|caltrain
  390. # [02:20] <glandium> nemo: "Anonymous accounts are not enabled for this game!"
  391. # [02:20] * khuey|caltrain is now known as khuey
  392. # [02:20] <glandium> nemo: not entirely a dead link
  393. # [02:21] * Quits: emerson (emerson@moz-45E8E520.hsd1.mi.comcast.net) (Ping timeout)
  394. # [02:21] * Quits: twi (Adium@moz-ED056769.cust.vodafonedsl.it) (Quit: Leaving.)
  395. # [02:21] * Quits: jchaulk (jchaulk-20@moz-A5DF7EB9.dsl.teksavvy.com) (Ping timeout)
  396. # [02:22] * Quits: ggp (ggp@2517BFAF.BFDA0A02.9F9EFC6F.IP) (Ping timeout)
  397. # [02:22] <nemo> glandium: yeah, just effectively so, for purposes of me showing off actual use of asm.js in real stuff
  398. # [02:23] * Joins: boris (boris@moz-99690620.hinet-ip.hinet.net)
  399. # [02:24] * Joins: darkowlzz (sunny@D3866326.687E16A1.F44414AF.IP)
  400. # [02:25] * Quits: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP) (Ping timeout)
  401. # [02:26] * Quits: mt (mt@moz-5F16805E.hsd1.ca.comcast.net) (Connection reset by peer)
  402. # [02:27] * Quits: Jesse (jruderman@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Jesse)
  403. # [02:27] * Quits: boris (boris@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving.)
  404. # [02:28] * Quits: haseeb (uid13814@moz-E77DEB21.irccloud.com) (Quit: Connection closed for inactivity)
  405. # [02:28] * Joins: mikeratcliffe (Adium@1B67F073.8F445B48.7CCB197A.IP)
  406. # [02:28] <nemo> glandium: wish they'd at least left something minimal, like, oh, the lobby
  407. # [02:28] <nemo> maybe they needed the bandwidth
  408. # [02:29] <nemo> could have put it on another server p'raps in that case.
  409. # [02:29] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  410. # [02:30] * Quits: @Cwiiis (uid15019@moz-31ABA2C0.irccloud.com) (Quit: Connection closed for inactivity)
  411. # [02:30] * Joins: dougc (dougc@moz-F16BC551.static.rev.eftel.com)
  412. # [02:30] * Joins: ericjung_ (ericjung@EBA5EBAE.78089B69.E141FD9.IP)
  413. # [02:32] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  414. # [02:32] * Joins: bent (chatzilla@moz-9B043FA6.hsd1.ca.comcast.net)
  415. # [02:34] * Joins: Jesse (jruderman@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  416. # [02:35] * Quits: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: pcwalton)
  417. # [02:36] * Joins: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net)
  418. # [02:36] * Quits: lduros (user@moz-D1C419E5.phlapa.fios.verizon.net) (Client exited)
  419. # [02:36] * Joins: bnicholson (bnicholson@883FDC4D.BF05706.A36C57B9.IP)
  420. # [02:36] * KWierso|sheriffduty is now known as KWierso
  421. # [02:39] * Quits: bnicholson (bnicholson@883FDC4D.BF05706.A36C57B9.IP) (Quit: Leaving)
  422. # [02:39] * Joins: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com)
  423. # [02:39] * Joins: jchaulk (jchaulk-20@moz-A5DF7EB9.dsl.teksavvy.com)
  424. # [02:40] * Quits: jchaulk (jchaulk-20@moz-A5DF7EB9.dsl.teksavvy.com) (Connection reset by peer)
  425. # [02:40] * Joins: jchaulk (jchaulk-20@moz-A5DF7EB9.dsl.teksavvy.com)
  426. # [02:40] * Joins: milan (milan@moz-B6BC80A6.west.biz.rr.com)
  427. # [02:40] * Joins: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net)
  428. # [02:41] * Joins: Morris (Morris@moz-99690620.hinet-ip.hinet.net)
  429. # [02:41] * Joins: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net)
  430. # [02:41] * Joins: cpearce (chatzilla@moz-99690620.hinet-ip.hinet.net)
  431. # [02:41] * Joins: kentuckyfriedtakahe (ajones@moz-99690620.hinet-ip.hinet.net)
  432. # [02:41] * Quits: milan (milan@moz-B6BC80A6.west.biz.rr.com) (Connection reset by peer)
  433. # [02:42] * Joins: milan (milan@moz-B6BC80A6.west.biz.rr.com)
  434. # [02:42] * Joins: bnicholson (bnicholson@883FDC4D.BF05706.A36C57B9.IP)
  435. # [02:42] * NeilAway rebases patch around checkin, finds checkin casued bustage closing tree, therefore has to pull the backout and undo the rebasing
  436. # [02:44] * Quits: milan (milan@moz-B6BC80A6.west.biz.rr.com) (Ping timeout)
  437. # [02:44] * Quits: cpearce (chatzilla@moz-99690620.hinet-ip.hinet.net) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  438. # [02:44] * Quits: gandalf (zbraniecki@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  439. # [02:44] * BenWa is now known as BenWa|email
  440. # [02:44] * Joins: erick (erick@E1304535.2A7189BF.BE19388.IP)
  441. # [02:45] * Quits: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca) (Quit: surkov)
  442. # [02:45] <philor> aja: "since we enabled ICU, we've occasionally had successful builds on Windows"
  443. # [02:45] * Quits: Jesse (jruderman@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Jesse)
  444. # [02:46] <philor> somewhat less frequently since the sheriffs got browbeat into not clobbering multiple times a day
  445. # [02:46] * Joins: gandalf (zbraniecki@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  446. # [02:46] * Joins: boris (boris@moz-99690620.hinet-ip.hinet.net)
  447. # [02:46] * Joins: cpearce (chatzilla@moz-99690620.hinet-ip.hinet.net)
  448. # [02:47] <aja> philor: hmmm.....i download win64 builds almost daily
  449. # [02:47] * Quits: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net) (Quit: Computer has gone to sleep.)
  450. # [02:47] * Quits: jgriffin (jgriffin@moz-791CC332.hsd1.wa.comcast.net) (Quit: jgriffin)
  451. # [02:47] * Joins: lpy (lpy@1834E2CB.F09091A8.1348A864.IP)
  452. # [02:47] * Joins: brsun (chatzilla@moz-99690620.hinet-ip.hinet.net)
  453. # [02:47] * Joins: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net)
  454. # [02:48] * Quits: gandalf (zbraniecki@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  455. # [02:48] <philor> aja: I require rather more than "almost daily" to be satisfied with a platform's build performance
  456. # [02:48] * Quits: valentin (Thunderbir@34F4ACDA.7F69ED53.FAF22AF7.IP) (Ping timeout)
  457. # [02:48] * Joins: valentin (Thunderbir@34F4ACDA.7F69ED53.FAF22AF7.IP)
  458. # [02:49] <aja> philor: agreed!
  459. # [02:49] <philor> I want more like all of the several hundred builds I'll look at in the course of a day to actually not have build failures totally unrelated to the changes they are building
  460. # [02:49] * Quits: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net) (Ping timeout)
  461. # [02:49] <aja> dream on
  462. # [02:49] * heycam|away is now known as heycam
  463. # [02:50] * Joins: ggp (ggp@7407F9B9.7D8E47F4.1160D82E.IP)
  464. # [02:50] * Quits: sunfish (chatzilla@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  465. # [02:51] * Quits: Mossop (dtownsend@53343B0D.8DCA2D5.5E2862A8.IP) (Quit: This computer has gone to sleep)
  466. # [02:51] <aja> heycam: wondering if there exists a draft of custom properties with tab's proposed changes...think i understand, but seeing examples would help
  467. # [02:52] <heycam> aja, no, it's only in his head since yesterday
  468. # [02:52] * Quits: boris (boris@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving.)
  469. # [02:52] <heycam> aja, one proposal is to require custom properties be named beginning with "_", and no other "var-" prefix
  470. # [02:52] <heycam> aja, someone else on the thread suggested using "--" as the prefix
  471. # [02:53] <heycam> aja, but still you would use var() on the right hand side
  472. # [02:53] <heycam> to reference them
  473. # [02:53] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Client exited)
  474. # [02:53] * BenWa|email is now known as BenWa
  475. # [02:54] * Quits: bnicholson (bnicholson@883FDC4D.BF05706.A36C57B9.IP) (Ping timeout)
  476. # [02:55] <aja> heycam: <bikeshed>i kinda liked someone else's proposed change to fallback syntax. "value || fallback" rather than comma-separated</bikeshead>
  477. # [02:56] <heycam> aja, that's simpler in that it's not hierarchically composable
  478. # [02:56] <heycam> but I don't see a great need to change from how fallback is handled currently
  479. # [02:56] <aja> nor i
  480. # [02:57] * hwine is now known as hwine-commuting
  481. # [02:57] * Joins: boris (boris@moz-99690620.hinet-ip.hinet.net)
  482. # [02:57] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  483. # [02:57] <aja> heycam, you ever implement fallback, btw
  484. # [02:58] <aja> n/m, that was blink
  485. # [02:58] * nsm is now known as nsm|away
  486. # [02:58] <heycam> right
  487. # [02:58] * Quits: @smaug (chatzilla@moz-9E0B1701.pp.htv.fi) (Ping timeout)
  488. # [02:58] * Quits: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: ekr)
  489. # [02:58] * Quits: brendan (brendaneic@moz-BBE3ABD.mv.mozilla.com) (Quit: brendan)
  490. # [02:59] * Quits: WaltS48 (Thunderbir@moz-10652D5.pitbpa.east.verizon.net) (Quit: WaltS48 has gone elsewhere)
  491. # [02:59] * Joins: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  492. # [02:59] * khuey is now known as khuey|away
  493. # [03:00] <aja> heycam: any chance to work on details/summary?
  494. # [03:00] <heycam> aja, sorry, been busy with other things :(
  495. # [03:00] * aja is a nudge
  496. # [03:00] <heycam> aja, I really should get back to it though
  497. # [03:01] * BenWa is now known as BenWa|email
  498. # [03:02] * Quits: boris (boris@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving.)
  499. # [03:02] * Joins: jhlin_ (jhlin@moz-C1C161D4.dynamic.hinet.net)
  500. # [03:02] * Quits: @dbaron (dbaron@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  501. # [03:03] * Joins: Akhil_T_ (Akhil@moz-A376BF12.hsd1.tx.comcast.net)
  502. # [03:03] * Quits: jhlin (jhlin@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  503. # [03:03] <aja> heycam: fwiw, validators don't like some of the aria values being recommended for it
  504. # [03:03] * Quits: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: pcwalton)
  505. # [03:03] * Joins: boris (boris@moz-99690620.hinet-ip.hinet.net)
  506. # [03:03] * Quits: lpy (lpy@1834E2CB.F09091A8.1348A864.IP) (Client exited)
  507. # [03:03] * Quits: brsun (chatzilla@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  508. # [03:04] * Quits: jhlin_ (jhlin@moz-C1C161D4.dynamic.hinet.net) (Ping timeout)
  509. # [03:04] <heycam> aja, I don't really know the state of validaors wrt aria attributes, although I would have assumed that validator.nu would be up to date
  510. # [03:04] * Quits: grobinson (~grobinson@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  511. # [03:04] * Joins: josh (josh@moz-348C4790.hsd1.mn.comcast.net)
  512. # [03:04] <mike5w3c> it is
  513. # [03:04] * Joins: jhlin (jhlin@moz-C1C161D4.dynamic.hinet.net)
  514. # [03:05] <mike5w3c> or it intends to be
  515. # [03:05] * Joins: brsun (chatzilla@moz-99690620.hinet-ip.hinet.net)
  516. # [03:05] <aja> heycam: not last i checked....maybe i'll have a look tonite
  517. # [03:05] * Quits: josh (josh@moz-348C4790.hsd1.mn.comcast.net) (Quit: josh)
  518. # [03:06] * Joins: sewardj_ (sewardj@moz-6AC4BE5C.dip0.t-ipconnect.de)
  519. # [03:06] * Joins: bnicholson (bnicholson@883FDC4D.BF05706.A36C57B9.IP)
  520. # [03:06] <mike5w3c> aja: if you find any cases where the validator doesn't conform to the spec feel free to ping me here or on #whatwg
  521. # [03:06] * Quits: jchaulk (jchaulk-20@moz-A5DF7EB9.dsl.teksavvy.com) (Ping timeout)
  522. # [03:07] * Quits: darkowlzz (sunny@D3866326.687E16A1.F44414AF.IP) (Quit: This computer has gone to sleep)
  523. # [03:07] * Quits: sewardj (sewardj@moz-B6ECC1DE.dip0.t-ipconnect.de) (Ping timeout)
  524. # [03:08] <aja> mike5w3c: details role=group and summary role=button both are errors
  525. # [03:08] <mike5w3c> aja: k, will take a look
  526. # [03:09] * jchen is now known as jchen|away
  527. # [03:09] <aja> mike5w3c: saw those as recommend design patterns in a recentish blog post. lawsons perhaps?
  528. # [03:09] * Quits: ehugg (ehugg@moz-EA33CD8D.hsd1.wa.comcast.net) (Quit: ehugg)
  529. # [03:09] * Joins: ehugg (ehugg@moz-EA33CD8D.hsd1.wa.comcast.net)
  530. # [03:09] <aja> recommended
  531. # [03:09] * Quits: maxli (Adium@moz-EE42E0E.student.cs.uwaterloo.ca) (Quit: Leaving.)
  532. # [03:10] <mike5w3c> maybe so. not sure I read that one
  533. # [03:10] * Quits: ehugg (ehugg@moz-EA33CD8D.hsd1.wa.comcast.net) (Quit: ehugg)
  534. # [03:10] * Quits: elin (elin@moz-99690620.hinet-ip.hinet.net) (Quit: elin)
  535. # [03:10] * Quits: boris (boris@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving.)
  536. # [03:10] <KWierso> billm: you still around?
  537. # [03:10] * Quits: phantom (phantom@CD6CC25F.875E349C.78F8539B.IP) (Ping timeout)
  538. # [03:10] * Joins: phantom (phantom@moz-7F327BCF.customer.t3.se)
  539. # [03:11] <aja> mike5w3c: http://www.creativebloq.com/html5/5-html5-and-aria-design-patterns-7133753 <- faulkner
  540. # [03:11] * mike5w3c looks
  541. # [03:11] * Joins: elin (elin@moz-99690620.hinet-ip.hinet.net)
  542. # [03:11] <KWierso> billm: (you sure bug 982828 did what you thought it should do? https://tbpl.mozilla.org/php/getParsedLog.php?id=36110793&tree=Mozilla-Inbound)
  543. # [03:12] <aja> mike5w3c: i haven't tried the figure/figcaption examples yet
  544. # [03:12] * Quits: jhlin (jhlin@moz-C1C161D4.dynamic.hinet.net) (Client exited)
  545. # [03:12] <mike5w3c> aja: btw I find that that only constraint the spec states for details@role is "If specified, role must be a role that supports aria-expanded". So I'll check which support aria-expanded
  546. # [03:12] * Quits: Preeti (uid13882@moz-E77DEB21.irccloud.com) (Quit: Connection closed for inactivity)
  547. # [03:13] * Joins: jhlin (jhlin@moz-99690620.hinet-ip.hinet.net)
  548. # [03:13] * Joins: chucklee (chucklee@moz-99690620.hinet-ip.hinet.net)
  549. # [03:13] <mike5w3c> aja: I think the figure/figcaption ones should work
  550. # [03:13] <billm> KWierso: just a sec. looking.
  551. # [03:13] * Joins: shelly (shelly@moz-99690620.hinet-ip.hinet.net)
  552. # [03:13] <mike5w3c> aja: details is news, it may be that I've not gotten around to updating the support for it yet
  553. # [03:14] <mike5w3c> *new
  554. # [03:14] * Quits: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net) (Input/output error)
  555. # [03:14] <mike5w3c> (newer)
  556. # [03:14] <aja> mike5w3c: figure role=group would be my corcern there
  557. # [03:14] * Joins: maxli (Adium@moz-EE42E0E.student.cs.uwaterloo.ca)
  558. # [03:14] <aja> concern
  559. # [03:15] * Joins: boris (boris@moz-99690620.hinet-ip.hinet.net)
  560. # [03:15] <mike5w3c> aja: ok lemm check that right now in the code
  561. # [03:15] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Quit: Leaving.)
  562. # [03:15] * Joins: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net)
  563. # [03:16] <billm> KWierso: it should be fixed now
  564. # [03:16] * Joins: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net)
  565. # [03:16] <mike5w3c> aja: from the code it looks like figure doesn't support role=group yet
  566. # [03:16] * mike5w3c checks the spec
  567. # [03:16] <KWierso> billm: thanks
  568. # [03:16] * Quits: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: ekr)
  569. # [03:18] <mike5w3c> aja: ah wait it does
  570. # [03:19] * Quits: atsai (atsai@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving)
  571. # [03:19] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  572. # [03:19] * Joins: atsai (atsai@moz-99690620.hinet-ip.hinet.net)
  573. # [03:21] <KWierso> billm: also https://tbpl.mozilla.org/php/getParsedLog.php?id=36111482&tree=Mozilla-Inbound
  574. # [03:21] * Joins: josh (josh@moz-348C4790.hsd1.mn.comcast.net)
  575. # [03:23] <KWierso> philor: open to ideas on those b2g on OSX build failures :)
  576. # [03:23] * Quits: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net) (Quit: [self dealloc])
  577. # [03:23] <mike5w3c> aja: I notice that the Default implicit ARIA semantic of <details> is role=group so you shouldn't actually need to explicitly specify role=group for it -- the UA should map it to the right a11y API thing automatically
  578. # [03:24] <mike5w3c> aja: still I guess it should be allowed if you want to explicitly put it
  579. # [03:24] <aja> mike5w3c: 'cept for legacy
  580. # [03:24] <mike5w3c> yeah
  581. # [03:25] <aja> same for figure, iirc
  582. # [03:25] <mike5w3c> I think the whatwg spec actually prohibts
  583. # [03:26] <mike5w3c> * prohibits default roles from being explicitly stated
  584. # [03:27] <RyanVM|afk> KWierso: that's a slave issue
  585. # [03:27] * RyanVM|afk is now known as RyanVM
  586. # [03:27] <aja> really? thought got changed a while back
  587. # [03:28] <RyanVM> KWierso: we've been seeing those intermittently, but usually on Try
  588. # [03:28] * RyanVM goes looking for the bug
  589. # [03:28] * Quits: mikeratcliffe (Adium@1B67F073.8F445B48.7CCB197A.IP) (Quit: Leaving.)
  590. # [03:28] * Quits: boris (boris@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving.)
  591. # [03:28] <RyanVM> KWierso: note that it's the same slave, though
  592. # [03:28] <mike5w3c> aja: can't remember.. checking now
  593. # [03:28] * Quits: sicking (sicking@moz-BBE3ABD.mv.mozilla.com) (Quit: sicking)
  594. # [03:29] <KWierso> cpearce: bustage
  595. # [03:29] <RyanVM> cpearce: any idea why android/b2g media mochitests have spiked so badly in timeouts in the past couple days?
  596. # [03:29] * Joins: mt (mt@moz-5F16805E.hsd1.ca.comcast.net)
  597. # [03:30] * Joins: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net)
  598. # [03:30] <mike5w3c> aja: "Authors must not set the ARIA role and aria-* attributes to values that match the default implicit ARIA semantics defined in the following two tables." http://www.whatwg.org/specs/web-apps/current-work/multipage/elements.html#wai-aria
  599. # [03:31] <cajbir> cpearce is in a meeting, not sure if he can respond. KWierso, RyanVM.
  600. # [03:31] <KWierso> out he goes :)
  601. # [03:31] * Quits: gwagner (gwagner@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  602. # [03:31] <RyanVM> cajbir: i'm off to bed soon, but I can always bug padenot about it in the morning :D
  603. # [03:32] * Joins: fabrice (fabrice@moz-1A8E36BB.hsd1.ca.comcast.net)
  604. # [03:32] <mike5w3c> aja: however, the w3c spec does not state that constraint
  605. # [03:32] <padenot> RyanVM: I'll be in a plane, hehe
  606. # [03:32] <RyanVM> noooooo
  607. # [03:32] <RyanVM> but since you're here now...:P
  608. # [03:32] * Joins: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net)
  609. # [03:32] <padenot> RyanVM: although this might be related to the refactoring cpearce just landed
  610. # [03:33] <RyanVM> take a look at android M3 or b2g m3
  611. # [03:33] <RyanVM> rather disturbing
  612. # [03:33] <padenot> RyanVM: I'll talk to him in 25min, when he is finished with his meeting (we are at a workweek)
  613. # [03:33] <RyanVM> ok, I'm going to bed soon
  614. # [03:33] <cajbir> yes, most likely the refactoring
  615. # [03:33] <RyanVM> padenot: http://brasstacks.mozilla.com/orangefactor/
  616. # [03:33] <padenot> RyanVM: we'll try to find a solution, thanks for the heads up
  617. # [03:33] <RyanVM> you can see them trending on there too
  618. # [03:34] * Joins: boris (boris@moz-99690620.hinet-ip.hinet.net)
  619. # [03:34] * Quits: mt (mt@moz-5F16805E.hsd1.ca.comcast.net) (Quit: Leaving.)
  620. # [03:35] * Joins: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com)
  621. # [03:36] * philor is now known as philor|away
  622. # [03:36] <mike5w3c> aja: anyway the RIA spec does allow role-group to have aria-expanded so I guess we should support details@role=group in the validator despite the whatwg spec restriction
  623. # [03:36] <aja> mike5w3c: wonder why figure isn't in one of those tables then
  624. # [03:36] <mike5w3c> aja: anyway the RIA spec does allow role-group to have aria-expanded so I guess we should support details@role=group in the validator despite the whatwg spec restriction
  625. # [03:37] * Quits: @ehsan (ehsan@moz-1780D827.cable.teksavvy.com) (Quit: vanished into thin air...)
  626. # [03:37] <mike5w3c> aja: dunno but if it's not listed it just means anything is allowed, basically
  627. # [03:37] * Joins: lpy (lpy@8B40CDAC.F09091A8.1348A864.IP)
  628. # [03:37] <mike5w3c> any role
  629. # [03:37] * jhopkins is now known as jhopkins|afk
  630. # [03:38] * Joins: ehugg (ehugg@moz-EA33CD8D.hsd1.wa.comcast.net)
  631. # [03:38] * Quits: RyanVM (Thunderbir@moz-37FED3AC.phlapa.fios.verizon.net) (Quit: RyanVM)
  632. # [03:38] * Joins: kk1fff (kk1fff@moz-99690620.hinet-ip.hinet.net)
  633. # [03:38] * Quits: boris (boris@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving.)
  634. # [03:40] <aja> mike5w3c: inconsistancy / oversight? perhaps i'll mention it to Hixie ^^^
  635. # [03:40] <aja> perhaps i just did :)
  636. # [03:41] * aja knows all about leaving sense of logic at the door, though
  637. # [03:42] * Quits: karl (karl@8ACF1000.5EFFC0B8.24454B25.IP) (Ping timeout)
  638. # [03:42] * Quits: soumyaC (uid15286@moz-E77DEB21.irccloud.com) (Quit: Connection closed for inactivity)
  639. # [03:42] * Joins: milan (milan@moz-B6BC80A6.west.biz.rr.com)
  640. # [03:42] * Joins: Jerry (hshih@moz-99690620.hinet-ip.hinet.net)
  641. # [03:43] * Quits: Morris (Morris@moz-99690620.hinet-ip.hinet.net) (Quit: Morris)
  642. # [03:43] * Quits: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net) (Quit: Textual IRC Client: www.textualapp.com)
  643. # [03:43] * Joins: cpeterso_ (cpeterson@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  644. # [03:43] * Joins: Morris (Morris@moz-99690620.hinet-ip.hinet.net)
  645. # [03:44] * Quits: cpeterson (cpeterson@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  646. # [03:44] * Joins: mt (mt@moz-5F16805E.hsd1.ca.comcast.net)
  647. # [03:44] * Quits: mchang (mchang@BE99BE02.84BCE52A.BCAEBB33.IP) (Quit: mchang)
  648. # [03:44] * Quits: milan (milan@moz-B6BC80A6.west.biz.rr.com) (Ping timeout)
  649. # [03:45] * mattwoodrow|away is now known as mattwoodrow
  650. # [03:45] * Quits: cpeterso_ (cpeterson@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  651. # [03:45] * Joins: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca)
  652. # [03:46] * Quits: josh (josh@moz-348C4790.hsd1.mn.comcast.net) (Quit: josh)
  653. # [03:46] * Quits: billm (billm@moz-E7C99C14.lightspeed.sntcca.sbcglobal.net) (Ping timeout)
  654. # [03:46] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Quit: Leaving.)
  655. # [03:46] * Quits: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net) (Quit: Any technology, no matter how primitive, is magic to those who don't understand it)
  656. # [03:46] * Quits: victorporof_ (victorporo@moz-FFB76956.cpe.net.cable.rogers.com) (Ping timeout)
  657. # [03:46] * Joins: boris (boris@moz-99690620.hinet-ip.hinet.net)
  658. # [03:48] * Quits: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: pcwalton)
  659. # [03:48] * Joins: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net)
  660. # [03:50] * Quits: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net) (Ping timeout)
  661. # [03:51] * Quits: chewey (chewey@moz-894E98AD.dip0.t-ipconnect.de) (NickServ (GHOST command used by chewey_))
  662. # [03:51] * Joins: chewey (chewey@moz-3C6BD21C.dip0.t-ipconnect.de)
  663. # [03:52] * Joins: josh (josh@moz-348C4790.hsd1.mn.comcast.net)
  664. # [03:52] * BenWa|email is now known as BenWa
  665. # [03:54] * Quits: josh (josh@moz-348C4790.hsd1.mn.comcast.net) (Quit: josh)
  666. # [03:54] * Quits: jgilbert_ (jgilbert@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  667. # [03:54] * BenWa is now known as BenWa|email
  668. # [03:55] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  669. # [03:56] * Joins: Niharika (Happiness@633FD436.142D8E0A.74119F78.IP)
  670. # [03:57] * Quits: tn (tim@moz-E7CE1D28.wp.shawcable.net) (Ping timeout)
  671. # [03:57] * Quits: Akhil_T_ (Akhil@moz-A376BF12.hsd1.tx.comcast.net) (Ping timeout)
  672. # [03:57] * Joins: tn (tim@moz-E7CE1D28.wp.shawcable.net)
  673. # [03:57] * Joins: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  674. # [03:57] * Quits: ehugg (ehugg@moz-EA33CD8D.hsd1.wa.comcast.net) (Quit: ehugg)
  675. # [03:58] * Joins: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com)
  676. # [03:58] * Joins: Hendikins (wolfox@moz-BA6D9F52.static.internode.on.net)
  677. # [03:59] * philor|away is now known as philor
  678. # [03:59] * Joins: Jesse (jruderman@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  679. # [03:59] * Quits: Optimizer (Optimizer@AAC59C77.E26B7A67.BE4CF869.IP) (Ping timeout)
  680. # [04:00] * Quits: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: pcwalton)
  681. # [04:01] * Joins: jhlin_ (jhlin@moz-C1C161D4.dynamic.hinet.net)
  682. # [04:02] * Joins: Neil (neil@moz-32AA0D01.in-addr.btopenworld.com)
  683. # [04:02] * Quits: jhlin (jhlin@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  684. # [04:02] * Quits: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com) (Ping timeout)
  685. # [04:02] * Neil is now known as NeilAway
  686. # [04:04] <philor> we haven't clobbered inbound yet, have we?
  687. # [04:04] * philor does
  688. # [04:04] <philor> since those missed-uuid-change objdirs aren't going to delete themselves
  689. # [04:06] * Quits: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net) (Input/output error)
  690. # [04:06] * Quits: bent (chatzilla@moz-9B043FA6.hsd1.ca.comcast.net) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  691. # [04:09] * Joins: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net)
  692. # [04:09] * Quits: masayuki1 (Thunderbir@moz-86D7F6E4.zaq.ne.jp) (Quit: masayuki1)
  693. # [04:10] * Joins: masayuki1 (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  694. # [04:10] * Joins: brendan (brendaneic@35E90EE3.B8B12C49.396B22AD.IP)
  695. # [04:12] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  696. # [04:13] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  697. # [04:17] * Joins: grobinson (~grobinson@moz-731932CD.hsd1.ca.comcast.net)
  698. # [04:18] * Joins: Optimizer (Optimizer@AAC59C77.E26B7A67.BE4CF869.IP)
  699. # [04:20] * Quits: KaiRo (robert@moz-5F7674B7.adsl.highway.telekom.at) (Input/output error)
  700. # [04:22] * Joins: gwagner (Gregor@moz-B45FE61C.hsd1.ca.comcast.net)
  701. # [04:22] * Quits: KWierso (chatzilla@moz-9B11DA99.hsd1.ca.comcast.net) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 1.9.0.17/2009122204])
  702. # [04:22] * Joins: karl (karl@moz-99690620.hinet-ip.hinet.net)
  703. # [04:23] * Joins: kushagra (kushagra@AF2B7127.A83E5248.C28326FD.IP)
  704. # [04:24] * Quits: tonymec (tonymec@E590ED01.31BA17B7.277517C1.IP) (Ping timeout)
  705. # [04:25] * Quits: tonymec_KDE (tonymec@E590ED01.31BA17B7.277517C1.IP) (Ping timeout)
  706. # [04:25] * Quits: tonymec|away (tonymec@E590ED01.31BA17B7.277517C1.IP) (Ping timeout)
  707. # [04:25] * Quits: kushagra (kushagra@AF2B7127.A83E5248.C28326FD.IP) (Ping timeout)
  708. # [04:25] * Quits: brendan (brendaneic@35E90EE3.B8B12C49.396B22AD.IP) (Quit: brendan)
  709. # [04:26] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  710. # [04:26] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  711. # [04:27] * Quits: Dwight_Stegall (YIM@moz-EE25458F.client.mchsi.com) (Quit: I'm bored, time to go.)
  712. # [04:30] * Joins: tonymec_KDE (tonymec@4FD4E758.EE6CCC0.277517C1.IP)
  713. # [04:31] * Quits: mt (mt@moz-5F16805E.hsd1.ca.comcast.net) (Quit: Leaving.)
  714. # [04:32] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  715. # [04:34] * Quits: Jesse (jruderman@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Jesse)
  716. # [04:34] * Quits: Optimizer (Optimizer@AAC59C77.E26B7A67.BE4CF869.IP) (Ping timeout)
  717. # [04:34] * Joins: rubocoptero (rubocopter@E61422F8.B6AEF62D.56B33818.IP)
  718. # [04:34] * Joins: Jesse (jruderman@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  719. # [04:35] * Joins: sicking (sicking@moz-501E5580.hsd1.ca.comcast.net)
  720. # [04:35] * Joins: victorporof (victorporo@moz-FFB76956.cpe.net.cable.rogers.com)
  721. # [04:37] * Quits: Jesse (jruderman@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  722. # [04:37] * Joins: sawrubh (uid6719@moz-5F4AA75A.irccloud.com)
  723. # [04:38] * Joins: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com)
  724. # [04:38] * Quits: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: pcwalton)
  725. # [04:38] * Joins: Optimizer (Optimizer@AAC59C77.E26B7A67.BE4CF869.IP)
  726. # [04:39] * Quits: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net) (Input/output error)
  727. # [04:39] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  728. # [04:39] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  729. # [04:40] * Quits: jhlin_ (jhlin@moz-C1C161D4.dynamic.hinet.net) (Client exited)
  730. # [04:40] * Joins: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net)
  731. # [04:41] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  732. # [04:41] * Joins: Jesse (jruderman@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  733. # [04:41] * Quits: maxli (Adium@moz-EE42E0E.student.cs.uwaterloo.ca) (Quit: Leaving.)
  734. # [04:42] * Joins: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net)
  735. # [04:43] * Joins: milan (milan@moz-B6BC80A6.west.biz.rr.com)
  736. # [04:43] * Quits: Jesse (jruderman@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  737. # [04:43] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  738. # [04:43] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  739. # [04:44] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  740. # [04:44] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  741. # [04:44] * Joins: Mook (mook@moz-5B3BC903.dsl.teksavvy.com)
  742. # [04:44] * Quits: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net) (Ping timeout)
  743. # [04:45] * Quits: milan (milan@moz-B6BC80A6.west.biz.rr.com) (Ping timeout)
  744. # [04:46] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Input/output error)
  745. # [04:46] * Joins: dbaron (dbaron@6E6C815B.27376607.189F3E15.IP)
  746. # [04:46] * ChanServ sets mode: +ao dbaron dbaron
  747. # [04:47] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  748. # [04:47] * Quits: Bas (chatzilla@moz-EC262A19.ftth.concepts.nl) (Connection reset by peer)
  749. # [04:48] <philor> wow, wtc has *faith* - r?=cls
  750. # [04:48] * Joins: Bas (chatzilla@moz-EC262A19.ftth.concepts.nl)
  751. # [04:50] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  752. # [04:51] * Joins: jhlin (jhlin@moz-C1C161D4.dynamic.hinet.net)
  753. # [04:52] <philor> oh, not that much faith, he did reviews just four years ago, and cancelled one request just two years ago
  754. # [04:53] * Joins: brendan (brendaneic@35E90EE3.B8B12C49.396B22AD.IP)
  755. # [04:54] * Quits: Mook (mook@moz-5B3BC903.dsl.teksavvy.com) (Quit: Mook)
  756. # [04:54] * Joins: Mook (mook@moz-5B3BC903.dsl.teksavvy.com)
  757. # [04:55] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  758. # [04:56] * Quits: rubocoptero (rubocopter@E61422F8.B6AEF62D.56B33818.IP) (Quit: Leaving)
  759. # [04:56] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  760. # [04:57] * Quits: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca) (Quit: surkov)
  761. # [04:57] * Quits: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net) (Input/output error)
  762. # [04:57] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  763. # [04:58] * Joins: tonymec (tonymec@4FD4E758.EE6CCC0.277517C1.IP)
  764. # [04:59] * Callek_disconnected is now known as Callek
  765. # [04:59] * Joins: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca)
  766. # [04:59] * Quits: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net) (Quit: lizzard)
  767. # [05:00] * Joins: lmandel (lmandel@moz-60AD75.cable.teksavvy.com)
  768. # [05:01] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Input/output error)
  769. # [05:01] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  770. # [05:01] * hwine-commuting is now known as hwine
  771. # [05:02] * khuey|away is now known as khuey
  772. # [05:02] * bz_away is now known as bz
  773. # [05:03] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  774. # [05:04] * Joins: Jesse (jruderman@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  775. # [05:05] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  776. # [05:07] * Quits: Jesse (jruderman@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  777. # [05:07] * glob|away is now known as glob
  778. # [05:07] * Quits: jhlin (jhlin@moz-C1C161D4.dynamic.hinet.net) (Client exited)
  779. # [05:08] * Joins: jhlin (jhlin@moz-99690620.hinet-ip.hinet.net)
  780. # [05:08] * Joins: maxli (Adium@moz-B19F68ED.student.cs.uwaterloo.ca)
  781. # [05:09] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  782. # [05:13] * Joins: nattokirai (nattokirai@moz-C286AD9A.bitcat.net)
  783. # [05:15] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  784. # [05:15] * Joins: billm (billm@moz-E7C99C14.lightspeed.sntcca.sbcglobal.net)
  785. # [05:16] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  786. # [05:17] * Quits: lmandel (lmandel@moz-60AD75.cable.teksavvy.com) (Input/output error)
  787. # [05:17] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  788. # [05:17] * nthomas is now known as nthomas|away
  789. # [05:17] * Quits: billm (billm@moz-E7C99C14.lightspeed.sntcca.sbcglobal.net) (Quit: Leaving)
  790. # [05:17] * Joins: billm (billm@moz-E7C99C14.lightspeed.sntcca.sbcglobal.net)
  791. # [05:18] <billm> philor: ping?
  792. # [05:18] * Quits: Morris (Morris@moz-99690620.hinet-ip.hinet.net) (Quit: Morris)
  793. # [05:18] * Joins: darkowlzz (sunny@4CA7CA54.B59B0954.EACE93BE.IP)
  794. # [05:18] <philor> billm: pong
  795. # [05:19] <billm> philor: do you have a moment to look at a push? something very odd happened that I don't understand.
  796. # [05:19] <philor> sure
  797. # [05:20] <billm> philor: on inbound recently, I pushed 94f9ebdc6662. it got a bunch of M5 orange and some xpcshell orange. then on the next push, which was unrelated, it went away.
  798. # [05:20] <billm> philor: it shows up a few times after that, but much less frequently.
  799. # [05:20] * Quits: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net) (Input/output error)
  800. # [05:21] <philor> billm: was that above mmc's push that failed to rev a uuid, so that clobber builds were fine but dep builds were not?
  801. # [05:21] <philor> or for that matter, above the backout, since you have to clobber to get rid of that bustage
  802. # [05:21] * Joins: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net)
  803. # [05:21] <billm> philor: oh yeah, her push has the same bustage!
  804. # [05:22] <mmc> Yes
  805. # [05:22] * Joins: Preeti (uid13882@moz-E77DEB21.irccloud.com)
  806. # [05:22] <mmc> I hope that was the reason
  807. # [05:22] <billm> ah, ok, that explains it. thanks philor! :-)
  808. # [05:22] <philor> not exactly the same bustage, though
  809. # [05:23] * Quits: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net) (Ping timeout)
  810. # [05:23] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  811. # [05:23] <philor> but maybe that's the inverse bustage, the unclobbered backout bustage
  812. # [05:23] <billm> philor: the android stuff was actually my fault. the rest of it looks the same to me.
  813. # [05:23] <mmc> ?
  814. # [05:23] <nemo> http://www.washingtonpost.com/local/crime/metro-billboard-advocating-jury-nullification-concerns-local-prosecutors/2013/10/29/fe53edbc-3da9-11e3-a94f-b58017bfee6c_story.html
  815. # [05:24] <mmc> Back out must clobber too?
  816. # [05:24] <billm> I don't know. I never really understood clobbering myself :-)
  817. # [05:25] * Quits: squib (squib@moz-7BFC3D3A.dhcp.ftbg.wi.charter.com) (Quit: Leaving)
  818. # [05:25] * Joins: pnkfelix (pnkfelix@moz-43495417.fbx.proxad.net)
  819. # [05:26] <philor> you landed, some clobbers built and thus built with all of your patch, and then the backout landed, which changed code without changing the uuid, just like the initial landing did
  820. # [05:28] <mmc> I see, thanks
  821. # [05:29] <billm> I guess I don't even understand why we need to clobber when reving the uuid. shouldn't a change to the class automatically cause us to rebuild any cpp files that use that class?
  822. # [05:29] <billm> or rather, why uuid changes have anything to do with clobbering
  823. # [05:29] * Joins: benvie_ (bbenvie@5FD20F9A.53D07D95.EFF8B7BF.IP)
  824. # [05:29] <billm> it just seems like changing class members and stuff should force code to be recompiled no matter what
  825. # [05:30] * Quits: benvie (bbenvie@5FD20F9A.53D07D95.EFF8B7BF.IP) (Ping timeout)
  826. # [05:30] * Quits: valentin (Thunderbir@34F4ACDA.7F69ED53.FAF22AF7.IP) (Ping timeout)
  827. # [05:32] <mmc> yeah, I miss protobufs where it's easy to write backwards and forward compatible code
  828. # [05:33] <billm> philor: anyway, did somebody eventually clobber? the CLOBBER file hasn't been updated, but maybe it was done manually?
  829. # [05:34] <philor> billm: right, I did it manually, since the only things that need to clobber are things that built between a couple of pushes, no need to clobber m-c and b-i and f-t when it merges there
  830. # [05:34] <billm> ok, thanks
  831. # [05:34] * Joins: valentin (Thunderbir@34F4ACDA.7F69ED53.FAF22AF7.IP)
  832. # [05:35] * khuey is now known as khuey|away
  833. # [05:36] * Joins: twi (Adium@moz-ED056769.cust.vodafonedsl.it)
  834. # [05:36] * Quits: twi (Adium@moz-ED056769.cust.vodafonedsl.it) (Quit: Leaving.)
  835. # [05:37] * Quits: billm (billm@moz-E7C99C14.lightspeed.sntcca.sbcglobal.net) (Quit: Leaving)
  836. # [05:38] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  837. # [05:39] * Quits: darkowlzz (sunny@4CA7CA54.B59B0954.EACE93BE.IP) (Quit: This computer has gone to sleep)
  838. # [05:39] * Joins: jet (jet@moz-99690620.hinet-ip.hinet.net)
  839. # [05:41] * Quits: Optimizer (Optimizer@AAC59C77.E26B7A67.BE4CF869.IP) (Ping timeout)
  840. # [05:41] * BenWa|email is now known as BenWa
  841. # [05:43] * Quits: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: ekr)
  842. # [05:43] * Joins: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net)
  843. # [05:44] * Joins: milan (milan@moz-B6BC80A6.west.biz.rr.com)
  844. # [05:45] * Quits: bnicholson (bnicholson@883FDC4D.BF05706.A36C57B9.IP) (Connection reset by peer)
  845. # [05:45] * Quits: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net) (Ping timeout)
  846. # [05:46] * Joins: milan_ (milan@moz-B6BC80A6.west.biz.rr.com)
  847. # [05:46] * Quits: milan (milan@moz-B6BC80A6.west.biz.rr.com) (Ping timeout)
  848. # [05:47] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Connection reset by peer)
  849. # [05:47] * Quits: milan_ (milan@moz-B6BC80A6.west.biz.rr.com) (Ping timeout)
  850. # [05:48] * Joins: roc (chatzilla@moz-99690620.hinet-ip.hinet.net)
  851. # [05:48] * ChanServ sets mode: +o roc
  852. # [05:49] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  853. # [05:49] * Quits: Olipro (Olipro@moz-67368F33.catv.pool.telekom.hu) (Ping timeout)
  854. # [05:52] * bz is now known as bz_sleep
  855. # [05:52] * Quits: gwagner (Gregor@moz-B45FE61C.hsd1.ca.comcast.net) (Quit: gwagner)
  856. # [05:53] * Joins: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net)
  857. # [05:53] * Quits: boris (boris@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving.)
  858. # [05:54] * Quits: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca) (Quit: surkov)
  859. # [05:55] * Joins: gwagner (Gregor@moz-B45FE61C.hsd1.ca.comcast.net)
  860. # [05:55] * Joins: doctor (ARealName@moz-9CB48492.nycmny.fios.verizon.net)
  861. # [05:56] <doctor> is there something like livehttpheaders, but for the TCP connection, not the HTTP layer?
  862. # [05:57] <glandium> doctor: if you mean in firefox, no
  863. # [05:57] * Joins: Olipro (Olipro@moz-67368F33.catv.pool.telekom.hu)
  864. # [05:57] <glandium> otherwise, wireshark
  865. # [05:57] * Quits: mattur (sid16049@moz-A42E5B7B.irccloud.com) (Ping timeout)
  866. # [05:57] * Quits: cdiehl (sid19351@moz-A42E5B7B.irccloud.com) (Ping timeout)
  867. # [05:57] * Quits: birtles (sid16523@moz-A42E5B7B.irccloud.com) (Ping timeout)
  868. # [05:57] * Quits: system64 (uid17738@moz-A42E5B7B.irccloud.com) (Ping timeout)
  869. # [05:57] <doctor> glandium: I meant in firefox; thanks for the info
  870. # [05:57] * Quits: mbrubeck (sid17036@moz-A42E5B7B.irccloud.com) (Ping timeout)
  871. # [05:58] * Quits: Matti (Matti@moz-CDE45C2.dip0.t-ipconnect.de) (Ping timeout)
  872. # [05:59] * Quits: heftig (heftig@moz-A1C2AAAA.dip0.t-ipconnect.de) (Ping timeout)
  873. # [06:00] * Joins: system64 (uid17738@moz-A42E5B7B.irccloud.com)
  874. # [06:00] * hwine is now known as hwine-ooo
  875. # [06:01] * Joins: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net)
  876. # [06:01] * Joins: birtles (sid16523@moz-A42E5B7B.irccloud.com)
  877. # [06:02] * Joins: mbrubeck (sid17036@moz-A42E5B7B.irccloud.com)
  878. # [06:03] * Joins: Matti_away (Matti@moz-DF89D2A4.dip0.t-ipconnect.de)
  879. # [06:03] * Matti_away is now known as Matti
  880. # [06:03] * Joins: cdiehl (sid19351@moz-A42E5B7B.irccloud.com)
  881. # [06:03] * Quits: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net) (Ping timeout)
  882. # [06:03] * Quits: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net) (Input/output error)
  883. # [06:04] * Joins: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net)
  884. # [06:04] * Joins: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net)
  885. # [06:05] * Joins: mattur (sid16049@moz-A42E5B7B.irccloud.com)
  886. # [06:06] * Quits: bdahl (bdahl@moz-9A918ADF.dsl.dynamic.sonic.net) (Ping timeout)
  887. # [06:06] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  888. # [06:08] * Quits: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net) (Ping timeout)
  889. # [06:09] * Joins: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net)
  890. # [06:09] * Quits: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net) (Quit: lizzard)
  891. # [06:09] * Quits: brendan (brendaneic@35E90EE3.B8B12C49.396B22AD.IP) (Quit: brendan)
  892. # [06:11] * Joins: heftig (heftig@moz-E758CD18.dip0.t-ipconnect.de)
  893. # [06:12] * Joins: darkowlzz (sunny@9C5EC9B2.4AA7250C.81E77A99.IP)
  894. # [06:13] * Joins: haseeb (uid13814@moz-E77DEB21.irccloud.com)
  895. # [06:14] <efaust> do M4 runs really take that much less time than like M1? Try reports 14 minutes?
  896. # [06:14] <efaust> if so, isn't the point tospread the load for parallel test running?
  897. # [06:16] * Joins: Morris (Morris@moz-99690620.hinet-ip.hinet.net)
  898. # [06:18] * Joins: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro)
  899. # [06:20] * Joins: Optimizer (Optimizer@AAC59C77.E26B7A67.BE4CF869.IP)
  900. # [06:21] * Quits: ericjung_ (ericjung@EBA5EBAE.78089B69.E141FD9.IP) (Quit: Leaving)
  901. # [06:24] * Quits: nattokirai (nattokirai@moz-C286AD9A.bitcat.net) (Ping timeout)
  902. # [06:25] * Quits: victorporof (victorporo@moz-FFB76956.cpe.net.cable.rogers.com) (Quit: victorporof)
  903. # [06:25] * Quits: @njn (chatzilla@moz-B0E7B71D.dyn.iinet.net.au) (Quit: ChatZilla 0.9.90.1 [Firefox 30.0a1/20140312144913])
  904. # [06:26] * Joins: ehugg (ehugg@moz-EA33CD8D.hsd1.wa.comcast.net)
  905. # [06:27] * Joins: ckitching (ckitching@moz-73BD1AA5.nat.csx.cam.ac.uk)
  906. # [06:36] * Quits: sicking (sicking@moz-501E5580.hsd1.ca.comcast.net) (Quit: sicking)
  907. # [06:36] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  908. # [06:36] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  909. # [06:37] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  910. # [06:43] * Quits: michal (michal@4D91A4AE.76DE1060.FAF22AF7.IP) (Ping timeout)
  911. # [06:43] * Quits: valentin (Thunderbir@34F4ACDA.7F69ED53.FAF22AF7.IP) (Ping timeout)
  912. # [06:43] * Quits: Mook (mook@moz-5B3BC903.dsl.teksavvy.com) (Quit: Mook)
  913. # [06:44] * Joins: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net)
  914. # [06:44] * Quits: ehugg (ehugg@moz-EA33CD8D.hsd1.wa.comcast.net) (Quit: ehugg)
  915. # [06:44] * Joins: boris (boris@moz-99690620.hinet-ip.hinet.net)
  916. # [06:45] * Quits: jaws (uid2871@moz-5F4AA75A.irccloud.com) (Quit: Connection closed for inactivity)
  917. # [06:46] * Quits: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net) (Ping timeout)
  918. # [06:49] * mattwoodrow is now known as mattwoodrow|away
  919. # [06:50] * Joins: nattokirai (nattokirai@moz-979D1336.panda-world.ne.jp)
  920. # [06:50] * Joins: smontagu (chatzilla@moz-3CCB3491.red.bezeqint.net)
  921. # [06:50] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  922. # [06:51] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  923. # [06:51] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  924. # [06:53] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  925. # [06:55] * Joins: jaws (uid2871@moz-5F4AA75A.irccloud.com)
  926. # [06:56] * Quits: jet (jet@moz-99690620.hinet-ip.hinet.net) (Quit: jet)
  927. # [06:57] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  928. # [06:58] * Quits: rniwa (rniwa@DBC3D095.CC3DF958.1782B2F3.IP) (Quit: rniwa)
  929. # [06:59] * Quits: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net) (Quit: Leaving.)
  930. # [07:00] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  931. # [07:00] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  932. # [07:00] * Quits: phenom (phenom@B0FBA529.F5BFF26B.4A5F0685.IP) (Ping timeout)
  933. # [07:01] * Joins: phenom (phenom@BFED0EF4.F61A6434.3B788C77.IP)
  934. # [07:03] * Joins: kk1fff_ (kk1fff@moz-99690620.hinet-ip.hinet.net)
  935. # [07:03] * Quits: kk1fff (kk1fff@moz-99690620.hinet-ip.hinet.net) (Connection reset by peer)
  936. # [07:03] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  937. # [07:04] * Quits: kk1fff_ (kk1fff@moz-99690620.hinet-ip.hinet.net) (Client exited)
  938. # [07:05] * Quits: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  939. # [07:05] * Quits: TimAbraldes (quassel@moz-7FD19BDC.hsd1.or.comcast.net) (Input/output error)
  940. # [07:06] * BenWa is now known as BenWa|email
  941. # [07:07] * Quits: boris (boris@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving.)
  942. # [07:08] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  943. # [07:09] * Quits: afwang (nooknook@moz-CFE05FEE.hsd1.ca.comcast.net) (Quit: Leaving)
  944. # [07:09] * Joins: kk1fff (kk1fff@moz-99690620.hinet-ip.hinet.net)
  945. # [07:09] * Quits: Niharika (Happiness@633FD436.142D8E0A.74119F78.IP) (Quit: Leaving.)
  946. # [07:11] * Quits: Morris (Morris@moz-99690620.hinet-ip.hinet.net) (Quit: Morris)
  947. # [07:12] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  948. # [07:13] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  949. # [07:13] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  950. # [07:16] * Joins: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net)
  951. # [07:17] * Quits: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net) (Ping timeout)
  952. # [07:18] * Joins: Jerry_ (hshih@moz-99690620.hinet-ip.hinet.net)
  953. # [07:18] * Quits: jonasfj (jonasfj@moz-F9C6FBE1.hsd1.ca.comcast.net) (Ping timeout)
  954. # [07:18] * Quits: nattokirai (nattokirai@moz-979D1336.panda-world.ne.jp) (Quit: nattokirai)
  955. # [07:20] * Quits: kk1fff (kk1fff@moz-99690620.hinet-ip.hinet.net) (Client exited)
  956. # [07:21] * whimboo|afk is now known as whimboo
  957. # [07:22] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  958. # [07:23] * heycam is now known as heycam|away
  959. # [07:23] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  960. # [07:23] * Quits: maxli (Adium@moz-B19F68ED.student.cs.uwaterloo.ca) (Quit: Leaving.)
  961. # [07:23] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  962. # [07:24] * philor is now known as philor|away
  963. # [07:24] * jcranmer is now known as jcranmer|away
  964. # [07:25] * Joins: Morris (Morris@moz-99690620.hinet-ip.hinet.net)
  965. # [07:26] * Joins: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net)
  966. # [07:26] * Joins: tzimmermann (tzimmerman@moz-95BC5F81.pools.arcor-ip.net)
  967. # [07:27] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  968. # [07:28] * Quits: dougc (dougc@moz-F16BC551.static.rev.eftel.com) (Ping timeout)
  969. # [07:28] * Joins: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net)
  970. # [07:29] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  971. # [07:29] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  972. # [07:29] * Joins: dougc (dougc@moz-F16BC551.static.rev.eftel.com)
  973. # [07:30] * Joins: kk1fff (kk1fff@moz-99690620.hinet-ip.hinet.net)
  974. # [07:30] * Quits: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  975. # [07:31] * Joins: boris (boris@moz-99690620.hinet-ip.hinet.net)
  976. # [07:32] * Joins: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net)
  977. # [07:32] * Joins: sicking (sicking@moz-501E5580.hsd1.ca.comcast.net)
  978. # [07:33] * Joins: jet (jet@moz-99690620.hinet-ip.hinet.net)
  979. # [07:33] * Joins: jackneill (jackneill@moz-5AD26CED.pool.digikabel.hu)
  980. # [07:34] * Quits: gwagner (Gregor@moz-B45FE61C.hsd1.ca.comcast.net) (Quit: gwagner)
  981. # [07:35] * Joins: mihaelav (Mibbit@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP)
  982. # [07:36] * Quits: cervantes (cervantes@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  983. # [07:38] * Joins: adalucinet (Mibbit@28C4EA76.976FBEE.5BC07656.IP)
  984. # [07:38] * Joins: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de)
  985. # [07:39] * Quits: grobinson (~grobinson@moz-731932CD.hsd1.ca.comcast.net) (Ping timeout)
  986. # [07:39] * Joins: cervantes (cervantes@moz-99690620.hinet-ip.hinet.net)
  987. # [07:41] * Joins: jhorak (jhorak@moz-2EE9C9C3.cust.nbox.cz)
  988. # [07:42] * Quits: Morris (Morris@moz-99690620.hinet-ip.hinet.net) (Quit: Morris)
  989. # [07:43] * Quits: tzimmermann (tzimmerman@moz-95BC5F81.pools.arcor-ip.net) (Ping timeout)
  990. # [07:45] * Joins: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net)
  991. # [07:46] * Quits: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net) (Ping timeout)
  992. # [07:47] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Connection reset by peer)
  993. # [07:49] * Joins: tzimmermann (tzimmerman@moz-5173BC47.pools.arcor-ip.net)
  994. # [07:52] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  995. # [07:54] * Joins: fredw (Icedove@moz-B9C110E2.fbx.proxad.net)
  996. # [07:55] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  997. # [07:55] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  998. # [07:56] * Tomcat|afk is now known as Tomcat|sheriffduty
  999. # [07:56] <Tomcat|sheriffduty> good morning folks
  1000. # [07:56] * Joins: Morris (Morris@moz-99690620.hinet-ip.hinet.net)
  1001. # [07:57] * curtisk|afk is now known as curtisk
  1002. # [07:57] * Joins: bnicholson (bnicholson@883FDC4D.BF05706.A36C57B9.IP)
  1003. # [07:58] * Joins: jhlin_ (jhlin@moz-C1C161D4.dynamic.hinet.net)
  1004. # [07:58] * Quits: terrence-afk (terrence@moz-B38D16E9.sb.sd.cox.net) (Ping timeout)
  1005. # [07:58] * Joins: jduell (jduell@D2FC7D88.1624830.FAF22AF7.IP)
  1006. # [07:59] * Quits: jhlin (jhlin@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1007. # [07:59] * Joins: kushagra (kushagra@783C7D1A.250C33AA.137C914F.IP)
  1008. # [08:00] * Quits: kushagra (kushagra@783C7D1A.250C33AA.137C914F.IP) (Connection reset by peer)
  1009. # [08:00] * Quits: jeremyhu (jeremyhu@moz-75C113CA.outersquare.org) (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
  1010. # [08:00] * Joins: kushagra (kushagra@783C7D1A.250C33AA.137C914F.IP)
  1011. # [08:00] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  1012. # [08:00] * Joins: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net)
  1013. # [08:02] * Joins: michal (michal@97838FB4.C1688C30.FAF22AF7.IP)
  1014. # [08:02] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  1015. # [08:03] * Joins: Evolutio (Thunderbir@moz-5C938579.superkabel.de)
  1016. # [08:04] * admix is now known as admix|away
  1017. # [08:04] * Quits: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net) (Ping timeout)
  1018. # [08:05] * Quits: tonymec (tonymec@4FD4E758.EE6CCC0.277517C1.IP) (Ping timeout)
  1019. # [08:06] * Joins: jeremyhu (jeremyhu@moz-75C113CA.outersquare.org)
  1020. # [08:07] <nigelb> good morning Tomcat|sheriffduty
  1021. # [08:08] * Quits: kushagra (kushagra@783C7D1A.250C33AA.137C914F.IP) (Ping timeout)
  1022. # [08:11] * Quits: Morris (Morris@moz-99690620.hinet-ip.hinet.net) (Quit: Morris)
  1023. # [08:12] * mattwoodrow|away is now known as mattwoodrow
  1024. # [08:12] * Joins: wolfiR (wolfiR@moz-84C2694.dip0.t-ipconnect.de)
  1025. # [08:14] <Tomcat|sheriffduty> hey nigelb
  1026. # [08:14] * Joins: Niharika (Happiness@633FD436.142D8E0A.74119F78.IP)
  1027. # [08:14] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  1028. # [08:15] * Joins: Morris (Morris@moz-99690620.hinet-ip.hinet.net)
  1029. # [08:15] * Joins: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net)
  1030. # [08:15] * Quits: jhlin_ (jhlin@moz-C1C161D4.dynamic.hinet.net) (Client exited)
  1031. # [08:15] * Quits: boris (boris@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving.)
  1032. # [08:15] * Parts: aja (Instantbir@B4907B00.C750B320.7880DB15.IP)
  1033. # [08:16] * Joins: jhlin (jhlin@moz-99690620.hinet-ip.hinet.net)
  1034. # [08:17] * Quits: @dbaron (dbaron@6E6C815B.27376607.189F3E15.IP) (Ping timeout)
  1035. # [08:17] * Quits: Morris (Morris@moz-99690620.hinet-ip.hinet.net) (Quit: Morris)
  1036. # [08:21] * Quits: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net) (Ping timeout)
  1037. # [08:23] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Input/output error)
  1038. # [08:23] * Quits: darkowlzz (sunny@9C5EC9B2.4AA7250C.81E77A99.IP) (Ping timeout)
  1039. # [08:24] * Quits: ckitching (ckitching@moz-73BD1AA5.nat.csx.cam.ac.uk) (Quit: +++ Out of Cheese Error : Redo From Start. +++)
  1040. # [08:25] * Joins: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP)
  1041. # [08:26] * Joins: boris (boris@moz-99690620.hinet-ip.hinet.net)
  1042. # [08:28] * Quits: adalucinet (Mibbit@28C4EA76.976FBEE.5BC07656.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1043. # [08:30] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  1044. # [08:30] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  1045. # [08:31] * Joins: grobinson (~grobinson@moz-731932CD.hsd1.ca.comcast.net)
  1046. # [08:32] * Joins: dbaron (dbaron@6E6C815B.27376607.189F3E15.IP)
  1047. # [08:32] * ChanServ sets mode: +ao dbaron dbaron
  1048. # [08:33] * Quits: jet (jet@moz-99690620.hinet-ip.hinet.net) (Quit: jet)
  1049. # [08:34] * Quits: karl (karl@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1050. # [08:35] * bobowen|afk is now known as bobowen
  1051. # [08:35] * Quits: automata (automata@FBCC6747.2A24F986.DF1E30BF.IP) (Quit: This computer has gone to sleep)
  1052. # [08:36] * Joins: jet (jet@moz-99690620.hinet-ip.hinet.net)
  1053. # [08:37] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  1054. # [08:37] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  1055. # [08:39] * Joins: Morris (Morris@moz-99690620.hinet-ip.hinet.net)
  1056. # [08:40] * Quits: jeremyhu (jeremyhu@moz-75C113CA.outersquare.org) (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
  1057. # [08:40] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  1058. # [08:40] * Joins: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP)
  1059. # [08:41] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  1060. # [08:41] * Quits: sicking (sicking@moz-501E5580.hsd1.ca.comcast.net) (Quit: sicking)
  1061. # [08:42] * Joins: Optimize1 (Instantbir@94C77FC6.955079FB.AA3EB577.IP)
  1062. # [08:42] * Quits: Preeti (uid13882@moz-E77DEB21.irccloud.com) (Quit: Connection closed for inactivity)
  1063. # [08:42] * Joins: jwwang (jwwang@moz-99690620.hinet-ip.hinet.net)
  1064. # [08:44] * Joins: Anupkumar (uid16774@moz-A42E5B7B.irccloud.com)
  1065. # [08:44] * Quits: Jerry_ (hshih@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1066. # [08:45] * Joins: KWierso (chatzilla@moz-9B11DA99.hsd1.ca.comcast.net)
  1067. # [08:47] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  1068. # [08:47] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  1069. # [08:47] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  1070. # [08:48] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  1071. # [08:50] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Ping timeout)
  1072. # [08:50] * Joins: h4writer (h4writer@moz-6BDA8831.access.telenet.be)
  1073. # [08:56] * Quits: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com) (Ping timeout)
  1074. # [08:56] * Joins: b4gder (daniel@DA4ABEAF.1DE10CA8.D8E68FF6.IP)
  1075. # [08:56] * Joins: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com)
  1076. # [08:59] * Joins: Jerry_ (hshih@moz-99690620.hinet-ip.hinet.net)
  1077. # [09:01] * curtisk is now known as curtisk|afk
  1078. # [09:01] * Joins: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net)
  1079. # [09:03] * Joins: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net)
  1080. # [09:04] * Joins: gcp (gpascutto@moz-9CEB1C98.access.telenet.be)
  1081. # [09:05] * Quits: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net) (Ping timeout)
  1082. # [09:05] * Quits: jaws (uid2871@moz-5F4AA75A.irccloud.com) (Quit: Connection closed for inactivity)
  1083. # [09:05] * Quits: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net) (Ping timeout)
  1084. # [09:06] <glandium> http://www.commitstrip.com/wp-content/uploads/2014/03/Strips-IDE-visual-studio-650-finalenglish.jpg
  1085. # [09:06] * Quits: andreasn (andreasn@moz-7D2C310A.a336.priv.bahnhof.se) (Ping timeout)
  1086. # [09:07] <nigelb> heh
  1087. # [09:07] <nigelb> I just saw that earlier today!
  1088. # [09:07] <glandium> nigelb: you mean the strip, or the visual studio splashscreen?
  1089. # [09:07] <Tomcat|sheriffduty> hrm building on windows can be so much fun :/
  1090. # [09:07] <nigelb> the comic strip :)
  1091. # [09:08] * Quits: serge (Thunderbir@FA3AFA7E.24198F16.AE2B2F80.IP) (Ping timeout)
  1092. # [09:08] * KWierso wonders if today's push load will be greater or less than normal with everyone from the mv office working from home
  1093. # [09:08] <Tomcat|sheriffduty> :)
  1094. # [09:08] * Quits: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net) (Input/output error)
  1095. # [09:08] <Tomcat|sheriffduty> KWierso: sleep! its past midnight!
  1096. # [09:09] <KWierso> it's past one :P
  1097. # [09:09] * Joins: karl (karl@moz-99690620.hinet-ip.hinet.net)
  1098. # [09:10] * Quits: marxin (marxin@moz-97B87435.scz.novell.com) (Ping timeout)
  1099. # [09:10] <nigelb> srsly
  1100. # [09:10] * Quits: marxin_ (marxin@moz-97B87435.scz.novell.com) (Ping timeout)
  1101. # [09:10] * Quits: gcp (gpascutto@moz-9CEB1C98.access.telenet.be) (Quit: Make a new plan, Stan!)
  1102. # [09:10] * Joins: gcp (gpascutto@moz-9CEB1C98.access.telenet.be)
  1103. # [09:10] <nigelb> I should file a bug to kline KWierso after the next sheriff is on duty :P
  1104. # [09:11] <KWierso> I just wanted to be here when ms2ger showed up
  1105. # [09:12] * Joins: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net)
  1106. # [09:13] * Quits: vd (vd@moz-7A53EEF0.ddns.cablebg.net) (Quit: leaving)
  1107. # [09:14] * Joins: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net)
  1108. # [09:17] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  1109. # [09:17] * Joins: twi (Adium@1003EE9C.E815CABE.77D54CE0.IP)
  1110. # [09:18] * Joins: gabor (gabor@moz-578B5C2F.pool.digikabel.hu)
  1111. # [09:18] * Quits: grobinson (~grobinson@moz-731932CD.hsd1.ca.comcast.net) (Ping timeout)
  1112. # [09:18] * Quits: jet (jet@moz-99690620.hinet-ip.hinet.net) (Quit: jet)
  1113. # [09:19] * Joins: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net)
  1114. # [09:19] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Ping timeout)
  1115. # [09:20] * Joins: sworkman (sworkman@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1116. # [09:21] * Quits: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net) (Ping timeout)
  1117. # [09:22] * Quits: tn (tim@moz-E7CE1D28.wp.shawcable.net) (Quit: tn)
  1118. # [09:22] * Joins: tn (tim@moz-E7CE1D28.wp.shawcable.net)
  1119. # [09:23] * Quits: Optimizer (Optimizer@AAC59C77.E26B7A67.BE4CF869.IP) (Ping timeout)
  1120. # [09:24] * Joins: Optimizer (Optimizer@AAC59C77.E26B7A67.BE4CF869.IP)
  1121. # [09:28] <tzimmermann> Tomcat|sheriffduty: ping. could you please roll-back the patches of https://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=79ee6fda8e65 ?
  1122. # [09:29] * Quits: sworkman (sworkman@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: sworkman)
  1123. # [09:30] * Quits: benvie_ (bbenvie@5FD20F9A.53D07D95.EFF8B7BF.IP) (Ping timeout)
  1124. # [09:30] * Joins: sworkman (sworkman@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1125. # [09:30] <Tomcat|sheriffduty> tzimmermann: you mean backout right ?
  1126. # [09:31] <Tomcat|sheriffduty> just to confirm :)
  1127. # [09:31] * Joins: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  1128. # [09:31] * Joins: benvie (bbenvie@5FD20F9A.53D07D95.EFF8B7BF.IP)
  1129. # [09:31] <tzimmermann> right :)
  1130. # [09:31] * Joins: AndreeaMatei (Thunderbir@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP)
  1131. # [09:31] <Tomcat|sheriffduty> ok yeah will do, any specific reason (just asking for the backout commit msg)
  1132. # [09:31] <tzimmermann> it's not urgent. i just pushed the wrong version of one of the patches
  1133. # [09:32] <Tomcat|sheriffduty> oh ok np working on the backout now
  1134. # [09:32] <tzimmermann> great. thank you!
  1135. # [09:32] * Quits: cpearce (chatzilla@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1136. # [09:32] * Joins: cpearce (chatzilla@34E8ECDF.DC2C3734.616A18A6.IP)
  1137. # [09:32] * Quits: MacroMayhem (Mibbit@9B9315E1.A6025CA.1C37C358.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1138. # [09:33] * Joins: myk (myk@moz-C7450B6B.dsl.dynamic.sonic.net)
  1139. # [09:34] * Joins: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP)
  1140. # [09:36] * Quits: myk (myk@moz-C7450B6B.dsl.dynamic.sonic.net) (Ping timeout)
  1141. # [09:37] * Quits: jduell (jduell@D2FC7D88.1624830.FAF22AF7.IP) (Ping timeout)
  1142. # [09:39] * Joins: Ms2ger (Ms2ger@moz-5180E188.adsl-dyn.isp.belgacom.be)
  1143. # [09:39] * glob is now known as glob|away
  1144. # [09:40] * Quits: michal (michal@97838FB4.C1688C30.FAF22AF7.IP) (Ping timeout)
  1145. # [09:40] <Tomcat|sheriffduty> tzimmermann: backouts done
  1146. # [09:40] <tzimmermann> thanks again :)
  1147. # [09:41] <Tomcat|sheriffduty> np anytime
  1148. # [09:42] * Joins: cpearce_ (chatzilla@moz-99690620.hinet-ip.hinet.net)
  1149. # [09:43] * Quits: cpearce (chatzilla@34E8ECDF.DC2C3734.616A18A6.IP) (Ping timeout)
  1150. # [09:43] * cpearce_ is now known as cpearce
  1151. # [09:46] * Joins: valentin (Thunderbir@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1152. # [09:50] * sewardj_ is now known as sewardj
  1153. # [09:50] * Quits: @dbaron (dbaron@6E6C815B.27376607.189F3E15.IP) (Ping timeout)
  1154. # [09:54] * Joins: luca (lzzluca@moz-10429979.static.virginmediabusiness.co.uk)
  1155. # [09:56] * Joins: MarcoZ (marco.zehe@moz-8CE29991.dip0.t-ipconnect.de)
  1156. # [09:59] * Joins: soumyaC (uid15286@moz-E77DEB21.irccloud.com)
  1157. # [09:59] * Quits: Niharika (Happiness@633FD436.142D8E0A.74119F78.IP) (Ping timeout)
  1158. # [10:00] * Joins: Niharika (Happiness@633FD436.142D8E0A.74119F78.IP)
  1159. # [10:00] * Joins: edmorley|away (uid27002@moz-5F4AA75A.irccloud.com)
  1160. # [10:00] * edmorley|away is now known as edmorley
  1161. # [10:01] * Joins: michal (michal@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1162. # [10:01] * Joins: Gijs (gijs@moz-E5F83CA.adsl-surfen.hetnet.nl)
  1163. # [10:01] <Tomcat|sheriffduty> good morning edmorley
  1164. # [10:01] * edmorley is now known as IRCMonkey21158
  1165. # [10:02] <Tomcat|sheriffduty> or ircmonkey :)
  1166. # [10:02] * Joins: jet (jet@moz-99690620.hinet-ip.hinet.net)
  1167. # [10:03] * Quits: jet (jet@moz-99690620.hinet-ip.hinet.net) (Quit: jet)
  1168. # [10:04] * Joins: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net)
  1169. # [10:05] * Quits: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro) (Quit: robertbindar)
  1170. # [10:05] * Joins: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro)
  1171. # [10:06] * Quits: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net) (Ping timeout)
  1172. # [10:08] <Ms2ger> Who's have thought that people would look at arguments called aFreeSecurityPass
  1173. # [10:09] * Quits: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net) (Input/output error)
  1174. # [10:10] * Joins: marxin (marxin@moz-97B87435.scz.novell.com)
  1175. # [10:11] * mattwoodrow is now known as mattwoodrow|away
  1176. # [10:11] * Joins: marxin_ (marxin@moz-97B87435.scz.novell.com)
  1177. # [10:11] * pmoore|away is now known as pmoore
  1178. # [10:12] * Quits: pnkfelix (pnkfelix@moz-43495417.fbx.proxad.net) (Quit: rcirc on GNU Emacs 24.3.50.1)
  1179. # [10:13] * Joins: tonymec|away (tonymec@4FD4E758.EE6CCC0.277517C1.IP)
  1180. # [10:14] * Joins: sir_none (Thunderbir@A6EC613F.FE93EE7F.BBD8F176.IP)
  1181. # [10:15] * Quits: peterv (peterv@moz-88203188.access.telenet.be) (Ping timeout)
  1182. # [10:16] * Joins: peterv (peterv@moz-88203188.access.telenet.be)
  1183. # [10:16] * Joins: jduell (jduell@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1184. # [10:18] * Joins: tonymec (tonymec@4FD4E758.EE6CCC0.277517C1.IP)
  1185. # [10:18] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  1186. # [10:18] * Quits: Optimize1 (Instantbir@94C77FC6.955079FB.AA3EB577.IP) (Quit: bye :))
  1187. # [10:18] * Joins: Optimize1 (Instantbir@94C77FC6.955079FB.AA3EB577.IP)
  1188. # [10:19] * Quits: marxin_ (marxin@moz-97B87435.scz.novell.com) (Client exited)
  1189. # [10:20] * Joins: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net)
  1190. # [10:20] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Ping timeout)
  1191. # [10:21] * Quits: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net) (Ping timeout)
  1192. # [10:24] * IRCMonkey21158 is now known as edmorley
  1193. # [10:24] <edmorley> Tomcat|sheriffduty: good morning :-)
  1194. # [10:25] <edmorley> Ms2ger: lol
  1195. # [10:25] * Quits: Optimize1 (Instantbir@94C77FC6.955079FB.AA3EB577.IP) (Quit: bye :))
  1196. # [10:25] * edmorley is now known as IRCMonkey42806
  1197. # [10:27] * Joins: Cwiiis (uid15019@moz-31ABA2C0.irccloud.com)
  1198. # [10:27] * ChanServ sets mode: +o Cwiiis
  1199. # [10:28] * Joins: Archaeopteryx (itsme@moz-8783AFDB.cust.telecolumbus.net)
  1200. # [10:29] * Fallen|away is now known as Fallen
  1201. # [10:30] * Quits: jduell (jduell@87C1F78E.1DE10CA8.D8E68FF6.IP) (Input/output error)
  1202. # [10:32] * Quits: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP) (Ping timeout)
  1203. # [10:32] * Quits: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net) (Client exited)
  1204. # [10:32] * Quits: mikeperry (mikeperry@moz-7B83EACE.hfc.comcastbusiness.net) (Ping timeout)
  1205. # [10:33] * Joins: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net)
  1206. # [10:35] * Quits: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
  1207. # [10:36] * Joins: msucan (mihai@C3471151.67166AE0.C0E37CF3.IP)
  1208. # [10:37] * Joins: devashish (chatzilla@DAF68DFC.240CD07.FFE8C4AF.IP)
  1209. # [10:38] <devashish> Hi I am devashish badlani currently an intern at khan academy from iit bombay I have a GSOC proposal and needed help
  1210. # [10:39] <devashish> Any1 who can review my proposal
  1211. # [10:39] <devashish> ?? or be my mentor
  1212. # [10:41] <Tomcat|sheriffduty> something like htis https://wiki.mozilla.org/SummerOfCode/ApplicationTemplate ?
  1213. # [10:42] <Tomcat|sheriffduty> ah
  1214. # [10:42] * Joins: jacek (jacek@moz-5D707D3B.psi.wroc.pl)
  1215. # [10:42] <devashish> first I wanted to share my idea
  1216. # [10:42] <Tomcat|sheriffduty> maybe gerv can help
  1217. # [10:42] <devashish> which is to build 2 educational apps on firefox OS for students
  1218. # [10:44] * Quits: Rik (rik@moz-E813DFA5.fbx.proxad.net) (Connection reset by peer)
  1219. # [10:44] <@Cwiiis> does anyone know who I should talk to about getting my google apps password reset on my mozilla.com address?
  1220. # [10:44] <devashish> Label Diagram
  1221. # [10:44] <devashish> Practice handwriting
  1222. # [10:44] * Joins: Rik (rik@moz-E813DFA5.fbx.proxad.net)
  1223. # [10:44] <Tomcat|sheriffduty> devashish: maybe the email adress on https://wiki.mozilla.org/Community:SummerOfCode14#Application_Advice can help
  1224. # [10:45] <Tomcat|sheriffduty> Cwiiis: i guess you have to file a bug or service now issue
  1225. # [10:45] <Tomcat|sheriffduty> like servicedesk
  1226. # [10:45] <@Cwiiis> Tomcat|sheriffduty: thanks, I'll have a look
  1227. # [10:45] <Tomcat|sheriffduty> at least i filed a bug sometime ago for the same issue :))
  1228. # [10:47] <@Cwiiis> yeah, there was a category for it on servicenow, thanks :)
  1229. # [10:47] * Quits: MarcoZ (marco.zehe@moz-8CE29991.dip0.t-ipconnect.de) (Input/output error)
  1230. # [10:47] * Quits: Niharika (Happiness@633FD436.142D8E0A.74119F78.IP) (Connection reset by peer)
  1231. # [10:47] * Joins: jduell (jduell@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1232. # [10:48] * Joins: MarcoZ (marco.zehe@moz-8CE29991.dip0.t-ipconnect.de)
  1233. # [10:49] * Quits: @roc (chatzilla@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1234. # [10:50] * Joins: roc (chatzilla@moz-99690620.hinet-ip.hinet.net)
  1235. # [10:50] * ChanServ sets mode: +o roc
  1236. # [10:51] * Joins: mayhemer (Thunderbir@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1237. # [10:52] * Quits: jwwang (jwwang@moz-99690620.hinet-ip.hinet.net) (Quit: 暫離)
  1238. # [10:56] * Joins: mikeperry (mikeperry@moz-7B83EACE.hfc.comcastbusiness.net)
  1239. # [10:57] * Quits: twi (Adium@1003EE9C.E815CABE.77D54CE0.IP) (Quit: Leaving.)
  1240. # [10:57] * Joins: mikeratcliffe (Adium@1B67F073.8F445B48.7CCB197A.IP)
  1241. # [10:59] * IRCMonkey42806 is now known as edmorley
  1242. # [10:59] * Quits: Rik (rik@moz-E813DFA5.fbx.proxad.net) (Connection reset by peer)
  1243. # [10:59] * Joins: Rik (rik@moz-E813DFA5.fbx.proxad.net)
  1244. # [10:59] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  1245. # [11:00] * Quits: mikeratcliffe (Adium@1B67F073.8F445B48.7CCB197A.IP) (Ping timeout)
  1246. # [11:00] * Quits: jkitch (Thunderbir@moz-5AE35CB1.lns20.adl2.internode.on.net) (Client exited)
  1247. # [11:00] * Joins: mikeratcliffe (Adium@1B67F073.8F445B48.7CCB197A.IP)
  1248. # [11:01] * ewong is now known as ewong|away
  1249. # [11:02] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  1250. # [11:02] * Joins: jkitch (Thunderbir@moz-5AE35CB1.lns20.adl2.internode.on.net)
  1251. # [11:03] <edmorley> wait, what? "Since we are decommissioning the metro UI" https://bugzilla.mozilla.org/show_bug.cgi?id=983269#c0 ???
  1252. # [11:04] * Quits: Yoric (Yoric@moz-DB4A9C19.scl3.mozilla.com) (services.mozilla.org (Too many invalid passwords))
  1253. # [11:04] * Joins: Yoric (Yoric@moz-DB4A9C19.scl3.mozilla.com)
  1254. # [11:04] * Quits: Yoric (Yoric@moz-DB4A9C19.scl3.mozilla.com) (Max SendQ exceeded)
  1255. # [11:04] * Quits: Waldo (waldo@moz-BBE3ABD.mv.mozilla.com) (Quit: ChatZilla 0.9.87-8.1450hg.fc20 [XULRunner 27.0/20140203120101])
  1256. # [11:04] * Joins: Yoric (Yoric@moz-DB4A9C19.scl3.mozilla.com)
  1257. # [11:04] * Quits: boris (boris@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving.)
  1258. # [11:05] * Joins: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net)
  1259. # [11:05] * Joins: anujagarwal464 (chatzilla@932339C7.6D6227B4.D216A595.IP)
  1260. # [11:06] * Quits: Rik (rik@moz-E813DFA5.fbx.proxad.net) (Input/output error)
  1261. # [11:06] * Joins: Rik (rik@moz-E813DFA5.fbx.proxad.net)
  1262. # [11:06] * Quits: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net) (Ping timeout)
  1263. # [11:07] * Quits: marxin (marxin@moz-97B87435.scz.novell.com) (Ping timeout)
  1264. # [11:08] * Quits: Rik (rik@moz-E813DFA5.fbx.proxad.net) (Ping timeout)
  1265. # [11:10] <Yoric> Tomcat|sheriffduty: ping
  1266. # [11:10] * Joins: mcsmurf (chatzilla@moz-3E51862C.dip0.t-ipconnect.de)
  1267. # [11:11] <Tomcat|sheriffduty> Yoric: pong
  1268. # [11:11] <Yoric> gps: ping
  1269. # [11:11] <Yoric> Tomcat|sheriffduty: Hi.
  1270. # [11:12] <Yoric> What's the procedure for landing a patch that *may* require a clobber due to a build system bug?
  1271. # [11:12] <Tomcat|sheriffduty> you mean how to clobber ?
  1272. # [11:12] <Yoric> i.e. We tried to land the patch, and it failed only on ASAN.
  1273. # [11:12] <Yoric> Well, should I add a patch with the clobber?
  1274. # [11:13] <Tomcat|sheriffduty> oh its basically touching the clobber file like https://hg.mozilla.org/integration/mozilla-inbound/file/8eb7a2a65dfe/CLOBBER
  1275. # [11:13] <Yoric> Should we land the rest of the patch, wait to see if it breaks build, and only then add the clobber?
  1276. # [11:13] <Yoric> Who should review the clobber patch?
  1277. # [11:13] <Yoric> etc.
  1278. # [11:13] <Tomcat|sheriffduty> edmorley: ^
  1279. # [11:13] <Tomcat|sheriffduty> edmorley: do we have a documentation about using the clobber file (like see Yoric;s question)
  1280. # [11:14] <Yoric> Well, the clobber file itself is probably sufficiently documented.
  1281. # [11:14] * Quits: cpearce (chatzilla@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1282. # [11:14] <Yoric> But not how we review and land changes to that file.
  1283. # [11:14] * Quits: @roc (chatzilla@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1284. # [11:14] <Tomcat|sheriffduty> i don't think the change to the clobber file itself does need a review
  1285. # [11:14] <Tomcat|sheriffduty> at least when i see the log https://hg.mozilla.org/integration/mozilla-inbound/log/8eb7a2a65dfe/CLOBBER
  1286. # [11:15] <Yoric> Ok, thanks.
  1287. # [11:15] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  1288. # [11:15] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  1289. # [11:16] <Yoric> Then let's try to land this...
  1290. # [11:17] * bobowen is now known as bobowen|afk
  1291. # [11:17] * bobowen|afk is now known as bobowen
  1292. # [11:18] * Joins: ioana (Mibbit@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP)
  1293. # [11:19] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  1294. # [11:19] * Quits: Morris (Morris@moz-99690620.hinet-ip.hinet.net) (Quit: Morris)
  1295. # [11:20] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  1296. # [11:21] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  1297. # [11:21] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Ping timeout)
  1298. # [11:21] * Joins: marxin (marxin@moz-97B87435.scz.novell.com)
  1299. # [11:21] * Joins: adalucinet (Mibbit@28C4EA76.976FBEE.5BC07656.IP)
  1300. # [11:22] <evilpie> edmorley: hehe ;)
  1301. # [11:23] * Quits: elin (elin@moz-99690620.hinet-ip.hinet.net) (Quit: elin)
  1302. # [11:24] <edmorley> sorry was making a cup of tea
  1303. # [11:24] <edmorley> Yoric: no review needed
  1304. # [11:24] * Joins: kentuckyfriedtakahe_ (ajones@moz-C1C161D4.dynamic.hinet.net)
  1305. # [11:24] <Yoric> Thanks.
  1306. # [11:24] <edmorley> but bonus points for filing a bug when touching the clobber file to ensure the build system is fixed, but you've already done that so ++ :-)
  1307. # [11:25] <Yoric> :)
  1308. # [11:25] * Quits: vichen (vichen@moz-99690620.hinet-ip.hinet.net) (Quit: vichen)
  1309. # [11:25] * Quits: kentuckyfriedtakahe (ajones@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1310. # [11:26] * Joins: kentuckyfriedtakahe__ (ajones@moz-99690620.hinet-ip.hinet.net)
  1311. # [11:27] * Quits: kentuckyfriedtakahe_ (ajones@moz-C1C161D4.dynamic.hinet.net) (Ping timeout)
  1312. # [11:29] * Joins: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com)
  1313. # [11:30] * Quits: kentuckyfriedtakahe__ (ajones@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1314. # [11:30] * Joins: mstange (markus@moz-1257C949.dip0.t-ipconnect.de)
  1315. # [11:31] * Quits: adalucinet (Mibbit@28C4EA76.976FBEE.5BC07656.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1316. # [11:32] * Quits: atsai (atsai@moz-99690620.hinet-ip.hinet.net) (Quit: This computer has gone to sleep)
  1317. # [11:33] * Quits: sworkman (sworkman@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: sworkman)
  1318. # [11:35] * Joins: AndreiVaida (Mibbit@28C4EA76.976FBEE.5BC07656.IP)
  1319. # [11:37] * Quits: MarcoZ (marco.zehe@moz-8CE29991.dip0.t-ipconnect.de) (Ping timeout)
  1320. # [11:37] * Joins: sworkman (sworkman@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1321. # [11:39] * Quits: chucklee (chucklee@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving)
  1322. # [11:40] * Joins: pnkfelix (pnkfelix@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1323. # [11:44] * pmoore is now known as pmoore|away
  1324. # [11:44] * Joins: MarcoZ (marco.zehe@moz-8CE29991.dip0.t-ipconnect.de)
  1325. # [11:44] * Joins: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net)
  1326. # [11:44] * Joins: catalinn (Thunderbir@11BF4B12.7F10AE13.A721DA5F.IP)
  1327. # [11:44] * mihaelav is now known as mihaelav_lunch
  1328. # [11:47] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  1329. # [11:47] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  1330. # [11:48] * pmoore|away is now known as pmoore
  1331. # [11:50] * Quits: catalinn (Thunderbir@11BF4B12.7F10AE13.A721DA5F.IP) (Client exited)
  1332. # [11:53] * Quits: karl (karl@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1333. # [11:53] * Quits: h4writer (h4writer@moz-6BDA8831.access.telenet.be) (Ping timeout)
  1334. # [11:54] <Yoric> Does anyone know whether Cu.reportError automatically causes unexpected failures with mochitests?
  1335. # [11:55] * Quits: mchen (chatzilla@moz-99690620.hinet-ip.hinet.net) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0.1/20140212131424])
  1336. # [11:56] * Quits: anujagarwal464 (chatzilla@932339C7.6D6227B4.D216A595.IP) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0.1/20140212131424])
  1337. # [11:58] * Quits: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net) (Quit: Edgar)
  1338. # [11:59] * Joins: paolo (paolo@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1339. # [12:05] * Joins: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net)
  1340. # [12:06] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1341. # [12:07] * Quits: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net) (Ping timeout)
  1342. # [12:07] * Quits: shelly (shelly@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving)
  1343. # [12:08] * Joins: arnaud_bienner (arno@moz-A1109EC1.dsl.sta.abo.bbox.fr)
  1344. # [12:12] * Quits: gabor (gabor@moz-578B5C2F.pool.digikabel.hu) (Ping timeout)
  1345. # [12:12] * Gijs is 80% sure it does not
  1346. # [12:13] <Gijs> easiest way to test would be to just test it :)
  1347. # [12:18] * Joins: darkowlzz (sunny@81806669.FAAABED5.27560D6E.IP)
  1348. # [12:20] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  1349. # [12:20] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Client exited)
  1350. # [12:21] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Ping timeout)
  1351. # [12:22] * Joins: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca)
  1352. # [12:22] * Joins: nical (nico@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1353. # [12:22] * Quits: solomon (chatzilla@moz-99690620.hinet-ip.hinet.net) (Client exited)
  1354. # [12:24] * Joins: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP)
  1355. # [12:25] <mikedeboer> edmorley: fyi, my mercurial.ini had (...) in it... changed it, won't happen again.
  1356. # [12:26] <mikedeboer> so many boxes, so many configs :/
  1357. # [12:28] * Quits: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca) (Ping timeout)
  1358. # [12:30] * Joins: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net)
  1359. # [12:30] * Joins: trevorh (trevor@moz-B136EC57.lnse3.woo.bigpond.net.au)
  1360. # [12:31] * capella|away is now known as capella
  1361. # [12:31] * Joins: jhlin_ (jhlin@moz-C1C161D4.dynamic.hinet.net)
  1362. # [12:31] <edmorley> mikedeboer: hehe :-)
  1363. # [12:31] * Quits: jhlin (jhlin@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1364. # [12:31] * Quits: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net) (Ping timeout)
  1365. # [12:32] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1366. # [12:32] <mikedeboer> edmorley: well, thanks for telling me :)
  1367. # [12:33] <edmorley> mikedeboer: mach mercurial-setup can set the username in the correct format if that ever helps for the future? (I'm currently working on a few patches to make it work even better for extensions and things, since I know some devs avoid using it since it clobbers the settings if they have things like bzexport defined out of non-mozbuild directories)
  1368. # [12:33] * Quits: jhlin_ (jhlin@moz-C1C161D4.dynamic.hinet.net) (Ping timeout)
  1369. # [12:33] * Quits: Optimizer (Optimizer@AAC59C77.E26B7A67.BE4CF869.IP) (Ping timeout)
  1370. # [12:33] * Joins: h4writer (h4writer@C9B8D536.6B7851A0.A99782C1.IP)
  1371. # [12:33] <mikedeboer> edmorley: cool! I'm kinda old-style, but I'll give it a whirl next time I set up a new box!
  1372. # [12:35] * Quits: ggp (ggp@7407F9B9.7D8E47F4.1160D82E.IP) (Input/output error)
  1373. # [12:35] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Quit: Leaving.)
  1374. # [12:37] * Joins: ggp (ggp@7407F9B9.7D8E47F4.1160D82E.IP)
  1375. # [12:37] * Quits: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net) (Input/output error)
  1376. # [12:39] * Quits: schien (anonymous@moz-99690620.hinet-ip.hinet.net) (Quit: sleep)
  1377. # [12:40] * Quits: mikeperry (mikeperry@moz-7B83EACE.hfc.comcastbusiness.net) (Ping timeout)
  1378. # [12:40] * Joins: mikeperry (mikeperry@moz-7B83EACE.hfc.comcastbusiness.net)
  1379. # [12:40] * Quits: AndreiVaida (Mibbit@28C4EA76.976FBEE.5BC07656.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1380. # [12:42] * Quits: gcp (gpascutto@moz-9CEB1C98.access.telenet.be) (Connection reset by peer)
  1381. # [12:42] * pmoore is now known as pmoore|lunch
  1382. # [12:43] <edmorley> mikedeboer: :-) (it shows a diff before asking if it should make the changes, so you can always just use it as a sanity check if that's preferable)
  1383. # [12:43] * mikedeboer <3 mach
  1384. # [12:44] * Joins: gcp (gpascutto@moz-9CEB1C98.access.telenet.be)
  1385. # [12:44] * Quits: ggp (ggp@7407F9B9.7D8E47F4.1160D82E.IP) (Ping timeout)
  1386. # [12:44] * Quits: darkowlzz (sunny@81806669.FAAABED5.27560D6E.IP) (Ping timeout)
  1387. # [12:46] * Joins: darkowlzz (sunny@94718E68.CC17CE14.EACE93BE.IP)
  1388. # [12:46] * Quits: MarcoZ (marco.zehe@moz-8CE29991.dip0.t-ipconnect.de) (Ping timeout)
  1389. # [12:47] * Quits: h4writer (h4writer@C9B8D536.6B7851A0.A99782C1.IP) (Ping timeout)
  1390. # [12:48] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  1391. # [12:48] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  1392. # [12:48] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Client exited)
  1393. # [12:48] * Joins: h4writer (h4writer@C9B8D536.6B7851A0.A99782C1.IP)
  1394. # [12:49] * Joins: WaltS48 (Thunderbir@moz-6C5C0F8.pitbpa.east.verizon.net)
  1395. # [12:50] * Quits: mayhemer (Thunderbir@87C1F78E.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  1396. # [12:50] * Quits: h4writer (h4writer@C9B8D536.6B7851A0.A99782C1.IP) (Ping timeout)
  1397. # [12:51] * jorendorff_away is now known as jorendorff
  1398. # [12:53] * Joins: mihneadb (mihneadb@moz-6B31F5AA.static.ziggozakelijk.nl)
  1399. # [12:57] * Quits: darkowlzz (sunny@94718E68.CC17CE14.EACE93BE.IP) (Connection reset by peer)
  1400. # [12:58] * sheppy-offline is now known as sheppy
  1401. # [12:58] * Quits: brsun (chatzilla@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1402. # [12:59] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  1403. # [13:02] * Quits: phenom (phenom@BFED0EF4.F61A6434.3B788C77.IP) (Ping timeout)
  1404. # [13:03] * Joins: ericjung_ (ericjung@moz-E3E145F1.transedge.com)
  1405. # [13:03] * Joins: phenom (phenom@BFED0EF4.F61A6434.3B788C77.IP)
  1406. # [13:04] * Joins: armenzg (armenzg@moz-DC6D6B46.home1.cgocable.net)
  1407. # [13:05] * Joins: h4writer (h4writer@6B6D28AC.9104FB2A.6D5952B2.IP)
  1408. # [13:05] * pmoore|lunch is now known as pmoore|away
  1409. # [13:06] * Quits: sworkman (sworkman@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: sworkman)
  1410. # [13:06] * Joins: jaspreet (jaspreet@9B9315E1.A6025CA.1C37C358.IP)
  1411. # [13:06] * Joins: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net)
  1412. # [13:08] * Quits: ericjung_ (ericjung@moz-E3E145F1.transedge.com) (Ping timeout)
  1413. # [13:08] * Quits: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net) (Ping timeout)
  1414. # [13:09] * Quits: Ms2ger (Ms2ger@moz-5180E188.adsl-dyn.isp.belgacom.be) (Quit: bbl)
  1415. # [13:10] * Joins: KaiRo (robert@moz-5F7674B7.adsl.highway.telekom.at)
  1416. # [13:10] * Joins: darkowlzz (sunny@81806669.FAAABED5.27560D6E.IP)
  1417. # [13:10] * pmoore|away is now known as pmoore
  1418. # [13:10] * jmaher|afk is now known as jmaher
  1419. # [13:16] * Joins: rankov (Mibbit@7A460512.A56E0E8C.DF1CE89D.IP)
  1420. # [13:16] * admix|away is now known as admix
  1421. # [13:16] * Joins: mayhemer (Thunderbir@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1422. # [13:17] * Joins: tomer (tomer@CFAC817F.55661B99.34A7550B.IP)
  1423. # [13:19] * Quits: GPHemsley (GPHemsley@moz-379EB2FA.hsd1.de.comcast.net) (Input/output error)
  1424. # [13:19] * Quits: tomer (tomer@CFAC817F.55661B99.34A7550B.IP) (Ping timeout)
  1425. # [13:20] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  1426. # [13:21] * Joins: GPHemsley (GPHemsley@moz-379EB2FA.hsd1.de.comcast.net)
  1427. # [13:22] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Ping timeout)
  1428. # [13:22] * Joins: cpeterso_ (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  1429. # [13:24] * Joins: jaws (uid2871@moz-5F4AA75A.irccloud.com)
  1430. # [13:24] * Quits: cpeterso_ (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Ping timeout)
  1431. # [13:25] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  1432. # [13:27] * Joins: MarcoZ (marco.zehe@moz-8CE29991.dip0.t-ipconnect.de)
  1433. # [13:27] * Quits: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP) (Connection reset by peer)
  1434. # [13:29] * Quits: MarcoZ (marco.zehe@moz-8CE29991.dip0.t-ipconnect.de) (Ping timeout)
  1435. # [13:29] * Joins: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca)
  1436. # [13:29] * Quits: sawrubh (uid6719@moz-5F4AA75A.irccloud.com) (Quit: Connection closed for inactivity)
  1437. # [13:29] * Joins: benvie_ (bbenvie@5FD20F9A.53D07D95.EFF8B7BF.IP)
  1438. # [13:30] * Quits: benvie (bbenvie@5FD20F9A.53D07D95.EFF8B7BF.IP) (Ping timeout)
  1439. # [13:30] * Joins: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net)
  1440. # [13:31] * Joins: jhlin (jhlin@moz-7E09B037.dynamic.hinet.net)
  1441. # [13:32] * ewong|sleep is now known as ewong
  1442. # [13:32] * Quits: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net) (Ping timeout)
  1443. # [13:33] * Joins: sworkman (sworkman@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1444. # [13:33] * Quits: jhlin (jhlin@moz-7E09B037.dynamic.hinet.net) (Ping timeout)
  1445. # [13:34] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  1446. # [13:34] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  1447. # [13:35] * jorendorff is now known as jorendorff_away
  1448. # [13:35] * Joins: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP)
  1449. # [13:36] <gfritzsche> hm, does anyone have ideas on how to figure out why an async xpcshell-test isn't finishing?
  1450. # [13:36] <gfritzsche> i.e. stuck at 'exiting test'
  1451. # [13:36] * Joins: smaug (chatzilla@moz-9E0B1701.pp.htv.fi)
  1452. # [13:36] * ChanServ sets mode: +o smaug
  1453. # [13:36] * Joins: Niharika (Happiness@633FD436.142D8E0A.74119F78.IP)
  1454. # [13:36] <gfritzsche> any obvious problems to look for?
  1455. # [13:38] * Joins: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca)
  1456. # [13:38] <Yoric> !seen marco
  1457. # [13:38] * Joins: vichen (vichen@moz-5FF3F4B1.dynamic.hinet.net)
  1458. # [13:40] * Joins: victorporof (victorporo@moz-FFB76956.cpe.net.cable.rogers.com)
  1459. # [13:40] * Joins: petruta (Mibbit@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP)
  1460. # [13:41] * Joins: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net)
  1461. # [13:41] * Quits: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca) (Ping timeout)
  1462. # [13:42] * Joins: ahal (ahal@moz-7DE89BF0.cable.teksavvy.com)
  1463. # [13:44] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Input/output error)
  1464. # [13:46] <Tomcat|sheriffduty> hey jaws red/bustage on fx-team
  1465. # [13:46] * Quits: vichen (vichen@moz-5FF3F4B1.dynamic.hinet.net) (Ping timeout)
  1466. # [13:46] * bsmedberg-away is now known as bsmedberg
  1467. # [13:46] <jaws> :(
  1468. # [13:47] <jaws> Tomcat|sheriffduty: looking in to it real quick to see if i can push a quick followup or should just back out
  1469. # [13:47] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1470. # [13:47] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Client exited)
  1471. # [13:48] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  1472. # [13:48] <Tomcat|sheriffduty> jaws: cool - looks like a path problem or so
  1473. # [13:49] <jaws> Tomcat|sheriffduty: yeah i have it fixed now
  1474. # [13:49] <@bsmedberg> gfritzsche: depends on what the last thing the test did was, but it often means that an async thing never finished/promise never resolved
  1475. # [13:50] * Quits: GPHemsley (GPHemsley@moz-379EB2FA.hsd1.de.comcast.net) (Input/output error)
  1476. # [13:50] * Joins: GPHemsley (GPHemsley@moz-379EB2FA.hsd1.de.comcast.net)
  1477. # [13:50] <Tomcat|sheriffduty> jaws: cool
  1478. # [13:50] * Quits: dria (dria@moz-FF0F6F16.dsl.teksavvy.com) (Quit: dria)
  1479. # [13:50] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  1480. # [13:50] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  1481. # [13:51] * Joins: vichen (vichen@moz-3CD16415.dynamic.hinet.net)
  1482. # [13:52] <RealRaven> I have a problem gettings all strylesheets using document.styleSheets. It appears that it omite @imported style shetts - how do I get at them?
  1483. # [13:52] <jaws> Tomcat|sheriffduty: done
  1484. # [13:52] <RealRaven> *omit
  1485. # [13:53] <RealRaven> I can't find anything about how to enumerate nested (@imported) style sheets on mdn. It seems to fail (at least in SeaMonkeY0
  1486. # [13:54] * Joins: gustavold (gustavold@C297F11F.E9825422.DF2AC62B.IP)
  1487. # [13:55] * Quits: marxin (marxin@moz-97B87435.scz.novell.com) (Ping timeout)
  1488. # [13:55] * Quits: reyre (reyre@8A257803.33EE9F8A.1139E686.IP) (Ping timeout)
  1489. # [13:56] * Joins: reyre (reyre@8A257803.33EE9F8A.1139E686.IP)
  1490. # [13:56] * Quits: reyre (reyre@8A257803.33EE9F8A.1139E686.IP) (Max SendQ exceeded)
  1491. # [13:56] * Joins: MarcoZ (marco.zehe@moz-8CE29991.dip0.t-ipconnect.de)
  1492. # [13:56] * Joins: reyre (reyre@8A257803.33EE9F8A.1139E686.IP)
  1493. # [13:56] * Quits: reyre (reyre@8A257803.33EE9F8A.1139E686.IP) (Max SendQ exceeded)
  1494. # [13:57] * Joins: reyre (reyre@8A257803.33EE9F8A.1139E686.IP)
  1495. # [13:57] * Quits: reyre (reyre@8A257803.33EE9F8A.1139E686.IP) (Max SendQ exceeded)
  1496. # [13:57] * Joins: reyre (reyre@8A257803.33EE9F8A.1139E686.IP)
  1497. # [13:57] * Quits: reyre (reyre@8A257803.33EE9F8A.1139E686.IP) (Max SendQ exceeded)
  1498. # [13:57] * Joins: MarcoZ_ (marco.zehe@moz-8CE29991.dip0.t-ipconnect.de)
  1499. # [13:58] * Joins: reyre (reyre@8A257803.33EE9F8A.1139E686.IP)
  1500. # [13:58] * Quits: reyre (reyre@8A257803.33EE9F8A.1139E686.IP) (Max SendQ exceeded)
  1501. # [13:58] * catlee-away is now known as catlee
  1502. # [13:58] * Quits: MarcoZ (marco.zehe@moz-8CE29991.dip0.t-ipconnect.de) (Input/output error)
  1503. # [13:58] * joshua-s|zzz is now known as joshua-s
  1504. # [13:58] * MarcoZ_ is now known as MarcoZ
  1505. # [13:59] * Joins: reyre (reyre@8A257803.33EE9F8A.1139E686.IP)
  1506. # [13:59] * Quits: reyre (reyre@8A257803.33EE9F8A.1139E686.IP) (Max SendQ exceeded)
  1507. # [13:59] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  1508. # [13:59] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  1509. # [13:59] * Joins: reyre (reyre@8A257803.33EE9F8A.1139E686.IP)
  1510. # [13:59] * Quits: reyre (reyre@8A257803.33EE9F8A.1139E686.IP) (Max SendQ exceeded)
  1511. # [13:59] * Joins: jdm (jdm@moz-AC9499B2.cable.teksavvy.com)
  1512. # [14:00] * Joins: reyre (reyre@8A257803.33EE9F8A.1139E686.IP)
  1513. # [14:00] * Quits: reyre (reyre@8A257803.33EE9F8A.1139E686.IP) (Max SendQ exceeded)
  1514. # [14:00] * Joins: reyre (reyre@8A257803.33EE9F8A.1139E686.IP)
  1515. # [14:00] * Quits: reyre (reyre@8A257803.33EE9F8A.1139E686.IP) (Max SendQ exceeded)
  1516. # [14:01] * Joins: reyre (reyre@8A257803.33EE9F8A.1139E686.IP)
  1517. # [14:01] * Quits: reyre (reyre@8A257803.33EE9F8A.1139E686.IP) (Max SendQ exceeded)
  1518. # [14:01] * Joins: reyre (reyre@8A257803.33EE9F8A.1139E686.IP)
  1519. # [14:01] * Quits: reyre (reyre@8A257803.33EE9F8A.1139E686.IP) (Max SendQ exceeded)
  1520. # [14:01] <RealRaven> are the CSSStyleSheet classes somehow nested?
  1521. # [14:02] * Joins: reyre (reyre@8A257803.33EE9F8A.1139E686.IP)
  1522. # [14:02] * Quits: reyre (reyre@8A257803.33EE9F8A.1139E686.IP) (Max SendQ exceeded)
  1523. # [14:03] <RealRaven> or are all rules of the children "flattened out" into the container? It seems to contradict what I am seeing inDOMi
  1524. # [14:03] * Joins: reyre (reyre@8A257803.33EE9F8A.1139E686.IP)
  1525. # [14:03] <mcsmurf> RealRaven: check http://stackoverflow.com/questions/385098/how-do-i-parse-import-stylesheets-with-javascript maybe that helps
  1526. # [14:03] * armenzg is now known as armenzg_brb
  1527. # [14:04] <RealRaven> aha! So it is hidden in one of the rules :-) that makes sense. I was wondering why I didn't see it
  1528. # [14:04] * Joins: lduros (user@moz-D1C419E5.phlapa.fios.verizon.net)
  1529. # [14:04] <mcsmurf> but this assumes "Assuming that our document contains an @import-rule as first rule in the first stylesheet, here's the code for standards compliant browsers"
  1530. # [14:05] * Quits: kk1fff (kk1fff@moz-99690620.hinet-ip.hinet.net) (Client exited)
  1531. # [14:06] <RealRaven> .. I am writing chrome privileged code (in thunderbird) so that's not an issue. I don't deal much lowly "content" :P
  1532. # [14:06] * jhopkins|afk is now known as jhopkins
  1533. # [14:06] <RealRaven> *with
  1534. # [14:06] <gfritzsche> bsmedberg: so if there's any promise hanging around at test-shutdown... can we somehow get information on what's still pending?
  1535. # [14:06] <RealRaven> so all I need to do is to check rule.stylesheet and recurse my function. that's easy enough
  1536. # [14:07] * Joins: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net)
  1537. # [14:08] * Joins: davidb (davidb@moz-E4E805A9.dsl.bell.ca)
  1538. # [14:08] * Joins: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP)
  1539. # [14:08] * Quits: vichen (vichen@moz-3CD16415.dynamic.hinet.net) (Quit: vichen)
  1540. # [14:08] * Joins: kk1fff (kk1fff@moz-99690620.hinet-ip.hinet.net)
  1541. # [14:09] * Quits: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net) (Ping timeout)
  1542. # [14:09] * Joins: marxin (marxin@moz-97B87435.scz.novell.com)
  1543. # [14:10] * Quits: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP) (Ping timeout)
  1544. # [14:10] * Quits: kk1fff (kk1fff@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1545. # [14:12] * Joins: Optimizer (Optimizer@3D2939CB.13822FF0.BE90E62C.IP)
  1546. # [14:14] * Quits: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  1547. # [14:14] * Joins: rogeliodh (Thunderbir@D3A15E94.176BD373.D67CC001.IP)
  1548. # [14:15] * Quits: Optimizer (Optimizer@3D2939CB.13822FF0.BE90E62C.IP) (Ping timeout)
  1549. # [14:16] <gfritzsche> bsmedberg: nvm, found the culprit
  1550. # [14:17] * Joins: RyanVM (Thunderbir@moz-37FED3AC.phlapa.fios.verizon.net)
  1551. # [14:17] * Quits: h4writer (h4writer@6B6D28AC.9104FB2A.6D5952B2.IP) (Ping timeout)
  1552. # [14:17] * Joins: Ms2ger (Ms2ger@moz-4A14BC33.ugent.be)
  1553. # [14:19] * Joins: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP)
  1554. # [14:20] * Quits: georgiana|away (georgiana@45E9C5E5.B3F335B2.EFDC1DB8.IP) (Ping timeout)
  1555. # [14:22] * Joins: schien (anonymous@moz-CD57401B.dynamic.hinet.net)
  1556. # [14:23] * jcranmer|away is now known as jcranmer
  1557. # [14:23] * baku|away is now known as baku
  1558. # [14:23] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  1559. # [14:23] * kats|away is now known as kats
  1560. # [14:24] <RealRaven> mcsmurf: this is strange, although the rule seems to have a stylesheet attribute sometimes it is not part of http://mxr.mozilla.org/mozilla-central/source/dom/interfaces/css/nsIDOMCSSRule.idl#17
  1561. # [14:24] * Quits: ewong (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  1562. # [14:25] <RealRaven> is there a differen CSS rule interface that includes the stylesheet or is this just simply cobbled in by the JS code
  1563. # [14:25] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Ping timeout)
  1564. # [14:25] * Joins: ewong (chatzilla@moz-772F27FF.netvigator.com)
  1565. # [14:26] <RealRaven> Ah I see it is a different type
  1566. # [14:26] * Quits: jhorak (jhorak@moz-2EE9C9C3.cust.nbox.cz) (Ping timeout)
  1567. # [14:26] * Joins: mccr8 (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net)
  1568. # [14:26] * Joins: Morris (Morris@moz-806C3E63.dynamic-ip.hinet.net)
  1569. # [14:26] * jandem is now known as jandem-brb
  1570. # [14:26] <RealRaven> CSSRuleLIst contains CSSStyleRule and CSSImportRule objects
  1571. # [14:27] <RealRaven> I wonder iof this should be documented here https://developer.mozilla.org/en-US/docs/Web/API/CSSRule
  1572. # [14:28] <mcsmurf> whoa, dunno :o
  1573. # [14:28] * Joins: mak (uid24946@moz-31ABA2C0.irccloud.com)
  1574. # [14:28] <RealRaven> oh there is actually a constant in there CSSRule.IMPORT_RULE
  1575. # [14:28] * Quits: Morris (Morris@moz-806C3E63.dynamic-ip.hinet.net) (Quit: Morris)
  1576. # [14:29] * Joins: Morris (Morris@moz-806C3E63.dynamic-ip.hinet.net)
  1577. # [14:29] <RealRaven> ah got it: if (CSSRule.type==CSSRule.IMPORT_RULE) ...
  1578. # [14:29] * Joins: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP)
  1579. # [14:29] * armenzg_brb is now known as armenzg
  1580. # [14:29] * Joins: vichen (vichen@moz-3CD16415.dynamic.hinet.net)
  1581. # [14:30] <RealRaven> Si I need to create a page https://developer.mozilla.org/en-US/docs/Web/API/CSSImportRule
  1582. # [14:30] * Quits: vichen (vichen@moz-3CD16415.dynamic.hinet.net) (services.mozilla.org (Too many invalid passwords))
  1583. # [14:30] <RealRaven> there is an idl: http://mxr.mozilla.org/mozilla-central/source/dom/interfaces/css/nsIDOMCSSImportRule.idl#9
  1584. # [14:31] <RealRaven> probably good enough linking that
  1585. # [14:31] * Joins: jwei (jwei@13F2CEC5.7672369.D8E68FF6.IP)
  1586. # [14:31] * Quits: Morris (Morris@moz-806C3E63.dynamic-ip.hinet.net) (Quit: Morris)
  1587. # [14:32] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  1588. # [14:33] * Quits: petruta (Mibbit@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1589. # [14:33] <mcsmurf> RealRaven: but isn't this different?
  1590. # [14:33] <mcsmurf> after all those pages talk the Web API
  1591. # [14:33] * Joins: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP)
  1592. # [14:34] <mcsmurf> and not about our internal idl files
  1593. # [14:34] <mihaelav_lunch> hi Gijs!
  1594. # [14:34] <mcsmurf> but then, I have very few to do with this stuff
  1595. # [14:34] * mihaelav_lunch is now known as mihaelav
  1596. # [14:34] <Gijs> mihaelav: hi
  1597. # [14:35] <RealRaven> mcsmurf: do they? not that I am aware. I thought this was for mozilla developers
  1598. # [14:35] <Ms2ger> MDN? No
  1599. # [14:35] <Ms2ger> At least, the Web/ tree
  1600. # [14:35] <mcsmurf> oh actually CSSImportRule is linked from that CSSRule page ;)
  1601. # [14:35] * Joins: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net)
  1602. # [14:36] <mcsmurf> (it just does not exist yet)
  1603. # [14:36] <Ms2ger> Web/* is for webdevs, Mozilla/* is for Mozilla devs
  1604. # [14:36] <RealRaven> We usually link to the IDLs when we are too lazy to create our own pages for XPCOM interfaces :p
  1605. # [14:36] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  1606. # [14:36] * Quits: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net) (Max SendQ exceeded)
  1607. # [14:36] <RealRaven> mcsmurf: the link brings up a 404
  1608. # [14:36] * Quits: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP) (Ping timeout)
  1609. # [14:36] * armenzg is now known as armenzg_breakfast
  1610. # [14:36] <RealRaven> so I thought I just put in a link to http://mxr.mozilla.org/mozilla-central/source/dom/interfaces/css/nsIDOMCSSImportRule.idl#9
  1611. # [14:36] <RealRaven> Of couirse I could "create" the page but I am at work right now...
  1612. # [14:36] <mihaelav> Gijs: https://tbpl.mozilla.org/?tree=Try&rev=2487f0a3daa5 these are the results of the patch without the new windows tests. There are some failures in other tests. Do you think I can add the patch to the bug or thy further?
  1613. # [14:37] * Joins: bogdan_maris (Mibbit@28C4EA76.976FBEE.5BC07656.IP)
  1614. # [14:37] <Gijs> mihaelav: the os x 10.8 failures look real
  1615. # [14:37] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Ping timeout)
  1616. # [14:38] <Gijs> mihaelav: you should try to figure out what those mean.
  1617. # [14:38] <RealRaven> Problem is that browserId is now letting me down when I try to log on to MDN as myself
  1618. # [14:38] <RealRaven> ok, logged in
  1619. # [14:39] * Quits: davidb (davidb@moz-E4E805A9.dsl.bell.ca) (Input/output error)
  1620. # [14:40] * Joins: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP)
  1621. # [14:40] * Joins: davidb (davidb@moz-E4E805A9.dsl.bell.ca)
  1622. # [14:40] <mcsmurf> what would be cool: if the eyes of the green monster on the 404 page (https://developer.mozilla.org/en-US/docs/Web/API/CSSImportRule) followed my mouse cursor ;)
  1623. # [14:40] <Ms2ger> mcsmurf, patches welcome? :)
  1624. # [14:40] <mcsmurf> :)
  1625. # [14:41] <mcsmurf> actually the graphic has no ideas https://developer.cdn.mozilla.net/media/img/beast-404.png
  1626. # [14:41] <mcsmurf> so the eyes are already JS
  1627. # [14:41] <RealRaven> Edit complete: https://developer.mozilla.org/en-US/docs/Web/API/CSSRule
  1628. # [14:41] <mcsmurf> errr...eyes
  1629. # [14:41] <RealRaven> hmm, should probably add a label...
  1630. # [14:41] <mihaelav> Gijs: ok, thank you
  1631. # [14:42] <Gijs> mihaelav: easiest to start with might be retriggering the opt build a few times to see if it happens all the time
  1632. # [14:42] * Joins: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net)
  1633. # [14:43] * Joins: roc (chatzilla@8ACF1000.5EFFC0B8.24454B25.IP)
  1634. # [14:43] * ChanServ sets mode: +o roc
  1635. # [14:43] * Joins: AaronMT (AaronMT@moz-53D1D1F.cpe.net.cable.rogers.com)
  1636. # [14:45] * Joins: ggp (ggp@2517BFAF.BFDA0A02.9F9EFC6F.IP)
  1637. # [14:45] * Quits: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP) (Ping timeout)
  1638. # [14:46] * Quits: reyre (reyre@8A257803.33EE9F8A.1139E686.IP) (Quit: ZNC - http://znc.in)
  1639. # [14:48] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  1640. # [14:48] * armenzg_breakfast is now known as armenzg
  1641. # [14:49] * Joins: sumit4iit (Thunderbir@FB353FD.68BB660.931D0F89.IP)
  1642. # [14:50] * Quits: Archaeopteryx (itsme@moz-8783AFDB.cust.telecolumbus.net) (Quit: Goodbye)
  1643. # [14:51] * Joins: vingtetun (Thunderbir@DA4ABEAF.1DE10CA8.D8E68FF6.IP)
  1644. # [14:52] * Quits: devashish (chatzilla@DAF68DFC.240CD07.FFE8C4AF.IP) (Client exited)
  1645. # [14:53] * Joins: dria (dria@13F2CEC5.7672369.D8E68FF6.IP)
  1646. # [14:54] * Joins: elin (elin@moz-DA1CD392.dynamic-ip.hinet.net)
  1647. # [14:55] * Joins: wolfsoul (wolfsoul@moz-B52F064.home.otenet.gr)
  1648. # [14:56] * Joins: bholley (bholley@B08EEEEB.6BBCE916.7B974E06.IP)
  1649. # [14:56] <mihaelav> ok, thanks for the tip, Gijs :)
  1650. # [14:57] * Joins: Edgar (Thunderbir@moz-425ED83.dynamic.hinet.net)
  1651. # [14:58] * Joins: jimm (jmathies@moz-DF439B90.pn.at.cox.net)
  1652. # [14:59] * Joins: jrm2k6 (jrm2k6@moz-876091EF.sd.sd.cox.net)
  1653. # [14:59] * Quits: bc (bc@454BDC37.1D5E8529.AC69809B.IP) (Quit: leaving)
  1654. # [14:59] * Quits: tzimmermann (tzimmerman@moz-5173BC47.pools.arcor-ip.net) (Quit: Ex-Chat)
  1655. # [15:02] * Joins: bc (bc@454BDC37.1D5E8529.AC69809B.IP)
  1656. # [15:02] * Quits: bholley (bholley@B08EEEEB.6BBCE916.7B974E06.IP) (Quit: bholley)
  1657. # [15:02] * Joins: reyre (reyre@8A257803.33EE9F8A.1139E686.IP)
  1658. # [15:05] * Joins: petruta (Mibbit@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP)
  1659. # [15:05] * Quits: phenom (phenom@BFED0EF4.F61A6434.3B788C77.IP) (Ping timeout)
  1660. # [15:06] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  1661. # [15:06] * Joins: phenom (phenom@BFED0EF4.F61A6434.3B788C77.IP)
  1662. # [15:06] * Joins: m_gol (m_gol@moz-F270C6C6.neoplus.adsl.tpnet.pl)
  1663. # [15:06] * khuey|away is now known as khuey
  1664. # [15:06] * Joins: karl (karl@moz-34BE0095.dynamic.hinet.net)
  1665. # [15:07] * Joins: lmandel (lmandel@moz-60AD75.cable.teksavvy.com)
  1666. # [15:07] * Joins: mgol (m_gol@moz-F270C6C6.neoplus.adsl.tpnet.pl)
  1667. # [15:07] * Quits: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net) (Input/output error)
  1668. # [15:07] * hwine-ooo is now known as hwine
  1669. # [15:07] * Quits: vingtetun (Thunderbir@DA4ABEAF.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  1670. # [15:07] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Ping timeout)
  1671. # [15:08] * Joins: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net)
  1672. # [15:08] * Quits: m_gol (m_gol@moz-F270C6C6.neoplus.adsl.tpnet.pl) (Ping timeout)
  1673. # [15:08] * Joins: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  1674. # [15:08] * philor|away is now known as philor
  1675. # [15:08] * Joins: tomer (tomer@CD40FAF0.4410E95C.416762B.IP)
  1676. # [15:09] <@bsmedberg> ted or whimboo: can I test HTTPS in xpcshell?
  1677. # [15:09] <@bsmedberg> I currently have an xpcshell test that launches an HTTP server, but I need to do some basic cert checking
  1678. # [15:09] * Joins: josh (josh@moz-348C4790.hsd1.mn.comcast.net)
  1679. # [15:09] * Quits: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net) (Ping timeout)
  1680. # [15:10] <Standard8> bsmedberg: I vaguely remember something about stunnel
  1681. # [15:10] <@bsmedberg> we use stunnel for mochitests, yes
  1682. # [15:10] <@bsmedberg> I don't see examples of it for xpcshell tests though
  1683. # [15:10] * Joins: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net)
  1684. # [15:10] <Standard8> ah
  1685. # [15:11] * jorendorff_away is now known as jorendorff
  1686. # [15:11] <Standard8> ssltunnel
  1687. # [15:11] * Quits: tomer (tomer@CD40FAF0.4410E95C.416762B.IP) (Ping timeout)
  1688. # [15:12] * sheppy is now known as sheppy-afk
  1689. # [15:12] <jcranmer> bsmedberg: there's a bug to enable it, but it never got completed
  1690. # [15:12] * Joins: jchaulk (jchaulk-20@moz-A5DF7EB9.dsl.teksavvy.com)
  1691. # [15:13] * Joins: vingtetun (Thunderbir@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1692. # [15:16] <RyanVM> bz: RE: bug 952927 - we really need to catch IDL changes w/o UUID bumps during review
  1693. # [15:16] <RyanVM> bz_sleep ^
  1694. # [15:16] <RyanVM> bz_sleep: I'll wager that's why we hit the results we did last time that attempted to land (especially given the green Try run)
  1695. # [15:16] * gregglind_away is now known as gregglind
  1696. # [15:16] <Ms2ger> RyanVM, hg hook?
  1697. # [15:17] <RyanVM> not a bad idea
  1698. # [15:17] <RyanVM> we hit this bustage how often?
  1699. # [15:17] <mccr8> I've done it at least once myself. :-/
  1700. # [15:17] <RyanVM> seems like at least a couple times every month
  1701. # [15:17] <mccr8> there's some kind of UUID checking hook on branches
  1702. # [15:17] <RyanVM> they do it on merge day
  1703. # [15:17] <mccr8> ah
  1704. # [15:17] <RyanVM> they look at IDL changes w/o UUID bumps
  1705. # [15:18] <Ms2ger> Wasn't there also a binary-approval flag?
  1706. # [15:18] <mccr8> yeah I think so
  1707. # [15:18] <RyanVM> and m-b checks for IDL changes w/o ba
  1708. # [15:18] <RyanVM> yes ^
  1709. # [15:18] <arnaud_bienner> dholbert: ping
  1710. # [15:18] <RyanVM> that's only on beta
  1711. # [15:18] <mccr8> I guess verifying there's a UUID change is trickier than checking there's a ba=
  1712. # [15:18] <Ms2ger> Right
  1713. # [15:18] * Joins: firebot (firebot@moz-F8C1AF63.carolina.res.rr.com)
  1714. # [15:19] * Quits: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: ekr)
  1715. # [15:20] * Joins: brendan (brendaneic@35E90EE3.B8B12C49.396B22AD.IP)
  1716. # [15:21] <whimboo> bsmedberg: i might not be a good help here. never worked on xpcshell tests so far
  1717. # [15:21] * Quits: lassey (blassey@moz-BE8DDEF2.hsd1.ct.comcast.net) (Quit: Leaving...)
  1718. # [15:21] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  1719. # [15:21] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  1720. # [15:22] * Quits: @smaug (chatzilla@moz-9E0B1701.pp.htv.fi) (Ping timeout)
  1721. # [15:27] * RyanVM supposes he could be nice and just bump it for them
  1722. # [15:27] <RyanVM> nah
  1723. # [15:27] * Quits: victorporof (victorporo@moz-FFB76956.cpe.net.cable.rogers.com) (Quit: victorporof)
  1724. # [15:27] <Ms2ger> nah
  1725. # [15:28] * Quits: therube_agone (chatzilla@moz-1308AA8D.bltmmd.east.verizon.net) (Ping timeout)
  1726. # [15:30] <jcranmer> ....
  1727. # [15:30] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/b753b98bcf55 - Brian Smith - Bug 982761 - Fix linkage of _1 placeholder in std::bind polyfill. r=briansmith
  1728. # [15:30] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/cef5e3248787 - Dan Glastonbury - Bug 982464 - Disable extension functionality after a context lost happens. r=jgilbert
  1729. # [15:30] * Quits: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
  1730. # [15:30] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/a25a6bf64a5f - CJKu - Bug 982533 - Enable DEBUG_SELECTION cause compile fail. r=ehsan
  1731. # [15:30] <jcranmer> wow, TextDecoder has spoiled me on charsets
  1732. # [15:33] * whimboo is now known as whimboo|afk
  1733. # [15:33] * Quits: josh (josh@moz-348C4790.hsd1.mn.comcast.net) (Quit: josh)
  1734. # [15:37] * Joins: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  1735. # [15:37] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/b7761b7514f7 - Irving Reid - Bug 772484 - Allow user to cancel add-on update check and clean up correctly when they do. r=Unfocused
  1736. # [15:37] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/4832153571bc - Mats Palmgren - Bug 983019 - Fix a typo in the aMetrics->maxDescent initialization when we failed to create the Cairo font. Also fix a typo so that aSpaceGlyph out-param is assigned as
  1737. # [15:37] <firebot> intended. And make the code easier to read. r=jfkthame
  1738. # [15:37] * Quits: bogdan_maris (Mibbit@28C4EA76.976FBEE.5BC07656.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1739. # [15:37] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/6da2b893be68 - Dan Glastonbury - Bug 983068 - Fix float/half float texture validation. r=jgilbert
  1740. # [15:37] * Joins: emerson (chatzilla@moz-3E0ABD32.hsd1.mi.comcast.net)
  1741. # [15:38] * Joins: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net)
  1742. # [15:39] * Joins: therube_agone (chatzilla@moz-1308AA8D.bltmmd.east.verizon.net)
  1743. # [15:39] * Joins: josh (josh@moz-348C4790.hsd1.mn.comcast.net)
  1744. # [15:39] * Quits: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net) (Ping timeout)
  1745. # [15:39] * JosiahOne is now known as JosiahOne|Away
  1746. # [15:41] * Quits: JosiahOne|Away (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net) (Ping timeout)
  1747. # [15:41] * Quits: emerson (chatzilla@moz-3E0ABD32.hsd1.mi.comcast.net) (Client exited)
  1748. # [15:41] * Joins: gwagner (Gregor@moz-B45FE61C.hsd1.ca.comcast.net)
  1749. # [15:42] * Quits: josh (josh@moz-348C4790.hsd1.mn.comcast.net) (Quit: josh)
  1750. # [15:42] * Joins: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net)
  1751. # [15:45] * Quits: ioana (Mibbit@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1752. # [15:46] * Quits: AsaDotzler (textual@4508CAE6.38324963.204CA821.IP) (Ping timeout)
  1753. # [15:47] <ekr> I'm chasing down a perf problem and thought I would see if anyone has any clever ideas: as part of writing OpenH264 video plugin, we have to push all the A/V to the plugin via IPC, which is currently all happening on the main thread (there are a bunch of shared memory operations). What I'm seeing is very bad performance and specifically what look like very long transitions onto the main thread. I.e., I have a function that does a call onto
  1754. # [15:47] <ekr> thread and if I instrument the time of the dispatch and the time when the function runs, it's like 200ms difference. Is there a good way to specifically ask what the main thread is doing? Just profile? Something better?
  1755. # [15:49] * ewong is now known as ewong|sleep
  1756. # [15:50] * Joins: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP)
  1757. # [15:50] * Quits: mikeratcliffe (Adium@1B67F073.8F445B48.7CCB197A.IP) (Quit: Leaving.)
  1758. # [15:51] * Joins: mikeratcliffe (Adium@1B67F073.8F445B48.7CCB197A.IP)
  1759. # [15:51] * Quits: elin (elin@moz-DA1CD392.dynamic-ip.hinet.net) (Quit: elin)
  1760. # [15:52] * Quits: karl (karl@moz-34BE0095.dynamic.hinet.net) (Ping timeout)
  1761. # [15:53] * Quits: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP) (Ping timeout)
  1762. # [15:54] * Joins: elin (elin@moz-DA1CD392.dynamic-ip.hinet.net)
  1763. # [15:54] * Quits: mikeperry (mikeperry@moz-7B83EACE.hfc.comcastbusiness.net) (Ping timeout)
  1764. # [15:54] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/9c18da81043e - Hannes Verschore - Bug 953164 - IonMonkey: Improve type information at branches, r=jandem
  1765. # [15:54] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  1766. # [15:55] * jhopkins is now known as jhopkins|brb
  1767. # [15:55] * Joins: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com)
  1768. # [15:55] <gcp> ekr: you're saying the event loop is being hogged for at average 200ms?
  1769. # [15:55] * Quits: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP) (Quit: Leaving)
  1770. # [15:56] * Joins: Optimizer (Optimizer@3D2939CB.13822FF0.BE90E62C.IP)
  1771. # [15:56] * Joins: h4writer (h4writer@moz-957FCBC.access.telenet.be)
  1772. # [15:56] * Joins: victorporof (victorporo@13F2CEC5.7672369.D8E68FF6.IP)
  1773. # [15:56] <ekr> gcp: what I know is that it's taking 200 ms for my event to get in, which isn't the same thing.
  1774. # [15:56] * Quits: sir_none (Thunderbir@A6EC613F.FE93EE7F.BBD8F176.IP) (Quit: sir_none)
  1775. # [15:57] * pmoore is now known as pmoore|tea-break
  1776. # [15:57] <@bz_sleep> ugh
  1777. # [15:58] <@bz_sleep> https://bugzilla.mozilla.org/show_bug.cgi?id=983570 is why we need curlies on all ifs
  1778. # [15:58] * Joins: vikstrous (v@13F2CEC5.7672369.D8E68FF6.IP)
  1779. # [15:59] * mcote|afk is now known as mcote
  1780. # [15:59] * Joins: mikeperry (mikeperry@moz-7B83EACE.hfc.comcastbusiness.net)
  1781. # [15:59] * Quits: lpy (lpy@8B40CDAC.F09091A8.1348A864.IP) (Ping timeout)
  1782. # [15:59] <mcsmurf> goto fail; indeed
  1783. # [15:59] * BenWa|email is now known as BenWa
  1784. # [15:59] * edmorley is now known as edmorley|sheriffduty
  1785. # [15:59] * Tomcat|sheriffduty is now known as Tomcat
  1786. # [16:00] <davidb> bz_sleep: yes.
  1787. # [16:00] * Quits: darkowlzz (sunny@81806669.FAAABED5.27560D6E.IP) (Ping timeout)
  1788. # [16:00] <gcp> that's a better argument than the apple bug
  1789. # [16:01] * Tomcat is now known as Tomcat|afk
  1790. # [16:01] * jchen|away is now known as jchen
  1791. # [16:01] * Joins: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP)
  1792. # [16:02] * swook` is now known as swook
  1793. # [16:02] * Joins: ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP)
  1794. # [16:02] * ChanServ sets mode: +o ehsan
  1795. # [16:02] * Joins: darkowlzz (sunny@81806669.FAAABED5.27560D6E.IP)
  1796. # [16:03] * Quits: smontagu (chatzilla@moz-3CCB3491.red.bezeqint.net) (Ping timeout)
  1797. # [16:04] * Quits: gwagner (Gregor@moz-B45FE61C.hsd1.ca.comcast.net) (Quit: gwagner)
  1798. # [16:04] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  1799. # [16:04] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  1800. # [16:05] * Joins: kk1fff (kk1fff@moz-9B6FD903.dynamic.hinet.net)
  1801. # [16:05] * Quits: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca) (Ping timeout)
  1802. # [16:06] * Quits: sumit4iit (Thunderbir@FB353FD.68BB660.931D0F89.IP) (Ping timeout)
  1803. # [16:06] * Quits: botond|laptop (chatzilla@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  1804. # [16:06] * Quits: brendan (brendaneic@35E90EE3.B8B12C49.396B22AD.IP) (Quit: brendan)
  1805. # [16:07] * Joins: Boopathi_K (uid13677@moz-31ABA2C0.irccloud.com)
  1806. # [16:07] * Quits: mikeperry (mikeperry@moz-7B83EACE.hfc.comcastbusiness.net) (Ping timeout)
  1807. # [16:07] <@bsmedberg> who can explain Sandbox behavior to me
  1808. # [16:07] <@bsmedberg> I have a sandbox with a null principal.
  1809. # [16:08] <@bsmedberg> I evaluate a "function filter(c) { return c.prop; }"
  1810. # [16:08] <@bsmedberg> then I try calling sandbox.filter({prop: 123})
  1811. # [16:08] <@bsmedberg> but it undefined
  1812. # [16:09] * Joins: amoghbl1 (uid14927@moz-5F4AA75A.irccloud.com)
  1813. # [16:09] * Joins: sumit4iit (Thunderbir@6BA7770.42F8B8BC.931D0F89.IP)
  1814. # [16:10] <@bsmedberg> oh, maybe I need "wantXrays: false"
  1815. # [16:11] <Ms2ger> Danger! :)
  1816. # [16:11] * Joins: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net)
  1817. # [16:11] * Joins: mikeperry (mikeperry@moz-7B83EACE.hfc.comcastbusiness.net)
  1818. # [16:11] * Joins: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca)
  1819. # [16:12] * Quits: gustavold (gustavold@C297F11F.E9825422.DF2AC62B.IP) (Ping timeout)
  1820. # [16:12] <@bsmedberg> Ms2ger: what is the "I want to be able to call a function with JS objects safely" thing, then?
  1821. # [16:12] * Quits: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net) (Ping timeout)
  1822. # [16:13] <Ms2ger> 301 bholley
  1823. # [16:13] * Joins: geekboy (geekboy@moz-2F998E60.dsl.static.sonic.net)
  1824. # [16:13] * Joins: brendan (brendaneic@35E90EE3.B8B12C49.396B22AD.IP)
  1825. # [16:13] <@ted> bsmedberg: like Standard8 said, there's a patch but it never got finished
  1826. # [16:14] * Quits: dougc (dougc@moz-F16BC551.static.rev.eftel.com) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0/20140203104800])
  1827. # [16:14] <@roc> ekr: the SPS profiler is probably the way to go
  1828. # [16:14] <@roc> though I wonder why you want to push data to the plugin from the main thread
  1829. # [16:14] * Quits: mikeperry (mikeperry@moz-7B83EACE.hfc.comcastbusiness.net) (Ping timeout)
  1830. # [16:14] * Quits: trevorh (trevor@moz-B136EC57.lnse3.woo.bigpond.net.au) (Quit: Leaving.)
  1831. # [16:15] * pmoore|tea-break is now known as pmoore
  1832. # [16:17] * Quits: Ms2ger (Ms2ger@moz-4A14BC33.ugent.be) (Quit: bbl)
  1833. # [16:21] * Quits: jduell (jduell@87C1F78E.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  1834. # [16:21] * jandem-brb is now known as jandem
  1835. # [16:21] * Joins: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com)
  1836. # [16:21] * Quits: b4gder (daniel@DA4ABEAF.1DE10CA8.D8E68FF6.IP) (Quit: connection reset by beer)
  1837. # [16:22] * Callek is now known as Callek|Buildduty
  1838. # [16:22] * Joins: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP)
  1839. # [16:24] * Joins: mikeperry (mikeperry@moz-7B83EACE.hfc.comcastbusiness.net)
  1840. # [16:24] * Quits: sumit4iit (Thunderbir@6BA7770.42F8B8BC.931D0F89.IP) (Ping timeout)
  1841. # [16:25] * Joins: botond|laptop (chatzilla@13F2CEC5.7672369.D8E68FF6.IP)
  1842. # [16:25] * Quits: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP) (Quit: RealRaven)
  1843. # [16:25] * Quits: mihaelav (Mibbit@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1844. # [16:26] * Quits: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP) (Ping timeout)
  1845. # [16:26] * Quits: ggp (ggp@2517BFAF.BFDA0A02.9F9EFC6F.IP) (Input/output error)
  1846. # [16:26] * Quits: davidb (davidb@moz-E4E805A9.dsl.bell.ca) (Input/output error)
  1847. # [16:26] * Joins: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP)
  1848. # [16:26] * Joins: davidb (davidb@moz-E4E805A9.dsl.bell.ca)
  1849. # [16:27] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  1850. # [16:27] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  1851. # [16:28] <ekr> roc: I was told I had to.
  1852. # [16:28] * Joins: ggp (ggp@2517BFAF.BFDA0A02.9F9EFC6F.IP)
  1853. # [16:28] * Quits: joshua-s (Thunderbir@moz-FC767F03.syrcny.east.verizon.net) (Ping timeout)
  1854. # [16:28] * Quits: sworkman (sworkman@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: sworkman)
  1855. # [16:28] <ekr> I.e., I ws told that was where the IPC and shmem operations ahd to happen
  1856. # [16:29] * Quits: davidb (davidb@moz-E4E805A9.dsl.bell.ca) (Quit: blast off!)
  1857. # [16:30] * jhopkins|brb is now known as jhopkins
  1858. # [16:30] * Quits: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net) (Quit: jib)
  1859. # [16:31] <ekr> roc: the actual situation is that the media is available on some VideoEngine thread and I need to push it the plugin child process. I would prefer *not* to push it to the main thread
  1860. # [16:31] * Quits: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP) (Quit: RealRaven)
  1861. # [16:31] * Joins: sfoster (sfoster@moz-961AB6F2.hsd1.or.comcast.net)
  1862. # [16:32] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  1863. # [16:32] * Joins: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP)
  1864. # [16:32] * Joins: Archaeopteryx (itsme@moz-97233A6.cust.telecolumbus.net)
  1865. # [16:32] * Joins: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com)
  1866. # [16:33] * hwine is now known as hwine|afk
  1867. # [16:33] * Quits: elin (elin@moz-DA1CD392.dynamic-ip.hinet.net) (Quit: elin)
  1868. # [16:34] * Joins: gwagner (gwagner@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1869. # [16:35] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  1870. # [16:35] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  1871. # [16:35] * Joins: wlach_ (wlach@CEAD5B96.16E18C08.3DEE0DD0.IP)
  1872. # [16:37] * Quits: kk1fff (kk1fff@moz-9B6FD903.dynamic.hinet.net) (Quit: )
  1873. # [16:37] * Joins: davidb_ (davidb@moz-E4E805A9.dsl.bell.ca)
  1874. # [16:38] * Joins: kushagra (kushagra@F06DB9D0.32C4AD94.520CDC98.IP)
  1875. # [16:38] * Quits: ggp (ggp@2517BFAF.BFDA0A02.9F9EFC6F.IP) (Ping timeout)
  1876. # [16:39] * Quits: brendan (brendaneic@35E90EE3.B8B12C49.396B22AD.IP) (Quit: brendan)
  1877. # [16:41] * Joins: rbarnes_ (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net)
  1878. # [16:41] * Quits: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net) (Ping timeout)
  1879. # [16:41] * Quits: vikstrous (v@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  1880. # [16:41] * Joins: espadrine` (ttyl@moz-F94461FF.w92-128.abo.wanadoo.fr)
  1881. # [16:41] * Quits: MarcoZ (marco.zehe@moz-8CE29991.dip0.t-ipconnect.de) (Quit: Rebooting.)
  1882. # [16:41] * Quits: espadrine_ (ttyl@moz-AEB42B04.w90-2.abo.wanadoo.fr) (Ping timeout)
  1883. # [16:43] * Joins: davidb (davidb@moz-E4E805A9.dsl.bell.ca)
  1884. # [16:43] * armenzg is now known as armenzg_brb
  1885. # [16:43] * Quits: davidb_ (davidb@moz-E4E805A9.dsl.bell.ca) (Quit: blast off!)
  1886. # [16:43] * Quits: valentin (Thunderbir@87C1F78E.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  1887. # [16:43] * Joins: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net)
  1888. # [16:43] * Joins: abhishekp (chatzilla@moz-E2C4F421.mtnl.net.in)
  1889. # [16:44] * Joins: emerson (chatzilla@moz-3E0ABD32.hsd1.mi.comcast.net)
  1890. # [16:44] * Joins: MarcoZ (marco.zehe@moz-8CE29991.dip0.t-ipconnect.de)
  1891. # [16:45] * Joins: joshua-s (Thunderbir@moz-FC767F03.syrcny.east.verizon.net)
  1892. # [16:45] * Quits: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net) (Ping timeout)
  1893. # [16:45] * Joins: brendan (brendaneic@35E90EE3.B8B12C49.396B22AD.IP)
  1894. # [16:45] * Quits: Optimizer (Optimizer@3D2939CB.13822FF0.BE90E62C.IP) (Ping timeout)
  1895. # [16:45] * Joins: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP)
  1896. # [16:46] * Quits: joshua-s (Thunderbir@moz-FC767F03.syrcny.east.verizon.net) (Ping timeout)
  1897. # [16:46] * philor is now known as philor|away
  1898. # [16:47] * Quits: brendan (brendaneic@35E90EE3.B8B12C49.396B22AD.IP) (Ping timeout)
  1899. # [16:48] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  1900. # [16:48] * Joins: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com)
  1901. # [16:49] * Joins: gustavold (gustavold@38EBCA86.DF5E600C.C7EA744A.IP)
  1902. # [16:49] * Quits: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP) (Ping timeout)
  1903. # [16:49] * khuey is now known as khuey|away
  1904. # [16:49] * sheppy-afk is now known as sheppy
  1905. # [16:49] * Quits: funnel (hegel@DEB31F3E.28CFCE3E.FC69BED9.IP) (Client exited)
  1906. # [16:50] * Joins: funnel (hegel@DEB31F3E.28CFCE3E.FC69BED9.IP)
  1907. # [16:50] * Joins: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP)
  1908. # [16:50] * Joins: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net)
  1909. # [16:50] * Joins: jviereck (Adium@moz-403F3970.ethz.ch)
  1910. # [16:52] * hwine|afk is now known as hwine
  1911. # [16:52] * Quits: jdover (jdover@moz-819224F9.dsl.pltn13.sbcglobal.net) (Ping timeout)
  1912. # [16:52] * Quits: Jerry_ (hshih@moz-99690620.hinet-ip.hinet.net) (Quit: Leaving)
  1913. # [16:52] * Joins: joshua-s (Thunderbir@moz-E7A658A9.syrcny.east.verizon.net)
  1914. # [16:53] * Joins: lpy (lpy@1834E2CB.F09091A8.1348A864.IP)
  1915. # [16:53] * Quits: gwagner (gwagner@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  1916. # [16:53] * Quits: Jerry (hshih@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1917. # [16:54] * Quits: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP) (Ping timeout)
  1918. # [16:54] * Joins: elin (elin@moz-DA1CD392.dynamic-ip.hinet.net)
  1919. # [16:54] * Quits: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP) (Quit: RealRaven)
  1920. # [16:54] * Joins: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1921. # [16:55] <sheppy> Web APIs docs meeting in 5 minutes! Everyone's welcome to attend; please add to the agenda at https://etherpad.mozilla.org/WebAPI-docs-2014-03-14 -- instructions on attending are there as well.
  1922. # [16:55] * Joins: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP)
  1923. # [16:55] * Parts: petruta (Mibbit@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP)
  1924. # [16:56] * Quits: KaiRo (robert@moz-5F7674B7.adsl.highway.telekom.at) (Ping timeout)
  1925. # [16:56] * Joins: KaIRC (robert@moz-FB07A1B.adsl.highway.telekom.at)
  1926. # [16:57] * armenzg_brb is now known as armenzg
  1927. # [16:58] * Quits: Evolutio (Thunderbir@moz-5C938579.superkabel.de) (Quit: Evolutio)
  1928. # [17:00] * Joins: rstrong (rstrong@moz-217F02CE.lightspeed.sntcca.sbcglobal.net)
  1929. # [17:00] <@ted> mrbkap: ping?
  1930. # [17:00] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  1931. # [17:01] * Joins: vikstrous (v@13F2CEC5.7672369.D8E68FF6.IP)
  1932. # [17:01] * Quits: elin (elin@moz-DA1CD392.dynamic-ip.hinet.net) (Quit: elin)
  1933. # [17:01] * Joins: mt (mt@moz-5F16805E.hsd1.ca.comcast.net)
  1934. # [17:02] * wlach is now known as IRCMonkey49129
  1935. # [17:02] * wlach_ is now known as wlach
  1936. # [17:03] * Joins: mchang (mchang@BE99BE02.84BCE52A.BCAEBB33.IP)
  1937. # [17:03] <@ted> mrbkap: nm, CCed you to bug 982016
  1938. # [17:04] * Joins: ggp (ggp@2517BFAF.BFDA0A02.9F9EFC6F.IP)
  1939. # [17:04] * Joins: Optimizer (Optimizer@3F51AC90.9121CE7F.D2D1FAF0.IP)
  1940. # [17:05] * Quits: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de) (Input/output error)
  1941. # [17:06] * Joins: znickell (Thunderbir@moz-A2E993EF.dhcp.ftwo.tx.charter.com)
  1942. # [17:07] * Quits: znickell (Thunderbir@moz-A2E993EF.dhcp.ftwo.tx.charter.com) (Quit: znickell)
  1943. # [17:08] * philor|away is now known as philor
  1944. # [17:08] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  1945. # [17:09] * Joins: serge (Thunderbir@FA3AFA7E.24198F16.AE2B2F80.IP)
  1946. # [17:09] <dholbert> arnaud_bienner, semi-pong
  1947. # [17:09] * Joins: mfossen (mfossen@moz-2D1E9DCB.uwnet.wisc.edu)
  1948. # [17:10] * Quits: MarcoZ (marco.zehe@moz-8CE29991.dip0.t-ipconnect.de) (Quit: ChatZilla 0.9.90.1 [Firefox 30.0a1/20140314030202])
  1949. # [17:10] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Ping timeout)
  1950. # [17:12] * Joins: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP)
  1951. # [17:13] * Quits: mt (mt@moz-5F16805E.hsd1.ca.comcast.net) (Quit: Leaving.)
  1952. # [17:13] * Joins: mt (mt@moz-5F16805E.hsd1.ca.comcast.net)
  1953. # [17:14] * Joins: jonasfj (jonasfj@moz-F9C6FBE1.hsd1.ca.comcast.net)
  1954. # [17:14] * Joins: recursive (recursive@71958799.4D49EC71.6815CE39.IP)
  1955. # [17:16] * Quits: @bz_sleep (bzbarsky@moz-72881629.bstnma.fios.verizon.net) (Ping timeout)
  1956. # [17:16] * Quits: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP) (Ping timeout)
  1957. # [17:16] * dholbert is now known as dholbert|afk
  1958. # [17:17] * emerson is now known as emerson|lunch
  1959. # [17:17] * Joins: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net)
  1960. # [17:17] * Quits: luke (luke@moz-7CF84B28.dhcp.ftwo.tx.charter.com) (Quit: Leaving.)
  1961. # [17:17] * Joins: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com)
  1962. # [17:18] * Joins: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net)
  1963. # [17:18] * Quits: wolfsoul (wolfsoul@moz-B52F064.home.otenet.gr) (Quit: Leaving)
  1964. # [17:19] <mjrosenb> dumb question: when I select print to file in linux, where does the file go?
  1965. # [17:19] <mjrosenb> and can I get it to bring the file selection dialog back?
  1966. # [17:20] <@roc> ekr: IPDL endpoints for a given channel need to stick to the same threads
  1967. # [17:21] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  1968. # [17:21] <@roc> it is possible to have them not be the main thread
  1969. # [17:21] * Joins: sunfish (chatzilla@moz-42DA0C69.dsl.dynamic.sonic.net)
  1970. # [17:22] * KaIRC is now known as KaiRo
  1971. # [17:22] * Joins: jgriffin (jgriffin@moz-791CC332.hsd1.wa.comcast.net)
  1972. # [17:22] <@roc> we have stuff like that for the compositor, e.g. the ImageBridge protocol which allows non-main threads to communicate with the compositor in limited ways
  1973. # [17:22] * Joins: twi (Adium@752B0356.FC95818.5EFB9497.IP)
  1974. # [17:23] * Quits: twi (Adium@752B0356.FC95818.5EFB9497.IP) (Max SendQ exceeded)
  1975. # [17:23] <arnaud_bienner> dholbert: "input type=color implemented" is part of release notes for FF 28 (this was requeted in bug 930277 if I'm right). However, since we delay this from FF 28 to 29, we should probably ask for the release notes to be updated (I just checked on the website and this hasn't been done). Do you know who we should ask for this?
  1976. # [17:23] * Joins: twi (Adium@752B0356.FC95818.5EFB9497.IP)
  1977. # [17:23] * Joins: smaug (chatzilla@moz-9E0B1701.pp.htv.fi)
  1978. # [17:23] * ChanServ sets mode: +o smaug
  1979. # [17:23] * mdas is now known as mdas|afk
  1980. # [17:23] <arnaud_bienner> (I'm asking Daniel, but someone else here might be able to answer me :)
  1981. # [17:23] * Joins: grobinson (~grobinson@moz-731932CD.hsd1.ca.comcast.net)
  1982. # [17:23] <ekr> roc: got it. thanks!
  1983. # [17:23] * Joins: Ami_Ty (Amie@19BBAD99.590E3739.91651C13.IP)
  1984. # [17:24] * Quits: AndreeaMatei (Thunderbir@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP) (Quit: AndreeaMatei)
  1985. # [17:24] * Joins: Ms2ger (Ms2ger@moz-5180E188.adsl-dyn.isp.belgacom.be)
  1986. # [17:25] * Joins: JosiahOne|Away (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net)
  1987. # [17:25] * Quits: rbarnes_ (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net) (Input/output error)
  1988. # [17:26] * Joins: bz_sleep (bzbarsky@moz-72881629.bstnma.fios.verizon.net)
  1989. # [17:27] * Joins: sumit4iit (Thunderbir@6BA7770.42F8B8BC.931D0F89.IP)
  1990. # [17:27] * Joins: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net)
  1991. # [17:28] * bz_sleep is now known as bz
  1992. # [17:28] * Joins: luke (luke@moz-7CF84B28.dhcp.ftwo.tx.charter.com)
  1993. # [17:29] * Joins: valentin (Thunderbir@9694AAA.E2EA453A.FAF22AF7.IP)
  1994. # [17:30] * nsm|away is now known as nsm
  1995. # [17:30] * Quits: JosiahOne|Away (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net) (Client exited)
  1996. # [17:30] * Quits: valentin (Thunderbir@9694AAA.E2EA453A.FAF22AF7.IP) (Ping timeout)
  1997. # [17:30] * Joins: valentin (Thunderbir@9694AAA.E2EA453A.FAF22AF7.IP)
  1998. # [17:30] * Joins: Mook_as (mook@moz-1FCC0032.activestate.com)
  1999. # [17:31] * Quits: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP) (Quit: RealRaven)
  2000. # [17:31] * Joins: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net)
  2001. # [17:31] * Joins: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP)
  2002. # [17:32] * Joins: billm (billm@moz-E7C99C14.lightspeed.sntcca.sbcglobal.net)
  2003. # [17:32] * Quits: benvie_ (bbenvie@5FD20F9A.53D07D95.EFF8B7BF.IP) (Ping timeout)
  2004. # [17:32] * Quits: mikeperry (mikeperry@moz-7B83EACE.hfc.comcastbusiness.net) (Ping timeout)
  2005. # [17:33] * Joins: myk (myk@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2006. # [17:33] * jlund|afk is now known as jlund
  2007. # [17:33] * Joins: benvie (bbenvie@5FD20F9A.53D07D95.EFF8B7BF.IP)
  2008. # [17:33] * Joins: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP)
  2009. # [17:33] * Joins: mikeperry (mikeperry@moz-7B83EACE.hfc.comcastbusiness.net)
  2010. # [17:33] * Joins: mcomella (mcomella@moz-AE370C8B.hsd1.ca.comcast.net)
  2011. # [17:33] * Quits: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net) (Ping timeout)
  2012. # [17:34] * Quits: twi (Adium@752B0356.FC95818.5EFB9497.IP) (Quit: Leaving.)
  2013. # [17:34] * Joins: sawrubh (uid6719@moz-5F4AA75A.irccloud.com)
  2014. # [17:34] * Quits: ggp (ggp@2517BFAF.BFDA0A02.9F9EFC6F.IP) (Input/output error)
  2015. # [17:35] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  2016. # [17:35] * Quits: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP) (Ping timeout)
  2017. # [17:35] * dholbert|afk is now known as dholbert
  2018. # [17:35] * Joins: ggp (ggp@2517BFAF.BFDA0A02.9F9EFC6F.IP)
  2019. # [17:35] <dholbert> arnaud_bienner, good point!
  2020. # [17:35] * jimm is now known as jimm-lunch
  2021. # [17:35] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  2022. # [17:36] * davidb is now known as davidb|afk
  2023. # [17:36] * Quits: davidb|afk (davidb@moz-E4E805A9.dsl.bell.ca) (Quit: Blah blah blah)
  2024. # [17:36] <dholbert> arnaud_bienner, lsblakk maybe? (lsblakk, looks like <input type="color"> is still in FF28 release notes, even though feature has been preffed off)
  2025. # [17:36] * Joins: jdover (jdover@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2026. # [17:36] <lsblakk> dholbert: not in release note
  2027. # [17:36] * Quits: mt (mt@moz-5F16805E.hsd1.ca.comcast.net) (Quit: Leaving.)
  2028. # [17:36] <lsblakk> its in beta notes
  2029. # [17:36] <dholbert> lsblakk, oh, great
  2030. # [17:36] <lsblakk> which is different
  2031. # [17:36] <dholbert> arnaud_bienner, ^
  2032. # [17:37] * Joins: aklotz (Thunderbir@moz-36664323.cg.shawcable.net)
  2033. # [17:37] * Joins: alaminopu (Mibbit@83BED26C.B2F29A6F.7573639D.IP)
  2034. # [17:37] * Quits: aklotz (Thunderbir@moz-36664323.cg.shawcable.net) (Quit: aklotz)
  2035. # [17:37] <arnaud_bienner> lsblakk: yes, indeed, it's in beta notes. While it has been preffed off in beta
  2036. # [17:37] * Quits: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP) (Quit: RealRaven)
  2037. # [17:37] <arnaud_bienner> so it should be in aurora notes now, and not in beta notes anymore.
  2038. # [17:38] * Quits: jwei (jwei@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Leaving.)
  2039. # [17:38] * pmoore is now known as pmoore|mtg
  2040. # [17:38] * Quits: mayhemer (Thunderbir@87C1F78E.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  2041. # [17:38] * Joins: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP)
  2042. # [17:38] * khuey|away is now known as khuey
  2043. # [17:38] * Joins: bent (chatzilla@moz-9B043FA6.hsd1.ca.comcast.net)
  2044. # [17:39] * Quits: michal (michal@87C1F78E.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  2045. # [17:39] * Joins: maxli (Adium@moz-F47DD19B.student.cs.uwaterloo.ca)
  2046. # [17:39] * Joins: Mossop (dtownsend@53343B0D.8DCA2D5.5E2862A8.IP)
  2047. # [17:40] * Joins: mt (mt@moz-5F16805E.hsd1.ca.comcast.net)
  2048. # [17:40] * Quits: lpy (lpy@1834E2CB.F09091A8.1348A864.IP) (Client exited)
  2049. # [17:40] <lsblakk> arnaud_bienner: we don't edit beta notes from beta1 to beta final
  2050. # [17:40] <lsblakk> they go out when the beta is shipped, and hold that history
  2051. # [17:40] <lsblakk> the feature was enabled in beta1 (and others)
  2052. # [17:40] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  2053. # [17:41] * Joins: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP)
  2054. # [17:41] <lsblakk> the release notes then also reflect what is in the release
  2055. # [17:41] <lsblakk> which will *not* have that feature listed
  2056. # [17:41] * Quits: Optimizer (Optimizer@3F51AC90.9121CE7F.D2D1FAF0.IP) (Ping timeout)
  2057. # [17:41] * Quits: mfossen (mfossen@moz-2D1E9DCB.uwnet.wisc.edu) (Client exited)
  2058. # [17:41] * Joins: jwei (jwei@13F2CEC5.7672369.D8E68FF6.IP)
  2059. # [17:41] * Quits: mt (mt@moz-5F16805E.hsd1.ca.comcast.net) (Quit: Leaving.)
  2060. # [17:41] <arnaud_bienner> lsblakk: ok, perfect then :) Thanks for the clarification
  2061. # [17:41] <lsblakk> np
  2062. # [17:41] * Joins: Optimizer (Optimizer@3F51AC90.9121CE7F.D2D1FAF0.IP)
  2063. # [17:41] <lsblakk> always appreciate people checking in on things that get disabled :)
  2064. # [17:41] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  2065. # [17:43] * jandem is now known as jandem-brb
  2066. # [17:43] <@khuey> I assume a screen full of red android tests is probably related to scl3?
  2067. # [17:43] * Joins: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net)
  2068. # [17:43] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  2069. # [17:43] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  2070. # [17:44] <WaltS48> can anyone explain why my 29.0b9 64-bit Linux version hasn't updated to RC?
  2071. # [17:44] * Quits: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP) (Ping timeout)
  2072. # [17:45] * Quits: benvie (bbenvie@5FD20F9A.53D07D95.EFF8B7BF.IP) (Ping timeout)
  2073. # [17:47] * Quits: valentin (Thunderbir@9694AAA.E2EA453A.FAF22AF7.IP) (Ping timeout)
  2074. # [17:48] <@khuey> WaltS48: 28.0b9?
  2075. # [17:48] <Callek|Buildduty> WaltS48: join us in #releng and re-ask please
  2076. # [17:49] * Callek|Buildduty knows people there will be able to help triage appropriately
  2077. # [17:49] <WaltS48> oops! yes 28.0b9
  2078. # [17:49] * Joins: sicking (sicking@moz-501E5580.hsd1.ca.comcast.net)
  2079. # [17:50] * Joins: mwu (mwu@moz-2E883D31.hsd1.nj.comcast.net)
  2080. # [17:50] * Joins: mt (mt@moz-5F16805E.hsd1.ca.comcast.net)
  2081. # [17:51] * Quits: paolo (paolo@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: Konversation terminated!)
  2082. # [17:51] * Joins: Preeti (uid13882@moz-E77DEB21.irccloud.com)
  2083. # [17:51] * Joins: benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2084. # [17:51] * Joins: rbarnes_ (rbarnes@moz-104CC309.mv.mozilla.com)
  2085. # [17:52] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2086. # [17:52] * whimboo|afk is now known as whimboo
  2087. # [17:52] * Quits: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net) (Ping timeout)
  2088. # [17:53] * Quits: mccr8 (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net) (Connection reset by peer)
  2089. # [17:53] * Joins: mccr8 (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net)
  2090. # [17:53] * Joins: benvie_ (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2091. # [17:54] * Quits: benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  2092. # [17:54] * Quits: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com) (Quit: juanb)
  2093. # [17:54] * Quits: Edgar (Thunderbir@moz-425ED83.dynamic.hinet.net) (Ping timeout)
  2094. # [17:54] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  2095. # [17:54] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  2096. # [17:54] * Joins: jedp (jedp@moz-3AA8030E.dsl.dynamic.sonic.net)
  2097. # [17:55] * Quits: jacek (jacek@moz-5D707D3B.psi.wroc.pl) (Quit: Konversation terminated!)
  2098. # [17:55] * Quits: mt (mt@moz-5F16805E.hsd1.ca.comcast.net) (Quit: Leaving.)
  2099. # [17:55] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/78646f067fd3 - Ed Morley - Bug 918507 - Disable browser_dbg_chrome-create.js on the remaining platforms, since it doesn't clean up after itself; CLOSED TREE
  2100. # [17:56] <RyanVM> edmorley|sheriffduty ^ ?
  2101. # [17:56] <RyanVM> IIUC, the mess is from other tests
  2102. # [17:56] <RyanVM> that browser_dbg_chrome-create.js is just unfortunate enough to be hitting
  2103. # [17:57] <edmorley|sheriffduty> RyanVM: oh misread the bug; well the test was virtually permaorange, so can re-enable once that's fixed
  2104. # [17:58] * Joins: diegobz (diegobz@656B612C.2D1DAB43.57D9F95D.IP)
  2105. # [17:58] * benvie_ is now known as benvie
  2106. # [17:58] * Quits: fredw (Icedove@moz-B9C110E2.fbx.proxad.net) (Client exited)
  2107. # [17:59] * Joins: mt (mt@moz-5F16805E.hsd1.ca.comcast.net)
  2108. # [17:59] <RyanVM> edmorley|sheriffduty: fair enough, just wanted to make sure the right rationale was in place :)
  2109. # [17:59] * ahal is now known as ahal|lunch
  2110. # [18:00] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  2111. # [18:00] <edmorley|sheriffduty> RyanVM: yeah so I guess the commit message is wrong but we still want the test disabled for now
  2112. # [18:00] * Joins: afwang (nooknook@moz-CFE05FEE.hsd1.ca.comcast.net)
  2113. # [18:00] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  2114. # [18:00] * Quits: ggp (ggp@2517BFAF.BFDA0A02.9F9EFC6F.IP) (Input/output error)
  2115. # [18:00] * Quits: jviereck (Adium@moz-403F3970.ethz.ch) (Quit: Leaving.)
  2116. # [18:01] <RyanVM> yeah
  2117. # [18:01] * kats is now known as kats-afk
  2118. # [18:01] * Joins: tomer (tomer@F61A4DAE.55661B99.34A7550B.IP)
  2119. # [18:02] * Quits: billm (billm@moz-E7C99C14.lightspeed.sntcca.sbcglobal.net) (Ping timeout)
  2120. # [18:02] * Joins: ehugg (ehugg@4F709CDE.709C0A2A.6157E88D.IP)
  2121. # [18:02] * Quits: mccr8 (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net) (Ping timeout)
  2122. # [18:03] * Quits: jonasfj (jonasfj@moz-F9C6FBE1.hsd1.ca.comcast.net) (Ping timeout)
  2123. # [18:03] * Joins: mccr8 (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net)
  2124. # [18:03] <edmorley|sheriffduty> gaia failures on b2g-inbound, jetpack nonsense on several trees and a few other suspicious failures... yey
  2125. # [18:03] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  2126. # [18:03] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  2127. # [18:04] * emerson|lunch is now known as emerson
  2128. # [18:04] * Quits: wlach (wlach@CEAD5B96.16E18C08.3DEE0DD0.IP) (Quit: Ex-Chat)
  2129. # [18:04] * Quits: gwagner (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner)
  2130. # [18:04] * Joins: gwagner (gwagner@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2131. # [18:05] <froydnj> edmorley|sheriffduty: just another ordinary day, right?
  2132. # [18:05] * Quits: mt (mt@moz-5F16805E.hsd1.ca.comcast.net) (Quit: Leaving.)
  2133. # [18:05] * pmoore|mtg is now known as pmoore
  2134. # [18:05] * Joins: dbaron (dbaron@6E6C815B.27376607.189F3E15.IP)
  2135. # [18:05] * ChanServ sets mode: +ao dbaron dbaron
  2136. # [18:05] * Gijs is now known as Gijs_away
  2137. # [18:05] <tbsaunde> froydnj++ # trying to do something about stupid QIs
  2138. # [18:07] * julienw_afk is now known as julienw
  2139. # [18:07] <bent> froydnj, shouldn't we just fix the places that call qi with the same type?
  2140. # [18:08] * mdas|afk is now known as mdas
  2141. # [18:08] * Quits: pepijndevos (pepijndevo@9EACEF43.E50A3180.BCE47D84.IP) (Max SendQ exceeded)
  2142. # [18:08] <bent> e.g. static_assert them
  2143. # [18:08] * Quits: mccr8 (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net) (Ping timeout)
  2144. # [18:08] * Joins: pepijndevos (pepijndevo@9EACEF43.E50A3180.BCE47D84.IP)
  2145. # [18:08] * Joins: mt (mt@moz-5F16805E.hsd1.ca.comcast.net)
  2146. # [18:09] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Input/output error)
  2147. # [18:09] <froydnj> bent: oo, that's not a bad idea
  2148. # [18:09] * julienw is now known as julienw_afk
  2149. # [18:10] <bent> froydnj, also you probably want #ifdef DEBUG verification that your shortcut does what the same thing as the old QI i would think
  2150. # [18:10] * Joins: bajaj1 (Adium@moz-34BA18EC.hsd1.ca.comcast.net)
  2151. # [18:10] <bent> s/what//
  2152. # [18:10] <diegobz> Hey all. Is there anyone around experienced with Mozilla properties files used for localization?
  2153. # [18:11] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  2154. # [18:11] <Mook_as> diegobz: it's line-oriented, with two tokens separated by a =. There isn't much to be experienced about...
  2155. # [18:11] * Quits: bajaj (Adium@moz-34BA18EC.hsd1.ca.comcast.net) (Ping timeout)
  2156. # [18:11] <edmorley|sheriffduty> froydnj: :-)
  2157. # [18:12] * Quits: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro) (Ping timeout)
  2158. # [18:13] <diegobz> Mook_as, I'm interested in knowing what happens in runtime if a particular key is missing from a localized file.
  2159. # [18:13] * Joins: juanb (jbecerra@moz-EE5D60A2.hsd1.ca.comcast.net)
  2160. # [18:13] <Mook_as> diegobz: it throws an exception, IIRC
  2161. # [18:14] <diegobz> Mook_as, so this would be problematic then, right? https://github.com/robnyman/Firefox-OS-Boilerplate-App/blob/gh-pages/locales/ru/app.properties
  2162. # [18:14] * Joins: davidb (davidb@moz-E4E805A9.dsl.bell.ca)
  2163. # [18:15] * Joins: marxin_ (marxin@moz-97B87435.scz.novell.com)
  2164. # [18:15] * Quits: marxin (marxin@moz-97B87435.scz.novell.com) (Connection reset by peer)
  2165. # [18:15] <diegobz> Mook_as, I'm referring to the commented out lines.
  2166. # [18:17] * Quits: mcsmurf (chatzilla@moz-3E51862C.dip0.t-ipconnect.de) (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.27a1/20140224133406])
  2167. # [18:17] * Quits: mt (mt@moz-5F16805E.hsd1.ca.comcast.net) (Quit: Leaving.)
  2168. # [18:17] * Joins: mt (mt@moz-5F16805E.hsd1.ca.comcast.net)
  2169. # [18:17] * jdm is now known as jdm|meeting
  2170. # [18:18] * Joins: jonasfj (jonasfj@moz-F9C6FBE1.hsd1.ca.comcast.net)
  2171. # [18:18] <diegobz> Mook_as, this is the way Transifex is returning it, when you have partial translated files. I'm wondering whether we should drop the # from the untranslated entries for the runtime.
  2172. # [18:18] * Quits: rforbes (rforbes@F2D814B7.AF655A1A.AFA3CC76.IP) (Quit: rforbes)
  2173. # [18:19] * Joins: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro)
  2174. # [18:19] * jimm-lunch is now known as jimm
  2175. # [18:19] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Client exited)
  2176. # [18:19] * Joins: bbondy2 (bbondy@moz-717FF534.home.cgocable.net)
  2177. # [18:20] <Mook_as> diegobz: I believe the l10n build machinery pulls strings from the en-US version in. For desktop, at least; I have no idea about B2G.
  2178. # [18:20] * bbondy2 is now known as bbondy
  2179. # [18:21] * Joins: billm (billm@moz-E7C99C14.lightspeed.sntcca.sbcglobal.net)
  2180. # [18:22] * Quits: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net) (Quit: Boriss)
  2181. # [18:24] * Quits: abhishekp (chatzilla@moz-E2C4F421.mtnl.net.in) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0.1/20140212131424])
  2182. # [18:24] <@ehsan> froydnj: ping
  2183. # [18:25] * Joins: jwktje (Thunderbir@moz-28B792D2.adsl-surfen.hetnet.nl)
  2184. # [18:25] * armenzg is now known as armenzg_lunch
  2185. # [18:25] * Joins: tantek (tantek@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2186. # [18:26] <diegobz> Mook_as, alright, thanks.
  2187. # [18:26] <froydnj> ehsan: pong
  2188. # [18:26] <@ehsan> froydnj: just a sanity check; the mochitest suppression stuff does not affect browser-chrome right?
  2189. # [18:27] <froydnj> ehsan: it does not
  2190. # [18:27] <@ehsan> ok thanks!
  2191. # [18:27] * Joins: mccr8 (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net)
  2192. # [18:28] <st3fan> can anyone point me to an xpcshell test that reads the contents of a test directory?
  2193. # [18:29] * Quits: amoghbl1 (uid14927@moz-5F4AA75A.irccloud.com) (Quit: Connection closed for inactivity)
  2194. # [18:31] * Quits: benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: )
  2195. # [18:31] * Joins: benvie (bbenvie@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2196. # [18:32] * Gijs_away is now known as Gijs
  2197. # [18:32] * Joins: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP)
  2198. # [18:32] * Joins: squib (squib@moz-7BFC3D3A.dhcp.ftbg.wi.charter.com)
  2199. # [18:34] <lsblakk> bz: ping
  2200. # [18:34] * ctalbert is now known as ctalbert|afk
  2201. # [18:34] * Joins: terrence-afk (terrence@moz-B38D16E9.sb.sd.cox.net)
  2202. # [18:34] * baku is now known as baku|away
  2203. # [18:34] * Joins: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net)
  2204. # [18:34] * Quits: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP) (Quit: ZNC - http://znc.in)
  2205. # [18:35] <st3fan> or as an alternative, i can move my test fixtures in a .zip but then i need some example of how to open and read a zip file :)
  2206. # [18:36] <@khuey> edmorley|sheriffduty: is there an ETA on reopening?
  2207. # [18:36] <edmorley|sheriffduty> khuey: when we get green tegra & panda test jobs consistantly
  2208. # [18:36] <edmorley|sheriffduty> so no
  2209. # [18:36] <bz> lsblakk: ack
  2210. # [18:37] * Quits: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro) (Ping timeout)
  2211. # [18:37] * retornam|away is now known as retornam
  2212. # [18:37] <lsblakk> bz: can you speak to the risk of backing out the enabling patch in bug 887978 ?
  2213. # [18:37] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0.1/20140212131424])
  2214. # [18:38] <lsblakk> bz i asked this in but 981280 fwiw
  2215. # [18:38] * Quits: mccr8 (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net) (Ping timeout)
  2216. # [18:38] * jhopkins is now known as jhopkins|lunch
  2217. # [18:38] <lsblakk> we could take a backout in FF28 right now as we are still awaiting sec landings
  2218. # [18:38] * Quits: Optimizer (Optimizer@3F51AC90.9121CE7F.D2D1FAF0.IP) (Ping timeout)
  2219. # [18:38] * Quits: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP) (Quit: Leaving)
  2220. # [18:39] * Joins: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP)
  2221. # [18:39] * Joins: mccr8 (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net)
  2222. # [18:40] * Joins: mccr8_ (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net)
  2223. # [18:40] * Quits: rankov (Mibbit@7A460512.A56E0E8C.DF1CE89D.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2224. # [18:40] <bz> lsblakk: looking
  2225. # [18:40] * Quits: mccr8 (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net) (Quit: )
  2226. # [18:40] * mccr8_ is now known as mccr8
  2227. # [18:40] <bz> lsblakk: Ah, so I was just talking to reyre about this
  2228. # [18:41] <bz> lsblakk: backout risk is low in terms of unintended consequences, I think
  2229. # [18:41] * Quits: ehugg (ehugg@4F709CDE.709C0A2A.6157E88D.IP) (Quit: ehugg)
  2230. # [18:41] * mccr8 is now known as mccr8_
  2231. # [18:41] <bz> lsblakk: The real question is a policy decision: do we actually want to unship the feature?
  2232. # [18:41] * jandem-brb is now known as jandem
  2233. # [18:41] <bz> lsblakk: the people who'd normally make that call are on vacation or at the Taipei work week. :(
  2234. # [18:42] <bz> lsblakk: reyre mailed cpearce, but I can't offer any guarantees about if/when he'll respond. :(
  2235. # [18:42] <bz> lsblakk: I suppose we could try calling him, though it's pretty early there
  2236. # [18:45] * Joins: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net)
  2237. # [18:46] <@smaug> jaws: which will be the first release with Australis?
  2238. # [18:46] * Joins: gwagner_ (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2239. # [18:46] <jaws> smaug: 29 unless something crazy happens
  2240. # [18:47] * Quits: jwktje (Thunderbir@moz-28B792D2.adsl-surfen.hetnet.nl) (Quit: jwktje)
  2241. # [18:47] <@smaug> ok, tracking flags for bug 946987
  2242. # [18:47] * jdm|meeting is now known as jdm
  2243. # [18:47] * @smaug suggests people to actually go and look Australis on hidpi+Win8
  2244. # [18:47] * Quits: jdover (jdover@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Computer has gone to sleep.)
  2245. # [18:48] * Joins: jdover (jdover@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2246. # [18:48] * davidb is now known as davidb|afk
  2247. # [18:49] <jaws> smaug: that's my default platform. we need hidpi icons badly
  2248. # [18:49] <jaws> but we're not gonna get them in time
  2249. # [18:49] <@smaug> jaws: icons too, but those tabs are horrible
  2250. # [18:50] <@smaug> icons are still ok-ish
  2251. # [18:50] * Quits: mgol (m_gol@moz-F270C6C6.neoplus.adsl.tpnet.pl) (Connection reset by peer)
  2252. # [18:50] <jaws> right, which is why they are getting attention
  2253. # [18:50] * Joins: m_gol (m_gol@moz-F270C6C6.neoplus.adsl.tpnet.pl)
  2254. # [18:50] * Quits: jdover (jdover@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  2255. # [18:50] * Joins: jimb (user@125EF623.B2666F0E.66399531.IP)
  2256. # [18:50] <froydnj> jaws: "they" being tabs or icons?
  2257. # [18:50] <jaws> froydnj: the tabs are getting attention
  2258. # [18:50] * IRCMonkey49129 is now known as wlach
  2259. # [18:50] * Joins: tedders1_ (tedders1@13F2CEC5.7672369.D8E68FF6.IP)
  2260. # [18:50] <froydnj> jaws: ah, cool
  2261. # [18:51] <@smaug> Bug 946987 doesn't even have tracking29/30+
  2262. # [18:51] * Quits: tedders1_ (tedders1@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  2263. # [18:51] * Joins: spohl (Adium@moz-2F20595C.static.hvvc.us)
  2264. # [18:51] <@smaug> but hopefully that doesn't mean anything in reality in this case
  2265. # [18:51] * Joins: tedders1_ (tedders1@13F2CEC5.7672369.D8E68FF6.IP)
  2266. # [18:51] * Quits: tedders1 (tedders1@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2267. # [18:51] * Quits: m_gol (m_gol@moz-F270C6C6.neoplus.adsl.tpnet.pl) (Ping timeout)
  2268. # [18:52] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  2269. # [18:52] <jaws> yeah, it's being followed regardless of those tracking flags
  2270. # [18:52] <jaws> but the flags don't hurt
  2271. # [18:52] * Quits: Boopathi_K (uid13677@moz-31ABA2C0.irccloud.com) (Quit: Connection closed for inactivity)
  2272. # [18:52] <@dbaron> edmorley|sheriffduty, are the tegra/panda problems known to be related to the power problem, or should a separate bug be filed?
  2273. # [18:52] * Joins: sir_none (Thunderbir@moz-E98CDE3D.dclient.hispeed.ch)
  2274. # [18:53] <@dbaron> edmorley|sheriffduty, the problem looks pretty lost within the power bug
  2275. # [18:53] * Quits: mcomella (mcomella@moz-AE370C8B.hsd1.ca.comcast.net) (Ping timeout)
  2276. # [18:53] * Joins: jdover (jdover@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2277. # [18:53] * AaronMT is now known as AaronMT|mtg
  2278. # [18:53] <edmorley|sheriffduty> dbaron: known - they were getting 500s after one of the services didn't come back up
  2279. # [18:53] <edmorley|sheriffduty> dbaron: releng are aware
  2280. # [18:54] * Quits: tedders1_ (tedders1@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  2281. # [18:55] * Joins: tedders1 (tedders1@13F2CEC5.7672369.D8E68FF6.IP)
  2282. # [18:55] * Joins: automata (automata@FBCC6747.2A24F986.DF1E30BF.IP)
  2283. # [18:56] * philor is now known as philor|afk
  2284. # [18:57] * Quits: automata (automata@FBCC6747.2A24F986.DF1E30BF.IP) (Client exited)
  2285. # [18:57] * ahal|lunch is now known as ahal
  2286. # [18:58] <lsblakk> bz: the alternative would be to release note it as "experimental" support - assuming this is still such a new feature that bugginess would be forgiven by developers
  2287. # [18:59] * Quits: luca (lzzluca@moz-10429979.static.virginmediabusiness.co.uk) (Quit: Ex-Chat)
  2288. # [18:59] * Joins: mcomella (mcomella@moz-AE370C8B.hsd1.ca.comcast.net)
  2289. # [18:59] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  2290. # [18:59] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  2291. # [18:59] * Quits: mcomella (mcomella@moz-AE370C8B.hsd1.ca.comcast.net) (Quit: Leaving.)
  2292. # [19:00] * Quits: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net) (Ping timeout)
  2293. # [19:00] * Quits: pnkfelix (pnkfelix@87C1F78E.1DE10CA8.D8E68FF6.IP) (Quit: rcirc on GNU Emacs 24.3.1)
  2294. # [19:00] * Joins: ehugg (ehugg@D7DE5F01.6C5CEEEA.D46CBC5D.IP)
  2295. # [19:00] * armenzg_lunch is now known as armenzg
  2296. # [19:01] * jorendorff is now known as jorendorff_away
  2297. # [19:01] <@ehsan> edmorley|sheriffduty: any ETA for the tree to reopen?
  2298. # [19:02] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  2299. # [19:02] <NeilAway> bent: QI's parameter is an nsISupports, and we definitely want to allow QI to nsISupports...
  2300. # [19:03] * Joins: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com)
  2301. # [19:03] * Joins: rniwa (rniwa@DBC3D095.CC3DF958.1782B2F3.IP)
  2302. # [19:03] * Joins: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net)
  2303. # [19:04] <bent> NeilAway, sure
  2304. # [19:04] * Quits: gwagner_ (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner_)
  2305. # [19:04] <edmorley|sheriffduty> ehsan: waiting for releng reconfig to complete
  2306. # [19:04] * Quits: recursive (recursive@71958799.4D49EC71.6815CE39.IP) (Quit: Leaving...)
  2307. # [19:05] * davidb|afk is now known as davidb
  2308. # [19:06] * Joins: gwagner_ (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2309. # [19:06] * Quits: mstange (markus@moz-1257C949.dip0.t-ipconnect.de) (Quit: mstange)
  2310. # [19:06] * jorendorff_away is now known as jorendorff
  2311. # [19:07] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  2312. # [19:07] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  2313. # [19:07] * liuche is now known as liuche|pto
  2314. # [19:08] <bz> lsblakk: I don't know enough about the feature to tell you whether we're in that situation. :(
  2315. # [19:08] * Quits: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
  2316. # [19:08] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/7fad92519116 - Kannan Vijayan - Bug 980858 - On bailout, unconditionally mark baseline frames SPS flag using Ion frames SPS status. r=jandem
  2317. # [19:09] <edmorley|sheriffduty> tree open
  2318. # [19:09] * edmorley|sheriffduty is now known as edmorley
  2319. # [19:09] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  2320. # [19:09] * Joins: Jerry (hshih@moz-AE383FC4.dynamic.kbronet.com.tw)
  2321. # [19:10] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  2322. # [19:10] * kats-afk is now known as kats
  2323. # [19:11] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Ping timeout)
  2324. # [19:11] * Joins: jammink (textual@143B6C13.1DEDA72C.BECD0C56.IP)
  2325. # [19:11] * Parts: nical (nico@87C1F78E.1DE10CA8.D8E68FF6.IP)
  2326. # [19:11] * Joins: jammink_ (textual@143B6C13.1DEDA72C.BECD0C56.IP)
  2327. # [19:12] <edmorley> RyanVM: there are browser-chrome failures in browser_net_accessibility-02.js across multiple trees - not sure what is going on
  2328. # [19:12] <@ehsan> bsmedberg: ping
  2329. # [19:12] * Joins: ggp (ggp@2517BFAF.BFDA0A02.9F9EFC6F.IP)
  2330. # [19:12] * Quits: emerson (chatzilla@moz-3E0ABD32.hsd1.mi.comcast.net) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0.1/20140212131424])
  2331. # [19:12] <@bsmedberg> ehsan: pong
  2332. # [19:13] <RyanVM> edmorley: that test name sure makes me suspect it's doing naughty things that fail when we're having network problems
  2333. # [19:13] <@ehsan> bsmedberg: remember FILE_ILLEGAL_CHARACTERS? :)
  2334. # [19:13] <@ehsan> http://mxr.mozilla.org/mozilla-central/source/xpcom/glue/nsCRTGlue.h#133
  2335. # [19:13] * Quits: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Ping timeout)
  2336. # [19:13] <@bsmedberg> a bit
  2337. # [19:13] * RyanVM is now known as RyanVM|sheriffduty
  2338. # [19:13] * Quits: darkowlzz (sunny@81806669.FAAABED5.27560D6E.IP) (Quit: This computer has gone to sleep)
  2339. # [19:13] * Quits: a-865 (fmcz@moz-EFF8C062.cable.mindspring.com) (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.25/20140304152500])
  2340. # [19:13] <@ehsan> bsmedberg: so, it's wrong, and here's why
  2341. # [19:14] * Joins: williecheong (Adium@moz-CF8BEBEF.dia.static.qwest.net)
  2342. # [19:14] * jcranmer is now known as jcranmer|away
  2343. # [19:14] <@ehsan> bsmedberg: the file illegal characters depends on the filesystem that the file lives on, not on the platform
  2344. # [19:14] * Fallen is now known as Fallen|away
  2345. # [19:14] * Quits: WaltS48 (Thunderbir@moz-6C5C0F8.pitbpa.east.verizon.net) (Quit: WaltS48 has gone elewhere)
  2346. # [19:14] <@ehsan> for example, on Linux, on a vfat filesystem, things such as < and > are illegal
  2347. # [19:14] * Joins: askalski (akuda@2BA4E5A7.CC7751E8.6712E96B.IP)
  2348. # [19:15] <@ehsan> I think we should change the definition to be the most restrictive everywhere
  2349. # [19:15] <@ehsan> i.e., the windows case + "/\\"
  2350. # [19:15] <@ehsan> bsmedberg: what do you think?
  2351. # [19:15] * Quits: kushagra (kushagra@F06DB9D0.32C4AD94.520CDC98.IP) (Ping timeout)
  2352. # [19:15] * Joins: kushagra (kushagra@85A74B24.AB8D721.520CDC98.IP)
  2353. # [19:15] <bent> ehsan, we use that for indexeddb...
  2354. # [19:15] <@bsmedberg> ehsan: what happens if you try to use <> on the vfat system?
  2355. # [19:15] <@ehsan> bent: that being?
  2356. # [19:15] * Quits: Jerry (hshih@moz-AE383FC4.dynamic.kbronet.com.tw) (Quit: Leaving)
  2357. # [19:15] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/4ce831d82c1f - Marco Castelluccio - Bug 898647 - Backend for app updates. r=myk,fabrice
  2358. # [19:15] <@ehsan> bsmedberg: you fail to write the file
  2359. # [19:16] <bent> the most restrictive of all platforms
  2360. # [19:16] <@ehsan> bsmedberg: see bug 960749
  2361. # [19:16] <edmorley> RyanVM|sheriffduty: yeah :-/
  2362. # [19:16] <@ehsan> bent: oh ok, so that's 1 point in my favor :)
  2363. # [19:16] <@bsmedberg> ehsan: I don't know why it matters, though. The point of that isn't to prevent you from picking a "bad" filename
  2364. # [19:17] <@ehsan> bsmedberg: the reason why it matters is that a website may use a Content-Disposition header to give us a file name for a download
  2365. # [19:17] * Joins: gabor (gabor@moz-CCC4F339.pool.digikabel.hu)
  2366. # [19:17] <@bsmedberg> it's merely to keep us from mis-interpreting a malicious control sequence or path separator as a normal path item
  2367. # [19:17] <@ehsan> and we need to know how to sanitize it
  2368. # [19:17] <@ehsan> so that we can be sure that we're able to write it to the filesystem later
  2369. # [19:17] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/4197edad59d6 - Jan de Mooij - Bug 981554 - Move allocator for optimized Baseline stubs from JitCompartment to JitZone. r=njn
  2370. # [19:17] <@bsmedberg> ehsan: I'd have to look at how we use it, then
  2371. # [19:18] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/3d849e605e29 - Jan de Mooij - Bug 981553 - Remove JitCompartment::rt. r=nbp
  2372. # [19:18] * Joins: Optimizer (Optimizer@1505000E.19AF8E92.BE4CF869.IP)
  2373. # [19:18] <@bsmedberg> ehsan: I don't want to add things to this list which would make it impossible to *read* existing files which have those characters, for example
  2374. # [19:18] <@ehsan> bsmedberg: this is the place where I'm talking about: http://mxr.mozilla.org/mozilla-central/source/uriloader/exthandler/nsExternalHelperAppService.cpp?force=1#1439
  2375. # [19:18] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  2376. # [19:18] * Quits: h4writer (h4writer@moz-957FCBC.access.telenet.be) (Ping timeout)
  2377. # [19:19] <@ehsan> bsmedberg: we never use it to decide whether to read from a file
  2378. # [19:19] <@bsmedberg> ok
  2379. # [19:19] <@ehsan> we just try to open the file, and if it fails, then we fail
  2380. # [19:19] * terrence-afk is now known as terrence
  2381. # [19:19] <@bsmedberg> although I do see use of it in nsFilePicker.cpp
  2382. # [19:19] <@bsmedberg> but it might be harmless, it appears to just affect defaults
  2383. # [19:19] <@ehsan> yep
  2384. # [19:19] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/b80f97b00d2f - Brian Hackett - Bug 979480 - Don't store array buffer contents in elements, r=sfink.
  2385. # [19:20] <@ehsan> bsmedberg: I'm going to r- aus' patch and ask him to make this change then, is that ok with you?
  2386. # [19:20] * Quits: Ami_Ty (Amie@19BBAD99.590E3739.91651C13.IP) (Quit: Ami_Ty)
  2387. # [19:20] <@bsmedberg> I think so
  2388. # [19:20] <@ehsan> thanks!
  2389. # [19:20] <@bsmedberg> can I get a try run before review?
  2390. # [19:21] <@ehsan> of course!
  2391. # [19:22] * sheppy is now known as sheppy-afk
  2392. # [19:23] * Joins: emerson (chatzilla@moz-3E0ABD32.hsd1.mi.comcast.net)
  2393. # [19:24] * Joins: aklotz (Thunderbir@FD1E68D2.64455FB.F97ED6F2.IP)
  2394. # [19:24] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  2395. # [19:25] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/ee4a12bb13a7 - Jonathan Wei - Bug 743568 - Fire name change event when a XUL row's name changes, r=surkov.
  2396. # [19:25] * Quits: erahm (Adium@moz-A511F1A0.hsd1.or.comcast.net) (Quit: Leaving.)
  2397. # [19:25] * Joins: bbondy_ (bbondy@moz-717FF534.home.cgocable.net)
  2398. # [19:28] <bz> lsblakk: So I tend to think we should disable vtt for 28
  2399. # [19:28] <lsblakk> bz: if it's too buggy, we can definitely make that call
  2400. # [19:28] <lsblakk> it can stay on 29
  2401. # [19:28] <lsblakk> (for now)
  2402. # [19:28] <lsblakk> bz: are you comfortable doing that backout?
  2403. # [19:28] <lsblakk> as you might be the only person around right now for this
  2404. # [19:29] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/6bf817013e40 - Branislav Rankov - Bug 969375 - MIPS port: Added BaselineCompiler code. r=jandem,froydnj
  2405. # [19:29] <bz> lsblakk: I think so
  2406. # [19:29] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/8d71d4826df9 - Branislav Rankov - Bug 969375 - MIPS port: Fixed bug in ma_or and ma_xor found by Heiher. r=nbp
  2407. # [19:29] * Joins: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  2408. # [19:29] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/05532668570b - Branislav Rankov - Bug 969375 - MIPS port: Added MoveEmitter-mips files. r=nbp
  2409. # [19:29] <bz> lsblakk: Just push to the mozilla-beta repo?
  2410. # [19:29] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/6350391f8550 - Branislav Rankov - Bug 969375 - MIPS port: Moved SecondScratchReg constant to Assembler-mips.h r=nbp
  2411. # [19:29] <lsblakk> bz: actually, to mozilla-release
  2412. # [19:29] <lsblakk> mozilla-beta already merged
  2413. # [19:29] * Quits: ggp (ggp@2517BFAF.BFDA0A02.9F9EFC6F.IP) (Ping timeout)
  2414. # [19:30] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/256dfb415f14 - Ehsan Akhgari - Bug 857427 - Wait for focus before initiating a right click on the test page
  2415. # [19:30] <bz> lsblakk: updating trees
  2416. # [19:30] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/dd25a11b9f63 - Ehsan Akhgari - Debugging patch for bug 857427
  2417. # [19:30] <RyanVM|sheriffduty> ehsan: don't worry, I've got a list of oranges to feed you one-by-one :D
  2418. # [19:30] <bz> lsblakk: do you have the bug# to hand, by any chance?
  2419. # [19:30] <@ehsan> RyanVM|sheriffduty: no good deed goes unpunished indeed :)
  2420. # [19:30] <RyanVM|sheriffduty> lsblakk: bz: are we still taking security fixes on beta?
  2421. # [19:30] <RyanVM|sheriffduty> ehsan: well, seeing how you just made short work of teh alst one!
  2422. # [19:30] <lsblakk> RyanVM|sheriffduty: we absolutely need on m-r - fwiw, m-b is optional
  2423. # [19:31] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/a2ec4ab256e8 - Jeff Muizelaar - Bug 981856. Use an 888 config when creating a pbuffer. r=jgilbert
  2424. # [19:31] <lsblakk> there will be no more builds from m-b
  2425. # [19:31] * Joins: ggp (ggp@2517BFAF.BFDA0A02.9F9EFC6F.IP)
  2426. # [19:31] <RyanVM|sheriffduty> ehsan: fwiw, the next ones on my list are focus-related I think
  2427. # [19:31] <@ehsan> \o/
  2428. # [19:31] * Quits: Niharika (Happiness@633FD436.142D8E0A.74119F78.IP) (Connection reset by peer)
  2429. # [19:31] * Quits: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP) (Quit: RealRaven)
  2430. # [19:31] <bz> lsblakk: no point pushing to beta because it'll just merge in on merge day?
  2431. # [19:31] <@ehsan> those are usually easy
  2432. # [19:31] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  2433. # [19:31] <RyanVM|sheriffduty> lsblakk: I'm just saying that if we're still landing pwn2own fixes on 28, it's an easier merge point for other branches than m-r
  2434. # [19:31] <lsblakk> bz: it will get clobbered by mozilla-aurora end as mozilla-beta 29 start, yes
  2435. # [19:31] <bz> lsblakk: on m-r, push to head, or on a branch?
  2436. # [19:32] <lsblakk> RyanVM|sheriffduty: if that works for you, i am not against it
  2437. # [19:32] * Joins: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP)
  2438. # [19:32] <lsblakk> RyanVM|sheriffduty: i just mean we have to have everything on m-r no matter what
  2439. # [19:32] <RyanVM|sheriffduty> yes
  2440. # [19:32] <RyanVM|sheriffduty> and I can see to that :)
  2441. # [19:32] <lsblakk> bz: to default, yes
  2442. # [19:32] <RyanVM|sheriffduty> bz: one sec
  2443. # [19:32] <lsblakk> bz: i defer to Ryan on logistics of landing
  2444. # [19:32] <lsblakk> RyanVM|sheriffduty understands m-r is final goal
  2445. # [19:32] * Quits: ggp (ggp@2517BFAF.BFDA0A02.9F9EFC6F.IP) (Ping timeout)
  2446. # [19:33] * baku|away is now known as baku
  2447. # [19:33] <RyanVM|sheriffduty> bz: thanks to the yet-to-land pwn2own fixes that need to be shuffled between various 28 branches, it's easier for me logistically to use beta as a starting point
  2448. # [19:34] <bz> ok
  2449. # [19:34] <bz> So
  2450. # [19:34] <bz> https://bugzilla.mozilla.org/attachment.cgi?id=8340575 backs out cleanly on mozilla-release
  2451. # [19:34] <bz> and I would expect on mozilla-beta
  2452. # [19:34] <RyanVM|sheriffduty> yes, they're identical branches at the moment
  2453. # [19:34] <RyanVM|sheriffduty> just push to beta
  2454. # [19:34] <RyanVM|sheriffduty> i'll get it to m-r
  2455. # [19:34] <bz> RyanVM|sheriffduty: Gotcha
  2456. # [19:34] <RyanVM|sheriffduty> promise :)
  2457. # [19:35] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  2458. # [19:36] * bz assumes a=lsblakk
  2459. # [19:36] * curtisk|afk is now known as curtisk
  2460. # [19:36] * bz runs "hg pus"
  2461. # [19:36] * Joins: a-865 (fmcz@moz-EFF8C062.cable.mindspring.com)
  2462. # [19:37] <firebot> Check-in: http://hg.mozilla.org/releases/mozilla-beta/rev/a9e2dddb09b7 - Boris Zbarsky - Bug 981280. Disable webvtt support on 28 for now, pending resolution of some issues. a=lsblakk
  2463. # [19:37] <@ehsan> padenot: ping
  2464. # [19:38] * Joins: jgilbert (jgilbert@4CA90EB8.C8079272.284344F5.IP)
  2465. # [19:38] * Quits: sumit4iit (Thunderbir@6BA7770.42F8B8BC.931D0F89.IP) (Ping timeout)
  2466. # [19:39] * Quits: edmorley (uid27002@moz-5F4AA75A.irccloud.com) (Quit: )
  2467. # [19:39] * Joins: kip (kip@moz-DDB15FC8.stc.novuscom.net)
  2468. # [19:39] <RyanVM|sheriffduty> ehsan: I believe he's flying today
  2469. # [19:40] <froydnj> bz: you should get a doctor to look at that
  2470. # [19:40] * Quits: kip (kip@moz-DDB15FC8.stc.novuscom.net) (Quit: )
  2471. # [19:40] * Quits: vingtetun (Thunderbir@87C1F78E.1DE10CA8.D8E68FF6.IP) (Ping timeout)
  2472. # [19:41] <@ehsan> RyanVM|sheriffduty: doesn't mean he cannot answer my ping :P
  2473. # [19:41] <RyanVM|sheriffduty> this is true
  2474. # [19:41] * Quits: kushagra (kushagra@85A74B24.AB8D721.520CDC98.IP) (Ping timeout)
  2475. # [19:41] <doctor> froydnj: agreed
  2476. # [19:41] * Quits: jgilbert (jgilbert@4CA90EB8.C8079272.284344F5.IP) (Ping timeout)
  2477. # [19:42] <bz> froydnj: ?
  2478. # [19:42] <doctor> <froydnj> bz: you should get a --->doctor<---- to look at that
  2479. # [19:42] <doctor> oh wait, wrong person
  2480. # [19:42] <bz> ;)
  2481. # [19:42] * Joins: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net)
  2482. # [19:42] <doctor> bz: and froydnj have the same color for me
  2483. # [19:42] * Joins: kip (kip@moz-DDB15FC8.stc.novuscom.net)
  2484. # [19:42] * bbondy_ is now known as bbondy
  2485. # [19:42] * Quits: ehugg (ehugg@D7DE5F01.6C5CEEEA.D46CBC5D.IP) (Quit: ehugg)
  2486. # [19:45] * Quits: gwagner_ (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner_)
  2487. # [19:45] * Joins: mikeratcliffe1 (Adium@1B67F073.8F445B48.7CCB197A.IP)
  2488. # [19:45] * Quits: mikeratcliffe1 (Adium@1B67F073.8F445B48.7CCB197A.IP) (Client exited)
  2489. # [19:45] * Quits: davidb (davidb@moz-E4E805A9.dsl.bell.ca) (Quit: Oops I parted.)
  2490. # [19:45] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  2491. # [19:45] * Joins: m_gol (m_gol@moz-47467C39.dynamic.chello.pl)
  2492. # [19:46] * Quits: mikeratcliffe (Adium@1B67F073.8F445B48.7CCB197A.IP) (Ping timeout)
  2493. # [19:46] * Joins: gwagner_ (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2494. # [19:46] * Joins: davidb (davidb@moz-E4E805A9.dsl.bell.ca)
  2495. # [19:47] * Quits: kip (kip@moz-DDB15FC8.stc.novuscom.net) (Quit: )
  2496. # [19:47] * jhopkins|lunch is now known as jhopkins
  2497. # [19:48] * retornam is now known as retornam|away
  2498. # [19:48] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Connection reset by peer)
  2499. # [19:48] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Connection reset by peer)
  2500. # [19:48] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2501. # [19:49] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/7d192442dfca - Bill McCloskey - Bug 917681 - [e10s] Make context menu work for selected text (r=felipe)
  2502. # [19:49] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/cc298e4b0f47 - Bill McCloskey - Bug 938359 - [e10s] Support middle-click scroll (r=felipe)
  2503. # [19:49] * Parts: gwagner_ (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2504. # [19:50] * Joins: bbondy2 (bbondy@moz-717FF534.home.cgocable.net)
  2505. # [19:50] * Joins: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2506. # [19:50] <lsblakk> bz: yes, delayed a=me in IRC is fine
  2507. # [19:50] * Quits: bbondy2 (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  2508. # [19:50] * AaronMT|mtg is now known as AaronMT
  2509. # [19:51] * pmoore is now known as pmoore|away
  2510. # [19:51] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  2511. # [19:52] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/ac2e44b50537 - Boris Zbarsky - Bug 983228. Add a sequence tracer for sequences of unions. r=baku
  2512. # [19:52] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/f9790cf27463 - Boris Zbarsky - Bug 983029. Make sure to observe stack discipline for Rooted when initializing a WebIDL union containing the 'object' type. r=khuey
  2513. # [19:52] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/69473c50b7d8 - Boris Zbarsky - Bug 983264. Include callback headers in UnionTypes.h when a callback is used in a union. r=mccr8
  2514. # [19:52] * Joins: sumit4iit (Thunderbir@6BA7770.42F8B8BC.931D0F89.IP)
  2515. # [19:54] <bz> lsblakk: I just assumed. ;)
  2516. # [19:54] * jlund is now known as jlund|lunch
  2517. # [19:54] * Quits: sicking (sicking@moz-501E5580.hsd1.ca.comcast.net) (Quit: sicking)
  2518. # [19:56] * Quits: jchaulk (jchaulk-20@moz-A5DF7EB9.dsl.teksavvy.com) (Quit: Leaving.)
  2519. # [19:56] * Joins: TimAbraldes (quassel@125EF623.B2666F0E.66399531.IP)
  2520. # [19:56] <@smaug> BenWa: do we use real or pseudo stack when profiling b2g on devices?
  2521. # [19:57] * Joins: kushagra (kushagra@7B683A2B.AF881627.6EAD5CF4.IP)
  2522. # [19:57] <BenWa> smaug: you can use either depend on how you run
  2523. # [19:58] * Joins: briansmith (briansmith@moz-FFF8FA4C.hawaii.res.rr.com)
  2524. # [19:58] * Quits: KaiRo (robert@moz-FB07A1B.adsl.highway.telekom.at) (Input/output error)
  2525. # [19:59] <briansmith> BenWa: Is it OK to check in the patch in bug 883339? It would be very helpful to me.
  2526. # [20:00] * Joins: kushagra_ (kushagra@7B683A2B.AF881627.6EAD5CF4.IP)
  2527. # [20:00] <BenWa> briansmith: My patch to disable GTEST on PGO is wrong
  2528. # [20:00] * Quits: kushagra (kushagra@7B683A2B.AF881627.6EAD5CF4.IP) (Connection reset by peer)
  2529. # [20:00] <BenWa> briansmith: If you can find the problem then it should be landable
  2530. # [20:00] <briansmith> Oh, I thought glandium had said it was wrong and then changed his mind
  2531. # [20:01] <briansmith> r- -> r+
  2532. # [20:01] * Joins: mayhemer (mayhemer@moz-8C6503E1.vodafone.cz)
  2533. # [20:01] * Quits: joshua-s (Thunderbir@moz-E7A658A9.syrcny.east.verizon.net) (Quit: Try Firetext (https://marketplace.firefox.com/app/firetext), a word processor for Firefox OS!)
  2534. # [20:01] <BenWa> comment 26 pushed this patch to try and it still tried to run gest on PGO
  2535. # [20:01] <BenWa> So something is wrong somewhere
  2536. # [20:01] <briansmith> OK, thanks.
  2537. # [20:01] <BenWa> briansmith: Would love some help :)
  2538. # [20:01] * Quits: jaspreet (jaspreet@9B9315E1.A6025CA.1C37C358.IP) (Quit: leaving)
  2539. # [20:02] * Joins: joshua-s (Thunderbir@moz-E7A658A9.syrcny.east.verizon.net)
  2540. # [20:02] <briansmith> BenWa: it sucks to not run the tests in PGO builds anyway.
  2541. # [20:02] <briansmith> Those are the most important builds to test, since that is what we ship/
  2542. # [20:02] <BenWa> briansmith: It's true but sometimes it just isn't worth the cost
  2543. # [20:02] <BenWa> briansmith: It also sucks not having any unit test on windows
  2544. # [20:02] * hwine is now known as hwine|mtg
  2545. # [20:03] <briansmith> It adds ~1hr to linking PGO builds, right.
  2546. # [20:03] <briansmith> OK, I will take a look at fixing your patch.
  2547. # [20:03] * Quits: mayhemer (mayhemer@moz-8C6503E1.vodafone.cz) (Quit: mayhemer)
  2548. # [20:04] <@ehsan> ttaubert: jeez!
  2549. # [20:04] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/7035905efdc4 - Ehsan Akhgari - Bug 857427 - Fix more problems spotted by ttaubert
  2550. # [20:05] <RyanVM|sheriffduty> lol
  2551. # [20:05] * Joins: bbondy2 (bbondy@moz-717FF534.home.cgocable.net)
  2552. # [20:05] * Quits: kushagra_ (kushagra@7B683A2B.AF881627.6EAD5CF4.IP) (Ping timeout)
  2553. # [20:05] * Joins: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro)
  2554. # [20:05] * Quits: dmajor (dmajor@moz-BBE3ABD.mv.mozilla.com) (Connection reset by peer)
  2555. # [20:05] * Joins: redwood (chatzilla@26E73836.156CBEAD.74E1C77A.IP)
  2556. # [20:05] <ttaubert> ehsan: but the addEventListener() call is wrong, not the removeEventListener() one :)
  2557. # [20:06] <RyanVM|sheriffduty> <3 ehsan & ttaubert
  2558. # [20:06] * Gijs is now known as Gijs_away
  2559. # [20:06] * Joins: Snuffleupagus (chatzilla@moz-7411B7A4.bredband.comhem.se)
  2560. # [20:06] * Quits: bbondy2 (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  2561. # [20:06] <@ehsan> ttaubert: explain!
  2562. # [20:06] <bz> ehsan++
  2563. # [20:06] <bz> ttaubert++
  2564. # [20:07] <ttaubert> ehsan: addEventListener(function () contextMenuOpened()) registers an anonymous function. must be addEventListener(contextMenuOpened)
  2565. # [20:07] <@ehsan> ah
  2566. # [20:07] <@ehsan> well
  2567. # [20:07] * philor|afk is now known as philor
  2568. # [20:07] <@ehsan> ttaubert: that won't work
  2569. # [20:07] <@ehsan> crap
  2570. # [20:07] <@ehsan> let me fix this
  2571. # [20:07] <nemo> http://www.symantec.com/connect/blogs/google-docs-users-targeted-sophisticated-phishing-scam oooh. this one is evil
  2572. # [20:08] <ttaubert> ehsan: wfm :) we don't really need to pass aWindow
  2573. # [20:08] <@ehsan> yes
  2574. # [20:08] * Joins: dmajor (dmajor@moz-3DAA81C7.hsd1.ca.comcast.net)
  2575. # [20:08] <@smaug> BenWa: ok. at some point I should learn how to profile on the b2g devices
  2576. # [20:09] <BenWa> smaug: it works better there then linux FWIW
  2577. # [20:10] * bz is now known as bz_away
  2578. # [20:10] * Quits: kdcw (kdcw@moz-2CDF5822.pk.shawcable.net) (Quit: HydraIRC -> http://www.hydrairc.com <- Po-ta-to, boil em, mash em, stick em in a stew.)
  2579. # [20:10] * Joins: drno (nohlmeier@moz-CCCF7F86.hsd1.ca.comcast.net)
  2580. # [20:11] * bz_away runs the numbers on 60e6 fuzz testcases, decides a compute farm is likely involved
  2581. # [20:11] <@smaug> (on linux I tend to use Zoom)
  2582. # [20:11] * Quits: jedp (jedp@moz-3AA8030E.dsl.dynamic.sonic.net) (Ping timeout)
  2583. # [20:11] <bz_away> Or a single machine that ran for a good long while, I guess
  2584. # [20:11] * JosiahOne is now known as JosiahOne|Away
  2585. # [20:11] * curtisk is now known as curtisk|afk
  2586. # [20:11] <davidb> BenWa: the gecko profiler works on b2g?
  2587. # [20:12] * Joins: jchaulk (jchaulk-20@moz-A5DF7EB9.dsl.teksavvy.com)
  2588. # [20:12] <BenWa> davidb: Very well
  2589. # [20:12] <davidb> TIL
  2590. # [20:12] * Joins: ggp (ggp@7407F9B9.7D8E47F4.1160D82E.IP)
  2591. # [20:12] * Joins: erahm (Adium@125EF623.B2666F0E.66399531.IP)
  2592. # [20:12] <mccr8_> bz_away: Google uses thousands of CPU cores to fuzz http://googleonlinesecurity.blogspot.com/2011/08/fuzzing-at-scale.html
  2593. # [20:13] <tbsaunde> sfink: ping
  2594. # [20:13] * Quits: ggp (ggp@7407F9B9.7D8E47F4.1160D82E.IP) (Input/output error)
  2595. # [20:13] <sfink> tbsaunde: pong
  2596. # [20:13] * Joins: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com)
  2597. # [20:13] * Joins: ggp (ggp@7407F9B9.7D8E47F4.1160D82E.IP)
  2598. # [20:13] <bz_away> mccr8_: yeah, makes sense
  2599. # [20:14] <tbsaunde> sfink: is there a way to ask gdb what the pretty printer for a given type is?
  2600. # [20:14] <bz_away> mccr8_: vupen too, I would assume
  2601. # [20:14] * Joins: jedp (jedp@moz-3AA8030E.dsl.dynamic.sonic.net)
  2602. # [20:14] * Quits: jedp (jedp@moz-3AA8030E.dsl.dynamic.sonic.net) (Max SendQ exceeded)
  2603. # [20:14] * Quits: jammink_ (textual@143B6C13.1DEDA72C.BECD0C56.IP) (Quit: Computer has gone to sleep.)
  2604. # [20:14] * Quits: jammink (textual@143B6C13.1DEDA72C.BECD0C56.IP) (Quit: Computer has gone to sleep.)
  2605. # [20:14] <mccr8_> well, probably not so many. ;)
  2606. # [20:14] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/26bd91517f35 - Jeff Muizelaar - Bug 983650. Temporarily mark b2g webgl reftests tests as random
  2607. # [20:14] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/96c7ae85ff76 - Jeff Muizelaar - Bug 977861. Avoid putting the scroll thumb at subpixel positions. r=mstange
  2608. # [20:14] <sfink> um, uh. Not sure if there's a nice way, but I seem to remember doing it somehow. Let me look...
  2609. # [20:15] * Joins: jedp (jedp@moz-3AA8030E.dsl.dynamic.sonic.net)
  2610. # [20:15] * Quits: jedp (jedp@moz-3AA8030E.dsl.dynamic.sonic.net) (Max SendQ exceeded)
  2611. # [20:15] * Joins: doctrv (emerson@moz-3E0ABD32.hsd1.mi.comcast.net)
  2612. # [20:15] * Quits: mahdi (mahdi@69517B62.9BB2E829.195261CE.IP) (Quit: Leaving)
  2613. # [20:15] * swook is now known as swook`
  2614. # [20:15] * Quits: doctrv (emerson@moz-3E0ABD32.hsd1.mi.comcast.net) (Connection reset by peer)
  2615. # [20:15] * jandem is now known as jandem-away
  2616. # [20:16] * Quits: MrMazda (fmcz@moz-EFF8C062.cable.mindspring.com) (Quit: ChatZilla 0.9.89 [SeaMonkey 1.1.18/2009082712])
  2617. # [20:16] <@ehsan> ttaubert: if you have more comments, now's the time to speak up :)
  2618. # [20:16] <ttaubert> ehsan: not at the moment :)
  2619. # [20:17] <@ehsan> perfect
  2620. # [20:17] <@ehsan> thanks!
  2621. # [20:17] * Quits: geekboy (geekboy@moz-2F998E60.dsl.static.sonic.net) (Input/output error)
  2622. # [20:17] * ctalbert|afk is now known as ctalbert
  2623. # [20:18] * ctalbert is now known as ctalbert|QALab
  2624. # [20:18] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/60d22ded5504 - Ehsan Akhgari - Bug 857427 - Fix even more problems spotted by ttaubert
  2625. # [20:19] * Quits: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: ekr)
  2626. # [20:19] * Quits: jwei (jwei@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Leaving.)
  2627. # [20:19] * Joins: jwei (jwei@13F2CEC5.7672369.D8E68FF6.IP)
  2628. # [20:19] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/2101b291ae74 - Daniel Holbert - Bug 983671: Add back (more restricted) 'fuzzy' annotation for reftest svg/smil/transform/skew-1.svg. (no review, test-manifest only)
  2629. # [20:19] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  2630. # [20:20] * sheppy-afk is now known as sheppy
  2631. # [20:20] * Joins: MrMazda (fmcz@moz-EFF8C062.cable.mindspring.com)
  2632. # [20:20] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2633. # [20:20] * Joins: kushagra (kushagra@7B683A2B.AF881627.6EAD5CF4.IP)
  2634. # [20:20] <tbsaunde> sfink: tightening up a regex seems ot have fixed it so probably not worth too much effort at this point, but thanks
  2635. # [20:21] * Quits: a-865 (fmcz@moz-EFF8C062.cable.mindspring.com) (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.25/20140304152500])
  2636. # [20:21] * Joins: bbondy2 (bbondy@moz-717FF534.home.cgocable.net)
  2637. # [20:21] <sfink> tbsaunde: you can sort of figure it out via |python print(mozilla.prettyprinters.printers_by_tag)|, and ptr_printers_by_tag, and ref_printers_by_tag
  2638. # [20:21] * Joins: jviereck (Adium@moz-7859BAFE.dclient.hispeed.ch)
  2639. # [20:21] * Quits: bbondy2 (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  2640. # [20:21] <sfink> and printers_by_regexp, and template_printers_by_tag :(
  2641. # [20:22] <jld> RyanVM|sheriffduty: About bug 982816: Is there a specific commit of mine that caused me to be CC'ed? I'm unfamiliar with the code that's breaking.
  2642. # [20:22] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  2643. # [20:22] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/9bd9dcf4de29 - George Wright - Bug 716766 - Enable NEON Skia codepaths r=snorp
  2644. # [20:22] * Joins: jedp (jedp@moz-3AA8030E.dsl.dynamic.sonic.net)
  2645. # [20:22] * Quits: jedp (jedp@moz-3AA8030E.dsl.dynamic.sonic.net) (Max SendQ exceeded)
  2646. # [20:22] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/25031a8b8b77 - George Wright - Bug 716766 - Only set USE_ANDROID_NDK_CPU_FEATURES if it's not already been explicitly set r=upstream,snorp
  2647. # [20:22] <sfink> |info pretty-printer| tells you... stuff
  2648. # [20:22] * Quits: sfink|log (sfink@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2649. # [20:22] * Joins: a-865 (fmcz@moz-EFF8C062.cable.mindspring.com)
  2650. # [20:23] * shorlander is now known as shorlander-afk
  2651. # [20:23] * JosiahOne|Away is now known as JosiahOne
  2652. # [20:24] * gkw-not-active is now known as gkw
  2653. # [20:25] * Joins: jgilbert (jgilbert@4CA90EB8.C8079272.284344F5.IP)
  2654. # [20:25] <RyanVM|sheriffduty> jld: whoops, that should have been jedp
  2655. # [20:25] * Quits: Anupkumar (uid16774@moz-A42E5B7B.irccloud.com) (Quit: Connection closed for inactivity)
  2656. # [20:25] * RyanVM|sheriffduty does that all the time :(
  2657. # [20:25] * Quits: kushagra (kushagra@7B683A2B.AF881627.6EAD5CF4.IP) (Ping timeout)
  2658. # [20:27] <RyanVM|sheriffduty> arnaud_bienner: non-unified is green :)
  2659. # [20:27] * Joins: jedp (jedp@moz-3AA8030E.dsl.dynamic.sonic.net)
  2660. # [20:27] * Quits: jedp (jedp@moz-3AA8030E.dsl.dynamic.sonic.net) (Max SendQ exceeded)
  2661. # [20:28] * Quits: MrMazda (fmcz@moz-EFF8C062.cable.mindspring.com) (Quit: ChatZilla 0.9.89 [SeaMonkey 1.1.18/2009082712])
  2662. # [20:28] * Joins: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  2663. # [20:28] * Joins: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net)
  2664. # [20:29] * Quits: rbarnes_ (rbarnes@moz-104CC309.mv.mozilla.com) (Ping timeout)
  2665. # [20:29] * Joins: MrMazda (fmcz@moz-EFF8C062.cable.mindspring.com)
  2666. # [20:31] * Quits: m_gol (m_gol@moz-47467C39.dynamic.chello.pl) (Quit: Leaving...)
  2667. # [20:32] * Quits: MrMazda (fmcz@moz-EFF8C062.cable.mindspring.com) (Quit: ChatZilla 0.9.89 [SeaMonkey 1.1.18/2009082712])
  2668. # [20:33] * Joins: m_gol (m_gol@moz-47467C39.dynamic.chello.pl)
  2669. # [20:36] * Joins: bbondy2 (bbondy@moz-717FF534.home.cgocable.net)
  2670. # [20:36] * gregglind is now known as gregglind_buying_house
  2671. # [20:37] * Joins: MrMazda (fmcz@moz-EFF8C062.cable.mindspring.com)
  2672. # [20:37] * Quits: bbondy2 (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  2673. # [20:38] <Callek|Buildduty> felipe: ping?
  2674. # [20:38] * Quits: MrMazda (fmcz@moz-EFF8C062.cable.mindspring.com) (Quit: ChatZilla 0.9.89 [SeaMonkey 1.1.18/2009082712])
  2675. # [20:41] * Joins: MacroMayhem (Mibbit@9B9315E1.A6025CA.1C37C358.IP)
  2676. # [20:42] * Quits: gabor (gabor@moz-CCC4F339.pool.digikabel.hu) (Ping timeout)
  2677. # [20:42] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2678. # [20:43] * Joins: MrMazda (fmcz@moz-EFF8C062.cable.mindspring.com)
  2679. # [20:43] * Joins: jedp (jedp@moz-3AA8030E.dsl.dynamic.sonic.net)
  2680. # [20:45] * Quits: m_gol (m_gol@moz-47467C39.dynamic.chello.pl) (Quit: Leaving...)
  2681. # [20:45] * Quits: sankha93 (sankha93@7061CD01.D6BD0D91.22D41759.IP) (Ping timeout)
  2682. # [20:45] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Client exited)
  2683. # [20:46] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  2684. # [20:47] * Joins: jhorak (jhorak@moz-2EE9C9C3.cust.nbox.cz)
  2685. # [20:47] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  2686. # [20:49] * Quits: luke (luke@moz-7CF84B28.dhcp.ftwo.tx.charter.com) (Quit: Leaving.)
  2687. # [20:49] * Quits: jviereck (Adium@moz-7859BAFE.dclient.hispeed.ch) (Quit: Leaving.)
  2688. # [20:50] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/2bdd2d042847 - Aaron Klotz - Bug 972577: Consolidate IOInterposer initialization code; r=froydnj,BenWa,jimm
  2689. # [20:50] * jandem-away is now known as jandem
  2690. # [20:51] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/2e54fe94c127 - Kartikaya Gupta - Bug 979720 - Convert max velocity from px/ms to inches/ms. r=bkelly
  2691. # [20:52] * Joins: bbondy2 (bbondy@moz-717FF534.home.cgocable.net)
  2692. # [20:52] * Quits: bbondy2 (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  2693. # [20:53] * JosiahOne is now known as JosiahOne|Away
  2694. # [20:53] <jib> Anyone know if Telemetry::Accumulate can only be called on main?
  2695. # [20:53] <froydnj> jib: you can call it off main
  2696. # [20:53] <froydnj> jib: no locking is done, though
  2697. # [20:53] <jib> froydnj: great, but it is done?
  2698. # [20:54] * Quits: MrMazda (fmcz@moz-EFF8C062.cable.mindspring.com) (Quit: ChatZilla 0.9.86.1 [SeaMonkey 1.1.18/2009082712])
  2699. # [20:54] <froydnj> "it is done" == "the measurement is recorded"?
  2700. # [20:54] <jib> froydnj: "it is done" = do you know of a place in the tree I can point to and say, see it's ok.
  2701. # [20:55] <froydnj> jib: um. one moment
  2702. # [20:55] * Joins: MrMazda (fmcz@moz-EFF8C062.cable.mindspring.com)
  2703. # [20:55] <jib> I couldn't find much mention in docs, is why
  2704. # [20:55] * Quits: JosiahOne|Away (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net) (Ping timeout)
  2705. # [20:56] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/b377204840b9 - Kartikaya Gupta - Bug 979720: Follow-up to fix stupid PTO-brain naming mistake. r=me
  2706. # [20:56] * Quits: mwu (mwu@moz-2E883D31.hsd1.nj.comcast.net) (Quit: Leaving)
  2707. # [20:56] * Joins: m_gol (m_gol@moz-47467C39.dynamic.chello.pl)
  2708. # [20:56] * Joins: jviereck (Adium@moz-7859BAFE.dclient.hispeed.ch)
  2709. # [20:56] * Quits: m_gol (m_gol@moz-47467C39.dynamic.chello.pl) (Connection reset by peer)
  2710. # [20:56] * Joins: m_gol (m_gol@moz-47467C39.dynamic.chello.pl)
  2711. # [20:57] <froydnj> jib: http://mxr.mozilla.org/mozilla-central/source/storage/src/TelemetryVFS.cpp#104
  2712. # [20:57] <jib> froydnj: thanks!
  2713. # [20:57] * Quits: alaminopu (Mibbit@83BED26C.B2F29A6F.7573639D.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2714. # [20:58] * Joins: josh (josh@moz-348C4790.hsd1.mn.comcast.net)
  2715. # [20:58] * hwine|mtg is now known as hwine
  2716. # [20:58] * Quits: lduros (user@moz-D1C419E5.phlapa.fios.verizon.net) (Client exited)
  2717. # [20:59] * philor is now known as philor|away
  2718. # [21:00] * Joins: mwobensmith (mwobensmit@12E4AD8B.27376607.189F3E15.IP)
  2719. # [21:00] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/893b864b4b18 - Terrence Cole - Bug 969012 - Allow inlining out-of-line slot creation in IonMonkey; r=jandem
  2720. # [21:00] * jlund|lunch is now known as jlund|mtg
  2721. # [21:00] <whimboo> jedp: thanks for working on the aurora backport!
  2722. # [21:00] <whimboo> i hope it will be an easy one
  2723. # [21:02] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  2724. # [21:02] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  2725. # [21:02] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  2726. # [21:02] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  2727. # [21:03] * Joins: gwagner_ (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2728. # [21:03] * Quits: botond|laptop (chatzilla@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2729. # [21:03] * hwine is now known as hwine-food
  2730. # [21:05] * Joins: driia (dria@13F2CEC5.7672369.D8E68FF6.IP)
  2731. # [21:05] * Quits: dria (dria@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  2732. # [21:06] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Quit: )
  2733. # [21:07] * armenzg is now known as armenzg_afk
  2734. # [21:07] * Joins: bbondy2 (bbondy@moz-717FF534.home.cgocable.net)
  2735. # [21:07] * Quits: mccr8_ (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net) (Quit: mccr8_)
  2736. # [21:08] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  2737. # [21:08] * Quits: bbondy2 (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  2738. # [21:08] * Quits: spohl (Adium@moz-2F20595C.static.hvvc.us) (Quit: Leaving.)
  2739. # [21:09] * jedp is now known as jedp|lunch
  2740. # [21:09] * Quits: jviereck (Adium@moz-7859BAFE.dclient.hispeed.ch) (Quit: Leaving.)
  2741. # [21:09] <jhopkins> aklotz, kamidphish: i'll want to recreate your rbt-* loaner instances early next week to get the latest configuration changes in. perhaps even this weekend if you're ok with that
  2742. # [21:09] * Quits: RealRaven (Thunderbir@3AC28870.E64DB4BB.C3498625.IP) (Ping timeout)
  2743. # [21:09] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  2744. # [21:09] <aklotz> jhopkins: okay, I'll be sure to pull any data that I want to save before EOD today
  2745. # [21:09] * mattwoodrow|away is now known as mattwoodrow
  2746. # [21:10] <jhopkins> thanks
  2747. # [21:11] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Ping timeout)
  2748. # [21:13] * Joins: JosiahOne|Away (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net)
  2749. # [21:13] * Joins: RealRaven (Thunderbir@3C20A9D4.8D6F0354.27F80FAC.IP)
  2750. # [21:14] * Quits: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net) (Ping timeout)
  2751. # [21:14] * Joins: rbarnes_ (rbarnes@moz-104CC309.mv.mozilla.com)
  2752. # [21:15] * Quits: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net) (Ping timeout)
  2753. # [21:15] * Joins: bbondy2 (bbondy@moz-717FF534.home.cgocable.net)
  2754. # [21:15] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/500bcf9f9d3a - Henrik Skupin - Bug 966434 - Refactor tps for fxaccounts and old sync authentication support. r=jgriffin
  2755. # [21:15] * Joins: ehugg (chatzilla@DB992802.29102B70.6CD50604.IP)
  2756. # [21:15] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  2757. # [21:16] <@dbaron> is somebody looking at the jit-test failures on inbound on Mac OS X?
  2758. # [21:16] <@dbaron> er, B2G Desktop
  2759. # [21:16] <RyanVM|sheriffduty> just closed over it
  2760. # [21:16] <RyanVM|sheriffduty> jsreftest looks like the same issue
  2761. # [21:16] <RyanVM|sheriffduty> doesn't help that bug 980960 isn't the right bug for that test
  2762. # [21:16] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  2763. # [21:16] * Quits: Optimizer (Optimizer@1505000E.19AF8E92.BE4CF869.IP) (Ping timeout)
  2764. # [21:16] * Joins: jviereck (Adium@moz-7859BAFE.dclient.hispeed.ch)
  2765. # [21:16] <RyanVM|sheriffduty> bbouvier: ping
  2766. # [21:17] * mattwoodrow is now known as mattwoodrow|away
  2767. # [21:17] <RyanVM|sheriffduty> dbaron: maybe bug 983029?
  2768. # [21:17] * Quits: armenzg_afk (armenzg@moz-DC6D6B46.home1.cgocable.net) (Quit: Leaving)
  2769. # [21:17] * jorendorff is now known as jorendorff_away
  2770. # [21:17] <@dbaron> RyanVM|sheriffduty, don't really have time right now, sorry
  2771. # [21:18] <RyanVM|sheriffduty> bleh
  2772. # [21:18] * @dbaron has a flight leaving in 4hr5mn and needs to pack
  2773. # [21:18] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  2774. # [21:18] <RyanVM|sheriffduty> any js folks around?
  2775. # [21:18] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  2776. # [21:18] <RyanVM|sheriffduty> bz_away: ping?
  2777. # [21:18] * Quits: gwagner_ (Gregor@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: gwagner_)
  2778. # [21:18] * Joins: clokep (Instantbir@moz-1484204D.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com)
  2779. # [21:19] * Joins: Optimizer (Optimizer@CE78EC24.A9AC0DA1.274D17D6.IP)
  2780. # [21:19] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  2781. # [21:19] * Quits: @roc (chatzilla@8ACF1000.5EFFC0B8.24454B25.IP) (Ping timeout)
  2782. # [21:20] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  2783. # [21:20] * Joins: roc (chatzilla@8ACF1000.5EFFC0B8.24454B25.IP)
  2784. # [21:20] * ChanServ sets mode: +o roc
  2785. # [21:20] * Quits: timeless (sid4015@moz-5F4AA75A.irccloud.com) (Ping timeout)
  2786. # [21:20] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  2787. # [21:21] * Joins: timeless (sid4015@moz-5F4AA75A.irccloud.com)
  2788. # [21:21] * jhopkins is now known as jhopkins|afk
  2789. # [21:21] * Joins: cpeterso_ (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  2790. # [21:21] <RyanVM|sheriffduty> great, now I'm seeing tbpl slowness
  2791. # [21:21] * Quits: cpeterso_ (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Input/output error)
  2792. # [21:21] * Joins: botond|laptop (chatzilla@FCCEA34F.7672369.D8E68FF6.IP)
  2793. # [21:22] * Quits: rlin (rlin-dt@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  2794. # [21:22] * Quits: _BledA_ (nodebot@moz-88C53DF1.us-west-2.compute.amazonaws.com) (Ping timeout)
  2795. # [21:22] * Joins: _BledA_ (nodebot@moz-88C53DF1.us-west-2.compute.amazonaws.com)
  2796. # [21:22] * Joins: mwu (mwu@moz-2E883D31.hsd1.nj.comcast.net)
  2797. # [21:22] * Quits: nmatsakis (nmatsakis@moz-DB4A9C19.scl3.mozilla.com) (Input/output error)
  2798. # [21:22] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Ping timeout)
  2799. # [21:22] * Joins: dholbert (dholbert@moz-2DBFC5C4.static.sonic.net)
  2800. # [21:22] * Joins: rlin (rlin-dt@moz-99690620.hinet-ip.hinet.net)
  2801. # [21:22] * Joins: nmatsakis (nmatsakis@moz-DB4A9C19.scl3.mozilla.com)
  2802. # [21:23] * Quits: pmoore|away (pmoore@moz-DB4A9C19.scl3.mozilla.com) (Ping timeout)
  2803. # [21:23] * Gijs_away is now known as Gijs
  2804. # [21:23] * Quits: funnel (hegel@DEB31F3E.28CFCE3E.FC69BED9.IP) (Client exited)
  2805. # [21:23] * Quits: kdc (chatzilla@moz-A66E00D4.pk.shawcable.net) (Ping timeout)
  2806. # [21:24] * Quits: philor|away (philor@moz-638273A8.my-nick.name) (Ping timeout)
  2807. # [21:24] * Quits: stephend|PTO (sid17718@moz-A42E5B7B.irccloud.com) (Ping timeout)
  2808. # [21:24] * Quits: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net) (Ping timeout)
  2809. # [21:24] * Quits: mihneadb (mihneadb@moz-6B31F5AA.static.ziggozakelijk.nl) (Ping timeout)
  2810. # [21:24] * jorendorff_away is now known as jorendorff
  2811. # [21:24] * Quits: jgilbert (jgilbert@4CA90EB8.C8079272.284344F5.IP) (Ping timeout)
  2812. # [21:24] * Quits: liuche|pto (liuche@moz-DB4A9C19.scl3.mozilla.com) (Ping timeout)
  2813. # [21:24] * Joins: philor|away (philor@96807C36.8C4888C2.8367FA39.IP)
  2814. # [21:24] * Joins: stephend|PTO (sid17718@631DDABB.E02B7C75.9377050C.IP)
  2815. # [21:24] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  2816. # [21:24] * Joins: pmoore|away (pmoore@moz-DB4A9C19.scl3.mozilla.com)
  2817. # [21:24] * Quits: a-865 (fmcz@moz-EFF8C062.cable.mindspring.com) (Ping timeout)
  2818. # [21:24] * Joins: khuey_ (khuey@moz-DB4A9C19.scl3.mozilla.com)
  2819. # [21:24] * Quits: @khuey (khuey@moz-DB4A9C19.scl3.mozilla.com) (Input/output error)
  2820. # [21:24] * Quits: nalexander (nalexander@moz-DB4A9C19.scl3.mozilla.com) (Ping timeout)
  2821. # [21:24] * Joins: nalexander (nalexander@moz-DB4A9C19.scl3.mozilla.com)
  2822. # [21:24] * Quits: merike|away (merike@moz-8E3CC892.cable.starman.ee) (Ping timeout)
  2823. # [21:24] * Joins: jgilbert (jgilbert@4CA90EB8.C8079272.284344F5.IP)
  2824. # [21:24] * Joins: mccr8 (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net)
  2825. # [21:25] * Quits: snorp (snorp@28435C98.1C2164C0.BFE160B4.IP) (Ping timeout)
  2826. # [21:25] * khuey_ is now known as khuey
  2827. # [21:25] * Quits: jst (quassel@CB36FB4D.BE63433B.EE6E63A5.IP) (Ping timeout)
  2828. # [21:25] * Quits: Olipro (Olipro@moz-67368F33.catv.pool.telekom.hu) (Ping timeout)
  2829. # [21:25] * Quits: bkelly (sid22777@moz-E77DEB21.irccloud.com) (Ping timeout)
  2830. # [21:25] * ChanServ sets mode: +o khuey
  2831. # [21:25] * Quits: past (sid15657@moz-31ABA2C0.irccloud.com) (Ping timeout)
  2832. # [21:25] * Quits: @not_gavin (gavin@E04DED12.5AA33DAB.2321E71E.IP) (Input/output error)
  2833. # [21:25] * Joins: merike (merike@moz-8E3CC892.cable.starman.ee)
  2834. # [21:25] * Quits: efaust (efaust@moz-8E7F06AB.hsd1.ca.comcast.net) (Ping timeout)
  2835. # [21:26] * Joins: bajaj (Adium@4D64A85B.D1D0393C.9CA62458.IP)
  2836. # [21:26] * Joins: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com)
  2837. # [21:26] <@khuey> scl3 just burped
  2838. # [21:26] * Quits: nemo (nemo@moz-57FDFA.hsd1.md.comcast.net) (Ping timeout)
  2839. # [21:26] * Quits: nmatsakis (nmatsakis@moz-DB4A9C19.scl3.mozilla.com) (Input/output error)
  2840. # [21:26] * Quits: emerson (chatzilla@moz-3E0ABD32.hsd1.mi.comcast.net) (Ping timeout)
  2841. # [21:26] * Joins: nmatsaki1 (nmatsakis@moz-DB4A9C19.scl3.mozilla.com)
  2842. # [21:26] * Quits: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  2843. # [21:26] * Joins: a-865 (fmcz@moz-EFF8C062.cable.mindspring.com)
  2844. # [21:26] * Joins: bkelly (sid22777@moz-E77DEB21.irccloud.com)
  2845. # [21:27] * Joins: not_gavin (gavin@E04DED12.5AA33DAB.2321E71E.IP)
  2846. # [21:27] * ChanServ sets mode: +o not_gavin
  2847. # [21:27] * Quits: esawin (esawin@5BEC7083.F96E1D95.95550721.IP) (Ping timeout)
  2848. # [21:27] * Quits: bajaj1 (Adium@moz-34BA18EC.hsd1.ca.comcast.net) (Ping timeout)
  2849. # [21:27] * Quits: raniere (raniere@moz-114FEE94.dsl.telesp.net.br) (Ping timeout)
  2850. # [21:27] * Quits: firebot (firebot@moz-F8C1AF63.carolina.res.rr.com) (Ping timeout)
  2851. # [21:27] <RyanVM|sheriffduty> why not
  2852. # [21:27] * Quits: chewey (chewey@moz-3C6BD21C.dip0.t-ipconnect.de) (Ping timeout)
  2853. # [21:27] * Quits: gaye (sid12943@moz-31ABA2C0.irccloud.com) (Ping timeout)
  2854. # [21:27] * Joins: gandalf (zbraniecki@D8593D97.C79BD004.36634901.IP)
  2855. # [21:27] * Quits: yvan (quassel@moz-EE24132A.members.linode.com) (Connection reset by peer)
  2856. # [21:27] * Joins: jst (quassel@CB36FB4D.BE63433B.EE6E63A5.IP)
  2857. # [21:27] * Joins: emerson (chatzilla@moz-3E0ABD32.hsd1.mi.comcast.net)
  2858. # [21:27] * Joins: liuche|pto (liuche@moz-DB4A9C19.scl3.mozilla.com)
  2859. # [21:27] * Joins: mcsmurf (chatzilla@moz-B3950324.dip0.t-ipconnect.de)
  2860. # [21:27] * Joins: past (sid15657@moz-31ABA2C0.irccloud.com)
  2861. # [21:28] * Quits: capella (chatzilla@moz-3A08EE5.twcny.res.rr.com) (Ping timeout)
  2862. # [21:28] * Joins: gaye|brb (sid12943@moz-31ABA2C0.irccloud.com)
  2863. # [21:28] * Joins: snorp (snorp@28435C98.1C2164C0.BFE160B4.IP)
  2864. # [21:28] * Joins: kdc (chatzilla@moz-A66E00D4.pk.shawcable.net)
  2865. # [21:28] * Joins: raniere (raniere@moz-114FEE94.dsl.telesp.net.br)
  2866. # [21:28] * jandem is now known as jandem-away
  2867. # [21:28] * Joins: chewey (chewey@moz-3C6BD21C.dip0.t-ipconnect.de)
  2868. # [21:28] * Joins: nemo (nemo@moz-57FDFA.hsd1.md.comcast.net)
  2869. # [21:28] * Joins: capella (chatzilla@moz-3A08EE5.twcny.res.rr.com)
  2870. # [21:29] * Joins: yvan (quassel@moz-EE24132A.members.linode.com)
  2871. # [21:29] * Joins: efaust (efaust@moz-8E7F06AB.hsd1.ca.comcast.net)
  2872. # [21:29] * Joins: funnel (hegel@DEB31F3E.28CFCE3E.FC69BED9.IP)
  2873. # [21:29] * mattwoodrow|away is now known as mattwoodrow
  2874. # [21:30] <@ehsan> Yoric: ping
  2875. # [21:30] * Joins: esawin (esawin@5BEC7083.F96E1D95.95550721.IP)
  2876. # [21:32] * Quits: Snuffleupagus (chatzilla@moz-7411B7A4.bredband.comhem.se) (Ping timeout)
  2877. # [21:32] * Quits: botond|laptop (chatzilla@FCCEA34F.7672369.D8E68FF6.IP) (Ping timeout)
  2878. # [21:32] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  2879. # [21:32] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  2880. # [21:33] * Quits: JosiahOne|Away (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net) (Ping timeout)
  2881. # [21:33] * Joins: Olipro (Olipro@moz-67368F33.catv.pool.telekom.hu)
  2882. # [21:33] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  2883. # [21:33] * RyanVM|sheriffduty is now known as RyanVM
  2884. # [21:33] * Quits: ehugg (chatzilla@DB992802.29102B70.6CD50604.IP) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0.1/20140212131424])
  2885. # [21:34] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  2886. # [21:34] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  2887. # [21:34] <bz_away> hrm
  2888. # [21:34] <bz_away> did the orange start with my push?
  2889. # [21:35] <bz_away> on inbound
  2890. # [21:35] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2891. # [21:35] <RyanVM> bz_away: yes, but it's intermittent
  2892. # [21:35] * bz_away is now known as bz
  2893. # [21:35] * bz sighs
  2894. # [21:35] <RyanVM> I clobbered and retriggered per #jsapi's advice
  2895. # [21:35] <bz> '
  2896. # [21:35] <bz> er, 'k
  2897. # [21:35] * Joins: mixedpuppy (mixedpuppy@A6CF435B.D1155E2C.CFC2A289.IP)
  2898. # [21:35] <RyanVM> there's just nothing that horribly stands out around that commit
  2899. # [21:36] <RyanVM> except maybe https://hg.mozilla.org/integration/mozilla-inbound/rev/b80f97b00d2f?
  2900. # [21:36] <RyanVM> terrence ^
  2901. # [21:36] * Quits: emerson (chatzilla@moz-3E0ABD32.hsd1.mi.comcast.net) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0.1/20140212131424])
  2902. # [21:37] * Quits: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net) (Quit: OSError: [Errno 130] Owner died)
  2903. # [21:37] <jesup> froydnj: ping
  2904. # [21:37] * Quits: mixedpuppy (mixedpuppy@A6CF435B.D1155E2C.CFC2A289.IP) (Quit: mixedpuppy)
  2905. # [21:38] * Quits: rbarnes_ (rbarnes@moz-104CC309.mv.mozilla.com) (Ping timeout)
  2906. # [21:39] * Quits: sumit4iit (Thunderbir@6BA7770.42F8B8BC.931D0F89.IP) (Quit: sumit4iit)
  2907. # [21:39] * Joins: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net)
  2908. # [21:39] * Quits: mikeperry (mikeperry@moz-7B83EACE.hfc.comcastbusiness.net) (Ping timeout)
  2909. # [21:41] * Quits: jviereck (Adium@moz-7859BAFE.dclient.hispeed.ch) (Quit: Leaving.)
  2910. # [21:42] * Joins: jduell (jduell@87C1F78E.1DE10CA8.D8E68FF6.IP)
  2911. # [21:42] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2912. # [21:43] * Joins: mikeperry (mikeperry@moz-7B83EACE.hfc.comcastbusiness.net)
  2913. # [21:43] * Joins: firebot (firebot@moz-F8C1AF63.carolina.res.rr.com)
  2914. # [21:43] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  2915. # [21:43] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  2916. # [21:44] <gaston> anyone knows if there's a way to debug extensions lookup in the various scopes besides resorting to printf-debugging ?
  2917. # [21:44] <gaston> i cant make systemwide extensions detected with autodisablescopes=3..
  2918. # [21:46] * Joins: mihneadb (mihneadb@moz-6B31F5AA.static.ziggozakelijk.nl)
  2919. # [21:46] * Joins: JosiahOne|Away (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net)
  2920. # [21:46] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  2921. # [21:46] * Quits: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: pcwalton)
  2922. # [21:46] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  2923. # [21:47] <RyanVM> margaret: fx-team orange
  2924. # [21:47] * Quits: josh (josh@moz-348C4790.hsd1.mn.comcast.net) (Quit: josh)
  2925. # [21:47] * hwine-food is now known as hwine
  2926. # [21:47] * Joins: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net)
  2927. # [21:47] * mattwoodrow is now known as mattwoodrow|away
  2928. # [21:47] * mattwoodrow|away is now known as mattwoodrow
  2929. # [21:47] * JosiahOne|Away is now known as JosiahOne
  2930. # [21:48] * Joins: josh (josh@moz-348C4790.hsd1.mn.comcast.net)
  2931. # [21:48] * Joins: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com)
  2932. # [21:48] <RyanVM> bz: just hit a windows instance prior to your push
  2933. # [21:49] * Quits: driia (dria@13F2CEC5.7672369.D8E68FF6.IP) (Quit: driia)
  2934. # [21:49] * gaye|brb is now known as gaye
  2935. # [21:49] <NeilAway> heh, I must have visited whicever site it is that logs the dino ascii art to the console
  2936. # [21:50] * Joins: botond|laptop (chatzilla@13F2CEC5.7672369.D8E68FF6.IP)
  2937. # [21:50] * Quits: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2938. # [21:51] <mcsmurf> so the Firefox Metro UI will be gone completely?
  2939. # [21:51] <mcsmurf> or just delayed?
  2940. # [21:51] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  2941. # [21:51] <RyanVM> mcsmurf: gone
  2942. # [21:51] <RyanVM> moved to a project branch
  2943. # [21:52] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  2944. # [21:52] * Joins: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com)
  2945. # [21:52] * jedp|lunch is now known as jedp
  2946. # [21:52] * Quits: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net) (Input/output error)
  2947. # [21:52] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  2948. # [21:52] <mcsmurf> k
  2949. # [21:53] <RyanVM> gw280: android crashes on your skia push to inbound
  2950. # [21:53] * Quits: josh (josh@moz-348C4790.hsd1.mn.comcast.net) (Quit: josh)
  2951. # [21:53] <mcsmurf> oh actually it says that..
  2952. # [21:54] <mcsmurf> forgot to read part part of the mail
  2953. # [21:54] <mcsmurf> 2nd
  2954. # [21:54] * Quits: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Ping timeout)
  2955. # [21:54] * Joins: cpeterso_ (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  2956. # [21:54] * KWierso is now known as KWierso|sheriffduty
  2957. # [21:56] * Joins: jviereck (Adium@moz-B0DD26CE.dynamic.hispeed.ch)
  2958. # [21:56] * Quits: cpeterso_ (cpeterson@moz-7122D214.hsd1.ca.comcast.net) (Ping timeout)
  2959. # [21:56] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  2960. # [21:57] * admix is now known as admix|away
  2961. # [21:58] * kats is now known as kats|pto
  2962. # [21:58] * gaye is now known as gaye|brb
  2963. # [21:59] <gaston> how does one enable logger XPIProvider.jsm ? i see LOGGER_ID is addons.xpi, but how can i enable debug on this logger in the console ?
  2964. # [21:59] * Quits: intuxicated (intuxicate@5BA9DB47.F2F0EDE4.DA0107E2.IP) (Quit: Leaving)
  2965. # [21:59] * Quits: gandalf (zbraniecki@D8593D97.C79BD004.36634901.IP) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  2966. # [22:01] * jmaher is now known as jmaher|afk
  2967. # [22:02] * Quits: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com) (Ping timeout)
  2968. # [22:02] * Quits: dashed (dashed@moz-84DD998B.cpe.net.cable.rogers.com) (Client exited)
  2969. # [22:04] * Quits: mccr8 (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net) (Quit: mccr8)
  2970. # [22:04] * Quits: therube_agone (chatzilla@moz-1308AA8D.bltmmd.east.verizon.net) (Ping timeout)
  2971. # [22:04] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/a582eefb45b2 - Wes Kocher - Backed out 2 changesets (bug 716766) for Android crashes on a CLOSED TREE
  2972. # [22:05] * Quits: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2973. # [22:05] * Joins: jrmuizel (jrmuizel@C492F63A.8F86291A.971E19F6.IP)
  2974. # [22:05] * Quits: soumyaC (uid15286@moz-E77DEB21.irccloud.com) (Quit: Connection closed for inactivity)
  2975. # [22:05] <KWierso|sheriffduty> gw280: ^
  2976. # [22:06] * Quits: harth (harth@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  2977. # [22:07] * hwine is now known as hwine|afk
  2978. # [22:07] * Joins: mccr8 (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net)
  2979. # [22:07] * Quits: davidb (davidb@moz-E4E805A9.dsl.bell.ca) (Quit: Blah blah blah)
  2980. # [22:08] * Quits: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  2981. # [22:08] * Joins: harth (harth@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2982. # [22:09] * Quits: tn (tim@moz-E7CE1D28.wp.shawcable.net) (Quit: tn)
  2983. # [22:09] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Quit: )
  2984. # [22:09] * Joins: tn (tim@moz-E7CE1D28.wp.shawcable.net)
  2985. # [22:11] * Quits: myk (myk@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  2986. # [22:12] * Joins: jammink (textual@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2987. # [22:12] * Joins: jammink_ (textual@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2988. # [22:13] * Joins: luke (luke@moz-7CF84B28.dhcp.ftwo.tx.charter.com)
  2989. # [22:13] * shu is now known as drchuckles_phd
  2990. # [22:14] * Joins: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com)
  2991. # [22:14] * Quits: drchuckles_phd (sguo@moz-DB4A9C19.scl3.mozilla.com) (Quit: [1] segmentation fault (core dumped))
  2992. # [22:14] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/f8a9b4867802 - Wes Kocher - Backed out changeset 4ce831d82c1f (bug 898647) for gaia-ui bustage on an already CLOSED TREE
  2993. # [22:15] * Quits: jammink (textual@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Textual IRC Client: http://www.textualapp.com/)
  2994. # [22:15] * Quits: jammink_ (textual@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Textual IRC Client: http://www.textualapp.com/)
  2995. # [22:15] * Joins: jammink (textual@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2996. # [22:15] * Quits: mcsmurf (chatzilla@moz-B3950324.dip0.t-ipconnect.de) (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.24/20140203230027])
  2997. # [22:15] * Joins: jammink_ (textual@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2998. # [22:15] * Joins: shu (sguo@moz-DB4A9C19.scl3.mozilla.com)
  2999. # [22:15] * fabrice is now known as fabrice|afk
  3000. # [22:16] * Quits: jduell (jduell@87C1F78E.1DE10CA8.D8E68FF6.IP) (Connection reset by peer)
  3001. # [22:16] * curtisk|afk is now known as curtisk
  3002. # [22:16] * Joins: myk (myk@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3003. # [22:16] * Joins: mixedpuppy (mixedpuppy@A6CF435B.D1155E2C.CFC2A289.IP)
  3004. # [22:17] * Quits: drno (nohlmeier@moz-CCCF7F86.hsd1.ca.comcast.net) (Quit: drno)
  3005. # [22:18] * Quits: jchaulk (jchaulk-20@moz-A5DF7EB9.dsl.teksavvy.com) (Ping timeout)
  3006. # [22:18] * Joins: jchaulk (jchaulk-20@moz-C8E7717B.dsl.teksavvy.com)
  3007. # [22:18] * Quits: mixedpuppy (mixedpuppy@A6CF435B.D1155E2C.CFC2A289.IP) (Quit: mixedpuppy)
  3008. # [22:18] * philor|away is now known as philor
  3009. # [22:18] <rstrong> gaston: the extensions.logging.enabled pref set to true?
  3010. # [22:18] * Quits: jgilbert (jgilbert@4CA90EB8.C8079272.284344F5.IP) (Ping timeout)
  3011. # [22:19] * Quits: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net) (Quit: [self dealloc])
  3012. # [22:19] <gaston> aha!
  3013. # [22:20] <gaston> meh, so it still doesnt go look into system dirs for extensions
  3014. # [22:20] <gaston> *** LOG addons.xpi: checkForChanges
  3015. # [22:20] <gaston> *** LOG addons.xpi: No changes found
  3016. # [22:20] * Quits: jchaulk (jchaulk-20@moz-C8E7717B.dsl.teksavvy.com) (Ping timeout)
  3017. # [22:20] * Joins: cpeterson (cpeterson@moz-7122D214.hsd1.ca.comcast.net)
  3018. # [22:20] * Joins: jchaulk (jchaulk-20@moz-3010CD68.dsl.teksavvy.com)
  3019. # [22:20] <gaston> strange thing is that i see it trying to access "/usr/local/lib/mozilla/extensions/{3550f703-e582-4d05-9a08-453d09bdfdc6}" (which seems to be a blocklisted ext) but doesnt try to find extensions in that systemwide dir..
  3020. # [22:21] <rstrong> gaston: try unrestricting the locations to see if it is logged
  3021. # [22:21] * Joins: jduell (jduell@87C1F78E.1DE10CA8.D8E68FF6.IP)
  3022. # [22:21] <gaston> i have autodisablescopes=0 and enabledscopes=15
  3023. # [22:21] * Joins: victorporof_ (victorporo@13F2CEC5.7672369.D8E68FF6.IP)
  3024. # [22:21] * Joins: maxli1 (Adium@moz-B19F68ED.student.cs.uwaterloo.ca)
  3025. # [22:21] <@bsmedberg> do DOM workers have a synchronous postmessage nowadays?
  3026. # [22:21] * Quits: maxli (Adium@moz-F47DD19B.student.cs.uwaterloo.ca) (Ping timeout)
  3027. # [22:21] * Quits: victorporof (victorporo@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  3028. # [22:22] * mattwoodrow is now known as mattwoodrow|away
  3029. # [22:22] <gaston> i also see tb trying to access ~/.mozilla/extensions/{3550f703-e582-4d05-9a08-453d09bdfdc6}
  3030. # [22:22] * gaye|brb is now known as gaye
  3031. # [22:22] <gaston> so it looks for that blacklisted uuid in all the dirs, but wont scan the same dirs for new addons
  3032. # [22:22] <@khuey> bsmedberg: no
  3033. # [22:23] <rstrong> gaston: the default value of autodisablescopes is 15 and not 0. enabledscopes is not present by default. Try it with that
  3034. # [22:23] <gaston> i dont want to have disabled scopes
  3035. # [22:24] <gaston> since what i'm trying to achieve is TB to automatically find and enable extensions in the systemwide folder...
  3036. # [22:24] <gaston> sysSExtDir is correctly /usr/local/lib/mozilla/extensions in nsXREDirProvider.cpp...
  3037. # [22:25] <jesup> RyanVM: I have jib's patches for RTCP logging (checkin-needed) staged to land, FYI. Also the Aurora uplift for DataChannels (waiting until it merges to central)
  3038. # [22:25] * Quits: grobinson (~grobinson@moz-731932CD.hsd1.ca.comcast.net) (Ping timeout)
  3039. # [22:25] <philor> KWierso|sheriffduty: looks like as things settle down there's going to be b2g webgl bustage too, unless it turns out to be slave-related instead of code-
  3040. # [22:25] <gaston> it works for plugins, why wouldnt it work for extensions...
  3041. # [22:25] <KWierso|sheriffduty> philor: yeah
  3042. # [22:26] * Quits: myk (myk@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  3043. # [22:26] <philor> KWierso|sheriffduty: oh, starting from https://bugzilla.mozilla.org/show_bug.cgi?id=981856
  3044. # [22:26] <rstrong> gaston: that includes the vendor property and Thunderbird doesnt define the vendor property (e.g. mozilla). I wouldn't be surprised if that was part of the problem.
  3045. # [22:26] <philor> jrmuizel: did you maybe need to adjust the expectations of some tests for that?
  3046. # [22:26] <gaston> huh? you mean itd work for say, ffx and not tb/sm ?
  3047. # [22:27] * Joins: znickell (Thunderbir@moz-A2E993EF.dhcp.ftwo.tx.charter.com)
  3048. # [22:27] <jrmuizel> philor: I wasn't expecting changes
  3049. # [22:28] * Joins: myk (myk@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3050. # [22:28] <philor> jrmuizel: you got 'em, https://tbpl.mozilla.org/php/getParsedLog.php?id=36161696&tree=Mozilla-Inbound on opt, https://tbpl.mozilla.org/php/getParsedLog.php?id=36161517&tree=Mozilla-Inbound on debug
  3051. # [22:28] * Joins: bdahl (bdahl@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3052. # [22:28] <rstrong> gaston: I think seamonkey defines the vendor property. This is a hold over from way back and is a pita for Thunderbird to fix... they haven't bit the bullet and fixed it.
  3053. # [22:29] * Quits: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com) (Ping timeout)
  3054. # [22:29] <gaston> rstrong: so that means its impossible to make it work properly in tb ?
  3055. # [22:29] <rstrong> gaston: I have no idea if there is a workaround for Thunderbird. I have had to add code to handle this case for updates specifically because Thunderbird doesn't define it.
  3056. # [22:29] * Joins: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net)
  3057. # [22:29] <jrmuizel> philor: well that's fun
  3058. # [22:29] <rstrong> Also, I have no idea if that specific code doesn't already handle it for Thunderbird.
  3059. # [22:29] * Joins: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com)
  3060. # [22:30] * Quits: msucan (mihai@C3471151.67166AE0.C0E37CF3.IP) (Quit: Leaving.)
  3061. # [22:30] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  3062. # [22:30] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  3063. # [22:31] <gaston> rstrong: then how come tb tries to access /usr/local/lib/mozilla/extensions/{3550f703-e582-4d05-9a08-453d09bdfdc6} ?
  3064. # [22:31] * Quits: jackneill (jackneill@moz-5AD26CED.pool.digikabel.hu) (Ping timeout)
  3065. # [22:32] * Joins: dzbarsky (Adium@moz-FE398F45.hsd1.co.comcast.net)
  3066. # [22:32] <gaston> seamonkey fails the same way to detect enigmail in the systemwide dir
  3067. # [22:32] <gaston> so something else is fishy
  3068. # [22:32] <rstrong> gaston: like I said, "I have no idea if that specific code doesn't already handle it for Thunderbird." If it accesses it there is probably something already in place to handle it. If it accesses it though, why wouldn't is load it.
  3069. # [22:32] * Quits: Boriss (Boriss@moz-1864B12F.public.monkeybrains.net) (Quit: Boriss)
  3070. # [22:32] <rstrong> does it load it from the profile's extension directory?
  3071. # [22:33] <gaston> it accesses a strange uuid, not the one of the extension present in that dir
  3072. # [22:33] <jrmuizel> philor: I'll fix the tests
  3073. # [22:33] <gaston> /usr/local/lib/mozilla/extensions/{847b3a00-7ab1-11d4-8f02-006008948af5}/ is enigmail, and there's no {3550f703-e582-4d05-9a08-453d09bdfdc6}
  3074. # [22:33] <rstrong> gaston: where are you placing the extension? The exact path
  3075. # [22:33] * Joins: ehugg (ehugg@moz-D362FF27.cisco.com)
  3076. # [22:34] <gaston> the ext is at /usr/local/lib/mozilla/extensions/{847b3a00-7ab1-11d4-8f02-006008948af5}/install.rdf
  3077. # [22:34] <rstrong> gaston: {3550f703-e582-4d05-9a08-453d09bdfdc6} is the app id for thunderbird. Place the extension in a subdirectory with the name {3550f703-e582-4d05-9a08-453d09bdfdc6}
  3078. # [22:34] * Quits: Archaeopteryx (itsme@moz-97233A6.cust.telecolumbus.net) (Quit: Goodbye)
  3079. # [22:34] <rstrong> I *think* that's what is going on
  3080. # [22:34] <gaston> you mean it'd try to look in a subdir of the systemwide ext dir ??
  3081. # [22:35] * Quits: MrMazda (fmcz@moz-EFF8C062.cable.mindspring.com) (Quit: ChatZilla 0.9.86.1 [SeaMonkey 1.1.18/2009082712])
  3082. # [22:35] <rstrong> gaston: I believe it is systemwide and per app
  3083. # [22:35] <gaston> /usr/lib/<vendor>/extensions/<appid>/
  3084. # [22:35] <gaston> DOH
  3085. # [22:35] <rstrong> not systemwide and all apps
  3086. # [22:35] <gaston> indeed
  3087. # [22:36] * hwine|afk is now known as hwine
  3088. # [22:36] <gaston> wow. and i had this in front of me all the time...
  3089. # [22:36] * Quits: RealRaven (Thunderbir@3C20A9D4.8D6F0354.27F80FAC.IP) (Quit: RealRaven)
  3090. # [22:37] * Joins: RealRaven (Thunderbir@3C20A9D4.8D6F0354.27F80FAC.IP)
  3091. # [22:37] <gaston> *** LOG addons.xpi: New add-on {847b3a00-7ab1-11d4-8f02-006008948af5} installed in app-system-local
  3092. # [22:37] <gaston> rstrong: many thanks :)
  3093. # [22:37] <rstrong> np
  3094. # [22:37] <rstrong> glad I could help
  3095. # [22:38] * Joins: Mic (Instantbir@moz-5ADCBC51.superkabel.de)
  3096. # [22:38] * Quits: Mic (Instantbir@moz-5ADCBC51.superkabel.de) (Input/output error)
  3097. # [22:38] * RyanVM is now known as RyanVM|afk
  3098. # [22:39] * Joins: Archaeopteryx (itsme@moz-97233A6.cust.telecolumbus.net)
  3099. # [22:39] * bz is now known as bz_dinner
  3100. # [22:39] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/46d18be48bc4 - Jeff Muizelaar - Bug 981856. Mark some B2G WebGL tests as succeeding.
  3101. # [22:40] * Joins: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net)
  3102. # [22:40] * Quits: jwei (jwei@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Leaving.)
  3103. # [22:40] * Joins: Mic (Instantbir@moz-5ADCBC51.superkabel.de)
  3104. # [22:40] <jrmuizel> philor: hopefully that makes things better
  3105. # [22:41] * Quits: znickell (Thunderbir@moz-A2E993EF.dhcp.ftwo.tx.charter.com) (Quit: znickell)
  3106. # [22:41] * Mic is now known as IRCMonkey8545
  3107. # [22:42] * Quits: rogeliodh (Thunderbir@D3A15E94.176BD373.D67CC001.IP) (Quit: rogeliodh)
  3108. # [22:42] * Quits: IRCMonkey8545 (Instantbir@moz-5ADCBC51.superkabel.de) (Input/output error)
  3109. # [22:42] <gaston> rstrong: that just works perfectly now, both for tb & seamonkey, so thanks again!
  3110. # [22:43] * retornam|away is now known as retornam
  3111. # [22:44] * curtisk is now known as curtisk|afk
  3112. # [22:44] <gw280> huh
  3113. # [22:45] * Quits: jedp (jedp@moz-3AA8030E.dsl.dynamic.sonic.net) (Connection reset by peer)
  3114. # [22:46] * Quits: lgarner (lgarner@2D337F52.2D31AF7B.5AEB50C4.IP) (Ping timeout)
  3115. # [22:46] * mcote is now known as mcote|afk
  3116. # [22:46] <gw280> KWierso|sheriffduty: I don't think my patches caused that reftest crash
  3117. # [22:46] <gw280> KWierso|sheriffduty: this is the try run of those same patches; https://tbpl.mozilla.org/?tree=Try&rev=c914b7631fbb
  3118. # [22:47] * philor is now known as philor|away
  3119. # [22:47] * Joins: Mic (Instantbir@moz-5ADCBC51.superkabel.de)
  3120. # [22:48] <jesup> glandium: ping
  3121. # [22:48] * Quits: RealRaven (Thunderbir@3C20A9D4.8D6F0354.27F80FAC.IP) (Quit: RealRaven)
  3122. # [22:48] <KWierso|sheriffduty> gw280: feel free to reland after the tree reopens
  3123. # [22:48] <gw280> KWierso|sheriffduty: ok
  3124. # [22:48] * Joins: RealRaven (Thunderbir@3C20A9D4.8D6F0354.27F80FAC.IP)
  3125. # [22:48] <gw280> I'm also looking at the stacktrace from the log and it doesn't appear to be related
  3126. # [22:48] * Quits: Mic (Instantbir@moz-5ADCBC51.superkabel.de) (Input/output error)
  3127. # [22:49] * Quits: mccr8 (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net) (Quit: mccr8)
  3128. # [22:50] * Quits: rstrong (rstrong@moz-217F02CE.lightspeed.sntcca.sbcglobal.net) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 1.8.0.9/2006120508])
  3129. # [22:50] * BenWa is now known as BenWa|email
  3130. # [22:50] * BenWa|email is now known as BenWa
  3131. # [22:50] * catlee is now known as catlee-away
  3132. # [22:52] * Quits: lizzard (ehenry@moz-5A4BE8E8.dsl.static.sonic.net) (Quit: lizzard)
  3133. # [22:52] * whimboo is now known as whimboo|afk
  3134. # [22:52] * Joins: Waldo (waldo@moz-9754CB0.hsd1.ca.comcast.net)
  3135. # [22:52] * Quits: sawrubh (uid6719@moz-5F4AA75A.irccloud.com) (Quit: Connection closed for inactivity)
  3136. # [22:53] * Quits: @dbaron (dbaron@6E6C815B.27376607.189F3E15.IP) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  3137. # [22:54] * Quits: RealRaven (Thunderbir@3C20A9D4.8D6F0354.27F80FAC.IP) (Client exited)
  3138. # [22:54] * Joins: RealRaven (Thunderbir@3C20A9D4.8D6F0354.27F80FAC.IP)
  3139. # [22:57] * Quits: gcp (gpascutto@moz-9CEB1C98.access.telenet.be) (Quit: Make a new plan, Stan!)
  3140. # [22:57] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/07dc951bcff5 - Jeff Walden - Bug 983344. r=sfink
  3141. # [22:59] * Joins: jedp (jedp@moz-3AA8030E.dsl.dynamic.sonic.net)
  3142. # [22:59] * Joins: mixedpuppy (mixedpuppy@A6CF435B.D1155E2C.CFC2A289.IP)
  3143. # [23:02] * Joins: Boriss (Boriss@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  3144. # [23:02] * Quits: gandalf (zbraniecki@moz-912D7A86.hsd1.ca.comcast.net) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  3145. # [23:03] * Quits: Bas (chatzilla@moz-EC262A19.ftth.concepts.nl) (Quit: ChatZilla 0.9.90.1 [Firefox 27.0.1/20140212131424])
  3146. # [23:03] * Quits: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net) (Ping timeout)
  3147. # [23:04] * Joins: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net)
  3148. # [23:05] * Joins: Bas (chatzilla@moz-EC262A19.ftth.concepts.nl)
  3149. # [23:06] * Joins: mccr8 (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net)
  3150. # [23:06] * philor|away is now known as philor
  3151. # [23:10] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  3152. # [23:10] * baku is now known as baku|away
  3153. # [23:12] * Quits: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com) (Ping timeout)
  3154. # [23:13] * Joins: vikstrous1 (v@13F2CEC5.7672369.D8E68FF6.IP)
  3155. # [23:13] * Quits: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net) (Ping timeout)
  3156. # [23:13] * Quits: vikstrous (v@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  3157. # [23:14] * Quits: jrmuizel (jrmuizel@C492F63A.8F86291A.971E19F6.IP) (Client exited)
  3158. # [23:14] * Joins: jrmuizel (jrmuizel@C492F63A.8F86291A.971E19F6.IP)
  3159. # [23:16] <KWierso|sheriffduty> philor: are the green OSX retriggers on https://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=9bd9dcf4de29 good enough to reopen?
  3160. # [23:16] * Quits: jrmuizel (jrmuizel@C492F63A.8F86291A.971E19F6.IP) (Ping timeout)
  3161. # [23:16] * Quits: tedders1 (tedders1@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  3162. # [23:17] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  3163. # [23:17] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  3164. # [23:17] * Joins: tedders1 (tedders1@13F2CEC5.7672369.D8E68FF6.IP)
  3165. # [23:19] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  3166. # [23:19] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  3167. # [23:19] * Joins: MrMazda (fmcz@moz-EFF8C062.cable.mindspring.com)
  3168. # [23:21] * Quits: ahal (ahal@moz-7DE89BF0.cable.teksavvy.com) (Ping timeout)
  3169. # [23:21] * Joins: Neil (neil@6D2BACAB.B24D42B2.B6DDF205.IP)
  3170. # [23:21] * Quits: NeilAway (neil@moz-32AA0D01.in-addr.btopenworld.com) (Ping timeout)
  3171. # [23:22] * Neil is now known as NeilAway
  3172. # [23:22] <philor> KWierso|sheriffduty: you mean after you find and back out the non-unified bustage?
  3173. # [23:22] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  3174. # [23:22] * Joins: mccr8_ (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net)
  3175. # [23:22] * Quits: mccr8_ (mccr8@moz-48A4B8F7.dsl.dynamic.sonic.net) (Quit: mccr8_)
  3176. # [23:22] <philor> OnlyReportDirtyWrites
  3177. # [23:22] <philor> someone is a naughty naughty boy
  3178. # [23:23] <philor> would the someone be aklotz?
  3179. # [23:23] * mattwoodrow|away is now known as mattwoodrow
  3180. # [23:24] * Quits: robertbindar (Thunderbir@moz-F317F7CE.eregie.pub.ro) (Ping timeout)
  3181. # [23:24] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  3182. # [23:25] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  3183. # [23:25] * Quits: jhorak (jhorak@moz-2EE9C9C3.cust.nbox.cz) (Ping timeout)
  3184. # [23:25] * Joins: ekr (ekr@moz-FAC44BDF.hfc.comcastbusiness.net)
  3185. # [23:25] <philor> indeed it would
  3186. # [23:25] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Client exited)
  3187. # [23:25] * bbondy2 is now known as bbondy
  3188. # [23:26] <aklotz> philor: What's going on?
  3189. # [23:26] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  3190. # [23:26] <philor> aklotz: https://hg.mozilla.org/integration/mozilla-inbound/diff/2bdd2d042847/xpcom/build/nsXPComInit.cpp
  3191. # [23:26] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  3192. # [23:27] <philor> took out the include that made https://hg.mozilla.org/integration/mozilla-inbound/diff/2bdd2d042847/xpcom/build/nsXPComInit.cpp#l1.37 work in non-unified builds
  3193. # [23:27] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  3194. # [23:28] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  3195. # [23:28] * Joins: bwc (Adium@moz-536549A9.dsl.static.sonic.net)
  3196. # [23:29] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/401e4ec82734 - Wes Kocher - Backed out changeset 2bdd2d042847 (bug 972577) for non-unified bustage on a CLOSED TREE
  3197. # [23:29] <glandium> jesup: pong
  3198. # [23:30] <jesup> glandium: Who's the maintainer for the Ubuntu FF build?
  3199. # [23:30] <Ms2ger> taras, fwiw, lack of persona is what made me not bother with askmo for now
  3200. # [23:30] <jesup> I figured you might know
  3201. # [23:30] <Ms2ger> jesup, chriscoulson?
  3202. # [23:30] <glandium> Ms2ger: he's not involved anymore
  3203. # [23:30] <glandium> jesup: iirc, there's really noone these days
  3204. # [23:30] <Ms2ger> Oh, good to know
  3205. # [23:31] <glandium> jesup: but chris coulson is the right person to ask
  3206. # [23:32] * Quits: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net) (Input/output error)
  3207. # [23:32] <jesup> glandium: Aha. we're having "issues" on Ubuntu. And https://bugs.launchpad.net/ubuntu/+source/alsa-lib/+bug/1008600 makes me so, so sad. (Still not in 13.10)
  3208. # [23:32] * Joins: rbarnes (rbarnes@moz-E6B6B4B6.washdc.fios.verizon.net)
  3209. # [23:33] * Quits: vikstrous1 (v@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  3210. # [23:33] * Quits: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net) (Quit: jib)
  3211. # [23:33] <philor> KWierso|sheriffduty: but yeah, other than that I think we've beaten some morale back into them by now
  3212. # [23:34] <glandium> jesup: so, it sounds like an alsa problem, not an ubuntu problem, as in, you're likely to hit this problem on any distro, except if it comes from an ubuntu patch
  3213. # [23:34] <KWierso|sheriffduty> gw280: reopened, beat the push race :P
  3214. # [23:34] <glandium> jesup: which means it's hard to rely on it being fixed ; iow, better to find a workaround
  3215. # [23:35] <jesup> glandium: I think it's an OLD alsa. And I haven't seen this on any other distro (modulo we avoid one known bug in that code)
  3216. # [23:35] * Joins: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net)
  3217. # [23:36] <glandium> jesup: debian has the same version of alsa
  3218. # [23:36] <jesup> :-(
  3219. # [23:36] * Quits: Ms2ger (Ms2ger@moz-5180E188.adsl-dyn.isp.belgacom.be) (Quit: nn)
  3220. # [23:37] * Quits: jviereck (Adium@moz-B0DD26CE.dynamic.hispeed.ch) (Quit: Leaving.)
  3221. # [23:37] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/c8641d02a06d - Aaron Klotz - Bug 972577: Consolidate IOInterposer initialization code; r=froydnj,BenWa,jimm
  3222. # [23:37] <gw280> KWierso|sheriffduty: heh
  3223. # [23:38] <glandium> jesup: and according to the upstream site, it's the latest
  3224. # [23:38] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  3225. # [23:38] <jesup> Hmmm
  3226. # [23:38] <gw280> KWierso|sheriffduty: so I re-ran the failing Rs and one crashed in a different place, and the other succeeded three times
  3227. # [23:38] <@gavin> rnewman: will you have a chance to get to https://bugzilla.mozilla.org/show_bug.cgi?id=970167 today?
  3228. # [23:39] <jesup> glandium: I have to run for a bit. I'll check in later.
  3229. # [23:39] <@gavin> markh: https://bugzilla.mozilla.org/show_bug.cgi?id=976836
  3230. # [23:39] <jesup> glandium: thanks for the info. I wonder if they re-introduced a bug; there was an old bug like this IIRC in the hint code
  3231. # [23:39] <jesup> afk
  3232. # [23:39] <gw280> KWierso|sheriffduty: I'm going to wait for snorp to weigh in on the bug before I reland I think
  3233. # [23:44] * Quits: jimm (jmathies@moz-DF439B90.pn.at.cox.net) (Quit: )
  3234. # [23:45] * Joins: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net)
  3235. # [23:46] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  3236. # [23:46] * Joins: yzen (yzen@moz-A36A7FD4.cpe.pppoe.ca)
  3237. # [23:47] * Quits: gmoro (guilherme@7FADD5F8.12B7AC2C.B53A5734.IP) (Client exited)
  3238. # [23:48] * Callek|Buildduty is now known as Callek
  3239. # [23:48] * Joins: znickell (Thunderbir@moz-A2E993EF.dhcp.ftwo.tx.charter.com)
  3240. # [23:49] * Joins: bwc1 (Adium@moz-536549A9.dsl.static.sonic.net)
  3241. # [23:50] * mattwoodrow is now known as mattwoodrow|away
  3242. # [23:50] * Quits: bwc (Adium@moz-536549A9.dsl.static.sonic.net) (Ping timeout)
  3243. # [23:51] * Quits: haseeb (uid13814@moz-E77DEB21.irccloud.com) (Quit: Connection closed for inactivity)
  3244. # [23:51] * Joins: yeukhon (yeukhon@moz-66888F61.cable.mindspring.com)
  3245. # [23:53] * Joins: Snuffleupagus (chatzilla@moz-7411B7A4.bredband.comhem.se)
  3246. # [23:53] * Joins: michal (michal@moz-FC0222DC.w90-24.abo.wanadoo.fr)
  3247. # [23:53] * Quits: jib (Jan-Ivar@moz-772521AF.hsd1.pa.comcast.net) (Quit: jib)
  3248. # [23:55] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  3249. # [23:55] * Joins: brendan (brendaneic@moz-F75AEEB2.public.wayport.net)
  3250. # [23:55] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  3251. # [23:56] * fabrice|afk is now known as fabrice
  3252. # [23:58] <glandium> so, we're pulling the plug on metro because there aren't many users of it... otoh, didn't we say that we had too few "normal" users on beta?
  3253. # [23:58] * Quits: JosiahOne (Instantbir@moz-A7D27D76.lightspeed.livnmi.sbcglobal.net) (Quit: dealloc)
  3254. # [23:58] <rnewman> gavin: yeah, I'll get to it right after I make coffee
  3255. # [23:59] <rnewman> sorry, today turned into Meeting Day
  3256. # Session Close: Sat Mar 15 00:00:00 2014

The end :)