/irc-logs / mozilla / #developers / 2014-08-13 / end

Options:

  1. # Session Start: Wed Aug 13 00:00:00 2014
  2. # Session Ident: #developers
  3. # [00:00] * Quits: tH (Rob@cpc4-seac20-2-0-cust858.7-2.cable.virginm.net) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  4. # [00:00] * Quits: ohsix (ohsix@A2D7F518.A2E0D0A6.F944C6CB.IP) (Ping timeout)
  5. # [00:00] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/84bcc8dd4531 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  6. # [00:00] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/95f2da32927e - B2G Bumper Bot - Bumping manifests a=b2g-bump
  7. # [00:00] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/060e0b2acfbd - Chris Pearce - Bug 1050064 - Reconfigure WMFAACDecoder on stream change. r=padenot
  8. # [00:01] <seth> Waldo: so VS2010 appears to (wrongly) eagerly instantiate certain methods of template classes even if they are never used. in particular it does this with the copy constructor and assignment operator
  9. # [00:01] <Waldo> entertaining
  10. # [00:01] <Waldo> seth: prune functionality as necessary to make "enough" work, say I
  11. # [00:02] <seth> Waldo: this is kinda problematic for supporting uncopyable types in Maybe =\
  12. # [00:02] <seth> Waldo: i'd prefer not to prune the copy constructor and assignment operator =)
  13. # [00:02] * Joins: pnkfelix (pnkfelix@moz-43495417.fbx.proxad.net)
  14. # [00:02] * Joins: asobolev (asobolev@moz-62518563.mtv2.mozilla.com)
  15. # [00:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/70b5978c6fb6 - Harshit Harchani - Bug 927946 - Add all APZC preferences to all.js. r=botond
  16. # [00:02] <seth> Waldo: actually though, there's a hack that makes it work, it just kinda sucks
  17. # [00:03] <Waldo> I have a Level 5 in Nose Holding, so
  18. # [00:03] <dholbert> sanity-check: is this exploitable? "Foo* myFoo = someTArrayOfFoos[-1]; *myFoo = dataFromTheWeb;"
  19. # [00:03] <dholbert> I'm pretty sure it is, but I'm not 100% sure that we can get past someTArrayOfFoos[-1] without crashing
  20. # [00:03] * Joins: gandalf (zbraniecki@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  21. # [00:03] <seth> Waldo: nah, wait. actually maybe a semi-reasonable thing can be done here. see, what works is to call another templatized member function to do the actual work
  22. # [00:03] * Quits: tomer (tomer@moz-C41B384C.static.012.net.il) (Quit: Leaving.)
  23. # [00:04] * Quits: lduros (user@moz-A888D5F1.phlapa.fios.verizon.net) (Client exited)
  24. # [00:04] <seth> Waldo: so if i create a new template method that actually invokes the copy constructor, AFAICT that won't be instantiated until it's used
  25. # [00:04] <dholbert> (in the bug I'm looking at, we do crash there)
  26. # [00:05] <seth> Waldo: (though i'm not totally sure this will work.. it seems like if you instantiate a method you must also instantiate its dependencies, but i seem to be getting away with calling the copy constructor via emplace() in the Maybe's copy constructor)
  27. # [00:05] * Quits: elbeardmorez (quassel@moz-7157D0DD.skybroadband.com) (Ping timeout)
  28. # [00:05] * baku is now known as baku|away
  29. # [00:05] <seth> Waldo: i will try that at least though and see if it makes VS happy. its behavior is so strange that i don't really know what to expect it to do
  30. # [00:06] * Quits: @ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  31. # [00:07] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  32. # [00:07] * Quits: stefanh|away (stefanh@moz-3EED0162.customers.ownit.se) (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.26.1/20140612182257])
  33. # [00:08] * Quits: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  34. # [00:10] <chadd> dholbert: an [-1] array index, generally speaking, does not guarantee a crash.
  35. # [00:10] <dholbert> chadd, ok, that's what I suspected
  36. # [00:10] <dholbert> chadd, though it will crash if that memory is not mapped, correct?
  37. # [00:11] <nemo> huh. I wonder why FF performed so poorly
  38. # [00:11] <nemo> http://www.anandtech.com/print/8327/browser-faceoff-battery-life-explored-2014
  39. # [00:11] <dholbert> e.g. if the array's buffer is at the start of a page
  40. # [00:11] <nemo> (in their final analysis)
  41. # [00:11] <chadd> dholbert: yes, if the memory is not mapped it should crash
  42. # [00:11] * Joins: dagnir (dagnir@A1D3E7F1.DBF4469E.7E8D5209.IP)
  43. # [00:11] <dmajor> dholbert: isn't there a header before TArray elements?
  44. # [00:11] * heycam|away is now known as heycam
  45. # [00:11] <dholbert> chadd, thanks
  46. # [00:11] <Waldo> dholbert: that looks exploitable to me
  47. # [00:11] * Joins: MarcoZ (marco.zehe@8F761026.B5EF4AF6.E96CA9D8.IP)
  48. # [00:12] <Waldo> dholbert: [-1] will call ElementAt() which will return the pointer to the start of data
  49. # [00:12] <Waldo> dholbert: -1 will shift backward one, which happens to go into the Header structure
  50. # [00:12] <dholbert> dmajor, I'm not sure if there's one built into the buffer
  51. # [00:12] <nemo> new domain?
  52. # [00:12] <nemo> arewegreenyet.com
  53. # [00:12] <dholbert> dmajor, (ah, what Waldo said)
  54. # [00:13] <nemo> arewepowerhungrystill.com
  55. # [00:13] <Waldo> dholbert: which contains |uint32_t mLength; uint32_t mCapacity : 1; uint32_t mIsAutoArray : 1;|
  56. # [00:13] <nemo> hmmm
  57. # [00:13] * nemo checks to see if one of those already exists
  58. # [00:13] <dmajor> arewestillsearchingforchang.es
  59. # [00:13] <Waldo> dholbert: pretty sure you can't know anything about the contents of the hole between mLength and the bits, so exploitable
  60. # [00:13] * Quits: jviereck03 (Adium@moz-7859BAFE.dclient.hispeed.ch) (Ping timeout)
  61. # [00:14] <nemo> dmajor: see. that sorta thing only works for me w/ obscure country codes. I know .es too well, so it just looks weird
  62. # [00:14] <nemo> I wonder if the test was repeated to avoid confounding factors. Like windows background services.
  63. # [00:15] * Joins: clokep (Instantbir@moz-1484204D.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com)
  64. # [00:15] <nemo> eh. that seems an unlikely explanation
  65. # [00:15] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/0eb39f31b0fd - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  66. # [00:15] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/dd06402ee662 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  67. # [00:15] <dholbert> Waldo, do you know offhand why myTArray[-1] might crash on its own, then? It seems like this would just be casting the Header structure (or possibly something in the hole between the header & the data) to Foo*, and dereferencing it. Which in and of itself shouldn't crash, though the resulting Foo will be bogus
  68. # [00:16] <mattwoodrow> dholbert: if sizeof(T) is bigger than the header structure, then it’ll deref something before the header, right?
  69. # [00:16] <dholbert> mattwoodrow, oh, right
  70. # [00:16] <Waldo> mattwoodrow: T is required to be < 8 bytes by static_assert, so that shouldn't be an issue
  71. # [00:16] <dholbert> mattwoodrow, I was thinking in word units
  72. # [00:17] <Waldo> dholbert: if the array is empty, you'd be indexing one behind the static zero-elements header, which could involve indexing into unmapped addresses, although it's a stretch
  73. # [00:17] <Waldo> er
  74. # [00:17] <Waldo> wait, no
  75. # [00:17] <mattwoodrow> Waldo: Where is that?
  76. # [00:17] <Waldo> you'd still be indexing into nsTArrayHeader::sEmptyHdr
  77. # [00:18] <dholbert> Waldo, why would T have to be < 8 bytes?
  78. # [00:18] <dholbert> Waldo, say this is a nsTArray<BigStruct>
  79. # [00:18] <nemo> hmmmmmm
  80. # [00:18] <nemo> https://bugzilla.mozilla.org/show_bug.cgi?id=925629
  81. # [00:18] * lmandel is now known as lmandel_afk
  82. # [00:18] * coop|buildduty is now known as coop|afk
  83. # [00:18] <mattwoodrow> I only see a static_assert for alignment
  84. # [00:18] * Joins: jviereck03 (Adium@moz-7859BAFE.dclient.hispeed.ch)
  85. # [00:18] <dmajor> dholbert: is this from a crash report?
  86. # [00:19] <dholbert> dmajor, yeah. I'll PM you
  87. # [00:19] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  88. # [00:19] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  89. # [00:19] <Waldo> mattwoodrow, dholbert: erm, oops, was thinking of nsAutoArrayBase
  90. # [00:19] <Waldo> dholbert: [-1] could go beyond the header then
  91. # [00:20] <dholbert> Waldo, cool. That explains things
  92. # [00:20] <dholbert> Waldo / mattwoodrow, thanks
  93. # [00:20] <Waldo> there's some seriously screwed-up code in all this, seems to me
  94. # [00:21] <Waldo> the random limitations on T's alignment and stuff because of this scheme seem pretty unfortunate
  95. # [00:21] * Quits: Archaeopteryx (itsme@moz-AE1446C5.cust.telecolumbus.net) (Quit: Goodbye)
  96. # [00:21] * Quits: sylvain (scleymans@moz-62518563.mtv2.mozilla.com) (Connection reset by peer)
  97. # [00:21] * Joins: sylvain (scleymans@moz-62518563.mtv2.mozilla.com)
  98. # [00:23] * FuzzyFox|afk is now known as FuzzyFox
  99. # [00:24] * Quits: Swatinem (Instantbir@moz-C3348152.dynamic.surfer.at) (Ping timeout)
  100. # [00:24] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/018c774d1b2d - Alex Bardas - Bug 1052750 - Added info logs for test, r=gijs
  101. # [00:25] * Quits: mconley (mconley@moz-FBB7D102.cable.teksavvy.com) (Input/output error)
  102. # [00:25] * Joins: mconley (mconley@moz-FBB7D102.cable.teksavvy.com)
  103. # [00:25] <jduell> Do we have telemetry for how often about:config prefs are modified by users? I..e can I look up a specific pref and see how often it's not the default?
  104. # [00:26] <Gijs> jduell: not for all prefs; might do for some.
  105. # [00:26] * Quits: Gijs (gijs@moz-A0F72B.range81-159.btcentralplus.com) (Quit: poof)
  106. # [00:27] * Quits: mconley (mconley@moz-FBB7D102.cable.teksavvy.com) (Ping timeout)
  107. # [00:27] * Joins: gustavold (gustavold@moz-CECBA77E.net.upcbroadband.cz)
  108. # [00:27] * Quits: dria (dria@11A84059.23A6B07C.971E19F6.IP) (Quit: dria)
  109. # [00:29] * Quits: tonymec_KDE (tonymec@63DCD14C.E7FA5055.9D2324B7.IP) (Ping timeout)
  110. # [00:30] * Joins: emtwo (Adium@moz-1E121516.cpe.pppoe.ca)
  111. # [00:31] * Quits: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net) (Client exited)
  112. # [00:31] * Quits: pnkfelix (pnkfelix@moz-43495417.fbx.proxad.net) (Ping timeout)
  113. # [00:32] * Joins: nattokirai (nattokirai@A5FB4358.9CD517C2.134C27BB.IP)
  114. # [00:33] * Joins: ehsan (ehsan@moz-B4709FAB.cable.teksavvy.com)
  115. # [00:33] * ChanServ sets mode: +o ehsan
  116. # [00:34] * Parts: wcosta (wander@A9DF2293.D0ACF8E7.1C880E7D.IP)
  117. # [00:35] * Joins: tonymec_KDE (tonymec@moz-F7EB9F49.adsl-dyn.isp.belgacom.be)
  118. # [00:36] * Quits: m_gol (m_gol@moz-4A03F5C1.dynamic.chello.pl) (Quit: Leaving...)
  119. # [00:37] * Quits: tonymec_KDE (tonymec@moz-F7EB9F49.adsl-dyn.isp.belgacom.be) (Ping timeout)
  120. # [00:38] * Joins: mkohler (mkohler@moz-C07D5168.p2p.sfo1.mozilla.com)
  121. # [00:38] * Quits: GPHemsley (GPHemsley@C7421DB5.96E1FC11.A973A616.IP) (Quit: This computer has gone to sleep)
  122. # [00:39] * Joins: tonymec_KDE (tonymec@moz-4140398A.adsl-dyn.isp.belgacom.be)
  123. # [00:39] * Quits: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP) (Ping timeout)
  124. # [00:42] <shu> gavin: ping
  125. # [00:43] * FuzzyFox is now known as FuzzyFox|afk
  126. # [00:44] * Joins: ehugg (ehugg@moz-56CFE7FB.hsd1.wa.comcast.net)
  127. # [00:45] * NeilAway wonders whether Waldo reads memos
  128. # [00:45] * sfink|afk is now known as sfink
  129. # [00:45] * Quits: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Ping timeout)
  130. # [00:45] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  131. # [00:45] <Waldo> NeilAway: I did; not sure what to say as a response, you didn't seem to be asking an actual question exactly
  132. # [00:46] * hwine is now known as hwine-coffee
  133. # [00:46] <Waldo> /msg NeilAwayServ read last
  134. # [00:46] <NeilAway> Waldo: no, I guess it wasn't
  135. # [00:46] <Waldo> :-)
  136. # [00:46] * Joins: tantek (tantek@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  137. # [00:47] * Quits: abwillis (abwillis@CBAC43F2.9DD4DBBF.6A7A197.IP) (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.14/20140621130907])
  138. # [00:47] * Quits: tantek (tantek@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: tantek)
  139. # [00:47] <gwagner> wlach: ping
  140. # [00:47] <wlach> gwagner: pong
  141. # [00:48] <gwagner> wlach: have you ever tried orangutan on one of our reference devices?
  142. # [00:48] <gwagner> the flames
  143. # [00:48] * ggp is now known as ggp|away
  144. # [00:48] <wlach> gwagner: yes, there's a weird bug with orangutan and the flame but it mostly works
  145. # [00:48] <wlach> https://bugzilla.mozilla.org/show_bug.cgi?id=1026527
  146. # [00:49] * Quits: tonymec_KDE (tonymec@moz-4140398A.adsl-dyn.isp.belgacom.be) (Ping timeout)
  147. # [00:49] * Joins: mwobensmith1 (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  148. # [00:49] * Quits: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Connection reset by peer)
  149. # [00:49] * Quits: chmanchester|afk (chmanchest@63CA6098.1EB7376C.ECED8BE3.IP) (Input/output error)
  150. # [00:50] * Joins: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  151. # [00:50] * Quits: mwobensmith1 (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Connection reset by peer)
  152. # [00:50] * Quits: jimm (jmathies@moz-DF439B90.pn.at.cox.net) (Quit: )
  153. # [00:50] <gwagner> wlach: great. I will give it a try
  154. # [00:50] <NeilAway> Waldo: so Object.mixin would have done what I needed though, right?
  155. # [00:50] <sovemp> quit
  156. # [00:50] <sovemp> exit
  157. # [00:50] <gwagner> wlach: do I have to configure it for the flame or should it just work?
  158. # [00:50] * Quits: sovemp (shaycraft@37579293.AD310888.4B8DD6BE.IP) (Quit: leaving)
  159. # [00:50] <wlach> gwagner: latest git should just work
  160. # [00:51] <wlach> you need to specify the input device /dev/input/event0 or whatever on the command line
  161. # [00:51] * Joins: tonymec_KDE (tonymec@moz-F7C3C88A.adsl-dyn.isp.belgacom.be)
  162. # [00:51] * Quits: kip (kip@A6CF435B.D1155E2C.CFC2A289.IP) (Client exited)
  163. # [00:51] * Joins: ohsix (ohsix@A2D7F518.A2E0D0A6.F944C6CB.IP)
  164. # [00:52] * Joins: kip_ (kip@A6CF435B.D1155E2C.CFC2A289.IP)
  165. # [00:53] * heycam is now known as heycam|away
  166. # [00:53] * Quits: tonymec_KDE (tonymec@moz-F7C3C88A.adsl-dyn.isp.belgacom.be) (Ping timeout)
  167. # [00:53] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4ae9574c9834 - Benoit Girard - Bug 1052857 - Overdraw should report dst pixels, not src pixels. r=jrmuizel
  168. # [00:54] * Joins: happy-dude (Adium@4BA6E93.8FB9C6F0.5FDBC370.IP)
  169. # [00:54] <gwagner> wlach: do you know the max coordinates for the flame?
  170. # [00:54] * Joins: Bas (chatzilla@moz-FE00A61E.dedicated.allstream.net)
  171. # [00:55] <wlach> gwagner: hmm, I think you can get them by running getevent -i
  172. # [00:56] <gwagner> wlach: great thanks!
  173. # [00:57] * Joins: dria (dria@11A84059.23A6B07C.971E19F6.IP)
  174. # [00:57] * Quits: alex_tz (Adium@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving.)
  175. # [00:58] * Joins: njn (njn@moz-20554402.dyn.iinet.net.au)
  176. # [00:58] * ChanServ sets mode: +o njn
  177. # [00:58] * Joins: vebb (mike@8673B62F.3F44B6EB.FC74E68.IP)
  178. # [00:58] <happy-dude> hey guys — can someone help me out with add on development? I'm porting from chrome a search addon (via a panel) that displays the contents of what was searched in the panel
  179. # [00:59] * Joins: alex_tz (Adium@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  180. # [00:59] <seth> wow, i'm really amazed by how much using the trychooser more precisely has affected my placement on the try high scores
  181. # [00:59] * Joins: tonymec_KDE (tonymec@7960B5BC.4D4BECF.277517C1.IP)
  182. # [01:00] * Quits: twi (Adium@moz-4A7B1469.cust.vodafonedsl.it) (Ping timeout)
  183. # [01:00] <seth> it looks like i'm still in the top 15 for *jobs*, but my hours are *way* down. maybe not even in the top 50
  184. # [01:00] <Waldo> NeilAway: I have no idea what Object.mixin means exactly, so dunno
  185. # [01:00] <nthomas> seth: congrats
  186. # [01:01] <sfink> seth: crash landed anything as a result of getting too specific yet? :)
  187. # [01:01] * Waldo was like 2h from cracking the top of the try high score list a few months back :-(
  188. # [01:01] <Waldo> so close, and yet
  189. # [01:01] <mcsmurf> happy-dude: not sure what you're planning exactly, but #extdev may be able to help in a better way
  190. # [01:01] <Waldo> too principled to do a push just to get the win
  191. # [01:02] <sfink> people! You're not *supposed* to aim for the top! ;-)
  192. # [01:02] * heycam|away is now known as heycam
  193. # [01:02] * Quits: bnicholson (bnicholson@moz-62518563.mtv2.mozilla.com) (Ping timeout)
  194. # [01:02] * ctalbert is now known as ctalbert|afk
  195. # [01:02] * Joins: bnicholson (bnicholson@moz-62518563.mtv2.mozilla.com)
  196. # [01:02] <sfink> we need a scoreboard of landings per try hour with a penalty for crash landings or something
  197. # [01:03] * mcote is now known as mcote|afk
  198. # [01:04] * Joins: twi (Adium@moz-4A7B1469.cust.vodafonedsl.it)
  199. # [01:05] * Quits: bgrins|afk (bgrins@C7203E51.FBD8ACDB.20F09BA6.IP) (Quit: Leaving.)
  200. # [01:06] * Quits: twi (Adium@moz-4A7B1469.cust.vodafonedsl.it) (Ping timeout)
  201. # [01:06] * Joins: rishabh (Mibbit@3AA60802.CD1E2C26.BE3C3C1D.IP)
  202. # [01:07] * Joins: twi (Adium@moz-4A7B1469.cust.vodafonedsl.it)
  203. # [01:08] * hwine-coffee is now known as hwine
  204. # [01:08] <seth> sfink: there's been a slight uptick in ON A CLOSED TREE followups, but only very slight =)
  205. # [01:09] <sfink> you're doing better than me as compared to when I started using trychooser syntax for real, then
  206. # [01:09] * Quits: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net) (Ping timeout)
  207. # [01:10] * Joins: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net)
  208. # [01:10] * Quits: clokep (Instantbir@moz-1484204D.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com) (Quit: Instantbird 1.5 -- http://www.instantbird.com)
  209. # [01:14] * BenWa is now known as BenWa|email
  210. # [01:14] * Quits: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net) (Ping timeout)
  211. # [01:15] * miketaylr is now known as zz_miketaylr
  212. # [01:15] * Joins: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net)
  213. # [01:15] * Joins: yurenju (yurenju@moz-162020D1.dynamic.hinet.net)
  214. # [01:15] * Joins: clokep (Instantbir@moz-1484204D.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com)
  215. # [01:16] * Quits: gkw (fuzz2lin@moz-62518563.mtv2.mozilla.com) (Input/output error)
  216. # [01:16] * Quits: ehugg (ehugg@moz-56CFE7FB.hsd1.wa.comcast.net) (Quit: ehugg)
  217. # [01:16] * Joins: mikeratcliffe (Adium@6B41FE3D.AD1925ED.7CCB197A.IP)
  218. # [01:16] * Joins: davidb (davidb@moz-A4C0AF90.dsl.bell.ca)
  219. # [01:16] * Quits: davidb (davidb@moz-A4C0AF90.dsl.bell.ca) (Input/output error)
  220. # [01:17] * Joins: gkw (fuzz2lin@moz-62518563.mtv2.mozilla.com)
  221. # [01:17] * Quits: twi (Adium@moz-4A7B1469.cust.vodafonedsl.it) (Ping timeout)
  222. # [01:19] * Joins: jya_ (jyavenard@moz-E8C4957B.bjzv2.vic.bigpond.net.au)
  223. # [01:19] * Quits: rvid (textual@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Computer has gone to sleep.)
  224. # [01:19] * Joins: twi (Adium@moz-4A7B1469.cust.vodafonedsl.it)
  225. # [01:20] * Quits: twi (Adium@moz-4A7B1469.cust.vodafonedsl.it) (Quit: Leaving.)
  226. # [01:22] * Quits: garvank (Garvan@moz-9DD85580.dsl.teksavvy.com) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  227. # [01:25] * Joins: rvid (textual@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  228. # [01:25] * Quits: ahal|afk (ahal@moz-3D30248A.cpe.teksavvy.com) (Input/output error)
  229. # [01:25] * Quits: Bas (chatzilla@moz-FE00A61E.dedicated.allstream.net) (Ping timeout)
  230. # [01:27] * Joins: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP)
  231. # [01:27] * Quits: emtwo (Adium@moz-1E121516.cpe.pppoe.ca) (Quit: Leaving.)
  232. # [01:27] <@gavin> shu: pong
  233. # [01:27] <shu> gavin: hi. i'm working on a patch that changes 'let' semantics to be in line with ES6
  234. # [01:27] <shu> gavin: this breaks a bunch of chrome JS code around redeclarations
  235. # [01:28] <shu> gavin: i was wondering if you could assign reviewers to a myriad of patches?
  236. # [01:28] * Joins: emtwo (Adium@moz-1E121516.cpe.pppoe.ca)
  237. # [01:29] * Quits: dougc (dougc@moz-C3D31A35.lns20.mel4.internode.on.net) (Ping timeout)
  238. # [01:30] * Quits: rogeliodh (Thunderbir@DFD77512.8D6AA50D.D67CC001.IP) (Quit: rogeliodh)
  239. # [01:30] * Joins: garvank (Garvan@moz-9DD85580.dsl.teksavvy.com)
  240. # [01:30] * Quits: Jesse_ (jruderman@moz-62518563.mtv2.mozilla.com) (Connection reset by peer)
  241. # [01:30] * Joins: Jesse (jruderman@moz-62518563.mtv2.mozilla.com)
  242. # [01:30] <@gavin> shu: have we talked about this before? feels vaguely familiar :)
  243. # [01:30] <shu> gavin: no, that was about ripping out let exprs :)
  244. # [01:30] <@gavin> ah right
  245. # [01:30] * Quits: mcsmurf (Frank@moz-1389C5B5.dip0.t-ipconnect.de) (Input/output error)
  246. # [01:30] <shu> gavin: which i decided to give up on for now
  247. # [01:31] <shu> gavin: this is just about bringing let semantics to be ES6-compliant without ripping out legacy support
  248. # [01:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/239fef1233e5 - Gregory Szorc - Bug 1052526 - Treat appending None to List as empty list; r=glandium
  249. # [01:31] <@gavin> what do these patches look like and how much review do they need
  250. # [01:31] * Quits: happy-dude (Adium@4BA6E93.8FB9C6F0.5FDBC370.IP) (Ping timeout)
  251. # [01:31] <shu> gavin: https://bugzilla.mozilla.org/show_bug.cgi?id=1001090
  252. # [01:31] <shu> gavin: look at the part 4 patches, mostly trivial
  253. # [01:31] <shu> gavin: but they are all over the place in the codebase
  254. # [01:32] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  255. # [01:32] <@gavin> "This is a ReferenceError even in non-strict code" interesting
  256. # [01:32] * whimboo is now known as whimboo|afk
  257. # [01:32] <shu> gavin: the parse errors are mostly due to chrome code doing things like
  258. # [01:32] * Joins: jkitch (Thunderbir@moz-60CB73E8.lns21.adl2.internode.on.net)
  259. # [01:33] <gps> shu: crap, I make these errors all the time in xpcshell tests :/
  260. # [01:33] <shu> gavin: function (x) { let x = x || "; } or function () { let x = foo; ...; let x = foo; }
  261. # [01:33] <shu> gavin: which used to be okay, since body-level lets are currently just vars
  262. # [01:33] <shu> gavin: but in the new world are parse errors
  263. # [01:33] <gps> i'm glad they are getting fixed
  264. # [01:34] <shu> gps: the semantics are kind of weird, but the spec has its heart in the right place
  265. # [01:34] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/bcdb93a50b8e - Nicholas Nethercote - Bug 1052213 - Reduce default size of Native2WrappedNativeMaps. r=mrbkap.
  266. # [01:34] * Joins: Bas (chatzilla@moz-FE00A61E.dedicated.allstream.net)
  267. # [01:35] * Quits: rvid (textual@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Computer has gone to sleep.)
  268. # [01:36] * Quits: robertbindar (Thunderbir@moz-C07D5168.p2p.sfo1.mozilla.com) (Ping timeout)
  269. # [01:36] * Joins: yzen (yzen@moz-F62769B5.cpe.pppoe.ca)
  270. # [01:36] * Joins: robertbindar (Thunderbir@moz-C07D5168.p2p.sfo1.mozilla.com)
  271. # [01:37] * Quits: roc (chatzilla@moz-462A27B9.bng1.tvc.orcon.net.nz) (Input/output error)
  272. # [01:38] * Quits: spohl|afk (Adium@726B229D.FCC4B66A.A6DC652B.IP) (Quit: Leaving.)
  273. # [01:39] * Quits: ddahl (ddahl@4A08E125.708C0A12.C7EEF3A2.IP) (Quit: Leaving)
  274. # [01:39] * Joins: ddahl (ddahl@4A08E125.708C0A12.C7EEF3A2.IP)
  275. # [01:39] <@gavin> shu: https://bugzilla.mozilla.org/show_bug.cgi?id=1001090#c44
  276. # [01:39] <@gavin> shu: similar question for https://bugzilla.mozilla.org/attachment.cgi?id=8471916&action=edit
  277. # [01:40] * Quits: @ehsan (ehsan@moz-B4709FAB.cable.teksavvy.com) (Quit: vanished into thin air...)
  278. # [01:40] * Joins: ehugg (ehugg@moz-44D86B1E.cisco.com)
  279. # [01:40] <shu> gavin: removing the let is fine
  280. # [01:41] * Quits: MarcoZ (marco.zehe@8F761026.B5EF4AF6.E96CA9D8.IP) (Ping timeout)
  281. # [01:41] <shu> gavin: no real reason i renamed the parameter, probably looked better to have the lets line up
  282. # [01:41] <@gavin> I don't like the trailing "_" style
  283. # [01:42] <shu> gavin: sure, i'll just get rid of the let
  284. # [01:42] <@gavin> ok
  285. # [01:43] * Joins: nathan (nathan@moz-62518563.mtv2.mozilla.com)
  286. # [01:43] * Joins: MarcoZ (marco.zehe@8F761026.B5EF4AF6.E96CA9D8.IP)
  287. # [01:44] <shu> gavin: thanks a bunch
  288. # [01:46] * Quits: yzen (yzen@moz-F62769B5.cpe.pppoe.ca) (Connection reset by peer)
  289. # [01:46] * Joins: yzen (yzen@moz-F62769B5.cpe.pppoe.ca)
  290. # [01:47] * Quits: mikeratcliffe (Adium@6B41FE3D.AD1925ED.7CCB197A.IP) (Quit: Leaving.)
  291. # Session Close: Wed Aug 13 01:49:29 2014
  292. #
  293. # Session Start: Wed Aug 13 01:49:29 2014
  294. # Session Ident: #developers
  295. # [01:49] * Disconnected
  296. # [01:50] * Attempting to rejoin channel #developers
  297. # [01:50] * Rejoined channel #developers
  298. # [01:50] * Topic is 'Next uplift 1 September || Want help, or want to help others? See #introduction || http://logbot.glob.com.au/?c=developers'
  299. # [01:50] * Set by RyanVM on Fri Aug 08 13:54:11
  300. # [01:51] * Quits: dholbert_ (dholbert@24D20FAA.36F4E7CF.284344F5.IP) (Quit: Ex-Chat)
  301. # [01:52] * Quits: h4writer (h4writer@moz-957FCBC.access.telenet.be) (Ping timeout)
  302. # [01:52] * Quits: nattokirai (nattokirai@A5FB4358.9CD517C2.134C27BB.IP) (Quit: nattokirai)
  303. # [01:53] * Quits: sir_none (Thunderbir@moz-E98CDE3D.dclient.hispeed.ch) (Quit: sir_none)
  304. # [01:54] * Quits: jviereck03 (Adium@moz-7859BAFE.dclient.hispeed.ch) (Ping timeout)
  305. # [01:54] * Quits: ddahl (ddahl@4A08E125.708C0A12.C7EEF3A2.IP) (Ping timeout)
  306. # [01:54] * Quits: garvank (Garvan@moz-9DD85580.dsl.teksavvy.com) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  307. # [01:55] * Quits: WeirdAl (chatzilla@moz-2BBC3AE3.hsd1.ca.comcast.net) (Quit: ChatZilla 0.9.90.1 [Firefox 31.0/20140717120014])
  308. # [01:56] * Quits: guigs21 (Adium@moz-62518563.mtv2.mozilla.com) (Quit: Leaving.)
  309. # [01:56] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  310. # [01:56] * Joins: mwobensmith1 (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  311. # [01:57] * Joins: mwobensmith2 (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  312. # [01:57] * Quits: Mossop (dtownsend@53343B0D.8DCA2D5.5E2862A8.IP) (Quit: Leaving)
  313. # [01:57] * Quits: mwobensmith1 (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Connection reset by peer)
  314. # [01:57] * Quits: mwobensmith (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  315. # [01:57] * Quits: tonymec (tonymec@7960B5BC.4D4BECF.277517C1.IP) (Ping timeout)
  316. # [01:57] * Quits: Btya (chatzilla@moz-C9FDB7A2.fbx.proxad.net) (Ping timeout)
  317. # [01:57] * Quits: tonymec_KDE (tonymec@7960B5BC.4D4BECF.277517C1.IP) (Ping timeout)
  318. # [01:58] * Joins: bbondy (bbondy@moz-E2815EB6.home.cgocable.net)
  319. # [01:58] * Quits: emtwo (Adium@moz-1E121516.cpe.pppoe.ca) (Quit: Leaving.)
  320. # [01:59] * Quits: Bas (chatzilla@moz-FE00A61E.dedicated.allstream.net) (Ping timeout)
  321. # [02:00] * Quits: bbondy (bbondy@moz-E2815EB6.home.cgocable.net) (Ping timeout)
  322. # [02:00] * Quits: mwobensmith2 (mwobensmit@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving.)
  323. # [02:01] * Quits: yzen (yzen@moz-F62769B5.cpe.pppoe.ca) (Ping timeout)
  324. # [02:03] * Joins: tonymec_KDE (tonymec@moz-A1459DC5.adsl-dyn.isp.belgacom.be)
  325. # [02:03] * Joins: bbondy (bbondy@moz-E2815EB6.home.cgocable.net)
  326. # [02:03] * ewong|away is now known as ewong
  327. # [02:04] * Joins: emtwo (Adium@moz-1E121516.cpe.pppoe.ca)
  328. # [02:05] * Joins: janv (varga@966DE85D.9F0D0108.4038F31A.IP)
  329. # [02:06] * Joins: dholbert_ (dholbert@moz-2DBFC5C4.static.sonic.net)
  330. # [02:06] <seth> Waldo: argh. so that hack didn't work. (which is kind of reassuring, because if it did work it would mean that VS2010 instantiates templates in a very strange way indeed)
  331. # [02:06] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  332. # [02:06] * armenzg_dinner is now known as armenzg_afl
  333. # [02:07] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  334. # [02:07] <seth> Waldo: we are only hitting this in one place: http://mxr.mozilla.org/mozilla-central/source/js/src/jsproxy.h#511
  335. # [02:07] <seth> Waldo: the problem being that you can't copy-assign a Handle
  336. # [02:08] * Quits: walter (Adium@moz-62518563.mtv2.mozilla.com) (Quit: Leaving.)
  337. # [02:09] <seth> Waldo: the procedure to fix this is straightforward, if tedious, but it requires implementing something like the type_traits templates is_copy_assignable and is_move_assignable
  338. # [02:09] * Joins: walter (walter@moz-62518563.mtv2.mozilla.com)
  339. # [02:10] * Joins: wolfiR_ (wolfiR@moz-9078E13F.dip0.t-ipconnect.de)
  340. # [02:10] <Waldo> seth: I had the same thought earlier
  341. # [02:10] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/ccd92d05c0b4 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  342. # [02:10] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/3f534506a0e6 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  343. # [02:11] * Quits: yurenju (yurenju@moz-162020D1.dynamic.hinet.net) (Quit: Computer has gone to sleep.)
  344. # [02:11] * Quits: wolfiR (wolfiR@moz-F3D9A34F.dip0.t-ipconnect.de) (Ping timeout)
  345. # [02:12] * Joins: bgrins (bgrins@2E6E9164.E6468DB3.BAB75B95.IP)
  346. # [02:12] <seth> Waldo: any better ideas? =) if not i guess that's the only option
  347. # [02:12] * Quits: bgrins (bgrins@2E6E9164.E6468DB3.BAB75B95.IP) (Quit: Leaving.)
  348. # [02:12] * nthomas is now known as nthomas|away
  349. # [02:12] * Quits: janv (varga@966DE85D.9F0D0108.4038F31A.IP) (Quit: This computer has gone to sleep)
  350. # [02:14] * khuey|away is now known as khuey
  351. # [02:14] * terrence is now known as terrence-afk
  352. # [02:15] <Waldo> seth: I don't think I have any, but I'm not nearly as close to this as you are
  353. # [02:15] <Waldo> and don't fully grok the MSVC failures here
  354. # [02:15] * Quits: @smaug (chatzilla@moz-38C5B03.elisa-laajakaista.fi) (Ping timeout)
  355. # [02:15] * Quits: dria (dria@11A84059.23A6B07C.971E19F6.IP) (Quit: dria)
  356. # [02:15] <seth> Waldo: they occur because it instantiates the copy assignment operator method even if it's not used
  357. # [02:15] * Parts: ckerschb (ckerschb@moz-62518563.mtv2.mozilla.com)
  358. # [02:16] <seth> Waldo: actually, another hack just occurred to me
  359. # [02:16] <Waldo> seth: yes, you've said that, but I haven't looked at a minimal testcase enough, or compared against patches, to fully grok
  360. # [02:16] * Joins: roc (chatzilla@7EA5AB88.DC2C3734.616A18A6.IP)
  361. # [02:16] * ChanServ sets mode: +o roc
  362. # [02:16] <Waldo> and it's probably not worth my time to understand at that level of detail right now
  363. # [02:16] * Quits: grobinson (~grobinson@moz-62518563.mtv2.mozilla.com) (Ping timeout)
  364. # [02:17] * Quits: dholbert_ (dholbert@moz-2DBFC5C4.static.sonic.net) (Quit: Ex-Chat)
  365. # [02:17] <seth> Waldo: one thing i could do (so this thing can just get landed) is just implement the copy assignment operator using reset() and emplace()
  366. # [02:18] <seth> Waldo: that is not desirable, but it would eliminate this whole problem and then we could try to do things more correctly in a followup
  367. # [02:18] <seth> Waldo: would you be OK with that?
  368. # [02:18] <Waldo> seth: followup sounds reasonable, as long as we do it quickly
  369. # [02:18] <Waldo> don't want some impossible pattern spewn everywhere
  370. # [02:18] * Quits: tonymec_KDE (tonymec@moz-A1459DC5.adsl-dyn.isp.belgacom.be) (Ping timeout)
  371. # [02:18] * Quits: gustavold (gustavold@moz-CECBA77E.net.upcbroadband.cz) (Quit: Leaving.)
  372. # [02:19] <seth> Waldo: for sure. i'll handle it ASAP. i just want to unstick the things that are blocked on this Maybe patch landing =)
  373. # [02:20] * Joins: Boriss_ (Boriss@moz-838FEF17.as13285.net)
  374. # [02:20] * Quits: Boriss (Boriss@moz-838FEF17.as13285.net) (No route to host)
  375. # [02:20] * Boriss_ is now known as Boriss
  376. # [02:21] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/046dc36c93b1 - Matt Woodrow - Bug 1019693 - Always use tiled thebes layers when we're a descendant of a layer with a critical display port so that the low-resolution drawing area is handled correctly. r=tn
  377. # [02:21] * Joins: rvid (textual@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  378. # [02:21] * Quits: Jesse (jruderman@moz-62518563.mtv2.mozilla.com) (Quit: Jesse)
  379. # [02:22] * Joins: tonymec_KDE (tonymec@moz-9E01561.adsl-dyn.isp.belgacom.be)
  380. # [02:23] * Joins: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca)
  381. # [02:23] * hwine is now known as hwine-commuting
  382. # [02:23] * Joins: Jesse (jruderman@moz-62518563.mtv2.mozilla.com)
  383. # [02:23] * Quits: aklotz (Thunderbir@moz-935DE219.cg.shawcable.net) (Quit: aklotz)
  384. # [02:23] * Joins: garvank (Garvan@moz-9DD85580.dsl.teksavvy.com)
  385. # [02:24] * Fallen is now known as Fallen|away
  386. # [02:25] * Joins: chmanchester|afk (chmanchest@63CA6098.1EB7376C.ECED8BE3.IP)
  387. # [02:26] * Quits: MarcoZ (marco.zehe@8F761026.B5EF4AF6.E96CA9D8.IP) (Quit: l8er)
  388. # [02:28] * justindarc is now known as justindarc|brb
  389. # [02:30] <reuben> I wonder if we have any contributors (of code) that are younger than Gecko
  390. # [02:30] * Quits: armenzg_afl (armenzg@moz-5C9D8F48.cable.teksavvy.com) (Input/output error)
  391. # [02:31] <nalexander> reuben: I believe I know of one.
  392. # [02:33] * Quits: catalinb (catalinb@moz-62518563.mtv2.mozilla.com) (Quit: This computer has gone to sleep)
  393. # [02:33] <reuben> nalexander: nice :)
  394. # [02:33] * Quits: rvid (textual@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Computer has gone to sleep.)
  395. # [02:33] * khuey is now known as khuey|away
  396. # [02:38] * Joins: rbarnes (rbarnes@moz-5E1F5C28.washdc.fios.verizon.net)
  397. # [02:38] * KWierso|sheriffduty is now known as KWierso|afk
  398. # [02:38] * Joins: tonymec (tonymec@moz-9E01561.adsl-dyn.isp.belgacom.be)
  399. # [02:39] <gwagner> wlach: any idea how I can press the home button on the flame?
  400. # [02:39] * lmandel_afk is now known as lmandel
  401. # [02:40] * Joins: trevorh (trevor@moz-E7BDF72B.lns14.cht.bigpond.net.au)
  402. # [02:40] * Joins: nattokirai (nattokirai@moz-C286AD9A.bitcat.net)
  403. # [02:40] * Quits: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca) (Quit: surkov)
  404. # [02:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/2fc458322d5f - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  405. # [02:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/ad31456e78ac - B2G Bumper Bot - Bumping manifests a=b2g-bump
  406. # [02:40] * Quits: Boriss (Boriss@moz-838FEF17.as13285.net) (Quit: Boriss)
  407. # [02:41] * Quits: sylvain (scleymans@moz-62518563.mtv2.mozilla.com) (Input/output error)
  408. # [02:42] * Quits: tonymec (tonymec@moz-9E01561.adsl-dyn.isp.belgacom.be) (Ping timeout)
  409. # [02:42] * Quits: _6a68 (_6a68@moz-58FAF114.socal.res.rr.com) (Quit: Leaving...)
  410. # [02:43] * Quits: mastizada (mastizada@392BE072.FA529CCB.7784CCEE.IP) (Ping timeout)
  411. # [02:45] * Quits: emtwo (Adium@moz-1E121516.cpe.pppoe.ca) (Quit: Leaving.)
  412. # [02:45] * Quits: walter (walter@moz-62518563.mtv2.mozilla.com) (Ping timeout)
  413. # [02:45] * Joins: tonymec (tonymec@moz-9E01561.adsl-dyn.isp.belgacom.be)
  414. # [02:45] * Quits: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net) (Quit: jib)
  415. # [02:46] * Joins: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca)
  416. # [02:46] * Quits: Jesse (jruderman@moz-62518563.mtv2.mozilla.com) (Connection reset by peer)
  417. # [02:46] * Quits: drno (nohlmeier@moz-62518563.mtv2.mozilla.com) (Quit: drno)
  418. # [02:47] * Joins: Jesse (jruderman@moz-62518563.mtv2.mozilla.com)
  419. # [02:48] * Quits: ehugg (ehugg@moz-44D86B1E.cisco.com) (Quit: ehugg)
  420. # [02:49] * Quits: jduell (jduell@moz-82D474FE.hsd1.wa.comcast.net) (Ping timeout)
  421. # [02:49] * Quits: ewong (chatzilla@moz-20A71729.net) (Ping timeout)
  422. # [02:49] * Quits: jet (jet@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: jet)
  423. # [02:50] * Joins: dria (dria@11A84059.23A6B07C.971E19F6.IP)
  424. # [02:50] * Joins: ewong (chatzilla@moz-20A71729.net)
  425. # [02:50] * Quits: mccr8 (mccr8@moz-62518563.mtv2.mozilla.com) (Quit: computer sleep)
  426. # [02:51] * Joins: Jan\ (kvirc@5393F526.1C6381B3.529AC0B9.IP)
  427. # [02:51] * Quits: tonymec (tonymec@moz-9E01561.adsl-dyn.isp.belgacom.be) (Ping timeout)
  428. # [02:51] * Quits: tonymec_KDE (tonymec@moz-9E01561.adsl-dyn.isp.belgacom.be) (Ping timeout)
  429. # [02:51] * Joins: catalinb (catalinb@moz-CF8BEBEF.dia.static.qwest.net)
  430. # [02:51] * Quits: garvank (Garvan@moz-9DD85580.dsl.teksavvy.com) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  431. # [02:52] * Quits: bajaj (bajaj_afk@moz-24157589.mtv2.mozilla.com) (Quit: Leaving.)
  432. # [02:52] * Joins: garvank (Garvan@moz-9DD85580.dsl.teksavvy.com)
  433. # [02:52] <IanN> is it just me or has tbpl gone foobar?
  434. # [02:52] * Quits: kip_ (kip@A6CF435B.D1155E2C.CFC2A289.IP) (Client exited)
  435. # [02:53] * Quits: garvank (Garvan@moz-9DD85580.dsl.teksavvy.com) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  436. # [02:55] * Quits: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca) (Quit: surkov)
  437. # [02:55] * Joins: rvid (textual@moz-9BAF7C87.hsd1.ca.comcast.net)
  438. # [02:55] * Joins: sylvain (scleymans@moz-CF8BEBEF.dia.static.qwest.net)
  439. # [02:56] <stephend> IanN: hg.mozilla.org is a 503 ;-\
  440. # [02:56] <stephend> no wink - that was a typo
  441. # [02:56] <IanN> urgh
  442. # [02:57] * KaiRo_away is now known as KaiRo
  443. # [02:57] <stephend> same IanN as the SeaMonkey days?
  444. # [02:57] * Quits: RyanVM|afk (Thunderbir@moz-37FED3AC.phlapa.fios.verizon.net) (Quit: RyanVM|afk)
  445. # [02:57] <IanN> still coding wherever they'll have me
  446. # [02:57] * Quits: lgarner (lgarner@2D337F52.2D31AF7B.5AEB50C4.IP) (Ping timeout)
  447. # [02:57] <stephend> :-)
  448. # [02:58] <IanN> and SM is still there :)
  449. # [02:59] * chmanchester|afk is now known as chmanchester
  450. # [03:00] * Joins: Edgar (Thunderbir@moz-E37F359D.hinet-ip.hinet.net)
  451. # [03:00] <stephend> indeed it is
  452. # [03:00] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Quit: ChatZilla 0.9.90.1 [Firefox 31.0/20140716183446])
  453. # [03:01] * Quits: mkohler (mkohler@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: mkohler)
  454. # [03:01] * Joins: Jerry_ (hshih@moz-E37F359D.hinet-ip.hinet.net)
  455. # [03:01] * Joins: walter (walter@moz-24157589.mtv2.mozilla.com)
  456. # [03:02] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  457. # [03:03] <bent> bah, who broke hg
  458. # [03:04] * Quits: mcote|afk (mcote@CBB0F6C.7926C589.EE6E63A5.IP) (Quit: leaving)
  459. # [03:04] * Quits: mwu (mwu@522C27B5.F1EEB410.2E87E34F.IP) (Input/output error)
  460. # [03:05] <Waldo> look on the bright side, it still works better than git
  461. # [03:05] * Waldo preempts the troll
  462. # [03:06] <Waldo> ;-)
  463. # [03:06] <stephend> heh
  464. # [03:06] <stephend> if nobody has yet filed, I'll certainly do so
  465. # [03:07] <stephend> oh, I see: https://bugzilla.mozilla.org/show_bug.cgi?id=1017724
  466. # [03:07] * Quits: juanb (jbecerra@moz-62518563.mtv2.mozilla.com) (Quit: juanb)
  467. # [03:07] <bent> reported 5/29
  468. # [03:07] <dholbert> stephend, I think this is a version of https://bugzilla.mozilla.org/show_bug.cgi?id=1040308
  469. # [03:08] <stephend> yessir, and it's baaack (for now)
  470. # [03:08] * Joins: grobinson (~grobinson@75644222.36F4E7CF.284344F5.IP)
  471. # [03:08] * Quits: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: pcwalton)
  472. # [03:08] * Quits: kgrandon1 (Adium@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving.)
  473. # [03:08] <dholbert> yeah, I think it is
  474. # [03:09] * Quits: sunfish (chatzilla@moz-62518563.mtv2.mozilla.com) (Ping timeout)
  475. # [03:10] * Quits: jya_ (jyavenard@moz-E8C4957B.bjzv2.vic.bigpond.net.au) (Quit: jya_)
  476. # [03:10] * Quits: tanvi (tanvi@moz-84BB47BB.hsd1.ca.comcast.net) (Quit: Leaving.)
  477. # [03:10] * Quits: walter (walter@moz-24157589.mtv2.mozilla.com) (Input/output error)
  478. # [03:10] <bent> :(
  479. # [03:10] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/fc99f1aac290 - George Wright - Bug 1052813 - Add -fomit-frame-pointer to CXXFLAGS for Skia r=mattwoodrow
  480. # [03:11] * Quits: bnicholson (bnicholson@moz-62518563.mtv2.mozilla.com) (Ping timeout)
  481. # [03:11] * lmandel is now known as lmandel_afk
  482. # [03:13] <mwargers> KWierso|afk: ping? I just posted a patch in bug 928678 to get the complete log
  483. # [03:13] * Quits: gandalf (zbraniecki@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  484. # [03:14] * Quits: mchang (mchang@moz-95B568D6.socal.res.rr.com) (Quit: mchang)
  485. # [03:15] <stephend> 34 seconds to load a "cached" page of hg.mozilla.org -- ouch! -- http://www.webpagetest.org/result/140813_CC_1C9/
  486. # [03:15] * Joins: mchang (mchang@moz-95B568D6.socal.res.rr.com)
  487. # [03:16] * Quits: mchang (mchang@moz-95B568D6.socal.res.rr.com) (Quit: mchang)
  488. # [03:18] * Joins: m_kato (m_kato@moz-C286AD9A.bitcat.net)
  489. # [03:18] <ewong> jcranmer ping
  490. # [03:19] * Quits: rstrong (rstrong@moz-217F02CE.lightspeed.sntcca.sbcglobal.net) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 1.8.0.9/2006120508])
  491. # [03:20] * philor|away is now known as philor
  492. # [03:21] * justindarc|brb is now known as justindarc
  493. # [03:21] * Quits: grobinson (~grobinson@75644222.36F4E7CF.284344F5.IP) (Connection reset by peer)
  494. # [03:21] * Joins: Bas (chatzilla@9EB964C8.9A24A92.348C8185.IP)
  495. # [03:21] * Joins: grobinson (~grobinson@75644222.36F4E7CF.284344F5.IP)
  496. # [03:21] * Quits: justindarc (justindarc@D2AEACFC.B56D28DB.B58D01CE.IP) (Quit: )
  497. # [03:22] * Joins: yzen (yzen@moz-F62769B5.cpe.pppoe.ca)
  498. # [03:22] * Quits: Mook_as (mook@moz-1FCC0032.activestate.com) (Quit: Mook_as)
  499. # [03:23] * Joins: mmcdonough (Martin@moz-CF8BEBEF.dia.static.qwest.net)
  500. # [03:23] * Quits: bbondy (bbondy@moz-E2815EB6.home.cgocable.net) (Client exited)
  501. # [03:24] * stephend is now known as stephend|afk
  502. # [03:24] * Quits: asobolev (asobolev@moz-62518563.mtv2.mozilla.com) (Quit: Leaving.)
  503. # [03:24] * Quits: Bas (chatzilla@9EB964C8.9A24A92.348C8185.IP) (Ping timeout)
  504. # [03:24] * Quits: jimb (user@B301EC70.B2666F0E.66399531.IP) (Ping timeout)
  505. # [03:25] * Joins: bnicholson (bnicholson@F118B273.BF05706.A36C57B9.IP)
  506. # [03:25] * Quits: fabrice (fabrice@moz-24157589.mtv2.mozilla.com) (Quit: Leaving.)
  507. # [03:26] <obsvr> hg seems broken again :(
  508. # [03:27] <obsvr> well, maybe just super slow
  509. # [03:27] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  510. # [03:28] * Joins: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca)
  511. # [03:30] * Quits: grobinson (~grobinson@75644222.36F4E7CF.284344F5.IP) (Ping timeout)
  512. # [03:30] * Quits: rvid (textual@moz-9BAF7C87.hsd1.ca.comcast.net) (Quit: Computer has gone to sleep.)
  513. # [03:31] * Quits: bnicholson (bnicholson@F118B273.BF05706.A36C57B9.IP) (Ping timeout)
  514. # [03:31] * Quits: yzen (yzen@moz-F62769B5.cpe.pppoe.ca) (Ping timeout)
  515. # [03:31] <stephend|afk> heading to dinner soon - please cc ":stephend" if there's a new bug filed
  516. # [03:32] * Quits: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP) (Connection reset by peer)
  517. # [03:32] * Quits: mwargers (mwargers@moz-24157589.mtv2.mozilla.com) (Client exited)
  518. # [03:32] * Quits: IanN (chatzilla@moz-7F4009AA.perr.cable.virginm.net) (Quit: ChatZilla 0.9.90.1 [Firefox 31.0/20140730101922])
  519. # [03:33] * Joins: yurenju (yurenju@moz-E37F359D.hinet-ip.hinet.net)
  520. # [03:33] * Joins: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP)
  521. # [03:35] * Quits: @dbaron (dbaron@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  522. # [03:36] * Joins: yliao (yliao@moz-99690620.hinet-ip.hinet.net)
  523. # [03:36] * Quits: yliao (yliao@moz-99690620.hinet-ip.hinet.net) (Client exited)
  524. # [03:36] * Joins: yliao (yliao@moz-99690620.hinet-ip.hinet.net)
  525. # [03:36] * Joins: seanlin (Thunderbir@moz-E37F359D.hinet-ip.hinet.net)
  526. # [03:37] * Joins: bajaj (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net)
  527. # [03:37] * Joins: bnicholson (bnicholson@F118B273.BF05706.A36C57B9.IP)
  528. # [03:38] * Joins: Morris (Morris@moz-99690620.hinet-ip.hinet.net)
  529. # [03:38] * Quits: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP) (Connection reset by peer)
  530. # [03:38] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  531. # [03:38] * Joins: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP)
  532. # [03:40] * Quits: mmcdonough (Martin@moz-CF8BEBEF.dia.static.qwest.net) (Quit: I've been blurred!)
  533. # [03:40] * Quits: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP) (Connection reset by peer)
  534. # [03:40] * Joins: bbondy (bbondy@moz-E2815EB6.home.cgocable.net)
  535. # [03:41] * Quits: heftig (heftig@moz-A720FFF6.dip0.t-ipconnect.de) (Ping timeout)
  536. # [03:42] * Quits: mak (uid24946@moz-31ABA2C0.irccloud.com) (Quit: Connection closed for inactivity)
  537. # [03:43] * Parts: nathan (nathan@moz-62518563.mtv2.mozilla.com) (Leaving)
  538. # [03:43] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  539. # [03:44] * Quits: serge (Thunderbir@moz-366AB679.dsl.teksavvy.com) (Ping timeout)
  540. # [03:44] * Quits: chewey (chewey@moz-28B75F9F.dip0.t-ipconnect.de) (Ping timeout)
  541. # [03:44] * Joins: janv (varga@966DE85D.9F0D0108.4038F31A.IP)
  542. # [03:44] * Quits: wolfiR_ (wolfiR@moz-9078E13F.dip0.t-ipconnect.de) (Ping timeout)
  543. # [03:44] * Quits: sewardj_ (sewardj@moz-7F7B191.dip0.t-ipconnect.de) (Ping timeout)
  544. # [03:45] * Joins: brsun (chatzilla@moz-E37F359D.hinet-ip.hinet.net)
  545. # [03:45] * Joins: wolfiR_ (wolfiR@moz-9078E13F.dip0.t-ipconnect.de)
  546. # [03:45] * Joins: kgrandon (Adium@moz-2A1C3CC8.hsd1.ca.comcast.net)
  547. # [03:45] * Joins: chewey (chewey@moz-89CF988D.dip0.t-ipconnect.de)
  548. # [03:47] * Joins: sewardj_ (sewardj@moz-317E412A.dip0.t-ipconnect.de)
  549. # [03:47] * Joins: StevenLee (Adium@moz-E37F359D.hinet-ip.hinet.net)
  550. # [03:49] * heycam is now known as heycam|away
  551. # [03:49] * nthomas|away is now known as nthomas
  552. # [03:49] * Quits: marco (Adium@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: Leaving.)
  553. # [03:49] * Joins: PiresFelix (Leonardo@moz-95AD9557.dynamic.adsl.gvt.net.br)
  554. # [03:52] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  555. # [03:52] * Joins: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP)
  556. # [03:54] * Quits: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP) (Connection reset by peer)
  557. # [03:55] * Quits: Waldo (waldo@moz-62518563.mtv2.mozilla.com) (Quit: ChatZilla 0.9.87-8.1450hg.fc20 [XULRunner 30.0/20140605102323])
  558. # [03:55] * Quits: ashughes (uid34327@moz-E77DEB21.irccloud.com) (Quit: Connection closed for inactivity)
  559. # [03:55] * Joins: jya_ (jyavenard@711FCA62.2948B4B.343D39A3.IP)
  560. # [03:56] * Joins: mmcdonough (Martin@moz-CF8BEBEF.dia.static.qwest.net)
  561. # [03:57] <edwin> Is it kosher to deface xpcom headers with #ifdef MOZILLA_INTERNAL_API / #include "nsString.h" / #else / #include "nsStringAPI.h" ?
  562. # [03:57] <edwin> Or will I be brutally bowled over by a raptor?
  563. # [03:58] * Joins: heftig (heftig@moz-A720FFF6.dip0.t-ipconnect.de)
  564. # [03:58] * Joins: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP)
  565. # [03:59] * Quits: KaiRo (robert@moz-20D24CCC.adsl.highway.telekom.at) (Ping timeout)
  566. # [03:59] * Joins: KaIRC (robert@moz-3C5910EF.adsl.highway.telekom.at)
  567. # [03:59] * Joins: tonymec_KDE (tonymec@33A480F5.72DAFAA7.A9371869.IP)
  568. # [04:01] * Joins: shelly (shelly@moz-E37F359D.hinet-ip.hinet.net)
  569. # [04:01] <edwin> oh.
  570. # [04:01] <edwin> raptor.
  571. # [04:02] * Joins: gerv (Instantbir@moz-D75BA16F.range81-152.btcentralplus.com)
  572. # [04:03] * Quits: catalinb (catalinb@moz-CF8BEBEF.dia.static.qwest.net) (Quit: This computer has gone to sleep)
  573. # [04:03] * Joins: vicamo (vicamo@moz-99690620.hinet-ip.hinet.net)
  574. # [04:03] * BenWa|email is now known as BenWa
  575. # [04:03] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  576. # [04:04] * Quits: sylvain (scleymans@moz-CF8BEBEF.dia.static.qwest.net) (Input/output error)
  577. # [04:05] * Quits: jesup (chatzilla@moz-50BE1A09.phlapa.fios.verizon.net) (Ping timeout)
  578. # [04:05] * Joins: jesup (chatzilla@moz-50BE1A09.phlapa.fios.verizon.net)
  579. # [04:06] <jcranmer> edwin: try #include "nsStringGlue.h"
  580. # [04:06] * Joins: sylvain (scleymans@moz-CF8BEBEF.dia.static.qwest.net)
  581. # [04:06] * Joins: stevensn (ssinger@5485A381.CBAB98DC.60212E94.IP)
  582. # [04:07] * Joins: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net)
  583. # [04:07] * Joins: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  584. # [04:08] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  585. # [04:08] * BenWa is now known as BenWa|email
  586. # [04:09] * Quits: jgriffin (jgriffin@moz-791CC332.hsd1.wa.comcast.net) (Quit: jgriffin)
  587. # [04:11] * Quits: jwalker (uid31244@moz-5F4AA75A.irccloud.com) (Quit: Connection closed for inactivity)
  588. # [04:11] * Quits: KaIRC (robert@moz-3C5910EF.adsl.highway.telekom.at) (Input/output error)
  589. # [04:11] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  590. # [04:12] * Joins: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net)
  591. # [04:13] * Quits: mmcdonough (Martin@moz-CF8BEBEF.dia.static.qwest.net) (Quit: I've been blurred!)
  592. # [04:14] * Parts: dmajor (dmajor@34E8ECDF.DC2C3734.616A18A6.IP) (Leaving)
  593. # [04:14] * Joins: dmajor (dmajor@34E8ECDF.DC2C3734.616A18A6.IP)
  594. # [04:15] * Quits: chewey (chewey@moz-89CF988D.dip0.t-ipconnect.de) (Ping timeout)
  595. # [04:16] * Quits: heftig (heftig@moz-A720FFF6.dip0.t-ipconnect.de) (Ping timeout)
  596. # [04:16] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  597. # [04:16] * Quits: sewardj_ (sewardj@moz-317E412A.dip0.t-ipconnect.de) (Ping timeout)
  598. # [04:16] * Quits: wolfiR_ (wolfiR@moz-9078E13F.dip0.t-ipconnect.de) (Ping timeout)
  599. # [04:17] * Joins: wolfiR_ (wolfiR@moz-9078E13F.dip0.t-ipconnect.de)
  600. # [04:17] * Joins: heftig (heftig@moz-A720FFF6.dip0.t-ipconnect.de)
  601. # [04:17] * Joins: elin (elin@moz-99690620.hinet-ip.hinet.net)
  602. # [04:17] * Joins: tonymec (tonymec@33A480F5.72DAFAA7.A9371869.IP)
  603. # [04:17] * Quits: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp) (Ping timeout)
  604. # [04:19] * Joins: TYLin (TYLin@moz-E37F359D.hinet-ip.hinet.net)
  605. # [04:19] * Joins: sewardj_ (sewardj@moz-317E412A.dip0.t-ipconnect.de)
  606. # [04:19] * Joins: mconley (mconley@moz-FBB7D102.cable.teksavvy.com)
  607. # [04:20] <nigelb> ah, peaceful morning.
  608. # [04:20] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  609. # [04:20] * Quits: tonymec (tonymec@33A480F5.72DAFAA7.A9371869.IP) (Ping timeout)
  610. # [04:22] * Joins: tonymec (tonymec@33A480F5.72DAFAA7.A9371869.IP)
  611. # [04:23] * Joins: chewey (chewey@moz-89CF988D.dip0.t-ipconnect.de)
  612. # [04:24] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  613. # [04:25] * Quits: vicamo (vicamo@moz-99690620.hinet-ip.hinet.net) (Quit: vicamo)
  614. # [04:26] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  615. # [04:26] * Quits: dagnir (dagnir@A1D3E7F1.DBF4469E.7E8D5209.IP) (Quit: WeeChat 0.4.2)
  616. # [04:27] * Quits: rbarnes (rbarnes@moz-5E1F5C28.washdc.fios.verizon.net) (Input/output error)
  617. # [04:27] * Quits: tonymec (tonymec@33A480F5.72DAFAA7.A9371869.IP) (Ping timeout)
  618. # [04:27] * Joins: vicamo (vicamo@moz-E37F359D.hinet-ip.hinet.net)
  619. # [04:27] * Joins: dbaron (dbaron@moz-6F4D2D12.dsl.dynamic.sonic.net)
  620. # [04:27] * ChanServ sets mode: +ao dbaron dbaron
  621. # [04:27] * Quits: tonymec_KDE (tonymec@33A480F5.72DAFAA7.A9371869.IP) (Ping timeout)
  622. # [04:28] * Joins: mwargers (mwargers@moz-9601219C.lightspeed.sntcca.sbcglobal.net)
  623. # [04:30] * Quits: alex_tz (Adium@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving.)
  624. # [04:31] * Quits: rishabh (Mibbit@3AA60802.CD1E2C26.BE3C3C1D.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  625. # [04:32] * Joins: tonymec_KDE (tonymec@754A9387.72DAFAA7.A9371869.IP)
  626. # [04:32] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  627. # [04:35] * hwine-commuting is now known as hwine
  628. # [04:36] * Quits: jya_ (jyavenard@711FCA62.2948B4B.343D39A3.IP) (Quit: jya_)
  629. # [04:38] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  630. # [04:38] * Joins: jwwang (jwwang@moz-E37F359D.hinet-ip.hinet.net)
  631. # [04:39] * Joins: catalinb (catalinb@moz-CF8BEBEF.dia.static.qwest.net)
  632. # [04:41] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  633. # [04:43] * Quits: bajaj (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net) (Quit: Leaving.)
  634. # [04:43] * Joins: spohl (Adium@EF43C350.AD7A4894.465000F8.IP)
  635. # [04:47] * Quits: jgilbert_ (jgilbert@moz-62518563.mtv2.mozilla.com) (Ping timeout)
  636. # [04:47] * Quits: sylvain (scleymans@moz-CF8BEBEF.dia.static.qwest.net) (Input/output error)
  637. # [04:49] * Quits: clokep (Instantbir@moz-1484204D.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com) (Quit: Instantbird 1.5 -- http://www.instantbird.com)
  638. # [04:49] * Joins: squib (squib@moz-FD68D6B2.dhcp.mdsn.wi.charter.com)
  639. # [04:51] * Joins: marco (Adium@moz-BE2772C4.lightspeed.sntcca.sbcglobal.net)
  640. # [04:52] * Joins: tonymec (tonymec@754A9387.72DAFAA7.A9371869.IP)
  641. # [04:53] * Joins: jrmuizel (jrmuizel@moz-4896AE87.cpe.teksavvy.com)
  642. # [04:54] * Quits: tonymec (tonymec@754A9387.72DAFAA7.A9371869.IP) (Ping timeout)
  643. # [04:55] * Quits: catalinb (catalinb@moz-CF8BEBEF.dia.static.qwest.net) (Quit: This computer has gone to sleep)
  644. # [04:55] * Joins: tonymec (tonymec@754A9387.72DAFAA7.A9371869.IP)
  645. # [04:56] * Joins: kgrandon1 (Adium@moz-2A1C3CC8.hsd1.ca.comcast.net)
  646. # [04:56] * Quits: kgrandon (Adium@moz-2A1C3CC8.hsd1.ca.comcast.net) (Connection reset by peer)
  647. # [04:57] * Quits: bbondy (bbondy@moz-E2815EB6.home.cgocable.net) (Client exited)
  648. # [04:57] * Quits: tonymec_KDE (tonymec@754A9387.72DAFAA7.A9371869.IP) (Ping timeout)
  649. # [04:57] * Quits: tonymec (tonymec@754A9387.72DAFAA7.A9371869.IP) (Ping timeout)
  650. # [04:59] * heycam|away is now known as heycam
  651. # [05:00] * Joins: catalinb (catalinb@moz-CF8BEBEF.dia.static.qwest.net)
  652. # [05:00] * Joins: bajaj (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net)
  653. # [05:02] * Joins: tonymec_KDE (tonymec@CAD0B946.29CE74CD.277517C1.IP)
  654. # [05:03] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  655. # [05:04] * Joins: tedders1 (tedders1@13F2CEC5.7672369.D8E68FF6.IP)
  656. # [05:05] * Joins: ddahl (ddahl@FA215F65.8CBA6D28.848BB095.IP)
  657. # [05:08] * hwine is now known as hwine|focus
  658. # [05:08] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9dab1ec80e83 - Chris Pearce - Bug 1052378 - Replace stray mIsXXXDecoding fields with IsXXXDecoding() function calls in MediaDecoderStateMachine. r=kinetik
  659. # [05:09] * Quits: tonymec_KDE (tonymec@CAD0B946.29CE74CD.277517C1.IP) (Ping timeout)
  660. # [05:11] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  661. # [05:13] * Quits: spohl (Adium@EF43C350.AD7A4894.465000F8.IP) (Quit: Leaving.)
  662. # [05:13] * Quits: PiresFelix (Leonardo@moz-95AD9557.dynamic.adsl.gvt.net.br) (Quit: Leaving)
  663. # [05:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/a7bb4b3af5a0 - Garner Lee - Bug 1050577: [NFC] Techlost not clearing peer appId correctly. r=allstars.chh
  664. # [05:15] * Joins: cervantes (cervantes@moz-E37F359D.hinet-ip.hinet.net)
  665. # [05:15] * Joins: tonymec_KDE (tonymec@20F0B1EB.7C3BF363.277517C1.IP)
  666. # [05:16] * Joins: ehugg (ehugg@moz-44D86B1E.cisco.com)
  667. # [05:17] * Joins: Mook (mook@9E554A54.5767AF64.D758B1AA.IP)
  668. # [05:17] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  669. # [05:18] * Joins: sylvain (scleymans@moz-CF8BEBEF.dia.static.qwest.net)
  670. # [05:19] * Joins: aklotz (Thunderbir@moz-935DE219.cg.shawcable.net)
  671. # [05:21] * Quits: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca) (Quit: surkov)
  672. # [05:21] * Quits: aklotz (Thunderbir@moz-935DE219.cg.shawcable.net) (Quit: aklotz)
  673. # [05:22] * Quits: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Ping timeout)
  674. # [05:22] * Joins: mcote (mcote@CBB0F6C.7926C589.EE6E63A5.IP)
  675. # [05:22] * Joins: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca)
  676. # [05:24] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Ping timeout)
  677. # [05:24] * Quits: mwargers (mwargers@moz-9601219C.lightspeed.sntcca.sbcglobal.net) (Client exited)
  678. # [05:25] * Joins: mwargers (mwargers@moz-9601219C.lightspeed.sntcca.sbcglobal.net)
  679. # [05:26] * Joins: yzen (yzen@moz-F62769B5.cpe.pppoe.ca)
  680. # [05:27] * Quits: mwargers (mwargers@moz-9601219C.lightspeed.sntcca.sbcglobal.net) (Ping timeout)
  681. # [05:27] * mcote is now known as mcote|afk
  682. # [05:29] * Quits: marco (Adium@moz-BE2772C4.lightspeed.sntcca.sbcglobal.net) (Quit: Leaving.)
  683. # [05:30] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
  684. # [05:32] * curtisk is now known as curtisk|afk
  685. # [05:32] * Joins: thinker (user@moz-E8A14D4D.dynamic.kbronet.com.tw)
  686. # [05:32] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/319ba7e59b96 - Blair McBride - Bug 1045927 - UI Tour: Add ability to highlight Loop icon in browser chrome. r=MattN
  687. # [05:36] * hwine|focus is now known as hwine
  688. # [05:37] * Quits: robertbindar (Thunderbir@moz-C07D5168.p2p.sfo1.mozilla.com) (Ping timeout)
  689. # [05:37] * Joins: tonymec (tonymec@20F0B1EB.7C3BF363.277517C1.IP)
  690. # [05:39] * Joins: alex_tz (Adium@moz-2F3E2B03.hsd1.ca.comcast.net)
  691. # [05:39] * Quits: tonymec (tonymec@20F0B1EB.7C3BF363.277517C1.IP) (Ping timeout)
  692. # [05:39] * Quits: yurenju (yurenju@moz-E37F359D.hinet-ip.hinet.net) (Connection reset by peer)
  693. # [05:39] * Joins: nical (nico@DA4ABEAF.1DE10CA8.D8E68FF6.IP)
  694. # [05:39] * Quits: nical (nico@DA4ABEAF.1DE10CA8.D8E68FF6.IP) (Client exited)
  695. # [05:40] * Joins: yurenju (yurenju@moz-E37F359D.hinet-ip.hinet.net)
  696. # [05:41] * Quits: mconley (mconley@moz-FBB7D102.cable.teksavvy.com) (Input/output error)
  697. # [05:41] * Quits: tonymec_KDE (tonymec@20F0B1EB.7C3BF363.277517C1.IP) (Ping timeout)
  698. # [05:41] * Quits: ehugg (ehugg@moz-44D86B1E.cisco.com) (Quit: ehugg)
  699. # [05:41] * Quits: Mook (mook@9E554A54.5767AF64.D758B1AA.IP) (Quit: Mook)
  700. # [05:41] * Joins: mconley (mconley@moz-FBB7D102.cable.teksavvy.com)
  701. # [05:42] * Quits: alex_tz (Adium@moz-2F3E2B03.hsd1.ca.comcast.net) (Quit: Leaving.)
  702. # [05:43] * glob|away is now known as glob
  703. # [05:43] * Quits: mconley (mconley@moz-FBB7D102.cable.teksavvy.com) (Ping timeout)
  704. # [05:43] * Quits: yurenju (yurenju@moz-E37F359D.hinet-ip.hinet.net) (Connection reset by peer)
  705. # [05:44] * Joins: system64 (uid17738@moz-A42E5B7B.irccloud.com)
  706. # [05:44] * Joins: yurenju (yurenju@moz-99690620.hinet-ip.hinet.net)
  707. # [05:44] * Joins: ehugg (ehugg@moz-F46F489D.hsd1.wa.comcast.net)
  708. # [05:44] * Quits: ckitching (ckitching@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Input/output error)
  709. # [05:44] * Quits: bent (chatzilla@moz-632A43B.hsd1.ca.comcast.net) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  710. # [05:46] * bc is now known as bc|afk
  711. # [05:47] * Joins: juanb (jbecerra@EA768190.B3AD8579.9CA62458.IP)
  712. # [05:48] * Joins: tanvi (tanvi@moz-84BB47BB.hsd1.ca.comcast.net)
  713. # [05:50] * heycam is now known as heycam|away
  714. # [05:50] * Quits: daleharvey (sid513@moz-E77DEB21.irccloud.com) (Ping timeout)
  715. # [05:51] * nigelb crosses fingers for cpearce's push
  716. # [05:51] * Quits: catalinb (catalinb@moz-CF8BEBEF.dia.static.qwest.net) (Quit: This computer has gone to sleep)
  717. # [05:51] * Quits: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: sicking)
  718. # [05:52] <cpearce> hmmm.... there's a few blue boxes popping up on tbpl.
  719. # [05:52] * Joins: daleharvey (sid513@moz-E77DEB21.irccloud.com)
  720. # [05:52] * Joins: tonymec_KDE (tonymec@20D64215.9478F248.277517C1.IP)
  721. # [05:52] <nigelb> I hope I didn't jinx it.
  722. # [05:54] * Unfocused bets you did
  723. # [05:54] * Joins: mccr8 (mccr8@moz-F3D6C6BB.hsd1.ca.comcast.net)
  724. # [05:55] <nigelb> Unfocused: unrelated failures!
  725. # [05:56] * Joins: ekr (Adium@moz-FAC44BDF.hfc.comcastbusiness.net)
  726. # [05:56] <Unfocused> *sniff* don't call me names
  727. # [05:56] * Quits: bajaj (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net) (Quit: Leaving.)
  728. # [05:56] <nigelb> lol
  729. # [05:58] * Quits: janv (varga@966DE85D.9F0D0108.4038F31A.IP) (Quit: Leaving)
  730. # [05:58] * Quits: surkov (surkov@moz-DF24A6EA.cpe.pppoe.ca) (Quit: surkov)
  731. # [06:00] * Quits: tonymec_KDE (tonymec@20D64215.9478F248.277517C1.IP) (Ping timeout)
  732. # [06:00] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/6a76adda5d24 - Masayuki Nakano - Bug 1050124 Support TSATTRID_Text_VerticalWriting for consistency with other TSF aware applications r=jimm
  733. # [06:03] * Joins: tonymec_KDE (tonymec@moz-B3F9DCE1.adsl-dyn.isp.belgacom.be)
  734. # [06:03] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/da50b9d49dd1 - Matthew Noorenberghe - Bug 1052931 - Add URLSearchParams to GlobalProperties for import. r=bholley
  735. # [06:03] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/d178c0b658c5 - Tomasz Kołodziejski - Bug 1052734 - Use FileUtils.PERMS_FILE instead of magic octal constants in nsSearchService.js. r=MattN
  736. # [06:06] * Quits: sydpolk (sydpolk@moz-AA76A24E.dynamic.ip.windstream.net) (Ping timeout)
  737. # [06:06] * Joins: sydpolk (sydpolk@moz-11EF0A8D.dynamic.ip.windstream.net)
  738. # [06:08] * Quits: yurenju (yurenju@moz-99690620.hinet-ip.hinet.net) (Quit: Computer has gone to sleep.)
  739. # [06:09] * Quits: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP) (Client exited)
  740. # [06:10] * Joins: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP)
  741. # [06:10] * Quits: tonymec_KDE (tonymec@moz-B3F9DCE1.adsl-dyn.isp.belgacom.be) (Ping timeout)
  742. # [06:11] * Quits: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP) (Connection reset by peer)
  743. # [06:12] * Joins: tonymec_KDE (tonymec@9CFE79C5.3190DC02.9D2324B7.IP)
  744. # [06:15] * Joins: bajaj (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net)
  745. # [06:15] * Joins: koderok (koderok@2E932B4E.E10058D2.1F392835.IP)
  746. # [06:15] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/72792c418ed5 - B2G Bumper Bot - Bumping gaia.json for 10 gaia revision(s) a=gaia-bump
  747. # [06:15] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/08e487d66ca8 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  748. # [06:16] * Quits: tonymec_KDE (tonymec@9CFE79C5.3190DC02.9D2324B7.IP) (Ping timeout)
  749. # [06:17] * hwine is now known as hwine-ooo
  750. # [06:19] * Joins: dagnir (dagnir@moz-AD50763C.hawaii.res.rr.com)
  751. # [06:19] * Quits: Jesse (jruderman@moz-62518563.mtv2.mozilla.com) (Connection reset by peer)
  752. # [06:19] * Joins: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  753. # [06:19] * Joins: Jesse_ (jruderman@moz-62518563.mtv2.mozilla.com)
  754. # [06:22] * Joins: Joel (joel@moz-68CDC5DD.cable.dyn.cableonline.com.mx)
  755. # [06:23] <Joel> Hi people, I need a hint on this, I'm trying to build on my archlinux the perl's module Gtk2::MozEmbed, and I need a gtkmozembed.
  756. # [06:23] * Quits: automata (automata@BA48CF99.FA36B139.BB0EBA72.IP) (Quit: This computer has gone to sleep)
  757. # [06:24] * Quits: dria (dria@11A84059.23A6B07C.971E19F6.IP) (Ping timeout)
  758. # [06:24] <Joel> seems that my current xulrunner (31.x) doesn't come with gtkmozembed.h
  759. # [06:24] <Joel> any ideas about how to get it?
  760. # [06:26] <ewong> has hg.mo settled back down?
  761. # [06:26] <ewong> err wrong channel
  762. # [06:27] <@njn> how do I run Mochi-2 locally?
  763. # [06:28] <@njn> ./mach test mochitest-2, looks like
  764. # [06:29] * Joins: tonymec_KDE (tonymec@moz-2BE211D9.adsl-dyn.isp.belgacom.be)
  765. # [06:29] * Quits: Joel (joel@moz-68CDC5DD.cable.dyn.cableonline.com.mx) (Quit: Saliendo)
  766. # [06:31] <@njn> but it fails with: No such file or directory: u'/home/njn/moz/mi0/co64/all-tests.json'
  767. # [06:31] * Quits: Jesse_ (jruderman@moz-62518563.mtv2.mozilla.com) (Quit: Jesse_)
  768. # [06:31] * Quits: ekr (Adium@moz-FAC44BDF.hfc.comcastbusiness.net) (Ping timeout)
  769. # [06:31] <nigelb> ewong: somewhat.
  770. # [06:31] <nigelb> try still closed.
  771. # [06:32] * Quits: ewong|sleep (chatzilla@moz-8777076B.netvigator.com) (Ping timeout)
  772. # [06:32] <ewong> ;/
  773. # [06:32] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/20dbe115d628 - Jed Davis - Bug 1043733 - Require sandboxing to load Gecko Media Plugins on Linux. r=jesup r=kang
  774. # [06:33] * Joins: ewong|sleep (chatzilla@moz-8777076B.netvigator.com)
  775. # [06:33] * Quits: jrmuizel (jrmuizel@moz-4896AE87.cpe.teksavvy.com) (Client exited)
  776. # [06:34] * jld got a try job in during the brief window a few hours ago when it was open.
  777. # [06:35] * Joins: sydpolk1 (sydpolk@moz-11EF0A8D.dynamic.ip.windstream.net)
  778. # [06:35] * Quits: sydpolk (sydpolk@moz-11EF0A8D.dynamic.ip.windstream.net) (Ping timeout)
  779. # [06:35] * Quits: bajaj (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net) (Quit: Leaving.)
  780. # [06:36] * Joins: sicking (sicking@moz-5D774EA3.hsd1.ca.comcast.net)
  781. # [06:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e9ae7410d687 - Nicholas Nethercote - Bug 1052248 - Tweak the goodAllocated heuristics. r=bhackett.
  782. # [06:37] <nigelb> I've reopened try now.
  783. # [06:38] <nigelb> Let's see if hg survives
  784. # [06:38] * nigelb is now known as nigelb|sheriffduty
  785. # [06:40] * Joins: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP)
  786. # [06:41] * Quits: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP) (Connection reset by peer)
  787. # [06:42] * Quits: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Quit: Konversation terminated!)
  788. # [06:42] * Joins: fabrice (fabrice@495A1E63.5994028D.9CA62458.IP)
  789. # [06:44] * Joins: robertbindar (Thunderbir@moz-C722A5D3.hsd1.ca.comcast.net)
  790. # [06:45] <ewong> call me a cynic... until the actual reason for these huge spikes are found... it's going to be close-reopen-close.. etc..
  791. # [06:46] <nigelb|sheriffduty> of course.
  792. # [06:46] <nigelb|sheriffduty> already considering closing again.
  793. # [06:46] * Joins: brendan (brendaneic@9EB964C8.9A24A92.348C8185.IP)
  794. # [06:49] * Quits: sydpolk1 (sydpolk@moz-11EF0A8D.dynamic.ip.windstream.net) (Ping timeout)
  795. # [06:50] * Joins: sydpolk (sydpolk@moz-3AEC3E87.dynamic.ip.windstream.net)
  796. # [06:50] * nthomas is now known as nthomas|away
  797. # [06:53] * Joins: marco (Adium@moz-BE2772C4.lightspeed.sntcca.sbcglobal.net)
  798. # [06:53] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/04d0aea75267 - Daniel Holbert - Bug 1052758: Remove unused variable 'kWorkScheduled' from message_pump_glib.cc. r=ehsan
  799. # [06:53] * Quits: vebb (mike@8673B62F.3F44B6EB.FC74E68.IP) (Quit: preprocessor-irc-cli has gone to sleep ZzzzzZZZ)
  800. # [06:55] * Quits: bwc (Adium@9CA6B2B5.9820F418.60862D1D.IP) (Quit: Leaving.)
  801. # [06:56] * jcranmer is now known as jcranmer|away
  802. # [06:57] * Joins: tonymec (tonymec@moz-2BE211D9.adsl-dyn.isp.belgacom.be)
  803. # [06:58] * Quits: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net) (Quit: pcwalton)
  804. # [06:59] * Quits: tonymec (tonymec@moz-2BE211D9.adsl-dyn.isp.belgacom.be) (Ping timeout)
  805. # [07:00] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Input/output error)
  806. # [07:01] * Joins: tonymec (tonymec@moz-2BE211D9.adsl-dyn.isp.belgacom.be)
  807. # [07:01] <@dbaron> firebot, 0xcdcdcdcd
  808. # [07:01] <firebot> dbaron: 0xCDCDCDCD = 3452816845, 031563346715, 0b11001101110011011100110111001101
  809. # [07:01] <@dbaron> firebot, 0xcdcdcdcd?
  810. # [07:01] <firebot> dbaron: 0xCDCDCDCD = 3452816845, 031563346715, 0b11001101110011011100110111001101
  811. # [07:01] <@dbaron> firebot, 0xdddddddd?
  812. # [07:01] <firebot> dbaron: 0xDDDDDDDD = 3722304989, 033567356735, 0b11011101110111011101110111011101
  813. # [07:01] * Joins: flod (flod@B24A55E.C75EE065.2CA42CD4.IP)
  814. # [07:02] <@dbaron> hmmm, there was a bot that knew about the Windows debug allocator patterns...
  815. # [07:03] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  816. # [07:03] <dmajor> dbaron: http://stackoverflow.com/questions/127386/in-visual-studio-c-what-are-the-memory-allocation-representations
  817. # [07:03] * Joins: catalinb (catalinb@moz-CF8BEBEF.dia.static.qwest.net)
  818. # [07:03] <@dbaron> dmajor, thanks
  819. # [07:03] * jlund is now known as jlund|away
  820. # [07:04] <Unfocused> firebot: 0xCD0CD0CD
  821. # [07:04] <firebot> Unfocused: 0xCD0CD0CD = 3440169165, 031503150315, 0b11001101000011001101000011001101
  822. # [07:06] * Quits: dagnir (dagnir@moz-AD50763C.hawaii.res.rr.com) (Quit: WeeChat 0.4.2)
  823. # [07:06] <dmajor> firebot: 0xfeeefeee
  824. # [07:06] <firebot> dmajor: 0xFEEEFEEE = 4277075694, 037673577356, 0b11111110111011101111111011101110
  825. # [07:06] <dmajor> firebot: literal 0xfeeefeee
  826. # [07:06] <firebot> dmajor: 0xfeeefeee is 'probably memory that has been dedicated to a heap but not yet allocated by HeapAlloc() or LocalAlloc(), or memory that has just been freed by HeapFree()'.
  827. # [07:06] <dmajor> aha
  828. # [07:06] <nigelb|sheriffduty> neat
  829. # [07:07] <@dbaron> firebot, literal 0xcdcdcdcd
  830. # [07:07] <firebot> dbaron: 0xcdcdcdcd is 'crt: clean land (new, uninitd objects) or LifoAlloc's free space poison pattern'.
  831. # [07:07] <@dbaron> so one firebot feature overwrote another :-(
  832. # [07:08] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Input/output error)
  833. # [07:08] * Quits: tanvi (tanvi@moz-84BB47BB.hsd1.ca.comcast.net) (Quit: Leaving.)
  834. # [07:10] * Joins: bajaj (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net)
  835. # [07:11] * Quits: tonymec (tonymec@moz-2BE211D9.adsl-dyn.isp.belgacom.be) (Ping timeout)
  836. # [07:11] * Quits: tonymec_KDE (tonymec@moz-2BE211D9.adsl-dyn.isp.belgacom.be) (Ping timeout)
  837. # [07:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e38024ecc133 - Dan Glastonbury - Bug 1050599 - Sort GLContext extension names and strings.; r=bjacob
  838. # [07:15] * Joins: tonymec_KDE (tonymec@94CF288A.D4AB7E40.9D2324B7.IP)
  839. # [07:15] * Quits: chmanchester (chmanchest@63CA6098.1EB7376C.ECED8BE3.IP) (Input/output error)
  840. # [07:16] * Joins: Jesse (jruderman@moz-9754CB0.hsd1.ca.comcast.net)
  841. # [07:16] * Joins: bwc (Adium@9CA6B2B5.9820F418.60862D1D.IP)
  842. # [07:18] * Quits: robertbindar (Thunderbir@moz-C722A5D3.hsd1.ca.comcast.net) (Ping timeout)
  843. # [07:18] * Joins: yurenju (yurenju@moz-99690620.hinet-ip.hinet.net)
  844. # [07:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/cf9300710e32 - Anthony Jones - Bug 1050060 - Clean up MP4 index fields; r=edwin
  845. # [07:18] * Joins: chmanchester (chmanchest@63CA6098.1EB7376C.ECED8BE3.IP)
  846. # [07:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/2bbd13167a53 - Anthony Jones - Bug 1050060 - Update index off main thread; r=edwin
  847. # [07:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/51a77113e637 - Anthony Jones - Bug 1050060 - Optimise MP4 range calculation; r=edwin
  848. # [07:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/131fee00a393 - Anthony Jones - Bug 1050060 - Fix MP4 range pinning; r=edwin
  849. # [07:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/f38f848af906 - Anthony Jones - Bug 1050060 - Fix 64 bit file offset in MP4 reader; r=edwin
  850. # [07:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c91536bbf527 - Anthony Jones - Bug 1051666 - Add avc3 atom support to MP4 parser; r=edwin
  851. # [07:19] * Quits: sydpolk (sydpolk@moz-3AEC3E87.dynamic.ip.windstream.net) (Ping timeout)
  852. # [07:19] * Joins: tanvi (tanvi@moz-84BB47BB.hsd1.ca.comcast.net)
  853. # [07:20] * Quits: juanb (jbecerra@EA768190.B3AD8579.9CA62458.IP) (Quit: juanb)
  854. # [07:20] * Joins: sydpolk (sydpolk@moz-EEF6DC32.dynamic.ip.windstream.net)
  855. # [07:22] * Joins: m_kato_ (m_kato@moz-FC5B7524.tokyo.ocn.ne.jp)
  856. # [07:23] * Quits: joshua-s (Thunderbir@moz-29055AD9.syrcny.east.verizon.net) (Ping timeout)
  857. # [07:24] * Quits: tonymec_KDE (tonymec@94CF288A.D4AB7E40.9D2324B7.IP) (Ping timeout)
  858. # [07:25] * Joins: milan (milan@3FC87DE0.EA41C2FC.52F58BA0.IP)
  859. # [07:26] * Joins: tonymec_KDE (tonymec@BB7208D1.D8F5BA3C.A9371869.IP)
  860. # [07:28] * Quits: tonymec_KDE (tonymec@BB7208D1.D8F5BA3C.A9371869.IP) (Ping timeout)
  861. # [07:29] * Quits: catalinb (catalinb@moz-CF8BEBEF.dia.static.qwest.net) (Quit: This computer has gone to sleep)
  862. # [07:30] * Joins: tonymec_KDE (tonymec@72B5D4F4.EEA872EE.A9371869.IP)
  863. # [07:30] * Joins: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP)
  864. # [07:31] * Joins: jhorak (jhorak@moz-B317ACBB.net.upcbroadband.cz)
  865. # [07:34] * Quits: tonymec_KDE (tonymec@72B5D4F4.EEA872EE.A9371869.IP) (Ping timeout)
  866. # [07:34] * Joins: joshua-s (Thunderbir@moz-7BA9A709.syrcny.east.verizon.net)
  867. # [07:35] * Quits: koderok (koderok@2E932B4E.E10058D2.1F392835.IP) (Quit: koderok)
  868. # [07:36] * Joins: asobolev (asobolev@moz-A53CBDA1.hsd1.ca.comcast.net)
  869. # [07:36] * Joins: tonymec_KDE (tonymec@C44B1C51.1E7D143.A9371869.IP)
  870. # [07:38] * Joins: Mano (mano@moz-AB1853E1.red.bezeqint.net)
  871. # [07:39] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  872. # [07:39] * Joins: robertbindar (Thunderbir@moz-C722A5D3.hsd1.ca.comcast.net)
  873. # [07:41] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Ping timeout)
  874. # [07:41] * Quits: maxli (maxli@moz-F47DD19B.student.cs.uwaterloo.ca) (Quit: Leaving.)
  875. # [07:41] * Quits: Mano (mano@moz-AB1853E1.red.bezeqint.net) (Ping timeout)
  876. # [07:41] * Joins: maxli (maxli@moz-F47DD19B.student.cs.uwaterloo.ca)
  877. # [07:41] * Quits: maxli (maxli@moz-F47DD19B.student.cs.uwaterloo.ca) (Input/output error)
  878. # [07:41] * Quits: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP) (Client exited)
  879. # [07:43] <dmajor> is there a safe way to kill a local build on windows? ctrl+c leads to crashes
  880. # [07:44] <glandium> dmajor: mozmake crashes? they're annoying, but not dangerous
  881. # [07:45] * Quits: ehugg (ehugg@moz-F46F489D.hsd1.wa.comcast.net) (Quit: ehugg)
  882. # [07:45] <dmajor> glandium: yes. I have windbg set as my default postmortem, so it takes me a while to close them
  883. # [07:45] * Quits: philor (philor@moz-638273A8.my-nick.name) (Ping timeout)
  884. # [07:46] * Quits: chmanchester (chmanchest@63CA6098.1EB7376C.ECED8BE3.IP) (Input/output error)
  885. # [07:46] * Joins: philor (philor@moz-638273A8.my-nick.name)
  886. # [07:46] <nigelb|sheriffduty> try closed again
  887. # [07:46] <glandium> dmajor: there's an open bug about it, if you want to tackle it. essentially it's because we're not redistributing SIGINT to subprocesses in mach
  888. # [07:47] <dmajor> glandium: do you have the number?
  889. # [07:49] * Joins: catalinb (catalinb@moz-CF8BEBEF.dia.static.qwest.net)
  890. # [07:49] * Joins: koderok (koderok@2E932B4E.E10058D2.1F392835.IP)
  891. # [07:49] * Quits: sicking (sicking@moz-5D774EA3.hsd1.ca.comcast.net) (Ping timeout)
  892. # [07:50] <glandium> dmajor: probably 928983
  893. # [07:50] <glandium> i'm sure there was another
  894. # [07:50] <dmajor> glandium: 1037243 perhaps?
  895. # [07:51] * Quits: mccr8 (mccr8@moz-F3D6C6BB.hsd1.ca.comcast.net) (Quit: computer sleep)
  896. # [07:51] * Quits: raniere (raniere@moz-59947C86.dsl.telesp.net.br) (Ping timeout)
  897. # [07:51] * Joins: sicking (sicking@moz-5D774EA3.hsd1.ca.comcast.net)
  898. # [07:51] <glandium> dmajor: yes, that's the one i had in mind. I'm pretty sure under the hood, it's a dupe of 928983
  899. # [07:52] * Joins: chmanchester (chmanchest@63CA6098.1EB7376C.ECED8BE3.IP)
  900. # [07:53] * Joins: gsvelto (gsvelto@moz-195C2C08.clienti.tiscali.it)
  901. # [07:54] * Joins: tonymec (tonymec@C44B1C51.1E7D143.A9371869.IP)
  902. # [07:55] * Quits: Optimize1 (Optimizer@F7EAF1E1.7945B2B3.BE4CF869.IP) (Ping timeout)
  903. # [07:55] * Quits: milan (milan@3FC87DE0.EA41C2FC.52F58BA0.IP) (Quit: )
  904. # [07:57] <fabrice> any hope to reopen try?
  905. # [07:58] * Quits: tonymec (tonymec@C44B1C51.1E7D143.A9371869.IP) (Ping timeout)
  906. # [07:58] * Quits: chmanchester (chmanchest@63CA6098.1EB7376C.ECED8BE3.IP) (Input/output error)
  907. # [07:58] * Quits: Alessar (Alessar@4409775D.C64B1782.79D6B59E.IP) (Quit: IRC protocol for QIP)
  908. # [07:58] * Joins: Alessar (Alessar@4409775D.C64B1782.79D6B59E.IP)
  909. # [07:59] * Joins: tonymec (tonymec@C44B1C51.1E7D143.A9371869.IP)
  910. # [08:00] <nigelb|sheriffduty> fabrice: I *jsut* closed it :(
  911. # [08:00] <Unfocused> fabrice: there is no hope
  912. # [08:00] <nigelb|sheriffduty> https://graphite-scl3.mozilla.org/render/?width=975&height=466&_salt=1407472344.505&target=hosts.hgweb*_dmz_scl3_mozilla_com.load.load.shortterm&from=-6hours
  913. # [08:00] <nigelb|sheriffduty> It was looking good and then *booom*
  914. # [08:00] <fabrice> untrusted connection...
  915. # [08:00] <nigelb|sheriffduty> that's fine, internal mozilla link.
  916. # [08:00] * Joins: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP)
  917. # [08:00] <nigelb|sheriffduty> ignore cert error.
  918. # [08:00] * Quits: bajaj (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net) (Quit: Leaving.)
  919. # [08:01] <Unfocused> yea, that's totally safe advice ;)
  920. # [08:01] * Quits: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP) (Connection reset by peer)
  921. # [08:01] <nigelb|sheriffduty> if you don't trust mozilla, *who* can you trust! :P
  922. # [08:01] * Joins: jet (jet@moz-79F891EE.hsd1.ca.comcast.net)
  923. # [08:01] * Joins: Mano (mano@moz-AB1853E1.red.bezeqint.net)
  924. # [08:01] <nigelb|sheriffduty> the last two spikes on the right are what happened when we re-opened try :\
  925. # [08:02] * Quits: a-865 (fmcz@moz-CB202EEF.cable.mindspring.com) (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.26.1/20140612173529])
  926. # [08:02] <Unfocused> it's not not trusting mozilla. could be a MITM attack, and the page requests ldap sign in...
  927. # [08:02] <nigelb|sheriffduty> huh
  928. # [08:02] <nigelb|sheriffduty> how did I get in.
  929. # [08:02] <Unfocused> er, and the page *could* request ldap sign in
  930. # [08:03] <nigelb|sheriffduty> If it did, I woudn't ask to ignore cert error.
  931. # [08:03] <Unfocused> we're teaching people to do that though :(
  932. # [08:03] <nigelb|sheriffduty> oh :(
  933. # [08:04] * Joins: Optimizer (Optimizer@836C1772.8C9808EB.274D17D6.IP)
  934. # [08:04] <nigelb|sheriffduty> should copy it elsewhere next time.
  935. # [08:05] <Unfocused> (that was more a comment in general on non-valid certs for mozilla internal stuff, not on you specifically pasting that link)
  936. # [08:05] <fabrice> now, please reopen try! :P
  937. # [08:05] * Quits: mreavy (chatzilla@moz-50BE1A09.phlapa.fios.verizon.net) (Ping timeout)
  938. # [08:06] <efaust> closing try really is the nuclear option...
  939. # [08:06] * Quits: asobolev (asobolev@moz-A53CBDA1.hsd1.ca.comcast.net) (Quit: Leaving.)
  940. # [08:06] <nigelb|sheriffduty> nope
  941. # [08:06] <nigelb|sheriffduty> closing all trees is the nuclear option :)
  942. # [08:06] * Quits: bwc (Adium@9CA6B2B5.9820F418.60862D1D.IP) (Quit: Leaving.)
  943. # [08:06] <nigelb|sheriffduty> I have them all selected to close *just in case*
  944. # [08:06] * Joins: mreavy (chatzilla@moz-50BE1A09.phlapa.fios.verizon.net)
  945. # [08:06] * Quits: tonymec (tonymec@C44B1C51.1E7D143.A9371869.IP) (Ping timeout)
  946. # [08:06] * Quits: kentuckyfriedtakahe (ajones@34E8ECDF.DC2C3734.616A18A6.IP) (Input/output error)
  947. # [08:07] * Joins: raniere (raniere@moz-B5193A8C.dsl.telesp.net.br)
  948. # [08:07] * Quits: tonymec_KDE (tonymec@C44B1C51.1E7D143.A9371869.IP) (Ping timeout)
  949. # [08:08] <kamidphish> Looks like B2G ICS emulator fails to start on my inbound job. Is there anything I can do to fix that?
  950. # [08:08] * Joins: a-865 (fmcz@moz-CB202EEF.cable.mindspring.com)
  951. # [08:09] * Joins: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP)
  952. # [08:09] <nigelb|sheriffduty> kamidphish: which commit?
  953. # [08:09] <kamidphish> e38024ecc133
  954. # [08:09] * Joins: MrMazda (fmcz@moz-CB202EEF.cable.mindspring.com)
  955. # [08:10] <kamidphish> nigelb: Is that the info you were looking for?
  956. # [08:10] * Joins: asobolev (asobolev@moz-A53CBDA1.hsd1.ca.comcast.net)
  957. # [08:10] * Joins: tonymec_KDE (tonymec@moz-C0C4FCF6.adsl-dyn.isp.belgacom.be)
  958. # [08:10] <nigelb|sheriffduty> yep
  959. # [08:10] * Quits: tonymec_KDE (tonymec@moz-C0C4FCF6.adsl-dyn.isp.belgacom.be) (Input/output error)
  960. # [08:11] * Quits: tanvi (tanvi@moz-84BB47BB.hsd1.ca.comcast.net) (Quit: Leaving.)
  961. # [08:11] <nigelb|sheriffduty> kamidphish: let's see if the restarts help. It's an infra/releng thing and pmoor should be awake to look into it soon.
  962. # [08:12] <kamidphish> nigelb: Ok thanks.
  963. # [08:12] <efaust> is it a code issue, or a lack of hardware issue?
  964. # [08:12] * philor is now known as philor|away
  965. # [08:12] <nigelb|sheriffduty> ah, philor's already starred that one. Yeah, that's been happening lately.
  966. # [08:12] <efaust> a bug in mercurial, maybe?
  967. # [08:12] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/5b8f52a76065 - Makoto Kato - Bug 1050660 - setInputMethodActive doesn't sometimes work when switching IME imminently after boot. r=fabrice
  968. # [08:13] <nigelb|sheriffduty> efaust: I don't know. Developer Services would be able to say more.
  969. # [08:13] <nigelb|sheriffduty> https://wiki.mozilla.org/DeveloperServices
  970. # [08:14] * Joins: tonymec_KDE (tonymec@moz-7F39F460.adsl-dyn.isp.belgacom.be)
  971. # [08:14] * Joins: stransky (stransky@moz-59D79C36.broadband2.iol.cz)
  972. # [08:17] * Joins: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net)
  973. # [08:19] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  974. # [08:21] * Joins: vebb (mike@8673B62F.3F44B6EB.FC74E68.IP)
  975. # [08:21] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Ping timeout)
  976. # [08:21] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/9eb990223cee - B2G Bumper Bot - Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
  977. # [08:21] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/35128694b6df - B2G Bumper Bot - Bumping manifests a=b2g-bump
  978. # [08:22] <ewong> nuclear indeed.
  979. # [08:22] * Quits: ewong|sleep (chatzilla@moz-8777076B.netvigator.com) (Ping timeout)
  980. # [08:23] * Joins: ewong|sleep (chatzilla@moz-8777076B.netvigator.com)
  981. # [08:23] * Quits: kgrandon1 (Adium@moz-2A1C3CC8.hsd1.ca.comcast.net) (Quit: Leaving.)
  982. # [08:27] * Quits: Edgar (Thunderbir@moz-E37F359D.hinet-ip.hinet.net) (Ping timeout)
  983. # [08:31] * Joins: bajaj (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net)
  984. # [08:32] * Quits: bajaj (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net) (Ping timeout)
  985. # [08:34] * Joins: gcp (gpascutto@moz-9CEB1C98.access.telenet.be)
  986. # [08:34] * Quits: robertbindar (Thunderbir@moz-C722A5D3.hsd1.ca.comcast.net) (Ping timeout)
  987. # [08:34] * Joins: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP)
  988. # [08:35] * Quits: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net) (Ping timeout)
  989. # [08:36] * Joins: robertbindar (Thunderbir@moz-C722A5D3.hsd1.ca.comcast.net)
  990. # [08:37] * Joins: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net)
  991. # [08:38] * Joins: tomer (tomer@moz-C41B384C.static.012.net.il)
  992. # [08:38] * Joins: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net)
  993. # [08:38] * Quits: catalinb (catalinb@moz-CF8BEBEF.dia.static.qwest.net) (Quit: This computer has gone to sleep)
  994. # [08:41] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/23ce5de257da - Andrea - Bug 963042 - Added event listener for SwapDocShells to ensure we save state when swapping docShells r=ttaubert
  995. # [08:41] * Quits: tonymec_KDE (tonymec@moz-7F39F460.adsl-dyn.isp.belgacom.be) (Ping timeout)
  996. # [08:41] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/380181e0adf4 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  997. # [08:41] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/1fd9210a96fd - B2G Bumper Bot - Bumping manifests a=b2g-bump
  998. # [08:44] * Quits: @roc (chatzilla@7EA5AB88.DC2C3734.616A18A6.IP) (Input/output error)
  999. # [08:46] * Joins: ethan (ethan@moz-68B20B9B.dynamic.hinet.net)
  1000. # [08:46] * Joins: avaida (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP)
  1001. # [08:48] * Joins: tonymec_KDE (tonymec@D1A95E72.41E92BB1.A9371869.IP)
  1002. # [08:50] * Joins: Sushant94 (Sushant@B0D664D0.34384FD0.D30E9BEF.IP)
  1003. # [08:51] * Joins: adalucinet (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP)
  1004. # [08:52] * Quits: adalucinet (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP) (Quit: adalucinet)
  1005. # [08:52] * Quits: tonymec_KDE (tonymec@D1A95E72.41E92BB1.A9371869.IP) (Ping timeout)
  1006. # [08:53] * Quits: marco (Adium@moz-BE2772C4.lightspeed.sntcca.sbcglobal.net) (Quit: Leaving.)
  1007. # [08:53] * Quits: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net) (Connection reset by peer)
  1008. # [08:53] * Quits: hunboy (hunboy@moz-3CC0FF13.pool.invitel.hu) (Ping timeout)
  1009. # [08:54] * Joins: Btya (chatzilla@moz-C9FDB7A2.fbx.proxad.net)
  1010. # [08:54] * Joins: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net)
  1011. # [08:55] * Fallen|away is now known as Fallen
  1012. # [08:55] * Quits: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP) (Ping timeout)
  1013. # [08:55] * Joins: tonymec_KDE (tonymec@12C5C6C1.41E92BB1.A9371869.IP)
  1014. # [08:57] * Joins: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP)
  1015. # [08:57] * Joins: hunboy (hunboy@moz-CE0F9774.pool.invitel.hu)
  1016. # [08:58] * Quits: asobolev (asobolev@moz-A53CBDA1.hsd1.ca.comcast.net) (Quit: Leaving.)
  1017. # [08:59] * Quits: sylvain (scleymans@moz-CF8BEBEF.dia.static.qwest.net) (Input/output error)
  1018. # [09:03] * Quits: gerv (Instantbir@moz-D75BA16F.range81-152.btcentralplus.com) (Ping timeout)
  1019. # [09:04] * Quits: tonymec_KDE (tonymec@12C5C6C1.41E92BB1.A9371869.IP) (Ping timeout)
  1020. # [09:05] * Quits: StevenLee (Adium@moz-E37F359D.hinet-ip.hinet.net) (Ping timeout)
  1021. # [09:05] * Joins: tzimmermann (tzimmerman@moz-EC2AC70E.pools.vodafone-ip.de)
  1022. # [09:06] * Joins: StevenLee (Adium@moz-E37F359D.hinet-ip.hinet.net)
  1023. # [09:06] * Quits: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net) (Connection reset by peer)
  1024. # [09:06] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/027432803c09 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  1025. # [09:06] * Joins: ckitching_mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net)
  1026. # [09:06] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/12d41707da28 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  1027. # [09:07] * Joins: flaviu (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP)
  1028. # [09:07] * Joins: tonymec_KDE (tonymec@76B511E8.1F13139F.A9371869.IP)
  1029. # [09:08] * Quits: jhlin (jolin@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1030. # [09:09] * Joins: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net)
  1031. # [09:09] * Quits: ckitching_mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net) (Connection reset by peer)
  1032. # [09:09] * Quits: elin (elin@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1033. # [09:10] * Joins: elin (elin@moz-E37F359D.hinet-ip.hinet.net)
  1034. # [09:10] * Joins: bogdan_maris (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP)
  1035. # [09:11] * Joins: ckitching_mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net)
  1036. # [09:11] * Quits: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net) (Connection reset by peer)
  1037. # [09:12] * Joins: Optimizer1 (Instantbir@836C1772.8C9808EB.274D17D6.IP)
  1038. # [09:12] * Quits: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP) (Ping timeout)
  1039. # [09:12] * Quits: Optimizer1 (Instantbir@836C1772.8C9808EB.274D17D6.IP) (Quit: bye :))
  1040. # [09:12] * Joins: jhlin (jolin@moz-99690620.hinet-ip.hinet.net)
  1041. # [09:13] * Quits: ckitching_mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net) (Connection reset by peer)
  1042. # [09:13] * Joins: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net)
  1043. # [09:14] * Quits: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net) (Connection reset by peer)
  1044. # [09:14] * Joins: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net)
  1045. # [09:14] * Quits: gcp (gpascutto@moz-9CEB1C98.access.telenet.be) (Quit: Make a new plan, Stan!)
  1046. # [09:15] * Quits: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net) (Connection reset by peer)
  1047. # [09:15] * Quits: vebb (mike@8673B62F.3F44B6EB.FC74E68.IP) (Quit: preprocessor-irc-cli has gone to sleep ZzzzzZZZ)
  1048. # [09:15] * Joins: Jackneill (Jackneill@moz-DAD9C658.static.digikabel.hu)
  1049. # [09:15] * Joins: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net)
  1050. # [09:16] * Quits: tonymec_KDE (tonymec@76B511E8.1F13139F.A9371869.IP) (Ping timeout)
  1051. # [09:16] * Quits: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net) (Connection reset by peer)
  1052. # [09:16] * Joins: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net)
  1053. # [09:17] * Joins: gcp (gpascutto@moz-9CEB1C98.access.telenet.be)
  1054. # [09:19] * Joins: tonymec_KDE (tonymec@77B81F7.1ECADA64.277517C1.IP)
  1055. # [09:19] * Joins: ckitching_mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net)
  1056. # [09:19] * Quits: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net) (Connection reset by peer)
  1057. # [09:20] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  1058. # [09:21] * Quits: tonymec_KDE (tonymec@77B81F7.1ECADA64.277517C1.IP) (Ping timeout)
  1059. # [09:21] * Joins: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP)
  1060. # [09:22] * Quits: ckitching_mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net) (Connection reset by peer)
  1061. # [09:22] * Joins: mikeratcliffe (Adium@6B41FE3D.AD1925ED.7CCB197A.IP)
  1062. # [09:22] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Ping timeout)
  1063. # [09:23] * Joins: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net)
  1064. # [09:24] * Quits: jet (jet@moz-79F891EE.hsd1.ca.comcast.net) (Quit: jet)
  1065. # [09:24] * Joins: ckitching_mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net)
  1066. # [09:24] * Quits: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net) (Connection reset by peer)
  1067. # [09:26] * Quits: ckitching_mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net) (Connection reset by peer)
  1068. # [09:26] * Joins: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net)
  1069. # [09:27] * Quits: stransky (stransky@moz-59D79C36.broadband2.iol.cz) (Quit: Connection reset by beer)
  1070. # [09:27] * Joins: stransky (stransky@moz-59D79C36.broadband2.iol.cz)
  1071. # [09:27] * Quits: @dbaron (dbaron@moz-6F4D2D12.dsl.dynamic.sonic.net) (Ping timeout)
  1072. # [09:27] * Quits: sicking (sicking@moz-5D774EA3.hsd1.ca.comcast.net) (Quit: sicking)
  1073. # [09:29] * Quits: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net) (Connection reset by peer)
  1074. # [09:29] * Quits: rkent (Thunderbir@moz-CCEA8D95.hsd1.wa.comcast.net) (Ping timeout)
  1075. # [09:29] * Joins: ckitching_mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net)
  1076. # [09:30] * Quits: ckitching_mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net) (Connection reset by peer)
  1077. # [09:30] * Joins: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net)
  1078. # [09:30] * Joins: cpearce_ (chatzilla@moz-EC1018D1.jetstream.xtra.co.nz)
  1079. # [09:31] * Joins: bajaj (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net)
  1080. # [09:31] * Quits: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP) (Ping timeout)
  1081. # [09:31] * Quits: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net) (Ping timeout)
  1082. # [09:32] * Joins: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net)
  1083. # [09:32] * Joins: ckitching_mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net)
  1084. # [09:32] * Quits: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net) (Connection reset by peer)
  1085. # [09:33] * Quits: bajaj (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net) (Ping timeout)
  1086. # [09:34] * Joins: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP)
  1087. # [09:35] * Quits: m_kato (m_kato@moz-C286AD9A.bitcat.net) (Ping timeout)
  1088. # [09:35] * whimboo|afk is now known as whimboo
  1089. # [09:35] * Joins: gandalf (zbraniecki@moz-F9900A0D.hsd1.ca.comcast.net)
  1090. # [09:36] * Joins: m_kato (m_kato@moz-FC5B7524.tokyo.ocn.ne.jp)
  1091. # [09:36] * Joins: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP)
  1092. # [09:38] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/f56231d7ed71 - Makoto Kato - Backed out changeset 5b8f52a76065 (bug 1050660) due to mochitest-2 failure on Linux
  1093. # [09:39] * Joins: Ms2ger (Ms2ger@moz-AF1EF8DE.adsl-dyn.isp.belgacom.be)
  1094. # [09:40] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  1095. # [09:43] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  1096. # [09:49] * Quits: vicamo (vicamo@moz-E37F359D.hinet-ip.hinet.net) (Quit: vicamo)
  1097. # [09:49] <NeilAway> firebot: what is 0xdbdbdbdb?
  1098. # [09:49] <firebot> NeilAway: well, duh. 0xdbdbdbdb is Python's dead memory marker (memory that has been freed)
  1099. # [09:49] * julienw_afk is now known as julienw
  1100. # [09:50] * Joins: mcsmurf (Frank@moz-1389C5B5.dip0.t-ipconnect.de)
  1101. # [09:51] * mcsmurf is now known as IRCMonkey13913
  1102. # [09:52] * IRCMonkey13913 is now known as mcsmurf
  1103. # [09:54] * Quits: Dagger (dagger@A0BD6C11.5E4D82A.5A1C986B.IP) (Connection reset by peer)
  1104. # [09:54] * Quits: gandalf (zbraniecki@moz-F9900A0D.hsd1.ca.comcast.net) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  1105. # [09:54] * Quits: m_kato_ (m_kato@moz-FC5B7524.tokyo.ocn.ne.jp) (Quit: Leaving...)
  1106. # [09:55] * Joins: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net)
  1107. # [09:56] * Quits: dougc (dougc@moz-C3D31A35.lns20.mel4.internode.on.net) (Ping timeout)
  1108. # [09:58] * Joins: Gijs (gijs@moz-A0F72B.range81-159.btcentralplus.com)
  1109. # [09:58] * Joins: roc (chatzilla@moz-462A27B9.bng1.tvc.orcon.net.nz)
  1110. # [09:58] * ChanServ sets mode: +o roc
  1111. # [09:58] * Joins: Dagger (dagger@A0BD6C11.5E4D82A.5A1C986B.IP)
  1112. # [09:58] * Joins: dougc (dougc@moz-C3D31A35.lns20.mel4.internode.on.net)
  1113. # [09:59] * Joins: sicking (sicking@moz-5D774EA3.hsd1.ca.comcast.net)
  1114. # [09:59] * Quits: sicking (sicking@moz-5D774EA3.hsd1.ca.comcast.net) (Quit: sicking)
  1115. # [10:01] * Quits: morlunk (andrew@moz-7CB4AD92.vc.shawcable.net) (Ping timeout)
  1116. # [10:01] * Joins: gandalf (zbraniecki@moz-F9900A0D.hsd1.ca.comcast.net)
  1117. # [10:03] * Quits: brendan (brendaneic@9EB964C8.9A24A92.348C8185.IP) (Quit: brendan)
  1118. # [10:03] * Quits: @njn (njn@moz-20554402.dyn.iinet.net.au) (Quit: ChatZilla 0.9.90.1 [Firefox 34.0a1/20140810163404])
  1119. # [10:05] * Quits: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net) (Quit: mixedpuppy)
  1120. # [10:06] * Quits: Shrooms (Shrooms@moz-B000DBF6.asm.bellsouth.net) (Ping timeout)
  1121. # [10:09] * Joins: edmorley (uid27002@moz-5F4AA75A.irccloud.com)
  1122. # [10:10] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/9a3c81860040 - Ed Morley - Bug 577266 - Correct another handful of incorrect spellings
  1123. # [10:11] * Quits: gandalf (zbraniecki@moz-F9900A0D.hsd1.ca.comcast.net) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  1124. # [10:14] * jhlin is now known as jhlin|away
  1125. # [10:14] * Quits: StevenLee (Adium@moz-E37F359D.hinet-ip.hinet.net) (Quit: Leaving.)
  1126. # [10:15] * Joins: bajaj (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net)
  1127. # [10:15] * Joins: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  1128. # [10:15] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/f8ddd1765fe5 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  1129. # [10:15] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/e10e86b3bc6f - B2G Bumper Bot - Bumping manifests a=b2g-bump
  1130. # [10:15] * Quits: jhlin|away (jolin@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1131. # [10:16] * Joins: jhlin (jolin@moz-99690620.hinet-ip.hinet.net)
  1132. # [10:17] * Joins: Rik (rik@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1133. # [10:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9ffe3e743ffc - Benjamin Bouvier - Bug 1052380: Fix builds without Ion after bug 1019831 landed; r=nbp
  1134. # [10:17] <bagder> any word on when the try tree may open again?
  1135. # [10:18] * Joins: StevenLee (Adium@moz-99690620.hinet-ip.hinet.net)
  1136. # [10:20] <nigelb|sheriffduty> bagder: Not really, sorry. Opening Try brings up load on hg.m.o drastically bringing everything to a griding halt :(
  1137. # [10:20] <Ms2ger> bagder, not yet
  1138. # [10:20] <NeilAway> firebot: what is 0xbdbdbdbd?
  1139. # [10:20] <firebot> NeilAway: 0xbdbdbdbd is the PJS garbage collector's free space poison
  1140. # [10:20] <bagder> ok, thanks.
  1141. # [10:20] * Quits: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP) (Ping timeout)
  1142. # [10:20] * Quits: bogdan_maris (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP) (Quit: bogdan_maris)
  1143. # [10:20] * Joins: bogdan_maris (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP)
  1144. # [10:21] <NeilAway> bah, which is the one with the easter egg about Twiki and Buck Rogers?
  1145. # [10:21] * Quits: mikeratcliffe (Adium@6B41FE3D.AD1925ED.7CCB197A.IP) (Ping timeout)
  1146. # [10:21] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  1147. # [10:22] * Joins: mikeratcliffe (Adium@6B41FE3D.AD1925ED.7CCB197A.IP)
  1148. # [10:23] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Ping timeout)
  1149. # [10:26] * Joins: mak (uid24946@moz-31ABA2C0.irccloud.com)
  1150. # [10:27] * Joins: twi (Adium@moz-4A7B1469.cust.vodafonedsl.it)
  1151. # [10:28] * Quits: robertbindar (Thunderbir@moz-C722A5D3.hsd1.ca.comcast.net) (Ping timeout)
  1152. # [10:31] * Joins: GPHemsley (GPHemsley@2D083E5E.28E20060.4622F4A8.IP)
  1153. # [10:31] * Joins: vicamo (vicamo@moz-E37F359D.hinet-ip.hinet.net)
  1154. # [10:31] * Joins: h4writer (h4writer@moz-957FCBC.access.telenet.be)
  1155. # [10:34] * Joins: badescunicu (Thunderbir@EC002F0B.F83DACF9.320F75DD.IP)
  1156. # [10:35] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/7775ca02dfd6 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  1157. # [10:35] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/ff68bdf01ce2 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  1158. # [10:36] * nigelb|sheriffduty is now known as nigelb
  1159. # [10:38] * Quits: ethan (ethan@moz-68B20B9B.dynamic.hinet.net) (Quit: ethan)
  1160. # [10:39] * edmorley is now known as edmorley|sheriffduty
  1161. # [10:42] * Joins: Archaeopteryx (itsme@moz-DA477F53.cust.telecolumbus.net)
  1162. # [10:43] * Quits: bajaj (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net) (Quit: Leaving.)
  1163. # [10:46] <bbouvier> where do we file bugs against bugzilla?
  1164. # [10:47] <Ms2ger> On bugzilla
  1165. # [10:47] <glob> bbouvier, normally against the bugzilla product
  1166. # [10:47] <glob> bbouvier, or against the 'bugzilla.mozilla.org' product if it's bmo specific
  1167. # [10:47] <glob> bbouvier, what's the issue, i may be able to help
  1168. # [10:48] <bbouvier> glob: somebody created a mentored bug, which is a actually a duplicate of a non mentored bug. I dup'd the mentored bug, and the mentor field got passed to the "original" bug
  1169. # [10:48] <glob> bbouvier, ah, that's bug 1051655
  1170. # [10:48] * Quits: wolfiR_ (wolfiR@moz-9078E13F.dip0.t-ipconnect.de) (Ping timeout)
  1171. # [10:49] <bbouvier> at least, that is strange UI: ideally when dup'ing, we should get asked "do you want to pass the mentor field?", but passing it always looks strange
  1172. # [10:49] <glob> i'll add a comment about that particular impact
  1173. # [10:49] <bbouvier> glob: cool, thanks!
  1174. # [10:49] * Joins: nrc (nrc@88F51059.F3BBB17D.144F44FA.IP)
  1175. # [10:50] * Quits: h4writer (h4writer@moz-957FCBC.access.telenet.be) (Broken pipe)
  1176. # [10:50] <glob> bbouvier, yeah; it shouldn't happen at all. it's a weird interaction of bugzilla's extension system. dkl and i have been trying to figure out the best way to fix it all week
  1177. # [10:52] * Joins: wolfiR_ (wolfiR@moz-A17BE337.dip0.t-ipconnect.de)
  1178. # [10:52] * Joins: gerv (Instantbir@moz-8E68CF56.in-addr.arpa)
  1179. # [10:52] * Joins: darktrojan (geoff@moz-9656CD64.dsl.telstraclear.net)
  1180. # [10:55] * Joins: Bas (chatzilla@EBA84827.A73C08F8.348C8185.IP)
  1181. # [10:59] * Joins: jya_ (jyavenard@moz-E8C4957B.bjzv2.vic.bigpond.net.au)
  1182. # [10:59] * Quits: dmajor (dmajor@34E8ECDF.DC2C3734.616A18A6.IP) (Connection reset by peer)
  1183. # [11:00] * Quits: jya_ (jyavenard@moz-E8C4957B.bjzv2.vic.bigpond.net.au) (Quit: jya_)
  1184. # [11:00] * glob is now known as glob|away
  1185. # [11:01] * Quits: StevenLee (Adium@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1186. # [11:01] * Joins: StevenLee (Adium@moz-E37F359D.hinet-ip.hinet.net)
  1187. # [11:02] * Quits: yliao (yliao@moz-99690620.hinet-ip.hinet.net) (Client exited)
  1188. # [11:03] * Joins: yliao (yliao@moz-99690620.hinet-ip.hinet.net)
  1189. # [11:04] * Quits: NeilAway (neil@moz-B1437A82.static.virginmediabusiness.co.uk) (Ping timeout)
  1190. # [11:04] * Joins: yliao_ (yliao@moz-99690620.hinet-ip.hinet.net)
  1191. # [11:05] * Quits: yliao (yliao@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1192. # [11:05] * Joins: NeilAway (neil@moz-B1437A82.static.virginmediabusiness.co.uk)
  1193. # [11:10] * Joins: ethan (ethan@moz-26B9E3B5.dynamic.hinet.net)
  1194. # [11:12] * Joins: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP)
  1195. # [11:16] * FuzzyFox|afk is now known as FuzzyFox
  1196. # [11:16] * Joins: dmajor (dmajor@34E8ECDF.DC2C3734.616A18A6.IP)
  1197. # [11:17] * Quits: jya (jya@moz-E8C4957B.bjzv2.vic.bigpond.net.au) (Quit: jya)
  1198. # [11:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/fb4ffdf1f647 - Jon Coppeard - Bug 1049440 - Don't crash in jsapi-tests when a test fails to initialize r=luke
  1199. # [11:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a817b58630c8 - Jon Coppeard - Bug 1052388 - Rename JS_CallHeapFooTracer() functions to JS_CallFooTracer() r=terrence r=smaug
  1200. # [11:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/f6970e7f17e1 - Jon Coppeard - Bug 995284 - Make the GC more deterministic in the shell r=terrence
  1201. # [11:19] <whimboo> erahm: hi
  1202. # [11:19] <whimboo> are you around?
  1203. # [11:19] * Joins: vebb (mike@moz-D2989058.callplus.net.nz)
  1204. # [11:20] * Quits: ckitching_mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net) (Ping timeout)
  1205. # [11:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/f3853e6fd7e6 - B2G Bumper Bot - Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
  1206. # [11:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/6565ee58ca44 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  1207. # [11:22] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  1208. # [11:22] * julienw is now known as julienw_afk
  1209. # [11:22] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0cab1edaa959 - Benjamin Bouvier - Bug 1021716: SIMD x86-x64: Implement MSimdExtractElement; r=sunfish
  1210. # [11:22] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/228b3416dace - Benjamin Bouvier - Bug 1021716: Use movhlps for extracting lane Z of a float32x4 register; r=sunfish
  1211. # [11:23] * Quits: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP) (Ping timeout)
  1212. # [11:23] * Joins: gustavold (gustavold@moz-CECBA77E.net.upcbroadband.cz)
  1213. # [11:24] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Ping timeout)
  1214. # [11:26] * FuzzyFox is now known as FuzzyFox|afk
  1215. # [11:26] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/1681a1c1962c - Brian Birtles - Bug 1052147 - Initialize AnimationPlayer::mPlayState to running state; r=dbaron
  1216. # [11:29] * Quits: gerv (Instantbir@moz-8E68CF56.in-addr.arpa) (Ping timeout)
  1217. # [11:30] * Quits: gustavold (gustavold@moz-CECBA77E.net.upcbroadband.cz) (Quit: Leaving.)
  1218. # [11:31] * Quits: nattokirai (nattokirai@moz-C286AD9A.bitcat.net) (Quit: nattokirai)
  1219. # [11:32] * Quits: tomer (tomer@moz-C41B384C.static.012.net.il) (Quit: Leaving.)
  1220. # [11:32] * baku|away is now known as baku
  1221. # [11:32] * Joins: Optimize1 (Instantbir@4F3E1057.A6DE773B.88FACCAA.IP)
  1222. # [11:35] * sewardj_ is now known as sewardj
  1223. # [11:36] * Quits: gozala (uid5923@moz-5F4AA75A.irccloud.com) (Quit: Connection closed for inactivity)
  1224. # [11:36] * Joins: gabor (gabor@92F57509.E9E5A024.CA68F7F7.IP)
  1225. # [11:37] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  1226. # [11:38] * Quits: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP) (Quit: RealRaven)
  1227. # [11:38] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  1228. # [11:38] * Joins: smaug (chatzilla@moz-38C5B03.elisa-laajakaista.fi)
  1229. # [11:38] * ChanServ sets mode: +o smaug
  1230. # [11:39] * Joins: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP)
  1231. # [11:42] * Quits: GPHemsley (GPHemsley@2D083E5E.28E20060.4622F4A8.IP) (Quit: This computer has gone to sleep)
  1232. # [11:42] * Quits: yliao_ (yliao@moz-99690620.hinet-ip.hinet.net) (Client exited)
  1233. # [11:43] * Joins: yliao (yliao@moz-99690620.hinet-ip.hinet.net)
  1234. # [11:43] * Quits: jaws (uid2871@moz-5F4AA75A.irccloud.com) (Quit: Connection closed for inactivity)
  1235. # [11:44] * Quits: cpearce_ (chatzilla@moz-EC1018D1.jetstream.xtra.co.nz) (Quit: ChatZilla 0.9.90.1-rdmsoft [XULRunner 22.0/20130619132145])
  1236. # [11:44] * Quits: yliao (yliao@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1237. # [11:45] * Joins: yliao (yliao@moz-99690620.hinet-ip.hinet.net)
  1238. # [11:46] <RealRaven> Is there a *lightweight* Ajax library or wrapper that I can use in an Addon without having to include jQuery?
  1239. # [11:47] * Joins: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP)
  1240. # [11:47] * ewong is now known as ewong|away
  1241. # [11:48] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/43cd16d3c303 - Jim Mathies - Bug 1047842 - Pass WM_GETTEXTLENGTH messages in ipc wait for notify calls to DefWindowProc. r=bent
  1242. # [11:48] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b3c4148afdd4 - Jim Mathies - Bug 1052395 - Improve ipc debug output for unhandled nonqueued Windows messages. r=bent
  1243. # [11:50] * ewong|away is now known as ewong
  1244. # [11:51] * ewong is now known as ewong|away
  1245. # [11:54] * Joins: mdoglio (sid15662@moz-A42E5B7B.irccloud.com)
  1246. # [11:55] * Quits: vebb (mike@moz-D2989058.callplus.net.nz) (Quit: preprocessor-irc-cli has gone to sleep ZzzzzZZZ)
  1247. # [11:58] * Quits: vicamo (vicamo@moz-E37F359D.hinet-ip.hinet.net) (Quit: vicamo)
  1248. # [12:00] * Joins: Boriss (Boriss@moz-F71CF7D3.as13285.net)
  1249. # [12:03] * Quits: thinker (user@moz-E8A14D4D.dynamic.kbronet.com.tw) (Connection reset by peer)
  1250. # [12:03] * Quits: jrgill (jrgill@moz-4F5F20D2.stny.res.rr.com) (Connection reset by peer)
  1251. # [12:04] * Quits: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP) (Ping timeout)
  1252. # [12:05] * Quits: Sushant94 (Sushant@B0D664D0.34384FD0.D30E9BEF.IP) (Connection reset by peer)
  1253. # [12:06] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e8425ac082d7 - Jonathan Kew - bug 1052535 - fix errors in Unicode Joining_Type data for Mandaic. r=jdaggett
  1254. # [12:06] * Joins: Sushant94 (Sushant@B0D664D0.34384FD0.D30E9BEF.IP)
  1255. # [12:07] * Quits: seanlin (Thunderbir@moz-E37F359D.hinet-ip.hinet.net) (Client exited)
  1256. # [12:07] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/2ed9339b41e9 - Julian Seward - Bug 1051527 - BackgroundClipState::mHasRounded corners is used uninitialised. r=matt.woodrow.
  1257. # [12:08] * Quits: Morris (Morris@moz-99690620.hinet-ip.hinet.net) (Quit: Morris)
  1258. # [12:08] * lth|away is now known as lth
  1259. # [12:09] * Joins: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP)
  1260. # [12:10] * mattwoodrow is now known as mattwoodrow|away
  1261. # [12:11] * Quits: StevenLee (Adium@moz-E37F359D.hinet-ip.hinet.net) (Quit: Leaving.)
  1262. # [12:12] * Joins: wcosta (wander@A9DF2293.D0ACF8E7.1C880E7D.IP)
  1263. # [12:13] * Quits: Optimize1 (Instantbir@4F3E1057.A6DE773B.88FACCAA.IP) (Ping timeout)
  1264. # [12:14] * Quits: ewong|away (chatzilla@moz-20A71729.net) (Quit: reboot)
  1265. # [12:14] * Joins: StevenLee (Adium@moz-99690620.hinet-ip.hinet.net)
  1266. # [12:16] * Quits: Boriss (Boriss@moz-F71CF7D3.as13285.net) (Quit: Boriss)
  1267. # [12:17] * Joins: jrgill (jrgill@moz-4F5F20D2.stny.res.rr.com)
  1268. # [12:21] * Joins: Optimizer1 (Instantbir@4F3E1057.A6DE773B.88FACCAA.IP)
  1269. # [12:22] * Quits: terrence-afk (terrence@moz-B38D16E9.sb.sd.cox.net) (Ping timeout)
  1270. # [12:22] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/76b55c0850ca - Ed Morley - Backed out changeset f6970e7f17e1 (bug 995284) for crashes on OS X and Windows; CLOSED TREE
  1271. # [12:23] * Joins: clokep (Instantbir@moz-1484204D.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com)
  1272. # [12:25] * Quits: TYLin (TYLin@moz-E37F359D.hinet-ip.hinet.net) (Quit: TYLin)
  1273. # [12:27] * Joins: terrence-afk (terrence@moz-B38D16E9.sb.sd.cox.net)
  1274. # [12:28] * Joins: espadrine (ttyl@moz-87D32D93.w80-12.abo.wanadoo.fr)
  1275. # [12:28] * Joins: thinker (user@moz-E8A14D4D.dynamic.kbronet.com.tw)
  1276. # [12:29] * Quits: thinker (user@moz-E8A14D4D.dynamic.kbronet.com.tw) (Client exited)
  1277. # [12:29] * Quits: mcsmurf (Frank@moz-1389C5B5.dip0.t-ipconnect.de) (Input/output error)
  1278. # [12:29] * Joins: thinker (user@moz-E8A14D4D.dynamic.kbronet.com.tw)
  1279. # [12:30] * Joins: Snuffleupagus (chatzilla@moz-50E31F78.bredband.comhem.se)
  1280. # [12:32] * Joins: Boriss (Boriss@moz-F71CF7D3.as13285.net)
  1281. # [12:33] * Quits: odin_ (Odin@moz-59140718.skybroadband.com) (Ping timeout)
  1282. # [12:33] * Joins: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP)
  1283. # [12:33] * Quits: @smaug (chatzilla@moz-38C5B03.elisa-laajakaista.fi) (Ping timeout)
  1284. # [12:34] * Quits: yurenju (yurenju@moz-99690620.hinet-ip.hinet.net) (Quit: Computer has gone to sleep.)
  1285. # [12:34] * Joins: smaug (chatzilla@moz-38C5B03.elisa-laajakaista.fi)
  1286. # [12:34] * ChanServ sets mode: +o smaug
  1287. # [12:34] <siddu> In which component of mozilla source code should i work for this [Bug 532830]
  1288. # [12:36] * Quits: Boriss (Boriss@moz-F71CF7D3.as13285.net) (Quit: Boriss)
  1289. # [12:37] * Quits: gcp (gpascutto@moz-9CEB1C98.access.telenet.be) (Ping timeout)
  1290. # [12:39] <@smaug> siddu: ask in the bug?
  1291. # [12:39] <@smaug> mcmanus hinted something
  1292. # [12:39] <@smaug> but that was long ago
  1293. # [12:39] <@smaug> things may have changed since then
  1294. # [12:39] * Quits: wolfiR_ (wolfiR@moz-A17BE337.dip0.t-ipconnect.de) (Quit: Leaving)
  1295. # [12:40] * Quits: ethan (ethan@moz-26B9E3B5.dynamic.hinet.net) (Quit: ethan)
  1296. # [12:40] <@smaug> (like, we have Predictor these days)
  1297. # [12:41] * Quits: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP) (Ping timeout)
  1298. # [12:41] * Joins: techgaun (techgaun@B355110B.9A7E2C40.C00F85F8.IP)
  1299. # [12:42] * Quits: elin (elin@moz-E37F359D.hinet-ip.hinet.net) (Quit: elin)
  1300. # [12:42] * NeilAway wonders whether bug 651803 should be moved to a different component ;-)
  1301. # [12:42] * whimboo is now known as whimboo|afk
  1302. # [12:43] * Joins: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP)
  1303. # [12:43] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  1304. # [12:45] * Quits: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP) (Client exited)
  1305. # [12:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/3d567782f210 - Gijs Kruitbosch - Bug 1052750 - try to fix intermittent timeouts in browser urlbar search test by waiting for focus on the newly opened window, rs=firebot
  1306. # [12:45] * Joins: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP)
  1307. # [12:46] * Quits: jwwang (jwwang@moz-E37F359D.hinet-ip.hinet.net) (Quit: 暫離)
  1308. # [12:46] * Quits: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP) (Connection reset by peer)
  1309. # [12:47] * Joins: ethan (ethan@moz-26B9E3B5.dynamic.hinet.net)
  1310. # [12:48] * Quits: clokep (Instantbir@moz-1484204D.c3-0.smr-ubr2.sbo-smr.ma.cable.rcn.com) (Ping timeout)
  1311. # [12:50] * Joins: kamidphish (textual@moz-6AB00DA7.tpgi.com.au)
  1312. # [12:50] * Joins: vebb (mike@moz-D2989058.callplus.net.nz)
  1313. # [12:51] * Joins: Shrooms (Shrooms@moz-390504C0.asm.bellsouth.net)
  1314. # [12:52] * Quits: yliao (yliao@moz-99690620.hinet-ip.hinet.net) (Client exited)
  1315. # [12:52] * Joins: yliao (yliao@moz-E37F359D.hinet-ip.hinet.net)
  1316. # [12:54] * Quits: techgaun (techgaun@B355110B.9A7E2C40.C00F85F8.IP) (Quit: FOSS enthusiast)
  1317. # [12:54] * Quits: yliao (yliao@moz-E37F359D.hinet-ip.hinet.net) (Ping timeout)
  1318. # [12:54] * Quits: vebb (mike@moz-D2989058.callplus.net.nz) (Connection reset by peer)
  1319. # [12:56] * jandem-blackhat is now known as jandem
  1320. # [12:56] * Quits: brsun (chatzilla@moz-E37F359D.hinet-ip.hinet.net) (Ping timeout)
  1321. # [12:57] * Quits: @smaug (chatzilla@moz-38C5B03.elisa-laajakaista.fi) (Ping timeout)
  1322. # [12:57] * Joins: odin_ (Odin@moz-59140718.skybroadband.com)
  1323. # [12:58] * Joins: smaug (chatzilla@moz-96DF6B53.nat.bb.dnainternet.fi)
  1324. # [12:58] * ChanServ sets mode: +o smaug
  1325. # [12:59] * Joins: gcp (gpascutto@moz-9CEB1C98.access.telenet.be)
  1326. # [13:00] * Quits: kamidphish (textual@moz-6AB00DA7.tpgi.com.au) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  1327. # [13:00] * Quits: amoghbl1 (Thunderbir@9B9315E1.A6025CA.1C37C358.IP) (Ping timeout)
  1328. # [13:00] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/42e9854c7ad1 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  1329. # [13:00] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/7d3d48db958d - B2G Bumper Bot - Bumping manifests a=b2g-bump
  1330. # [13:01] * Joins: vebb (mike@moz-D2989058.callplus.net.nz)
  1331. # [13:02] * Quits: karl (karl@moz-C433B975.jetstream.xtra.co.nz) (Ping timeout)
  1332. # [13:02] * nthomas|away is now known as nthomas
  1333. # [13:04] <Optimizer1> anyone have any idea why my PUT and DELETE calls are failing only on Chrome
  1334. # [13:04] <Optimizer1> same origin and all...
  1335. # [13:04] * Joins: stomper (Mibbit@9B9315E1.A6025CA.1C37C358.IP)
  1336. # [13:04] * Quits: stomper (Mibbit@9B9315E1.A6025CA.1C37C358.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1337. # [13:04] * Quits: Bas (chatzilla@EBA84827.A73C08F8.348C8185.IP) (Ping timeout)
  1338. # [13:04] * nthomas is now known as nthomas|away
  1339. # [13:06] * Joins: elbeardmorez (quassel@moz-7157D0DD.skybroadband.com)
  1340. # [13:07] * Quits: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP) (Ping timeout)
  1341. # [13:07] * Joins: Bas (chatzilla@EBA84827.A73C08F8.348C8185.IP)
  1342. # [13:07] * Joins: jwalker (uid31244@moz-5F4AA75A.irccloud.com)
  1343. # [13:08] * Parts: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP)
  1344. # [13:10] * Quits: Shrooms (Shrooms@moz-390504C0.asm.bellsouth.net) (Ping timeout)
  1345. # [13:10] * Joins: surkov (surkov@13F2CEC5.7672369.D8E68FF6.IP)
  1346. # [13:13] * Quits: capella-s3 (capella-s3@moz-3A08EE5.twcny.res.rr.com) (Quit: Talk atcha later)
  1347. # [13:13] * Joins: dminor (dminor@moz-31089446.cpe.net.cable.rogers.com)
  1348. # [13:14] * Quits: ethan (ethan@moz-26B9E3B5.dynamic.hinet.net) (Quit: ethan)
  1349. # [13:14] * Joins: gerv (Instantbir@moz-8E68CF56.in-addr.arpa)
  1350. # [13:15] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/95305e4baf16 - B2G Bumper Bot - Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
  1351. # [13:15] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/579d75095aca - B2G Bumper Bot - Bumping manifests a=b2g-bump
  1352. # [13:16] * Joins: dria (dria@moz-548BF61E.cpe.pppoe.ca)
  1353. # [13:17] * FuzzyFox|afk is now known as FuzzyFox
  1354. # [13:18] * Quits: Sushant94 (Sushant@B0D664D0.34384FD0.D30E9BEF.IP) (Quit: Leaving)
  1355. # [13:18] * Quits: gcp (gpascutto@moz-9CEB1C98.access.telenet.be) (Ping timeout)
  1356. # [13:19] <bogdan_maris> !seen adw
  1357. # [13:19] <firebot> adw was last seen 17 hours, 53 minutes and 31 seconds ago, saying '*place' in #fx-team.
  1358. # [13:19] * Quits: bogdan_maris (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP) (Quit: bogdan_maris)
  1359. # [13:19] * Joins: bogdan_maris (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP)
  1360. # [13:20] * Quits: odin_ (Odin@moz-59140718.skybroadband.com) (Ping timeout)
  1361. # [13:21] * Quits: koderok (koderok@2E932B4E.E10058D2.1F392835.IP) (Quit: koderok)
  1362. # [13:22] * Joins: odin_ (Odin@moz-59140718.skybroadband.com)
  1363. # [13:26] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  1364. # [13:27] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Ping timeout)
  1365. # [13:27] * Quits: Rik (rik@87C1F78E.1DE10CA8.D8E68FF6.IP) (Connection reset by peer)
  1366. # [13:28] * Joins: Rik (rik@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1367. # [13:29] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/3d44580bc427 - Masayuki Nakano - Bug 1052230 IMEContentObserver shouldn't flush pending notifications again during flushing notifications r=smaug
  1368. # [13:30] * Joins: koderok (koderok@2E932B4E.E10058D2.1F392835.IP)
  1369. # [13:32] * Quits: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP) (Ping timeout)
  1370. # [13:36] * flod is now known as flod|afk
  1371. # [13:36] * julienw_afk is now known as julienw
  1372. # [13:37] * Joins: pnkfelix (pnkfelix@moz-43495417.fbx.proxad.net)
  1373. # [13:38] * Joins: mstange (markus@moz-A2F09EFD.dip0.t-ipconnect.de)
  1374. # [13:39] * Joins: nattokirai (nattokirai@moz-702A09FB.dynamic.ppp.asahi-net.or.jp)
  1375. # [13:39] * Joins: ethan (ethan@moz-26B9E3B5.dynamic.hinet.net)
  1376. # [13:39] * Quits: Edgar (Thunderbir@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1377. # [13:40] * Fallen is now known as Fallen|away
  1378. # [13:40] * Joins: jviereck03 (Adium@moz-7C6E5A67.dclient.hispeed.ch)
  1379. # [13:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4168157414b5 - David Moreira - Bug 977966 - Implement MArrayJoin. r=nbp
  1380. # [13:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9a6455a2eb93 - David Moreira - Bug 977966 - Replace foo.split(bar).join(baz) by foo.replace(bar, baz). r=nbp
  1381. # [13:41] * Quits: thinker (user@moz-E8A14D4D.dynamic.kbronet.com.tw) (Ping timeout)
  1382. # [13:42] * Quits: jviereck03 (Adium@moz-7C6E5A67.dclient.hispeed.ch) (Quit: Leaving.)
  1383. # [13:42] * Joins: jviereck03 (Adium@moz-99A5B1E0.ethz.ch)
  1384. # [13:43] * Quits: allstarschh (allstars@moz-99690620.hinet-ip.hinet.net) (Input/output error)
  1385. # [13:43] * Quits: Archaeopteryx (itsme@moz-DA477F53.cust.telecolumbus.net) (Connection reset by peer)
  1386. # [13:44] * Joins: Archaeopteryx (itsme@moz-DA477F53.cust.telecolumbus.net)
  1387. # [13:46] * Parts: Snuffleupagus (chatzilla@moz-50E31F78.bredband.comhem.se)
  1388. # [13:47] * FuzzyFox is now known as FuzzyFox|afk
  1389. # [13:48] * FuzzyFox|afk is now known as FuzzyFox
  1390. # [13:49] * Quits: ethan (ethan@moz-26B9E3B5.dynamic.hinet.net) (Quit: ethan)
  1391. # [13:49] * Quits: Optimizer1 (Instantbir@4F3E1057.A6DE773B.88FACCAA.IP) (Ping timeout)
  1392. # [13:50] * Joins: bgrins (bgrins@2E6E9164.E6468DB3.BAB75B95.IP)
  1393. # [13:50] * dminor is now known as dminor|afk
  1394. # [13:51] * Joins: gcp (gpascutto@moz-9CEB1C98.access.telenet.be)
  1395. # [13:52] * Quits: bgrins (bgrins@2E6E9164.E6468DB3.BAB75B95.IP) (Ping timeout)
  1396. # [13:52] * Joins: bgrins (bgrins@C7203E51.FBD8ACDB.20F09BA6.IP)
  1397. # [13:52] * Quits: wcosta (wander@A9DF2293.D0ACF8E7.1C880E7D.IP) (Ping timeout)
  1398. # [13:52] * Quits: yzen (yzen@moz-F62769B5.cpe.pppoe.ca) (Ping timeout)
  1399. # [13:52] * Joins: askalski (akuda@2BA4E5A7.CC7751E8.6712E96B.IP)
  1400. # [13:53] * Joins: wcosta (wander@A9DF2293.D0ACF8E7.1C880E7D.IP)
  1401. # [13:56] * Quits: wcosta (wander@A9DF2293.D0ACF8E7.1C880E7D.IP) (Ping timeout)
  1402. # [13:56] * Joins: Pike (chatzilla@moz-59D2D48F.pool.mediaways.net)
  1403. # [13:56] * Quits: askalski (akuda@2BA4E5A7.CC7751E8.6712E96B.IP) (Quit: Wychodzi)
  1404. # [13:56] * Joins: askalski (akuda@2BA4E5A7.CC7751E8.6712E96B.IP)
  1405. # [13:57] * Quits: trevorh (trevor@moz-E7BDF72B.lns14.cht.bigpond.net.au) (Ping timeout)
  1406. # [13:57] * Joins: wcosta (wander@A9DF2293.D0ACF8E7.1C880E7D.IP)
  1407. # [13:57] * Quits: @smaug (chatzilla@moz-96DF6B53.nat.bb.dnainternet.fi) (Ping timeout)
  1408. # [13:58] * Joins: smaug_ (chatzilla@moz-38C5B03.elisa-laajakaista.fi)
  1409. # [13:58] * smaug_ is now known as smaug
  1410. # [13:58] * smaug is now known as IRCMonkey12175
  1411. # [13:59] * Quits: IRCMonkey12175 (chatzilla@moz-38C5B03.elisa-laajakaista.fi) (Quit: Reconnecting…)
  1412. # [14:00] * Joins: smaug (chatzilla@moz-38C5B03.elisa-laajakaista.fi)
  1413. # [14:00] * ChanServ sets mode: +o smaug
  1414. # [14:00] * Joins: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP)
  1415. # [14:03] * Joins: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP)
  1416. # [14:04] * Quits: @smaug (chatzilla@moz-38C5B03.elisa-laajakaista.fi) (Quit: Reconnecting…)
  1417. # [14:05] * Joins: smaug (chatzilla@moz-38C5B03.elisa-laajakaista.fi)
  1418. # [14:05] * ChanServ sets mode: +o smaug
  1419. # [14:05] * dminor|afk is now known as dminor
  1420. # [14:06] * whimboo|afk is now known as whimboo
  1421. # [14:07] * Joins: yzen (yzen@moz-F62769B5.cpe.pppoe.ca)
  1422. # [14:08] * Quits: wcosta (wander@A9DF2293.D0ACF8E7.1C880E7D.IP) (Ping timeout)
  1423. # [14:08] * Quits: vebb (mike@moz-D2989058.callplus.net.nz) (Ping timeout)
  1424. # [14:09] * Joins: rogeliodh (Thunderbir@DFD77512.8D6AA50D.D67CC001.IP)
  1425. # [14:09] * Joins: vebb (mike@moz-D2989058.callplus.net.nz)
  1426. # [14:09] * Joins: rbarnes (rbarnes@moz-5E1F5C28.washdc.fios.verizon.net)
  1427. # [14:10] * Joins: KaiRo (robert@moz-3C5910EF.adsl.highway.telekom.at)
  1428. # [14:10] * Joins: wcosta (wander@A9DF2293.D0ACF8E7.1C880E7D.IP)
  1429. # [14:12] * Quits: darktrojan (geoff@moz-9656CD64.dsl.telstraclear.net) (Quit: darktrojan)
  1430. # [14:16] * Quits: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP) (Ping timeout)
  1431. # [14:17] * Quits: heftig (heftig@moz-A720FFF6.dip0.t-ipconnect.de) (Ping timeout)
  1432. # [14:17] * flod|afk is now known as flod
  1433. # [14:17] * Quits: hunboy (hunboy@moz-CE0F9774.pool.invitel.hu) (Ping timeout)
  1434. # [14:18] * Joins: heftig (heftig@moz-A720FFF6.dip0.t-ipconnect.de)
  1435. # [14:18] * Quits: rogeliodh (Thunderbir@DFD77512.8D6AA50D.D67CC001.IP) (Ping timeout)
  1436. # [14:18] * Quits: Rik (rik@87C1F78E.1DE10CA8.D8E68FF6.IP) (Connection reset by peer)
  1437. # [14:19] * Quits: rbarnes (rbarnes@moz-5E1F5C28.washdc.fios.verizon.net) (Input/output error)
  1438. # [14:19] * Quits: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP) (Ping timeout)
  1439. # [14:20] * Joins: Rik (rik@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1440. # [14:20] * Joins: hunboy (hunboy@moz-271AEE43.pool.invitel.hu)
  1441. # [14:20] * Quits: Rik (rik@87C1F78E.1DE10CA8.D8E68FF6.IP) (Connection reset by peer)
  1442. # [14:21] * Joins: Rik (rik@87C1F78E.1DE10CA8.D8E68FF6.IP)
  1443. # [14:21] * Joins: rogeliodh (Thunderbir@DFD77512.8D6AA50D.D67CC001.IP)
  1444. # [14:21] * Joins: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP)
  1445. # [14:21] * Quits: vebb (mike@moz-D2989058.callplus.net.nz) (Quit: preprocessor-irc-cli has gone to sleep ZzzzzZZZ)
  1446. # [14:22] * Quits: cervantes (cervantes@moz-E37F359D.hinet-ip.hinet.net) (Ping timeout)
  1447. # [14:23] * Joins: vebb (mike@moz-D2989058.callplus.net.nz)
  1448. # [14:23] * Quits: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP) (Ping timeout)
  1449. # [14:26] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  1450. # [14:26] * Joins: jimm (jmathies@moz-DF439B90.pn.at.cox.net)
  1451. # [14:27] * Joins: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP)
  1452. # [14:28] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Ping timeout)
  1453. # [14:29] * Joins: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP)
  1454. # [14:29] * Joins: ahal (ahal@moz-3D30248A.cpe.teksavvy.com)
  1455. # [14:30] * Joins: yurenju (yurenju@moz-162020D1.dynamic.hinet.net)
  1456. # [14:30] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/bb767f4924dd - B2G Bumper Bot - Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
  1457. # [14:30] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/7a8374bc6946 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  1458. # [14:31] * Joins: jrmuizel (jrmuizel@moz-4896AE87.cpe.teksavvy.com)
  1459. # [14:32] * Quits: wcosta (wander@A9DF2293.D0ACF8E7.1C880E7D.IP) (Ping timeout)
  1460. # [14:33] * Parts: koderok (koderok@2E932B4E.E10058D2.1F392835.IP)
  1461. # [14:33] * Joins: wcosta (wander@A9DF2293.D0ACF8E7.1C880E7D.IP)
  1462. # [14:34] * Quits: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP) (Ping timeout)
  1463. # [14:40] * Joins: RyanVM (Thunderbir@moz-37FED3AC.phlapa.fios.verizon.net)
  1464. # [14:41] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e82255b148d8 - Jonathan Watt - Bug 1052915 - Stop unnecessarily calling nsSVGUtils::AdjustMatrixForUnits() over and over in nsSVGClipPathFrame. r=longsonr
  1465. # [14:41] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/29e44260a0ad - Jonathan Watt - Bug 1052910 - Clean up some includes. r=dholbert
  1466. # [14:41] * Joins: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP)
  1467. # [14:41] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e8127cc0e8a0 - Jonathan Watt - Bug 1052913 - Clean up some nsSVGClipPathFrame code and add some documentation to make it clearer. r=dholbert
  1468. # [14:42] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b0bd857a2677 - Jonathan Watt - Bug 1052999 - Stop using FOR_PAINTING in nsSVGForeignObjectFrame::GetInvalidRegion. r=longsonr
  1469. # [14:42] * FuzzyFox is now known as FuzzyFox|afk
  1470. # [14:42] * Quits: ggp|away (ggp@4AA8EBD6.5D476608.51329AA.IP) (Ping timeout)
  1471. # [14:43] * Joins: ggp|away (ggp@moz-C6075BDB.dsl.telesp.net.br)
  1472. # [14:43] * Quits: Jerry_ (hshih@moz-E37F359D.hinet-ip.hinet.net) (Ping timeout)
  1473. # [14:46] * Quits: yzen (yzen@moz-F62769B5.cpe.pppoe.ca) (Ping timeout)
  1474. # [14:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/18b669a70e15 - Jon Coppeard - Bug 995284 - Make the GC more deterministic in the shell r=terrence
  1475. # [14:46] * Quits: shelly (shelly@moz-E37F359D.hinet-ip.hinet.net) (Quit: Leaving)
  1476. # [14:47] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  1477. # [14:48] * Joins: idwer (irc@moz-67B6410D.adsl.online.nl)
  1478. # [14:48] * Quits: mreavy (chatzilla@moz-50BE1A09.phlapa.fios.verizon.net) (Ping timeout)
  1479. # [14:48] * Quits: jesup (chatzilla@moz-50BE1A09.phlapa.fios.verizon.net) (Ping timeout)
  1480. # [14:49] <Ms2ger> We've got some nice bugs, but I'm not sure we can beat this one...
  1481. # [14:49] <Ms2ger> "file incorrectly labeled as Erlang JAM file (OOo does not print on Tuesdays) "
  1482. # [14:49] * Joins: siddu_ (siddu@637D4CD0.BF84E432.1C37C358.IP)
  1483. # [14:51] <RyanVM> lolwut
  1484. # [14:52] <bagder> that's indeed an awesome bug
  1485. # [14:52] <siddu_> can anyone help me,where will be the code for browser console css..
  1486. # [14:53] <Ms2ger> The most surprising part is that OOo would print on other days, I'd think
  1487. # [14:53] * Joins: MarcoZ (marco.zehe@13F2CEC5.7672369.D8E68FF6.IP)
  1488. # [14:54] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Input/output error)
  1489. # [14:59] <jgraham> Since when did anyone get a printer to work with any software?
  1490. # [14:59] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/5cc333cb4b97 - J. Ryan Stinnett - Bug 1007059 - Enable WebIDE by default. r=paul
  1491. # [15:00] <Ms2ger> jgraham, I see you're a Linux user too :)
  1492. # [15:01] * Quits: yurenju (yurenju@moz-162020D1.dynamic.hinet.net) (Quit: Textual IRC Client: www.textualapp.com)
  1493. # [15:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c771f2431395 - Andrea Marchesini - Bug 1043106 - StorageEvent should have the storageArea of the correct window, r=smaug
  1494. # [15:03] * Joins: davidb (davidb@13F2CEC5.7672369.D8E68FF6.IP)
  1495. # [15:03] <tbsaunde> jgraham: cups generally wfm
  1496. # [15:03] <tbsaunde> the 3 times a year I need a dead tree copy of something
  1497. # [15:04] * Joins: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net)
  1498. # [15:05] * bc|afk is now known as bc
  1499. # [15:05] <jgraham> Generally it's the printer I find. It's either out of ink / toner / etc. or mysteriously refusing to accept jobs or claiming there's a paper jam, or has caught fire…
  1500. # [15:05] * Quits: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net) (Quit: jib)
  1501. # [15:06] <nemo> Ms2ger: file magic strikes again
  1502. # [15:06] * Joins: maxli (maxli@moz-EE42E0E.student.cs.uwaterloo.ca)
  1503. # [15:06] * Joins: bbondy (bbondy@moz-E2815EB6.home.cgocable.net)
  1504. # [15:06] <nemo> Ms2ger: I'm kinda puzzled why file magic got involved in this process at all. Why isn't a mime type being sent to the print driver
  1505. # [15:06] <nemo> I mean... OpenOffice surely knows what it is printing
  1506. # [15:06] <Ms2ger> I don't think I've ever had a printer refuse to work because it was on fire
  1507. # [15:07] * Quits: funnel_ (hegel@DEB31F3E.28CFCE3E.FC69BED9.IP) (Ping timeout)
  1508. # [15:07] <nemo> but a lot of linux stuff is pretty hacky
  1509. # [15:07] <nemo> in all fairness, probably windows too if we could see it
  1510. # [15:07] * Joins: funnel_ (hegel@DEB31F3E.28CFCE3E.FC69BED9.IP)
  1511. # [15:08] * Joins: spohl (Adium@moz-B14F1EC4.openskytelcom.net)
  1512. # [15:08] * Quits: ewong|sleep (chatzilla@moz-8777076B.netvigator.com) (Ping timeout)
  1513. # [15:08] * Joins: mconley (mconley@moz-FBB7D102.cable.teksavvy.com)
  1514. # [15:09] * Joins: ewong|sleep (chatzilla@moz-8777076B.netvigator.com)
  1515. # [15:11] * Quits: lerc (quassel@moz-6CD49BDA.telstraclear.net) (Ping timeout)
  1516. # [15:13] * Quits: flaviu (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP) (Connection reset by peer)
  1517. # [15:13] * Quits: bogdan_maris (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP) (Connection reset by peer)
  1518. # [15:13] * Quits: avaida (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP) (Connection reset by peer)
  1519. # [15:13] * Joins: flaviu (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP)
  1520. # [15:13] * Quits: mconley (mconley@moz-FBB7D102.cable.teksavvy.com) (Input/output error)
  1521. # [15:13] * Quits: jhorak (jhorak@moz-B317ACBB.net.upcbroadband.cz) (Quit: Leaving)
  1522. # [15:13] <froydnj> um, wtf: Improvement: Mozilla-Inbound - LibXUL Memory during link - WINNT 5.2 - 97.5% decrease
  1523. # [15:14] * Joins: mconley (mconley@moz-FBB7D102.cable.teksavvy.com)
  1524. # [15:14] * Joins: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP)
  1525. # [15:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4a53363b2efd - Benjamin Bouvier - Bug 1025475: SIMD x86-x64: Implement SIMD constructors; r=sunfish
  1526. # [15:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/d9f23f57085d - Benjamin Bouvier - Bug 1025475: SIMD: Introduce SimdConstant; r=sunfish
  1527. # [15:14] <Ms2ger> froydnj, we backed out libxul
  1528. # [15:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/850663302692 - Benjamin Bouvier - Bug 1025475: SIMD x86-x64: Implement SIMD constants; r=sunfish
  1529. # [15:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/eb1d969ec449 - Benjamin Bouvier - Bug 1025475: SIMD: Fold SIMD created values into SimdConstants; r=sunfish
  1530. # [15:15] * Joins: bogdan_maris (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP)
  1531. # [15:15] * rail_away is now known as rail
  1532. # [15:15] * coop|afk is now known as coop|buildduty
  1533. # [15:15] * Quits: mconley (mconley@moz-FBB7D102.cable.teksavvy.com) (Ping timeout)
  1534. # [15:16] * Joins: m_gol (m_gol@moz-DEF52D5.static.chello.pl)
  1535. # [15:16] * Joins: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net)
  1536. # [15:18] * Joins: avaida (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP)
  1537. # [15:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/cc73a5e460b0 - Alexandre Poirot - Bug 994669 - Integrate gaia responsive mode tweaks. r=paul
  1538. # [15:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/80999bc444b5 - Morris Tseng - Bug 1020802 - Pass collapsed and reason information to selectionchange event. r=ehsan, sr=smaug
  1539. # [15:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/af8ce1cffd8c - Szu-Yu Chen [:aknow] - Bug 1051715 - Part 1: Add temporary clir test. r=hsinyi
  1540. # [15:18] <froydnj> Ms2ger: apparently!
  1541. # [15:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/77df300e7b10 - Szu-Yu Chen [:aknow] - Bug 1051715 - Part 2: Also pass number in notifyDialSuccess. r=hsinyi
  1542. # [15:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/3e71c9bb48e4 - Alexandre Lissy - Bug 1052435 - Fix handling of Notification with tag. r=mhenretty
  1543. # [15:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c667b20a1d07 - Benjamin Bouvier - Bug 1043337: SIMD x86-x64: Implement Add; r=sunfish
  1544. # [15:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0a61ae6d603f - Benjamin Bouvier - Bug 1043337: SIMD x86-x64: Implement other arithmetic operations; r=sunfish
  1545. # [15:20] * Joins: armenzg (armenzg@13F2CEC5.7672369.D8E68FF6.IP)
  1546. # [15:20] * Joins: pauly (silaghipau@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP)
  1547. # [15:21] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/602167baa2d6 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  1548. # [15:22] * Quits: ggp|away (ggp@moz-C6075BDB.dsl.telesp.net.br) (Ping timeout)
  1549. # [15:22] * Quits: ddahl (ddahl@FA215F65.8CBA6D28.848BB095.IP) (Ping timeout)
  1550. # [15:23] * mdoglio is now known as mdoglio|bbiab
  1551. # [15:23] * Joins: emtwo (Adium@moz-1E121516.cpe.pppoe.ca)
  1552. # [15:23] * Joins: vicamo (vicamo@moz-DDBD5D1F.dynamic.hinet.net)
  1553. # [15:24] * Joins: ggp|away (ggp@BE736914.E7DE191F.B65F468E.IP)
  1554. # [15:24] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/81c93f4a6212 - Benjamin Bouvier - Bug 1019831: Add ARM stubs for SIMD moves; r=sunfish
  1555. # [15:24] * Quits: emtwo (Adium@moz-1E121516.cpe.pppoe.ca) (Connection reset by peer)
  1556. # [15:24] * Joins: emtwo (Adium@moz-1E121516.cpe.pppoe.ca)
  1557. # [15:25] * Joins: lduros (user@moz-A888D5F1.phlapa.fios.verizon.net)
  1558. # [15:27] * curtisk|afk is now known as curtisk
  1559. # [15:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/afb4e5f28df4 - Eugen Sawin - Bug 1046631 - Don't process meta-viewport tags from a new page load before displaying the new page. r=kats
  1560. # [15:28] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/b5345b8463af - Sami Jaktholm - Bug 1050123 - Profiler Treeview: If arrow is the target of double click, children toggle three times (on click #1, click #2 and dblclick events). Ignore the dblclick on arrow. r=vp
  1561. # [15:31] * Quits: heftig (heftig@moz-A720FFF6.dip0.t-ipconnect.de) (Ping timeout)
  1562. # [15:32] * FuzzyFox|afk is now known as FuzzyFox
  1563. # [15:32] <bbouvier> alright, apparently i've busted inbound, hotfix under work
  1564. # [15:33] * Quits: vicamo (vicamo@moz-DDBD5D1F.dynamic.hinet.net) (Ping timeout)
  1565. # [15:34] <Ms2ger> Hotfixes this time of day
  1566. # [15:34] * Ms2ger frowns
  1567. # [15:35] <bbouvier> what's the right way to have non-unified build? --disable-unified-build?
  1568. # [15:36] <bbouvier> bbouvier: --disable-unified-compilation
  1569. # [15:38] * Joins: Enn (enn@13F2CEC5.7672369.D8E68FF6.IP)
  1570. # [15:38] * Joins: ddahl (ddahl@FA215F65.8CBA6D28.848BB095.IP)
  1571. # [15:38] <padenot> oui
  1572. # [15:38] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  1573. # [15:39] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/33312cf40bb6 - Martijn Wargers - Bug 928678 - Request complete log for intermittent failure in Intermittent test_iframe_sandbox_general.html. r=kwierso
  1574. # [15:39] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9c339e14c720 - David Parks - Bug 1008759 - Blocklist D2D on NVidia 310M, even when it is believed to be the secondary GPU. r=bjacob
  1575. # [15:39] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/1a2dcc132344 - Kearwood (Kip) Gilbert - Bug 1022818 - Part 1: Update webidl interfaces. r=bz
  1576. # [15:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/d24b367f3ac4 - Kearwood (Kip) Gilbert - Bug 1022818 - Part 2: Implement Smooth Scrolling. r=bz
  1577. # [15:40] * Joins: yliao (yliao@moz-A6EFB7B1.hinet-ip.hinet.net)
  1578. # [15:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e40ffcb782f8 - Kearwood (Kip) Gilbert - Bug 1022818 - Part 3: Tests for CSSOM-View Smooth-Scroll DOM API Methods and MSD Animation. r=bz, r=roc
  1579. # [15:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/044f81a162bf - Benjamin Bouvier - Bug 1048923: Rename js::Create into js::CreateSimd; r=luke
  1580. # [15:40] * Quits: ggp|away (ggp@BE736914.E7DE191F.B65F468E.IP) (Ping timeout)
  1581. # [15:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/043edc92814e - Benjamin Bouvier - Bug 1025475: Fix build bustage; r=bustage
  1582. # [15:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/f44950d1fb56 - B2G Bumper Bot - Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
  1583. # [15:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/279834ba04ba - B2G Bumper Bot - Bumping manifests a=b2g-bump
  1584. # [15:40] * Joins: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net)
  1585. # [15:41] * Quits: yliao (yliao@moz-A6EFB7B1.hinet-ip.hinet.net) (Client exited)
  1586. # [15:41] * Joins: yliao (yliao@moz-A6EFB7B1.hinet-ip.hinet.net)
  1587. # [15:41] * Joins: ekr (Adium@moz-FAC44BDF.hfc.comcastbusiness.net)
  1588. # [15:41] * Quits: yliao (yliao@moz-A6EFB7B1.hinet-ip.hinet.net) (Client exited)
  1589. # [15:42] * Joins: ggp|away (ggp@2926C170.310DC008.51329AA.IP)
  1590. # [15:42] * Joins: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  1591. # [15:42] * Joins: yliao (yliao@moz-A6EFB7B1.hinet-ip.hinet.net)
  1592. # [15:43] * Joins: Shrooms (Shrooms@moz-390504C0.asm.bellsouth.net)
  1593. # [15:43] * Joins: Edgar (Thunderbir@moz-B612E4EB.dynamic.hinet.net)
  1594. # [15:44] * Quits: yliao (yliao@moz-A6EFB7B1.hinet-ip.hinet.net) (Ping timeout)
  1595. # [15:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/269d6f0e3c45 - Randy Lin - Bug 1024188 - Checks can be removed because EncodedFrame::SwapInFrameData() is infallible. r=roc
  1596. # [15:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c869d969bc12 - Jean-Yves Avenard - Bug 1047180 - Decode a single audio frame in order to retrieve accurate channel count and sampling rate and propagate to MP4Reader. r=cpearce
  1597. # [15:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b5d1b7362d9b - Jean-Yves Avenard - Bug 1048173 - Make sure we can link against FFmpeg libraries before attempting to create a decoder. r=edwin
  1598. # [15:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/bca9b534cd22 - Douglas Crosher - Bug 1050278 - IonMonkey (ARM): Consolidate the mpu feature detection and remove the ARM remnants in js/src/assembler. r=nbp
  1599. # [15:46] * davidb is now known as davidb|afk
  1600. # [15:46] * Joins: AaronMT (AaronMT@moz-53D1D1F.cpe.net.cable.rogers.com)
  1601. # [15:47] * Quits: huseby (huseby@moz-B3136CF6.linuxprogrammer.org) (Ping timeout)
  1602. # [15:48] * glob|away is now known as glob
  1603. # [15:48] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4269c52c4f62 - Valentin Gosu - Bug 1045886 - Remove Cache directory from Android profiles r=michal
  1604. # [15:48] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/ab2268f67609 - Valentin Gosu - Bug 1045886 - Increase assertion count in test_bug437844.xul
  1605. # [15:51] * mdoglio|bbiab is now known as mdoglio
  1606. # [15:51] * Joins: heftig (heftig@moz-A720FFF6.dip0.t-ipconnect.de)
  1607. # [15:51] <@ted> you know, people complain about our tools, but google requires you to download a whole suite of tools to even checkout their source
  1608. # [15:52] * FuzzyFox is now known as FuzzyFox|afk
  1609. # [15:52] * bc is now known as bc|bbiab
  1610. # [15:52] <jimm> ted: mozilla build isn't a suite of tools?
  1611. # [15:52] <@ted> well windows is terrible
  1612. # [15:52] * davidb|afk is now known as davidb
  1613. # [15:52] <@ted> but on linux you can just hg clone
  1614. # [15:53] <froydnj> ted: *shrug* if gps had his way, I think we'd be doing things more google-esque
  1615. # [15:53] <froydnj> ted: though it is a *pain* to do that
  1616. # [15:53] * FuzzyFox|afk is now known as FuzzyFox
  1617. # [15:53] <@ted> yeah
  1618. # [15:54] * Joins: yliao (yliao@moz-A6EFB7B1.hinet-ip.hinet.net)
  1619. # [15:54] <@ted> as if there aren't enough complicated steps, adding more steps to "checkout the source"
  1620. # [15:54] <froydnj> could actually do things like make people compile with warnings-as-errors and the like
  1621. # [15:55] <froydnj> though ideally a more-complex "checkout the source" step would eliminate some of the grottiness of later steps
  1622. # [15:55] * Quits: yliao (yliao@moz-A6EFB7B1.hinet-ip.hinet.net) (Client exited)
  1623. # [15:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/9fac02f0548c - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  1624. # [15:55] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/7e677dfa3c49 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  1625. # [15:56] * Joins: yliao (yliao@moz-A6EFB7B1.hinet-ip.hinet.net)
  1626. # [15:57] * Quits: yliao (yliao@moz-A6EFB7B1.hinet-ip.hinet.net) (Ping timeout)
  1627. # [16:00] * Joins: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net)
  1628. # [16:00] * Joins: ep103 (Mibbit@moz-2621F919.nycmny.fios.verizon.net)
  1629. # [16:01] <ep103> hey all, I'm trying to find the release source for FF / XulRunner 22.0.0.7, and I can't see it denoted anywhere
  1630. # [16:01] <ep103> help?
  1631. # [16:01] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c2d008090340 - Andrea Marchesini - Bug 1043106 - part 2 - StorageEvent should have the storageArea of the correct window, r=smaug
  1632. # [16:04] * Joins: janv (varga@966DE85D.9F0D0108.4038F31A.IP)
  1633. # [16:04] * Joins: kgrandon (Adium@moz-2A1C3CC8.hsd1.ca.comcast.net)
  1634. # [16:04] * Quits: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP) (Ping timeout)
  1635. # [16:04] * zz_miketaylr is now known as miketaylr
  1636. # [16:06] * coop|buildduty is now known as coop|mtg
  1637. # [16:06] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=76b55c0850ca - 48 changesets
  1638. # [16:06] * Quits: ekr (Adium@moz-FAC44BDF.hfc.comcastbusiness.net) (Quit: Leaving.)
  1639. # [16:06] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-esr24/rev/35610d8e9a4e - Benoit Jacob - Bug 777574 - Skip all quickCheckAPI tests on linux/android/emulator slaves. r=kamidphish, a=test-only
  1640. # [16:08] * Joins: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP)
  1641. # [16:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/dd3712012832 - Mike Shal - Backout changeset 5e9b13c3595b (bug 1047621) because of bug 1053188.
  1642. # [16:11] * philor|away is now known as philor
  1643. # [16:11] * Joins: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP)
  1644. # [16:13] * julienw is now known as julienw_afk
  1645. # [16:13] <jimm> edmorley|sheriffduty: now that bug 1052395 is on mc, if you need any help translating new assertion messages to existing bugs, feel free to ]ping me.
  1646. # [16:14] * Joins: chmanchester (chmanchest@63CA6098.1EB7376C.ECED8BE3.IP)
  1647. # [16:14] * Joins: garvank (Garvan@13F2CEC5.7672369.D8E68FF6.IP)
  1648. # [16:14] * bc|bbiab is now known as bc
  1649. # [16:14] * julienw_afk is now known as julienw
  1650. # [16:14] <edmorley|sheriffduty> jimm: thank you :-)
  1651. # [16:15] <jimm> np
  1652. # [16:15] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/7dcc83c574ed - James Graham - Bug 1050700 - Add support for exc_info to mozlog.structured log actions, r=chmanchester
  1653. # [16:16] * kats|away is now known as kats
  1654. # [16:16] * Quits: emtwo (Adium@moz-1E121516.cpe.pppoe.ca) (Ping timeout)
  1655. # [16:17] * Joins: emtwo (Adium@moz-1E121516.cpe.pppoe.ca)
  1656. # [16:18] * Quits: jrmuizel (jrmuizel@moz-4896AE87.cpe.teksavvy.com) (Client exited)
  1657. # [16:18] * Quits: jkitch (Thunderbir@moz-60CB73E8.lns21.adl2.internode.on.net) (Ping timeout)
  1658. # [16:19] * Quits: twi (Adium@moz-4A7B1469.cust.vodafonedsl.it) (Quit: Leaving.)
  1659. # [16:19] * lmandel_afk is now known as lmandel
  1660. # [16:19] * Quits: janv (varga@966DE85D.9F0D0108.4038F31A.IP) (Quit: This computer has gone to sleep)
  1661. # [16:20] * Quits: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP) (Ping timeout)
  1662. # [16:21] * Joins: rbarnes (rbarnes@95D654D9.7794B7FF.B532E9A1.IP)
  1663. # [16:22] * Quits: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP) (Ping timeout)
  1664. # [16:23] * Joins: amoghbl1 (Thunderbir@9B9315E1.A6025CA.1C37C358.IP)
  1665. # [16:23] * Joins: twi (Adium@moz-4A7B1469.cust.vodafonedsl.it)
  1666. # [16:23] * Joins: jaws (uid2871@moz-5F4AA75A.irccloud.com)
  1667. # [16:28] * hwine-ooo is now known as hwine-commuting
  1668. # [16:29] * coop|mtg is now known as coop|buildduty
  1669. # [16:30] * curtisk is now known as curtisk|afk
  1670. # [16:33] * Quits: luke (luke@moz-7BD53946.dhcp.ftwo.tx.charter.com) (Quit: Leaving.)
  1671. # [16:33] * Joins: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP)
  1672. # [16:34] <ep103> Hi, I'm new. Could someone double check for me that https://hg.mozilla.org/releases/mozilla-release/rev/0d4b9c74be55 is the ff/xulrunner 22.0 release version? I'm still getting lost in all the ways to access your source code
  1673. # [16:34] * sheppy-offline is now known as sheppy
  1674. # [16:34] * Joins: ehsan (ehsan@13F2CEC5.7672369.D8E68FF6.IP)
  1675. # [16:34] * ChanServ sets mode: +o ehsan
  1676. # [16:34] * Joins: luke (luke@moz-7BD53946.dhcp.ftwo.tx.charter.com)
  1677. # [16:36] * Quits: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net) (Ping timeout)
  1678. # [16:36] * Joins: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net)
  1679. # [16:36] * mdas is now known as mdas|afk
  1680. # [16:38] * Quits: nattokirai (nattokirai@moz-702A09FB.dynamic.ppp.asahi-net.or.jp) (Quit: nattokirai)
  1681. # [16:39] * Quits: askalski (akuda@2BA4E5A7.CC7751E8.6712E96B.IP) (Quit: Wychodzi)
  1682. # [16:39] <Gijs> ep103: 22.0.0.7 ? :s
  1683. # [16:39] * Quits: fabrice (fabrice@495A1E63.5994028D.9CA62458.IP) (Quit: Leaving.)
  1684. # [16:40] <Gijs> ep103: I don't think we ever shipped a 22.0.0.7.
  1685. # [16:41] <Gijs> ep103: see http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/ - we shipped betas, and 22.0, but that's it
  1686. # [16:41] <Gijs> ep103: the internet seems to refer to geckofx 22-0-0-7, but that's a separate project and I don't know how their versioning works and/or how it relates to the core mozilla source tree.
  1687. # [16:42] * Gijs would like to note that 22.0 is old and has known security issues.
  1688. # [16:42] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c0c9abad34c0 - Ed Morley - Backed out changeset 7dcc83c574ed (bug 1050700) by request; CLOSED TREE DONTBUILD
  1689. # [16:42] * Quits: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net) (Quit: pcwalton)
  1690. # [16:42] * Joins: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net)
  1691. # [16:44] <Gijs> ep103: and https://hg.mozilla.org/releases/mozilla-release/rev/e55e45536133 is the cset listed for the 22.0 builds that were shipped.
  1692. # [16:44] <Gijs> see http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/22.0/win32/en-US/firefox-22.0.json
  1693. # [16:45] * Joins: catalinb (catalinb@moz-CF8BEBEF.dia.static.qwest.net)
  1694. # [16:46] * Joins: serge (Thunderbir@moz-366AB679.dsl.teksavvy.com)
  1695. # [16:47] * Quits: Edgar (Thunderbir@moz-B612E4EB.dynamic.hinet.net) (Ping timeout)
  1696. # [16:48] * Joins: Edgar (Thunderbir@moz-E37F359D.hinet-ip.hinet.net)
  1697. # [16:48] * Joins: Preeti (uid13882@moz-E77DEB21.irccloud.com)
  1698. # [16:49] * Joins: mreavy (chatzilla@moz-8FD64E38.phlapa.fios.verizon.net)
  1699. # [16:50] <ep103> Gjjs: yeah, there's no .0.7, I was confused. I'm trying to figure out what was the released 22.0 version. You just linked to 22.0 build 1, I linked to 22.0 release. There's also a 22.0 build 2. Is there somewhere that specifies the differences?
  1700. # [16:50] <ep103> Yeah, I know its really old, but I'm working with an old library, unfortunately
  1701. # [16:50] <ep103> trying to match xul runner version to the lib version
  1702. # [16:51] * Parts: pauly (silaghipau@6DC7A5F5.AA1FA0D2.6A4F8DA2.IP)
  1703. # [16:52] * Joins: ethan (ethan@moz-26B9E3B5.dynamic.hinet.net)
  1704. # [16:54] * mdas|afk is now known as mdas
  1705. # [16:55] * Joins: grobinson (grobinson@moz-731932CD.hsd1.ca.comcast.net)
  1706. # [16:55] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  1707. # [16:56] * Quits: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP) (Ping timeout)
  1708. # [16:57] * hwine-commuting is now known as hwine-ooo
  1709. # [16:57] * Joins: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP)
  1710. # [16:58] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/6886edadd69e - Ed Morley - Backed out changeset 5cc333cb4b97 (bug 1007059) for failures in browser_dynamic_tool_enabling.js; CLOSED TREE
  1711. # [16:58] * Quits: Edgar (Thunderbir@moz-E37F359D.hinet-ip.hinet.net) (Quit: Edgar)
  1712. # [16:58] * Quits: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  1713. # [16:58] * Joins: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP)
  1714. # [17:00] * Quits: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  1715. # [17:01] * Quits: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Ping timeout)
  1716. # [17:02] * lth is now known as lth|out
  1717. # [17:02] * Joins: janv (varga@FCCEA34F.7672369.D8E68FF6.IP)
  1718. # [17:04] * Joins: WG9s (bill@moz-C5B3485D.hsd1.ma.comcast.net)
  1719. # [17:05] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  1720. # [17:06] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  1721. # [17:06] * Joins: asobolev (asobolev@moz-A53CBDA1.hsd1.ca.comcast.net)
  1722. # [17:06] * Joins: gwagner_ (Gregor@moz-B45FE61C.hsd1.ca.comcast.net)
  1723. # [17:08] <Gijs> ep103: I don't know why we spun a second build back then. AFAICT it didn't ship.
  1724. # [17:08] * Quits: m_gol (m_gol@moz-DEF52D5.static.chello.pl) (Quit: Leaving...)
  1725. # [17:08] * Joins: sicking (sicking@moz-5D774EA3.hsd1.ca.comcast.net)
  1726. # [17:09] * Joins: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP)
  1727. # [17:09] * davidb is now known as davidb|afk
  1728. # [17:10] * mdas is now known as mdas|afk
  1729. # [17:11] * davidb|afk is now known as davidb
  1730. # [17:12] * Quits: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net) (Ping timeout)
  1731. # [17:12] * Quits: rbarnes (rbarnes@95D654D9.7794B7FF.B532E9A1.IP) (Input/output error)
  1732. # [17:12] * Joins: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net)
  1733. # [17:14] * Joins: rkent (Thunderbir@moz-CCEA8D95.hsd1.wa.comcast.net)
  1734. # [17:14] * Joins: guigs2 (Adium@moz-8C0B17A0.hsd1.ca.comcast.net)
  1735. # [17:15] * Joins: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP)
  1736. # [17:15] * khuey|away is now known as khuey
  1737. # [17:15] * Quits: guigs2 (Adium@moz-8C0B17A0.hsd1.ca.comcast.net) (Quit: Leaving.)
  1738. # [17:16] * Joins: justindarc (justindarc@D2AEACFC.B56D28DB.B58D01CE.IP)
  1739. # [17:16] * Quits: rkent (Thunderbir@moz-CCEA8D95.hsd1.wa.comcast.net) (Ping timeout)
  1740. # [17:17] * Joins: milan (milan@E06C0188.B117C875.52F58BA0.IP)
  1741. # [17:17] * hwine-ooo is now known as hwine
  1742. # [17:17] * Joins: rkent (Thunderbir@moz-CCEA8D95.hsd1.wa.comcast.net)
  1743. # [17:18] * Quits: milan (milan@E06C0188.B117C875.52F58BA0.IP) (Ping timeout)
  1744. # [17:19] * Quits: amoghbl1 (Thunderbir@9B9315E1.A6025CA.1C37C358.IP) (Quit: amoghbl1)
  1745. # [17:19] * Joins: amoghbl1 (Thunderbir@9B9315E1.A6025CA.1C37C358.IP)
  1746. # [17:20] * ggp|away is now known as ggp
  1747. # [17:20] * Joins: ekr (Adium@moz-24157589.mtv2.mozilla.com)
  1748. # [17:21] * Quits: amoghbl1 (Thunderbir@9B9315E1.A6025CA.1C37C358.IP) (Quit: amoghbl1)
  1749. # [17:21] * Joins: jesup|laptop (chatzilla@moz-8FD64E38.phlapa.fios.verizon.net)
  1750. # [17:21] * Joins: amoghbl1 (Thunderbir@9B9315E1.A6025CA.1C37C358.IP)
  1751. # [17:22] * Joins: guigs2 (Adium@moz-8C0B17A0.hsd1.ca.comcast.net)
  1752. # [17:22] * kats is now known as kats|away
  1753. # [17:22] * Joins: koderok (koderok@16D052D7.9DF1CE8A.CEFA97FA.IP)
  1754. # [17:22] * Joins: fabrice (fabrice@moz-62518563.mtv2.mozilla.com)
  1755. # [17:23] * Quits: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP) (Ping timeout)
  1756. # [17:23] * Quits: siddu_ (siddu@637D4CD0.BF84E432.1C37C358.IP) (Ping timeout)
  1757. # [17:23] * Quits: koderok (koderok@16D052D7.9DF1CE8A.CEFA97FA.IP) (Input/output error)
  1758. # [17:23] * Quits: grobinson (grobinson@moz-731932CD.hsd1.ca.comcast.net) (Client exited)
  1759. # [17:23] * Joins: grobinson (grobinson@moz-731932CD.hsd1.ca.comcast.net)
  1760. # [17:23] * Joins: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP)
  1761. # [17:23] * Joins: drno (nohlmeier@moz-CCCF7F86.hsd1.ca.comcast.net)
  1762. # [17:24] * Joins: siddu_ (siddu@637D4CD0.BF84E432.1C37C358.IP)
  1763. # [17:24] * Quits: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net) (Quit: pcwalton)
  1764. # [17:25] * Quits: Archaeopteryx (itsme@moz-DA477F53.cust.telecolumbus.net) (Quit: Goodbye)
  1765. # [17:25] * Quits: grobinson (grobinson@moz-731932CD.hsd1.ca.comcast.net) (Ping timeout)
  1766. # [17:25] * dminor is now known as dminor|afk
  1767. # [17:26] * Joins: ashughes (uid34327@moz-E77DEB21.irccloud.com)
  1768. # [17:26] * Quits: ethan (ethan@moz-26B9E3B5.dynamic.hinet.net) (Quit: ethan)
  1769. # [17:26] * Quits: siddu_ (siddu@637D4CD0.BF84E432.1C37C358.IP) (Ping timeout)
  1770. # [17:27] * Joins: siddu_ (siddu@637D4CD0.BF84E432.1C37C358.IP)
  1771. # [17:27] * kats|away is now known as kats
  1772. # [17:28] * Joins: trevorh (trevor@moz-54E403E0.lns15.ken.bigpond.net.au)
  1773. # [17:30] * Joins: jet (jet@moz-79F891EE.hsd1.ca.comcast.net)
  1774. # [17:33] * Joins: robertbindar (Thunderbir@moz-C722A5D3.hsd1.ca.comcast.net)
  1775. # [17:33] * Joins: juanb (jbecerra@EA768190.B3AD8579.9CA62458.IP)
  1776. # [17:34] * mdas|afk is now known as mdas
  1777. # [17:34] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=d666472c20c7 - 44 changesets
  1778. # [17:35] * Quits: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP) (Ping timeout)
  1779. # [17:35] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/1fdb4906b064 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  1780. # [17:35] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/cce514003085 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  1781. # [17:35] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/3e75ebeda724 - Ed Morley - Backed out changeset e40ffcb782f8 (bug 1022818)
  1782. # [17:35] * Quits: guigs2 (Adium@moz-8C0B17A0.hsd1.ca.comcast.net) (Connection reset by peer)
  1783. # [17:35] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/effcdf26dbc2 - Ed Morley - Backed out changeset d24b367f3ac4 (bug 1022818)
  1784. # [17:35] * Joins: guigs21 (Adium@moz-8C0B17A0.hsd1.ca.comcast.net)
  1785. # [17:35] * Joins: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP)
  1786. # [17:35] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/3aaa5903622a - Ed Morley - Backed out changeset 1a2dcc132344 (bug 1022818) for B2G failures in test_scroll_behavior.html; CLOSED TREE
  1787. # [17:36] * Quits: espadrine (ttyl@moz-87D32D93.w80-12.abo.wanadoo.fr) (Ping timeout)
  1788. # [17:36] * Joins: bajaj (bajaj_afk@moz-34BA18EC.hsd1.ca.comcast.net)
  1789. # [17:36] * jlund|away is now known as jlund
  1790. # [17:36] * Joins: brendan (brendaneic@9EB964C8.9A24A92.348C8185.IP)
  1791. # [17:38] * Joins: grobinson (grobinson@moz-731932CD.hsd1.ca.comcast.net)
  1792. # [17:38] * Joins: mwobensmith (mwobensmit@moz-1479983A.dsl.dynamic.sonic.net)
  1793. # [17:39] * Quits: gwagner_ (Gregor@moz-B45FE61C.hsd1.ca.comcast.net) (Quit: gwagner_)
  1794. # [17:39] * Joins: mixedpuppy (mixedpuppy@moz-78985667.vc.shawcable.net)
  1795. # [17:39] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Input/output error)
  1796. # [17:39] * Joins: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca)
  1797. # [17:39] * Quits: catalinb (catalinb@moz-CF8BEBEF.dia.static.qwest.net) (Quit: This computer has gone to sleep)
  1798. # [17:40] * Quits: grobinson (grobinson@moz-731932CD.hsd1.ca.comcast.net) (Ping timeout)
  1799. # [17:40] * Joins: trevorh1 (trevor@moz-399A95FC.lns13.cht.bigpond.net.au)
  1800. # [17:40] * Quits: trevorh (trevor@moz-54E403E0.lns15.ken.bigpond.net.au) (Ping timeout)
  1801. # [17:40] * Joins: dbaron (dbaron@moz-6F4D2D12.dsl.dynamic.sonic.net)
  1802. # [17:40] * ChanServ sets mode: +ao dbaron dbaron
  1803. # [17:40] * Joins: bsmedberg (bsmedberg@moz-820FF4CB.jst.pa.atlanticbb.net)
  1804. # [17:40] * ChanServ sets mode: +o bsmedberg
  1805. # [17:40] * Joins: Archaeopteryx (itsme@moz-DA477F53.cust.telecolumbus.net)
  1806. # [17:41] * Quits: mdas (mdas@moz-AB8748FE.cpe.pppoe.ca) (Ping timeout)
  1807. # [17:41] * Quits: trevorh1 (trevor@moz-399A95FC.lns13.cht.bigpond.net.au) (Connection reset by peer)
  1808. # [17:41] * Joins: Mossop (dtownsend@53343B0D.8DCA2D5.5E2862A8.IP)
  1809. # [17:42] * Quits: siddu_ (siddu@637D4CD0.BF84E432.1C37C358.IP) (Ping timeout)
  1810. # [17:42] * Quits: @smaug (chatzilla@moz-38C5B03.elisa-laajakaista.fi) (Ping timeout)
  1811. # [17:43] * Joins: trevorh (trevor@moz-53B89623.lnse3.ken.bigpond.net.au)
  1812. # [17:43] <@bsmedberg> Yoric: yt?
  1813. # [17:43] * Joins: siddu_ (siddu@637D4CD0.BF84E432.1C37C358.IP)
  1814. # [17:44] * Joins: jgriffin (jgriffin@moz-791CC332.hsd1.wa.comcast.net)
  1815. # [17:44] * Joins: milan (milan@E06C0188.B117C875.52F58BA0.IP)
  1816. # [17:44] * Quits: nrc (nrc@88F51059.F3BBB17D.144F44FA.IP) (Quit: ChatZilla 0.9.90.1 [Firefox 34.0a1/20140812030202])
  1817. # [17:45] <gps> ted: I'm advocating for reproducible and consistent development environments, not necessarily bundling everything. although docker environments would go a long way towards unification
  1818. # [17:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/994c93b58bb1 - B2G Bumper Bot - Bumping gaia.json for 3 gaia revision(s) a=gaia-bump
  1819. # [17:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/e2b023483c04 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  1820. # [17:45] * Quits: siddu_ (siddu@637D4CD0.BF84E432.1C37C358.IP) (Ping timeout)
  1821. # [17:45] * Joins: trevorh1 (trevor@moz-BF97D9B5.lnse4.ken.bigpond.net.au)
  1822. # [17:46] * Quits: trevorh (trevor@moz-53B89623.lnse3.ken.bigpond.net.au) (Ping timeout)
  1823. # [17:46] * Quits: milan (milan@E06C0188.B117C875.52F58BA0.IP) (Ping timeout)
  1824. # [17:46] * terrence-afk is now known as terrence
  1825. # [17:46] * Joins: siddu_ (siddu@637D4CD0.BF84E432.1C37C358.IP)
  1826. # [17:47] <djvj> hey guys.. I wanna push a biggish (6-patch) changeset
  1827. # [17:47] <djvj> should I wait a bit until we get confirmed green?
  1828. # [17:47] * Quits: vebb (mike@moz-D2989058.callplus.net.nz) (Quit: preprocessor-irc-cli has gone to sleep ZzzzzZZZ)
  1829. # [17:47] <Ms2ger> You can wait all day, then
  1830. # [17:47] <Ms2ger> Do you have a try push?
  1831. # [17:47] * Joins: bent (chatzilla@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1832. # [17:47] <@ted> gps: google mostly frustrates me just with their reliance on gclient etc as a prereq to even getting the source
  1833. # [17:47] <djvj> Ms2ger: yeah, green
  1834. # [17:47] * Quits: spohl (Adium@moz-B14F1EC4.openskytelcom.net) (Quit: Leaving.)
  1835. # [17:47] <djvj> Ms2ger: with intermittent oranges
  1836. # [17:47] <Ms2ger> edmorley|sheriffduty, push away, I guess? ^
  1837. # [17:47] * Joins: milan (milan@E06C0188.B117C875.52F58BA0.IP)
  1838. # [17:47] <djvj> "today's forecast"
  1839. # [17:48] <gps> ted: no way I'm advocating that. although there may be some Mercurial extensions that make "getting the source" not as painful
  1840. # [17:48] * Quits: trevorh1 (trevor@moz-BF97D9B5.lnse4.ken.bigpond.net.au) (Ping timeout)
  1841. # [17:48] * Joins: trevorh (trevor@177E1C4A.BAA51669.670D5E6B.IP)
  1842. # [17:48] <gps> although it sounds like partial and shallow clone might be making their way into Mercurial core
  1843. # [17:48] <djvj> 90% green with intermittent oranges, and a 3% chance of red. Windchill at -10.
  1844. # [17:48] <@ted> gps: cool
  1845. # [17:49] * Quits: milan (milan@E06C0188.B117C875.52F58BA0.IP) (Connection reset by peer)
  1846. # [17:49] * Joins: spohl (Adium@DA62CBD9.58AFE261.5EBD1F4C.IP)
  1847. # [17:49] * rail is now known as rail-lunch
  1848. # [17:49] * Joins: milan (milan@E06C0188.B117C875.52F58BA0.IP)
  1849. # [17:49] * armenzg is now known as armenzg_lunch
  1850. # [17:50] * Joins: mcomella (mcomella@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1851. # [17:50] * Quits: trevorh (trevor@177E1C4A.BAA51669.670D5E6B.IP) (Ping timeout)
  1852. # [17:50] * Joins: paolo (paolo@88F51059.F3BBB17D.144F44FA.IP)
  1853. # [17:50] * Quits: robertbindar (Thunderbir@moz-C722A5D3.hsd1.ca.comcast.net) (Ping timeout)
  1854. # [17:50] * Joins: robertbindar (Thunderbir@moz-C722A5D3.hsd1.ca.comcast.net)
  1855. # [17:51] * Quits: siddu_ (siddu@637D4CD0.BF84E432.1C37C358.IP) (Ping timeout)
  1856. # [17:51] * Joins: trevorh (trevor@moz-80144CDF.lnse1.ken.bigpond.net.au)
  1857. # [17:51] * Fallen|away is now known as Fallen
  1858. # [17:51] * Quits: milan (milan@E06C0188.B117C875.52F58BA0.IP) (Ping timeout)
  1859. # [17:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/502f2efe3279 - Mark Banner - Bug 1052389 - Thunderbird can't package with MOZ_PACKAGE_JSSHELL due to looking for dozip.py in the wrong location r=ted
  1860. # [17:51] * Quits: kgrandon (Adium@moz-2A1C3CC8.hsd1.ca.comcast.net) (Quit: Leaving.)
  1861. # [17:51] * philor is now known as philor|away
  1862. # [17:52] * Joins: mchang (mchang@moz-95B568D6.socal.res.rr.com)
  1863. # [17:52] * Joins: siddu_ (siddu@637D4CD0.BF84E432.1C37C358.IP)
  1864. # [17:52] * Joins: huseby (huseby@moz-B3136CF6.linuxprogrammer.org)
  1865. # [17:52] <edmorley|sheriffduty> Ms2ger: :-)
  1866. # [17:52] * Joins: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP)
  1867. # [17:52] * Quits: trevorh (trevor@moz-80144CDF.lnse1.ken.bigpond.net.au) (Ping timeout)
  1868. # [17:53] * Joins: trevorh (trevor@moz-5215B720.lnse1.ken.bigpond.net.au)
  1869. # [17:53] * Quits: michal (michal@moz-93EA2B69.net.upcbroadband.cz) (Connection reset by peer)
  1870. # [17:53] * Joins: ckerschb (ckerschb@moz-62518563.mtv2.mozilla.com)
  1871. # [17:53] * Quits: tn (tim@moz-E7CE1D28.wp.shawcable.net) (Ping timeout)
  1872. # [17:54] * Joins: michal (michal@moz-93EA2B69.net.upcbroadband.cz)
  1873. # [17:54] * Joins: grobinson (grobinson@moz-731932CD.hsd1.ca.comcast.net)
  1874. # [17:54] * stephend|afk is now known as stephend
  1875. # [17:54] * Joins: tn (tim@moz-E7CE1D28.wp.shawcable.net)
  1876. # [17:55] * Joins: trevorh1 (trevor@moz-2C7903AB.lns6.cht.bigpond.net.au)
  1877. # [17:55] * Quits: michal (michal@moz-93EA2B69.net.upcbroadband.cz) (Connection reset by peer)
  1878. # [17:55] * Quits: trevorh (trevor@moz-5215B720.lnse1.ken.bigpond.net.au) (Ping timeout)
  1879. # [17:55] * Joins: bjacob (bjacob@13F2CEC5.7672369.D8E68FF6.IP)
  1880. # [17:55] * FuzzyFox is now known as FuzzyFox|afk
  1881. # [17:56] * Quits: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP) (Ping timeout)
  1882. # [17:56] * Joins: _6a68 (_6a68@moz-58FAF114.socal.res.rr.com)
  1883. # [17:56] * Joins: catalinb (catalinb@moz-CF8BEBEF.dia.static.qwest.net)
  1884. # [17:56] <mconley> thanks djvj, now over to Ms2ger with a sports update
  1885. # [17:56] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/692265fa9e80 - Ed Morley - Bug 1052016 - Prevent SNTP connections to *.pool.ntp.org during automation; r=froydnj
  1886. # [17:56] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4bdf267a1b90 - Ed Morley - Bug 1039019 - Set MOZ_DISABLE_NONLOCAL_CONNECTIONS for opt B2G mochitests; r=froydnj
  1887. # [17:56] * Quits: catalinb (catalinb@moz-CF8BEBEF.dia.static.qwest.net) (Client exited)
  1888. # [17:56] * Joins: marco (Adium@moz-C07D5168.p2p.sfo1.mozilla.com)
  1889. # [17:57] * Joins: aklotz (Thunderbir@moz-935DE219.cg.shawcable.net)
  1890. # [17:57] <froydnj> edmorley|sheriffduty: thanks for fiddling with those! ^
  1891. # [17:57] * Quits: trevorh1 (trevor@moz-2C7903AB.lns6.cht.bigpond.net.au) (Ping timeout)
  1892. # [17:57] <edmorley|sheriffduty> froydnj: np :-)
  1893. # [17:57] * Quits: pnkfelix (pnkfelix@moz-43495417.fbx.proxad.net) (Ping timeout)
  1894. # [17:57] * Joins: trevorh (trevor@moz-BDFB064E.lns10.ken.bigpond.net.au)
  1895. # [17:57] * davidb is now known as davidb|afk
  1896. # [17:57] * Joins: michal (michal@moz-93EA2B69.net.upcbroadband.cz)
  1897. # [17:57] * Joins: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP)
  1898. # [17:58] * Quits: KWierso|afk (chatzilla@A8B5A648.5C5B13F2.3BDB9670.IP) (Ping timeout)
  1899. # [17:58] * Joins: mt_ (mt@moz-62518563.mtv2.mozilla.com)
  1900. # [17:58] * Quits: bbondy (bbondy@moz-E2815EB6.home.cgocable.net) (Client exited)
  1901. # [17:58] * Joins: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl)
  1902. # [17:58] <Ms2ger> England 91 all out, India 43/1
  1903. # [17:59] * Joins: jduell (jduell@moz-612365A.hsd1.wa.comcast.net)
  1904. # [17:59] <Ms2ger> Back to you, mconley
  1905. # [17:59] * Quits: grobinson (grobinson@moz-731932CD.hsd1.ca.comcast.net) (Ping timeout)
  1906. # [17:59] * Quits: mt_ (mt@moz-62518563.mtv2.mozilla.com) (Connection reset by peer)
  1907. # [17:59] * Joins: mt_1 (mt@moz-62518563.mtv2.mozilla.com)
  1908. # [17:59] * Quits: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP) (Input/output error)
  1909. # [17:59] * Joins: milan (milan@E06C0188.B117C875.52F58BA0.IP)
  1910. # [17:59] * Quits: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP) (Ping timeout)
  1911. # [17:59] <froydnj> back to Ms2ger for a real sports update ;)
  1912. # [17:59] <mconley> web traffic is looking good today
  1913. # [17:59] * Joins: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP)
  1914. # [18:00] <mconley> some major congestion on hg.mozilla.org with road closures
  1915. # [18:00] <mconley> so if you're trying to land stuff or push to try, maybe grab yourself a snack instead
  1916. # [18:00] * Joins: bbondy (bbondy@moz-E2815EB6.home.cgocable.net)
  1917. # [18:00] <mconley> this traffic report brought to you by: Ritz Crackers.
  1918. # [18:00] * Quits: rkent (Thunderbir@moz-CCEA8D95.hsd1.wa.comcast.net) (Quit: rkent)
  1919. # [18:00] * Joins: grobinson (~grobinson@6FBE46B8.36F4E7CF.284344F5.IP)
  1920. # [18:00] * Quits: milan (milan@E06C0188.B117C875.52F58BA0.IP) (Connection reset by peer)
  1921. # [18:00] * davidb|afk is now known as davidb
  1922. # [18:01] <mconley> and that's all the time we have tonight folks. Good night, and good luck.
  1923. # [18:01] <padenot> edmorley|sheriffduty: do you think there is a chance for me to do a try push today, or should I just go home?
  1924. # [18:01] * mconley takes off headset
  1925. # [18:01] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Client exited)
  1926. # [18:02] * Quits: siddu_ (siddu@637D4CD0.BF84E432.1C37C358.IP) (Ping timeout)
  1927. # [18:02] * Joins: gandalf (zbraniecki@moz-F9900A0D.hsd1.ca.comcast.net)
  1928. # [18:02] * Quits: past (sid15657@moz-31ABA2C0.irccloud.com) (Ping timeout)
  1929. # [18:02] <edmorley|sheriffduty> padenot: I'm going to reopen shortly, was told to stagger to avoid more issues
  1930. # [18:02] <padenot> edmorley|sheriffduty: oh that's very good to hear, thanks
  1931. # [18:03] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  1932. # [18:03] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=6a7be7376caa - 13 changesets
  1933. # [18:03] * edmorley|sheriffduty can't wait until this farce is figured out
  1934. # [18:04] * Joins: past (sid15657@moz-31ABA2C0.irccloud.com)
  1935. # [18:04] * Quits: ckitching-mobile (ckitching-@moz-C722A5D3.hsd1.ca.comcast.net) (Input/output error)
  1936. # [18:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/50c3d450f981 - Kannan Vijayan - Bug 1004831 - Part 1 - Track pcOffsets of generated code during ion compilation. r=jdemooij
  1937. # [18:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0f71056d9b6f - Kannan Vijayan - Bug 1004831 - Part 2 - Add compact map representation for native to bytecode mappings. r=luke,h4writer
  1938. # [18:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9fb7b77d9e2f - Kannan Vijayan - Bug 1004831 - Part 3 - Add lookup methods to retrieve bytecode site information from mappings. r=h4writer
  1939. # [18:04] * Quits: bogdan_maris (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP) (Quit: bogdan_maris)
  1940. # [18:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/55f95c3b5dbe - Kannan Vijayan - Bug 1004831 - Part 4 - Register native to bytecode mappings when new IonCode is generated. r=h4writer
  1941. # [18:04] * Joins: siddu_ (siddu@637D4CD0.BF84E432.1C37C358.IP)
  1942. # [18:04] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0cc8cbeb849e - Kannan Vijayan - Bug 1004831 - Part 5 - Add mapping entries for baseline jitcode and ion IC jitcode. r=h4writer
  1943. # [18:05] * Quits: avaida (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP) (Input/output error)
  1944. # [18:05] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/410a7457f588 - Kannan Vijayan - Bug 1004831 - Part 6 - Fixups to ensure that entries get rejigged curretly during BaselineDebugModeOSR. r=h4writer
  1945. # [18:05] * Quits: robertbindar (Thunderbir@moz-C722A5D3.hsd1.ca.comcast.net) (Ping timeout)
  1946. # [18:06] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/pushloghtml?changeset=1601bb449713 - 94 changesets
  1947. # [18:07] <Gijs> hmm, treeherder says " 1/1/70 1:00 AM "
  1948. # [18:07] <Gijs> for a job start time
  1949. # [18:07] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/pushloghtml?changeset=97a5d21e57ac - 63 changesets
  1950. # [18:07] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?changeset=392dae6cb9d6 - 58 changesets
  1951. # [18:08] * Joins: trevorh1 (trevor@moz-72E6B5B7.lns5.cht.bigpond.net.au)
  1952. # [18:08] * Quits: trevorh (trevor@moz-BDFB064E.lns10.ken.bigpond.net.au) (Ping timeout)
  1953. # [18:08] <edmorley|sheriffduty> Gijs: bug 1043320
  1954. # [18:08] <edmorley|sheriffduty> padenot: open
  1955. # [18:08] * Joins: sylvain (scleymans@moz-62518563.mtv2.mozilla.com)
  1956. # [18:08] * curtisk|afk is now known as curtisk
  1957. # [18:08] * Quits: flaviu (Instantbir@B0E65737.A45B6F05.5BAD8D42.IP) (Quit: flaviu)
  1958. # [18:09] <Gijs> edmorley|sheriffduty: thanks!
  1959. # [18:09] * Joins: kgrandon (Adium@moz-2A1C3CC8.hsd1.ca.comcast.net)
  1960. # [18:09] <padenot> edmorley|sheriffduty: thanks
  1961. # [18:09] <edmorley|sheriffduty> np :-)
  1962. # [18:10] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/313e2d2e3df0 - Alex - Bug 1004679 - Use text-align: start or end instead of left or right in DevTools themes. r=bgrins
  1963. # [18:10] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/2691765d149c - Andrea Marchesini - Bug 1046240 - Expose the principal for a blob URI for chrome-only js code. r=smaug
  1964. # [18:10] * Joins: smaug (chatzilla@moz-38C5B03.elisa-laajakaista.fi)
  1965. # [18:10] * ChanServ sets mode: +o smaug
  1966. # [18:10] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/410969b1d389 - Alexandre Poirot - Bug 1046394 - Fix profiler in (b2g and e10s) content processes. r=vp, r=dcamp
  1967. # [18:10] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/c96542fdba99 - Alexandre Poirot - Bug 1051980 - Hide the profiler when not available. r=vp
  1968. # [18:11] * Quits: trevorh1 (trevor@moz-72E6B5B7.lns5.cht.bigpond.net.au) (Ping timeout)
  1969. # [18:11] * Joins: trevorh (trevor@moz-8F6BFE55.lns13.ken.bigpond.net.au)
  1970. # [18:12] * Joins: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP)
  1971. # [18:12] * Fallen is now known as Fallen|away
  1972. # [18:12] <siddu_> I would like to assigned to this bug 878519 , could anyone assign me please.
  1973. # [18:12] * Quits: tzimmermann (tzimmerman@moz-EC2AC70E.pools.vodafone-ip.de) (Quit: Ex-Chat)
  1974. # [18:13] * Joins: trevorh1 (trevor@moz-658DF062.lns4.ken.bigpond.net.au)
  1975. # [18:13] * Quits: trevorh (trevor@moz-8F6BFE55.lns13.ken.bigpond.net.au) (Ping timeout)
  1976. # [18:13] <Archaeopteryx> siddu_: done
  1977. # [18:13] * Quits: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP) (Ping timeout)
  1978. # [18:14] * bsmedberg is now known as bsmedberg-mtg
  1979. # [18:14] <MarcoZ> edmorley|sheriffduty: Wow, that was quick! :) Thanks!
  1980. # [18:14] * ctalbert|afk is now known as ctalbert|mtg
  1981. # [18:15] * Joins: trevorh (trevor@moz-C5CF3ADC.lns17.cht.bigpond.net.au)
  1982. # [18:15] <edmorley|sheriffduty> MarcoZ: no problem :-) it's important & I'll make sure the treeherder devs tackle it before we switch over from TBPL
  1983. # [18:15] * Quits: trevorh1 (trevor@moz-658DF062.lns4.ken.bigpond.net.au) (Ping timeout)
  1984. # [18:15] <edmorley|sheriffduty> (context for others: bug 1053279)
  1985. # [18:16] <MarcoZ> edmorley|sheriffduty: I should probably have added that keyboard focus visibility should also be ensured. Basically every :hover: should be accompanied by an :focus: in the CSS.
  1986. # [18:17] <davidb> edmorley|sheriffduty++
  1987. # [18:17] * Joins: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP)
  1988. # [18:18] * davidb is now known as davidb|afk
  1989. # [18:18] * Joins: bholley (bholley@8910BCF1.26055160.204CA821.IP)
  1990. # [18:18] * Joins: rkent (Thunderbir@moz-CCEA8D95.hsd1.wa.comcast.net)
  1991. # [18:19] <edmorley|sheriffduty> MarcoZ: added to the bug
  1992. # [18:20] * Quits: gabor (gabor@92F57509.E9E5A024.CA68F7F7.IP) (Client exited)
  1993. # [18:20] * ahal is now known as ahal|lunch
  1994. # [18:20] * Joins: robertbindar (Thunderbir@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  1995. # [18:21] * Quits: jesup|laptop (chatzilla@moz-8FD64E38.phlapa.fios.verizon.net) (Ping timeout)
  1996. # [18:21] * khuey is now known as khuey|away
  1997. # [18:22] * Quits: asobolev (asobolev@moz-A53CBDA1.hsd1.ca.comcast.net) (Quit: Leaving.)
  1998. # [18:22] * FuzzyFox|afk is now known as FuzzyFox
  1999. # [18:22] <mconley> edmorley|sheriffduty: thanks, yo. :)
  2000. # [18:23] * gregglind_away is now known as gregglind
  2001. # [18:24] * Joins: trevorh1 (trevor@moz-A8A57E2F.lns10.ken.bigpond.net.au)
  2002. # [18:24] * Quits: trevorh (trevor@moz-C5CF3ADC.lns17.cht.bigpond.net.au) (Ping timeout)
  2003. # [18:25] * Joins: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net)
  2004. # [18:25] * Quits: gcp (gpascutto@moz-9CEB1C98.access.telenet.be) (Quit: Make a new plan, Stan!)
  2005. # [18:25] * Quits: huseby (huseby@moz-B3136CF6.linuxprogrammer.org) (Quit: 0.3.8)
  2006. # [18:25] * Quits: trevorh1 (trevor@moz-A8A57E2F.lns10.ken.bigpond.net.au) (Ping timeout)
  2007. # [18:26] * Joins: huseby (huseby@moz-B3136CF6.linuxprogrammer.org)
  2008. # [18:27] <@smaug> is hg down ?
  2009. # [18:27] * Joins: gcp (gcp@moz-9CEB1C98.access.telenet.be)
  2010. # [18:27] <@smaug> looks like so
  2011. # [18:27] * Quits: grobinson (~grobinson@6FBE46B8.36F4E7CF.284344F5.IP) (Ping timeout)
  2012. # [18:27] * Joins: trevorh (trevor@moz-F1BBAFF7.lns15.ken.bigpond.net.au)
  2013. # [18:27] * dminor|afk is now known as dminor
  2014. # [18:28] * Joins: milan (milan@E06C0188.B117C875.52F58BA0.IP)
  2015. # [18:28] * Joins: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP)
  2016. # [18:28] * Joins: grobinson (~grobinson@6FBE46B8.36F4E7CF.284344F5.IP)
  2017. # [18:29] * Joins: jesup|mac (chatzilla@moz-8FD64E38.phlapa.fios.verizon.net)
  2018. # [18:29] * flod is now known as flod|afk
  2019. # [18:29] * Quits: gsvelto (gsvelto@moz-195C2C08.clienti.tiscali.it) (Ping timeout)
  2020. # [18:29] * davidb|afk is now known as davidb
  2021. # [18:29] * Quits: trevorh (trevor@moz-F1BBAFF7.lns15.ken.bigpond.net.au) (Ping timeout)
  2022. # [18:30] * Quits: milan (milan@E06C0188.B117C875.52F58BA0.IP) (Ping timeout)
  2023. # [18:30] * Joins: mwargers (mwargers@moz-24157589.mtv2.mozilla.com)
  2024. # [18:30] * Joins: trevorh (trevor@moz-E0F593C2.lns7.cht.bigpond.net.au)
  2025. # [18:31] * Quits: Mano (mano@moz-AB1853E1.red.bezeqint.net) (Client exited)
  2026. # [18:31] <RyanVM> jesup: if a bug has openh264-uplift on the whiteboard, it'll get nommed for Aurora eventually, right?
  2027. # [18:31] * Joins: Sushant94 (Sushant@F3D9E6A4.9841A019.D30E9BEF.IP)
  2028. # [18:31] * mcote|afk is now known as mcote
  2029. # [18:32] * Quits: trevorh (trevor@moz-E0F593C2.lns7.cht.bigpond.net.au) (Ping timeout)
  2030. # [18:32] * Joins: trevorh (trevor@moz-4B710EC8.lns1.cht.bigpond.net.au)
  2031. # [18:32] * Joins: mmcdonough (Martin@moz-62518563.mtv2.mozilla.com)
  2032. # [18:33] * Quits: sylvain (scleymans@moz-62518563.mtv2.mozilla.com) (Connection reset by peer)
  2033. # [18:33] * Joins: sylvain (scleymans@moz-62518563.mtv2.mozilla.com)
  2034. # [18:34] * Joins: jesup|laptop (chatzilla@moz-8FD64E38.phlapa.fios.verizon.net)
  2035. # [18:35] * Joins: jchaulk (jchaulk@moz-3EEB241A.dsl.teksavvy.com)
  2036. # [18:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/bd8783e5bb46 - Stefan Meinecke - Bug 1024631 - Remove additional line breaks between 4rd level .us tld sections. r=gerv
  2037. # [18:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/3cacf81a5f98 - Gervase Markham - Bug 1028347 - Remove k12.nd.us from PSL. r=gerv
  2038. # [18:36] * Quits: trevorh (trevor@moz-4B710EC8.lns1.cht.bigpond.net.au) (Ping timeout)
  2039. # [18:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/5beacc5d050f - Jonathan Rudenberg - Bug 1037901 - Add flynnhub.com to PSL. r=gerv
  2040. # [18:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/6550e3090e47 - Stefano Rivera - Bug 1040729 - Add yolasite.com to PSL. r=gerv
  2041. # [18:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/7628301d6782 - Mehmet Gurevin - Bug 1041035 - Add subTLDs for .tr to PSL. r=gerv
  2042. # [18:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a4afef2b30d4 - Frederico Neves - Bug 1051875 - Update PSL for nom.br. r=gerv
  2043. # [18:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b2f4a56fb02d - Gervase Markham - Bug 1051892 - Fix comments in PSL. r=gerv
  2044. # [18:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c08146793d37 - EKR - Bug 1047487 - Add support for G.722. r=jesup
  2045. # [18:36] * Quits: grobinson (~grobinson@6FBE46B8.36F4E7CF.284344F5.IP) (Ping timeout)
  2046. # [18:37] * Joins: bmoss (bmoss@moz-62518563.mtv2.mozilla.com)
  2047. # [18:37] * Joins: trevorh (trevor@moz-5CE71D83.lnse3.cht.bigpond.net.au)
  2048. # [18:37] * FuzzyFox is now known as FuzzyFox|afk
  2049. # [18:38] * chmanchester is now known as chmanchester|lunch
  2050. # [18:38] * jcranmer|away is now known as jcranmer
  2051. # [18:38] <edmorley|sheriffduty> smaug: yeah - bug 1040308
  2052. # [18:38] * Joins: gozala (uid5923@moz-5F4AA75A.irccloud.com)
  2053. # [18:39] * Joins: trevorh1 (trevor@moz-6F0CB4B6.lns9.cht.bigpond.net.au)
  2054. # [18:39] * Quits: trevorh (trevor@moz-5CE71D83.lnse3.cht.bigpond.net.au) (Ping timeout)
  2055. # [18:40] * Quits: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net) (Quit: pcwalton)
  2056. # [18:42] * Joins: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net)
  2057. # [18:42] * Joins: trevorh (trevor@moz-C238A3BC.lnse2.cht.bigpond.net.au)
  2058. # [18:42] * Quits: trevorh1 (trevor@moz-6F0CB4B6.lns9.cht.bigpond.net.au) (Ping timeout)
  2059. # [18:43] * Joins: asobolev (asobolev@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2060. # [18:43] * Quits: gandalf (zbraniecki@moz-F9900A0D.hsd1.ca.comcast.net) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  2061. # [18:44] * Joins: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP)
  2062. # [18:44] * Joins: squeakytoy (squeakytoy@moz-79070305.dynamic.se.alltele.net)
  2063. # [18:45] * Joins: trevorh1 (trevor@moz-81E9FACF.lns6.cht.bigpond.net.au)
  2064. # [18:45] * Quits: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP) (Client exited)
  2065. # [18:45] * Joins: alex_tz (Adium@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2066. # [18:45] * Quits: Jan\ (kvirc@5393F526.1C6381B3.529AC0B9.IP) (Ping timeout)
  2067. # [18:45] * Quits: trevorh (trevor@moz-C238A3BC.lnse2.cht.bigpond.net.au) (Ping timeout)
  2068. # [18:45] * Joins: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP)
  2069. # [18:46] * Quits: handyman (handyman@CDC7768D.1FF8B254.F2A02A02.IP) (Connection reset by peer)
  2070. # [18:46] * Joins: trevorh (trevor@moz-1602821D.lns14.ken.bigpond.net.au)
  2071. # [18:46] * Quits: trevorh1 (trevor@moz-81E9FACF.lns6.cht.bigpond.net.au) (Ping timeout)
  2072. # [18:47] * Quits: pcwalton (pcwalton@moz-DA87EE4.hsd1.ca.comcast.net) (Quit: pcwalton)
  2073. # [18:48] * gregglind is now known as gregglind_afk
  2074. # [18:48] * Joins: stefanh|away (stefanh@moz-3EED0162.customers.ownit.se)
  2075. # [18:49] * Quits: jduell (jduell@moz-612365A.hsd1.wa.comcast.net) (Ping timeout)
  2076. # [18:49] * rail-lunch is now known as rail
  2077. # [18:49] * RyanVM is now known as RyanVM|sheriffduty
  2078. # [18:50] * Quits: paolo (paolo@88F51059.F3BBB17D.144F44FA.IP) (Connection reset by peer)
  2079. # [18:50] * Quits: trevorh (trevor@moz-1602821D.lns14.ken.bigpond.net.au) (Ping timeout)
  2080. # [18:50] * Joins: paolo_ (paolo@88F51059.F3BBB17D.144F44FA.IP)
  2081. # [18:50] * Joins: trevorh (trevor@moz-B49D48E2.lns11.cht.bigpond.net.au)
  2082. # [18:50] * Joins: gandalf (zbraniecki@moz-F9900A0D.hsd1.ca.comcast.net)
  2083. # [18:51] * baku is now known as baku|away
  2084. # [18:51] * armenzg_lunch is now known as armenzg_mtg
  2085. # [18:51] * armenzg_mtg is now known as armenzg
  2086. # [18:51] * Quits: stefanh|away (stefanh@moz-3EED0162.customers.ownit.se) (Input/output error)
  2087. # [18:51] * Quits: armenzg (armenzg@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Leaving)
  2088. # [18:52] * baku|away is now known as baku
  2089. # [18:52] * Joins: armenzg (armenzg@13F2CEC5.7672369.D8E68FF6.IP)
  2090. # [18:52] * Quits: trevorh (trevor@moz-B49D48E2.lns11.cht.bigpond.net.au) (Connection reset by peer)
  2091. # [18:52] * Quits: armenzg (armenzg@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Leaving)
  2092. # [18:52] * Quits: erahm (Adium@moz-A511F1A0.hsd1.or.comcast.net) (Quit: Leaving.)
  2093. # [18:52] * Quits: sydpolk (sydpolk@moz-EEF6DC32.dynamic.ip.windstream.net) (Ping timeout)
  2094. # [18:53] * Joins: sydpolk1 (sydpolk@moz-1ADD18B8.dynamic.ip.windstream.net)
  2095. # [18:53] * Joins: trevorh (trevor@moz-972DEDC6.lns11.cht.bigpond.net.au)
  2096. # [18:53] * Joins: armenzg (armenzg@13F2CEC5.7672369.D8E68FF6.IP)
  2097. # [18:53] * Joins: ehugg (ehugg@moz-56CFE7FB.hsd1.wa.comcast.net)
  2098. # [18:53] * Joins: capella-s3 (capella-s3@moz-3A08EE5.twcny.res.rr.com)
  2099. # [18:53] * Quits: juanb (jbecerra@EA768190.B3AD8579.9CA62458.IP) (Quit: juanb)
  2100. # [18:53] * edmorley|sheriffduty is now known as edmorley
  2101. # [18:54] * Quits: sylvain (scleymans@moz-62518563.mtv2.mozilla.com) (Connection reset by peer)
  2102. # [18:54] * Quits: trevorh (trevor@moz-972DEDC6.lns11.cht.bigpond.net.au) (Ping timeout)
  2103. # [18:54] * Joins: trevorh (trevor@moz-53B594B0.lns9.ken.bigpond.net.au)
  2104. # [18:54] * Joins: sylvain (scleymans@moz-62518563.mtv2.mozilla.com)
  2105. # [18:55] * Quits: paolo_ (paolo@88F51059.F3BBB17D.144F44FA.IP) (Connection reset by peer)
  2106. # [18:55] * Joins: milan (milan@E06C0188.B117C875.52F58BA0.IP)
  2107. # [18:55] * Joins: paolo_ (paolo@88F51059.F3BBB17D.144F44FA.IP)
  2108. # [18:56] * Joins: sydpolk (sydpolk@moz-785A4723.dynamic.ip.windstream.net)
  2109. # [18:56] * Quits: sydpolk1 (sydpolk@moz-1ADD18B8.dynamic.ip.windstream.net) (Ping timeout)
  2110. # [18:56] * bgrins is now known as bgrins|afk
  2111. # [18:56] * Quits: trevorh (trevor@moz-53B594B0.lns9.ken.bigpond.net.au) (Ping timeout)
  2112. # [18:56] * Joins: Mook_as (mook@moz-1FCC0032.activestate.com)
  2113. # [18:57] * Quits: milan (milan@E06C0188.B117C875.52F58BA0.IP) (Ping timeout)
  2114. # [18:57] * Joins: ejpbruel (ejpbruel@moz-C216A63F.cm-7-4b.dynamic.ziggo.nl)
  2115. # [18:57] <edmorley> well on the plus side, bmo enter_bug.cgi is looking pretty fast in comparison to hgweb annotate right now
  2116. # [18:58] * flod|afk is now known as flod
  2117. # [18:58] * Joins: walter (walter@moz-62518563.mtv2.mozilla.com)
  2118. # [18:58] * glob is now known as glob|mtg
  2119. # [18:59] <froydnj> edmorley++
  2120. # [18:59] * Quits: fox2mike (shyam@moz-8DDA37AB.fox2mike.net) (Quit: BOFH Excuse #191: Just type mv * /dev/null.)
  2121. # [19:00] * edmorley looks longingly at bug 1021795
  2122. # [19:00] * chmanchester|lunch is now known as chmanchester
  2123. # [19:01] * FuzzyFox|afk is now known as FuzzyFox
  2124. # [19:01] * Joins: trevorh (trevor@moz-66307734.lnse2.ken.bigpond.net.au)
  2125. # [19:01] * Joins: fox2mike (shyam@moz-8DDA37AB.fox2mike.net)
  2126. # [19:02] * Quits: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP) (Input/output error)
  2127. # [19:02] * Quits: bmoss (bmoss@moz-62518563.mtv2.mozilla.com) (Ping timeout)
  2128. # [19:02] * Joins: jduell (jduell@moz-612365A.hsd1.wa.comcast.net)
  2129. # [19:02] * Joins: milan (milan@E06C0188.B117C875.52F58BA0.IP)
  2130. # [19:02] * Joins: grobinson (~grobinson@moz-731932CD.hsd1.ca.comcast.net)
  2131. # [19:02] * stephend is now known as stephend|mtg
  2132. # [19:02] * Joins: sunfish (chatzilla@moz-62518563.mtv2.mozilla.com)
  2133. # [19:03] * Joins: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP)
  2134. # [19:03] * Joins: bmoss (bmoss@moz-62518563.mtv2.mozilla.com)
  2135. # [19:04] * Quits: milan (milan@E06C0188.B117C875.52F58BA0.IP) (Ping timeout)
  2136. # [19:04] * Quits: trevorh (trevor@moz-66307734.lnse2.ken.bigpond.net.au) (Ping timeout)
  2137. # [19:05] * Joins: trevorh (trevor@moz-818A4868.lns4.ken.bigpond.net.au)
  2138. # [19:06] * Joins: mccr8 (mccr8@moz-62518563.mtv2.mozilla.com)
  2139. # [19:06] * Joins: trevorh1 (trevor@8AF92EAE.62734D4F.475248F5.IP)
  2140. # [19:07] * Quits: trevorh (trevor@moz-818A4868.lns4.ken.bigpond.net.au) (Ping timeout)
  2141. # [19:08] * Joins: erahm (Adium@moz-1C32B865.hsd1.or.comcast.net)
  2142. # [19:09] * Quits: trevorh1 (trevor@8AF92EAE.62734D4F.475248F5.IP) (Ping timeout)
  2143. # [19:09] * Quits: ekr (Adium@moz-24157589.mtv2.mozilla.com) (Quit: Leaving.)
  2144. # [19:09] * Joins: fredw (Icedove@moz-B9C110E2.fbx.proxad.net)
  2145. # [19:09] * Quits: ehugg (ehugg@moz-56CFE7FB.hsd1.wa.comcast.net) (Quit: ehugg)
  2146. # [19:09] * Joins: trevorh (trevor@moz-338E2FD.lns5.cht.bigpond.net.au)
  2147. # [19:10] * Quits: jesup|laptop (chatzilla@moz-8FD64E38.phlapa.fios.verizon.net) (Ping timeout)
  2148. # [19:10] * Quits: sydpolk (sydpolk@moz-785A4723.dynamic.ip.windstream.net) (Ping timeout)
  2149. # [19:10] * Joins: sydpolk1 (sydpolk@moz-37CA1DA6.dynamic.ip.windstream.net)
  2150. # [19:11] * Joins: ekr (Adium@moz-24157589.mtv2.mozilla.com)
  2151. # [19:11] * Joins: trevorh1 (trevor@moz-E6D49CC3.lns10.cht.bigpond.net.au)
  2152. # [19:11] * Quits: trevorh (trevor@moz-338E2FD.lns5.cht.bigpond.net.au) (Connection reset by peer)
  2153. # [19:11] * lth|out is now known as lth|away
  2154. # [19:11] * Quits: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP) (Ping timeout)
  2155. # [19:12] * khuey|away is now known as khuey
  2156. # [19:12] * Joins: juanb (jbecerra@moz-62518563.mtv2.mozilla.com)
  2157. # [19:13] * Quits: trevorh1 (trevor@moz-E6D49CC3.lns10.cht.bigpond.net.au) (Connection reset by peer)
  2158. # [19:13] * Joins: trevorh (trevor@moz-D9B7953.lns1.ken.bigpond.net.au)
  2159. # [19:16] * Joins: masayuki (Thunderbir@moz-7765A755.zaq.ne.jp)
  2160. # [19:16] * Quits: trevorh (trevor@moz-D9B7953.lns1.ken.bigpond.net.au) (Ping timeout)
  2161. # [19:16] * kats is now known as kats-lunch
  2162. # [19:16] * Joins: trevorh (trevor@D1A35493.8E0C4B30.670D5E6B.IP)
  2163. # [19:17] <@khuey> ted: ping?
  2164. # [19:18] * Quits: jesup|mac (chatzilla@moz-8FD64E38.phlapa.fios.verizon.net) (Ping timeout)
  2165. # [19:18] * Quits: Rik (rik@87C1F78E.1DE10CA8.D8E68FF6.IP) (Input/output error)
  2166. # [19:18] * Quits: jduell (jduell@moz-612365A.hsd1.wa.comcast.net) (Ping timeout)
  2167. # [19:18] * ahal|lunch is now known as ahal
  2168. # [19:20] * Quits: fabrice (fabrice@moz-62518563.mtv2.mozilla.com) (Ping timeout)
  2169. # [19:20] * Joins: KWierso|afk (chatzilla@A8B5A648.5C5B13F2.3BDB9670.IP)
  2170. # [19:20] <@khuey> RyanVM|sheriffduty: ping
  2171. # [19:21] <RyanVM|sheriffduty> khuey: pong
  2172. # [19:21] * Joins: rvid (textual@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2173. # [19:21] * Fallen|away is now known as Fallen
  2174. # [19:21] <@khuey> RyanVM|sheriffduty: so is the tree closed because infra is broken, or just because it can't handle full load?
  2175. # [19:21] * KWierso|afk is now known as KWierso|sheriffduty
  2176. # [19:21] <@khuey> RyanVM|sheriffduty: in other words, can we land a CAF blocker? ;)
  2177. # [19:21] * KWierso|sheriffduty is now known as KWierso
  2178. # [19:21] * Joins: milan (milan@E06C0188.B117C875.52F58BA0.IP)
  2179. # [19:22] <RyanVM|sheriffduty> i just reopened b-i like a minute before you pinged me
  2180. # [19:22] <@khuey> heh, ok
  2181. # [19:22] * Joins: fabrice (fabrice@moz-62518563.mtv2.mozilla.com)
  2182. # [19:22] <RyanVM|sheriffduty> basically, hg keeps going down
  2183. # [19:22] <RyanVM|sheriffduty> which is a hard blocker, yes ;)
  2184. # [19:22] <@khuey> yeah, I know
  2185. # [19:22] <@khuey> ok
  2186. # [19:23] * Quits: amoghbl1 (Thunderbir@9B9315E1.A6025CA.1C37C358.IP) (Quit: amoghbl1)
  2187. # [19:24] * Quits: erahm (Adium@moz-1C32B865.hsd1.or.comcast.net) (Quit: Leaving.)
  2188. # [19:24] * Joins: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP)
  2189. # [19:25] * Quits: gandalf (zbraniecki@moz-F9900A0D.hsd1.ca.comcast.net) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  2190. # [19:25] * BenWa|email is now known as BenWa
  2191. # [19:25] * bc is now known as bc|air
  2192. # [19:26] * Quits: KWierso (chatzilla@A8B5A648.5C5B13F2.3BDB9670.IP) (Quit: ChatZilla 0.9.90.1 [Firefox 34.0a1/20140812030202])
  2193. # [19:26] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/8f20443a3483 - B2G Bumper Bot - Bumping gaia.json for 3 gaia revision(s) a=gaia-bump
  2194. # [19:26] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/86f7ea6d2f1a - B2G Bumper Bot - Bumping manifests a=b2g-bump
  2195. # [19:28] * Joins: lgarner (lgarner@2D337F52.2D31AF7B.5AEB50C4.IP)
  2196. # [19:28] * Quits: sicking (sicking@moz-5D774EA3.hsd1.ca.comcast.net) (Quit: sicking)
  2197. # [19:29] * Joins: KWierso (chatzilla@A8B5A648.5C5B13F2.3BDB9670.IP)
  2198. # [19:30] * Joins: idwer_ (irc@moz-67B6410D.adsl.online.nl)
  2199. # [19:30] * Quits: idwer (irc@moz-67B6410D.adsl.online.nl) (Ping timeout)
  2200. # [19:31] * Joins: sovemp (shaycraft@37579293.AD310888.4B8DD6BE.IP)
  2201. # [19:31] * Quits: milan (milan@E06C0188.B117C875.52F58BA0.IP) (Input/output error)
  2202. # [19:31] * Joins: Mano (mano@moz-AB1853E1.red.bezeqint.net)
  2203. # [19:32] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/2c8a22b9c18f - George Wright - Bug 1017113 - Remove unnecessary files that slipped in accidentally r=nobody DONTBUILD
  2204. # [19:33] * Quits: trevorh (trevor@D1A35493.8E0C4B30.670D5E6B.IP) (Ping timeout)
  2205. # [19:33] * Quits: squib (squib@moz-FD68D6B2.dhcp.mdsn.wi.charter.com) (Quit: Leaving)
  2206. # [19:33] * Joins: trevorh (trevor@moz-168AD6AA.lns2.cht.bigpond.net.au)
  2207. # [19:33] * Quits: Mano (mano@moz-AB1853E1.red.bezeqint.net) (Ping timeout)
  2208. # [19:34] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/c865443dfb0c - Tim Taubert - Bug 1052371 - Fix m-bc shutdown leak detector r=akachkach
  2209. # [19:34] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/aabd9acf3c28 - Tim Taubert - Bug 1052756 - Fix Toolbox.destroy() to properly clean up with add-on targets r=Mossop
  2210. # [19:34] * Joins: espadrine (ttyl@moz-542A1BA3.w92-128.abo.wanadoo.fr)
  2211. # [19:34] * Joins: amoghbl1 (Thunderbir@9B9315E1.A6025CA.1C37C358.IP)
  2212. # [19:35] * Quits: wcosta (wander@A9DF2293.D0ACF8E7.1C880E7D.IP) (Ping timeout)
  2213. # [19:35] * Joins: trevorh1 (trevor@moz-B081B38.lns9.cht.bigpond.net.au)
  2214. # [19:35] * Quits: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP) (Ping timeout)
  2215. # [19:35] * Joins: jduell (jduell@moz-612365A.hsd1.wa.comcast.net)
  2216. # [19:36] * Quits: trevorh (trevor@moz-168AD6AA.lns2.cht.bigpond.net.au) (Ping timeout)
  2217. # [19:36] * jlund is now known as jlund|mtg
  2218. # [19:36] * hwine is now known as hwine-coffee
  2219. # [19:36] * Joins: wcosta (wander@A9DF2293.D0ACF8E7.1C880E7D.IP)
  2220. # [19:37] * coop|buildduty is now known as coop|mtg
  2221. # [19:38] * FuzzyFox is now known as FuzzyFox|afk
  2222. # [19:38] * Joins: trevorh (trevor@moz-57128314.lns14.ken.bigpond.net.au)
  2223. # [19:38] * Joins: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP)
  2224. # [19:38] * Quits: trevorh1 (trevor@moz-B081B38.lns9.cht.bigpond.net.au) (Ping timeout)
  2225. # [19:39] * Quits: ekr (Adium@moz-24157589.mtv2.mozilla.com) (Quit: Leaving.)
  2226. # [19:39] * Joins: ekr (Adium@moz-24157589.mtv2.mozilla.com)
  2227. # [19:40] * Quits: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP) (Input/output error)
  2228. # [19:40] * Joins: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com)
  2229. # [19:40] * Quits: siddu_ (siddu@637D4CD0.BF84E432.1C37C358.IP) (Ping timeout)
  2230. # [19:40] * Quits: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP) (Ping timeout)
  2231. # [19:40] * mdoglio is now known as mdoglio|bbl
  2232. # [19:41] * Quits: bjacob (bjacob@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Konversation terminated!)
  2233. # [19:41] * Joins: bjacob_ (bjacob@13F2CEC5.7672369.D8E68FF6.IP)
  2234. # [19:43] * Joins: ehugg (ehugg@FBDFF602.E046CCC5.6AC3E766.IP)
  2235. # [19:43] * Quits: trevorh (trevor@moz-57128314.lns14.ken.bigpond.net.au) (Ping timeout)
  2236. # [19:43] * Quits: joshua-s (Thunderbir@moz-7BA9A709.syrcny.east.verizon.net) (Ping timeout)
  2237. # [19:43] * Joins: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP)
  2238. # [19:44] * Joins: trevorh (trevor@moz-D529ACF8.lnse1.cht.bigpond.net.au)
  2239. # [19:44] * Joins: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP)
  2240. # [19:45] * hwine-coffee is now known as hwine-ooo
  2241. # [19:45] * Quits: heftig (heftig@moz-A720FFF6.dip0.t-ipconnect.de) (Ping timeout)
  2242. # [19:45] * Quits: robertbindar (Thunderbir@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Ping timeout)
  2243. # [19:46] * Joins: robertbindar (Thunderbir@moz-C07D5168.p2p.sfo1.mozilla.com)
  2244. # [19:46] * Quits: trevorh (trevor@moz-D529ACF8.lnse1.cht.bigpond.net.au) (Ping timeout)
  2245. # [19:46] * Quits: ehugg (ehugg@FBDFF602.E046CCC5.6AC3E766.IP) (Ping timeout)
  2246. # [19:46] * Joins: victorantunes (Mibbit@5D140CC6.52F9292.9AB5CF07.IP)
  2247. # [19:46] * Joins: trevorh (trevor@moz-5F2B1FD9.lnse2.ken.bigpond.net.au)
  2248. # [19:47] <jcranmer> time to punch someone for adding gfx/skia/trunk/src/pathops/SkLineParameters.h.rej
  2249. # [19:47] * Joins: automata (automata@BA48CF99.FA36B139.BB0EBA72.IP)
  2250. # [19:47] <BenWa> hg blame!
  2251. # [19:47] <jcranmer> user: George Wright <george@mozilla.com>
  2252. # [19:48] * Joins: siddu_ (siddu@637D4CD0.BF84E432.1C37C358.IP)
  2253. # [19:48] * Quits: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  2254. # [19:48] <BenWa> gw280: ^^ Stop landing code that isn’t reviewed! (Or who reviewed a reject file)
  2255. # [19:48] * Joins: jrmuizel (jrmuizel@13F2CEC5.7672369.D8E68FF6.IP)
  2256. # [19:48] <@ehsan> gw280: r=me, ship it
  2257. # [19:48] * Joins: ehugg (ehugg@moz-129D90D9.mycingular.net)
  2258. # [19:48] <gw280> ehsan: :P
  2259. # [19:48] * Joins: joshua-s (Thunderbir@moz-C9E76BBD.syrcny.east.verizon.net)
  2260. # [19:48] <@ehsan> BenWa: :P
  2261. # [19:48] * Joins: jesup|mac (chatzilla@moz-8FD64E38.phlapa.fios.verizon.net)
  2262. # [19:48] <jcranmer> summary: [PATCH 08/15] Bug 1017113 - Update Skia to 2014-07-28 r=upstream
  2263. # [19:48] <BenWa> ehsan:--
  2264. # [19:48] <jcranmer> upstream--
  2265. # [19:48] <gw280> BenWa: the actual patch that imports new skia code from upstream isn't reviewed
  2266. # [19:49] <gw280> because it's typically several MB and reviewing it is unnecessary. shit just slipped in this time
  2267. # [19:49] * Quits: trevorh (trevor@moz-5F2B1FD9.lnse2.ken.bigpond.net.au) (Ping timeout)
  2268. # [19:49] <reuben> should've CC'ed Ms2ger…
  2269. # [19:49] <@ehsan> gw280: diffstat.... :)
  2270. # [19:49] * Quits: wcosta (wander@A9DF2293.D0ACF8E7.1C880E7D.IP) (Input/output error)
  2271. # [19:49] <BenWa> lol
  2272. # [19:49] <gw280> ehsan: I'm not reading ten million lines of diffstat!
  2273. # [19:49] <jcranmer> so someone landed a patch that failed to apply and rs+'d because it's an upstream patch
  2274. # [19:49] <BenWa> The famous Ms2ger drive-by review :)
  2275. # [19:49] <@ehsan> gw280: does skia have 10 million files? :P
  2276. # [19:50] <@ehsan> it's one line per file
  2277. # [19:50] <gw280> jcranmer: nah, it was me that made the error. I cp'd a clone of skia where I'd only done a git reset but not a git clean
  2278. # [19:50] <gw280> [george@ytterbium skia]$ find . -type f | wc -l
  2279. # [19:50] <gw280> 10350
  2280. # [19:50] <froydnj> ehsan: just think what unified builds would do for their build times!
  2281. # [19:50] * Joins: trevorh (trevor@moz-BB2996B5.lns9.ken.bigpond.net.au)
  2282. # [19:50] <gw280> 10350 may as well be 10 million
  2283. # [19:50] <@ehsan> froydnj: their builds may now finish in a couple of months \o/
  2284. # [19:51] * jgraham suspects gw280 of being an astronomer
  2285. # [19:51] * Quits: jchaulk (jchaulk@moz-3EEB241A.dsl.teksavvy.com) (Quit: Leaving.)
  2286. # [19:51] <@ehsan> gw280: bjacob_ needs to teach you some math
  2287. # [19:51] * Joins: heftig (heftig@moz-809E55.dip0.t-ipconnect.de)
  2288. # [19:51] <gw280> ehsan: but bjacob_ has already taught me so much this week about my balls
  2289. # [19:51] <@ehsan> now we're getting into nsfw stuff
  2290. # [19:51] * Quits: robertbindar (Thunderbir@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: robertbindar)
  2291. # [19:51] <@ehsan> :D
  2292. # [19:51] * Joins: robertbindar (Thunderbir@moz-C07D5168.p2p.sfo1.mozilla.com)
  2293. # [19:52] <gw280> ehsan: https://bugzilla.mozilla.org/show_bug.cgi?id=1051989#c5
  2294. # [19:52] * Quits: trevorh (trevor@moz-BB2996B5.lns9.ken.bigpond.net.au) (Ping timeout)
  2295. # [19:52] * Quits: mccr8 (mccr8@moz-62518563.mtv2.mozilla.com) (Quit: computer sleep)
  2296. # [19:52] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/daba9c076741 - Trevor Saunders - bug 1052000 - fix some handling of empty text leaves r=surkov
  2297. # [19:52] <@ehsan> lol
  2298. # [19:52] * Quits: bgrins|afk (bgrins@C7203E51.FBD8ACDB.20F09BA6.IP) (Ping timeout)
  2299. # [19:52] <@ehsan> gw280: that is the BEST BUGZILLA COMMENT EVER
  2300. # [19:53] <@ehsan> bjacob++
  2301. # [19:53] * Joins: mccr8 (mccr8@moz-62518563.mtv2.mozilla.com)
  2302. # [19:53] * Joins: trevorh (trevor@moz-A9508F04.lnse4.cht.bigpond.net.au)
  2303. # [19:53] * Joins: Jan\ (kvirc@258C4B18.9ED115C5.529AC0B9.IP)
  2304. # [19:53] <bjacob_> :)
  2305. # [19:53] <froydnj> bjacob++
  2306. # [19:53] <@ehsan> now the comment is tagged as such!
  2307. # [19:53] <@ehsan> time to stop wasting time now, I guess :)
  2308. # [19:53] <froydnj> we need a best-of-bugzilla tag
  2309. # [19:53] <gw280> rofl
  2310. # [19:54] <froydnj> and feature the top ten or so every week
  2311. # [19:54] <gw280> should tweet with @BestOfBugzilla
  2312. # [19:55] <Archaeopteryx> "why is oklahoma's mirror image in that bug comment?"
  2313. # [19:55] <gw280> I don't even remember @BestOfBugzilla's password :(
  2314. # [19:55] * Quits: trevorh (trevor@moz-A9508F04.lnse4.cht.bigpond.net.au) (Ping timeout)
  2315. # [19:56] * Quits: ep103 (Mibbit@moz-2621F919.nycmny.fios.verizon.net) (Quit: http://www.mibbit.com ajax IRC Client)
  2316. # [19:56] * Quits: pdr (sid7901@moz-E77DEB21.irccloud.com) (Ping timeout)
  2317. # [19:56] * Quits: mvujovic (sid13458@moz-E77DEB21.irccloud.com) (Ping timeout)
  2318. # [19:56] * Quits: ashughes (uid34327@moz-E77DEB21.irccloud.com) (Ping timeout)
  2319. # [19:56] * Quits: daleharvey (sid513@moz-E77DEB21.irccloud.com) (Ping timeout)
  2320. # [19:57] * Quits: davida (sid14473@moz-E77DEB21.irccloud.com) (Ping timeout)
  2321. # [19:57] * Joins: trevorh (trevor@4556DB84.418914C.670D5E6B.IP)
  2322. # [19:57] <gw280> ehsan: there we go https://twitter.com/BestOfBugzilla/status/499614578452758528
  2323. # [19:57] * Joins: mwu (mwu@522C27B5.F1EEB410.2E87E34F.IP)
  2324. # [19:57] <victorantunes> whoever thought of our collective balls, I thank you
  2325. # [19:57] <@ehsan> amazing, my job here is done!
  2326. # [19:57] * Quits: mstange (markus@moz-A2F09EFD.dip0.t-ipconnect.de) (Quit: mstange)
  2327. # [19:58] * Quits: Preeti (uid13882@moz-E77DEB21.irccloud.com) (Ping timeout)
  2328. # [19:58] * Joins: pdr (sid7901@moz-E77DEB21.irccloud.com)
  2329. # [19:59] * Quits: trevorh (trevor@4556DB84.418914C.670D5E6B.IP) (Ping timeout)
  2330. # [19:59] * bc|air is now known as bc
  2331. # [19:59] * Joins: trevorh (trevor@moz-FD7C4F21.lns14.ken.bigpond.net.au)
  2332. # [19:59] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/23b4eadbcc79 - James Graham - Bug 1050700 - Add support for exc_info to mozlog.structured log actions, r=chmanchester
  2333. # [19:59] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/a87da9366285 - James Graham - Bug 1053207 - Count number of passing subtests in mach formatter, r=chmanchester
  2334. # [19:59] * Joins: davida (sid14473@moz-E77DEB21.irccloud.com)
  2335. # [20:00] * Quits: bmoss (bmoss@moz-62518563.mtv2.mozilla.com) (Ping timeout)
  2336. # [20:01] * Joins: mvujovic (sid13458@moz-E77DEB21.irccloud.com)
  2337. # [20:01] * Joins: ashughes (uid34327@moz-E77DEB21.irccloud.com)
  2338. # [20:03] * armenzg is now known as armenzg_mtg
  2339. # [20:03] * coop|mtg is now known as coop|buildduty
  2340. # [20:03] * Joins: daleharvey (sid513@moz-E77DEB21.irccloud.com)
  2341. # [20:03] * Quits: trevorh (trevor@moz-FD7C4F21.lns14.ken.bigpond.net.au) (Ping timeout)
  2342. # [20:04] * Parts: ckerschb (ckerschb@moz-62518563.mtv2.mozilla.com)
  2343. # [20:04] * Quits: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP) (Input/output error)
  2344. # [20:04] * _6a68 is now known as _6a68|afk
  2345. # [20:04] * Joins: Swatinem (Instantbir@moz-C3348152.dynamic.surfer.at)
  2346. # [20:05] * glob|mtg is now known as glob
  2347. # [20:05] * glob is now known as glob|away
  2348. # [20:05] * Joins: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP)
  2349. # [20:05] * juanb is now known as juanb|afk
  2350. # [20:05] * Joins: rbarnes_ (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP)
  2351. # [20:05] * Quits: rbarnes (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP) (Connection reset by peer)
  2352. # [20:05] * Joins: bmoss (bmoss@moz-62518563.mtv2.mozilla.com)
  2353. # [20:07] * Joins: ckerschb (ckerschb@moz-62518563.mtv2.mozilla.com)
  2354. # [20:07] * Joins: Preeti (uid13882@moz-E77DEB21.irccloud.com)
  2355. # [20:07] * Quits: davidb (davidb@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  2356. # [20:07] * Joins: gsvelto (gsvelto@moz-195C2C08.clienti.tiscali.it)
  2357. # [20:07] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/9c62e270aff6 - Mark Banner - Bug 1053181 Fix Loop's standalone pages to display correctly on the proper dev server. r=dmose NPOTB DONTBUILD
  2358. # [20:07] * Joins: trevorh (trevor@moz-5C33C03C.lnse4.ken.bigpond.net.au)
  2359. # [20:07] * kats-lunch is now known as kats
  2360. # [20:07] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2361. # [20:08] * Quits: trevorh (trevor@moz-5C33C03C.lnse4.ken.bigpond.net.au) (Connection reset by peer)
  2362. # [20:09] * Quits: paolo_ (paolo@88F51059.F3BBB17D.144F44FA.IP) (Quit: Konversation terminated!)
  2363. # [20:10] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e520de935cba - Trevor Saunders - [PATCH] bug 1049781 - add move ctor version of
  2364. # [20:11] * Quits: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  2365. # [20:11] * Joins: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP)
  2366. # [20:11] <froydnj> tbsaunde: your git-fu needs some work: ^
  2367. # [20:12] <@smaug> what have we done to debug builds, 13:28 min for clobber
  2368. # [20:12] * Joins: catalinb (catalinb@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2369. # [20:12] <@smaug> I thought it was getting back to ~20min
  2370. # [20:12] <jcranmer> I thought it was 12m7s
  2371. # [20:12] <tbsaunde> froydnj: yeah, that one was sitting in my hg que for a while and I forgot I hadn't updated the commit msg
  2372. # [20:12] * Joins: trevorh (trevor@moz-C2A2224A.lns17.cht.bigpond.net.au)
  2373. # [20:12] <jcranmer> 12:01.69 Overall system resources - Wall time: 720s; CPU: 87%; Read bytes: 260894720; Write bytes: 4634689536; Read time: 61528; Write time: 6802580
  2374. # [20:12] <jcranmer> off by 6 seconds
  2375. # [20:13] * Quits: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: sicking)
  2376. # [20:13] * Joins: erahm (Adium@moz-A511F1A0.hsd1.or.comcast.net)
  2377. # [20:14] * jlund|mtg is now known as jlund
  2378. # [20:14] * Joins: trevorh1 (trevor@moz-42FD0D54.lns11.cht.bigpond.net.au)
  2379. # [20:14] * Quits: trevorh (trevor@moz-C2A2224A.lns17.cht.bigpond.net.au) (Ping timeout)
  2380. # [20:15] <jgraham> opt build times are up by about 1/3 on my machine since cutting build times was all the rage on dev.platform (unless my memory is failing)
  2381. # [20:15] * Joins: morlunk (andrew@moz-7CB4AD92.vc.shawcable.net)
  2382. # [20:16] * Joins: trevorh (trevor@DCCE30EC.30666850.475248F5.IP)
  2383. # [20:16] * Quits: gcp (gcp@moz-9CEB1C98.access.telenet.be) (Quit: Leaving)
  2384. # [20:16] * Quits: trevorh1 (trevor@moz-42FD0D54.lns11.cht.bigpond.net.au) (Ping timeout)
  2385. # [20:16] * Quits: victorantunes (Mibbit@5D140CC6.52F9292.9AB5CF07.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2386. # [20:19] * Joins: trevorh1 (trevor@moz-78F9CB70.lns4.ken.bigpond.net.au)
  2387. # [20:19] * Quits: trevorh (trevor@DCCE30EC.30666850.475248F5.IP) (Connection reset by peer)
  2388. # [20:21] * Joins: tanvi (tanvi@moz-84BB47BB.hsd1.ca.comcast.net)
  2389. # [20:21] * Quits: trevorh1 (trevor@moz-78F9CB70.lns4.ken.bigpond.net.au) (Ping timeout)
  2390. # [20:22] * Quits: Optimizer (Optimizer@836C1772.8C9808EB.274D17D6.IP) (Ping timeout)
  2391. # [20:22] * Joins: trevorh (trevor@moz-F2E75B24.lns8.ken.bigpond.net.au)
  2392. # [20:22] * Joins: Optimizer (Optimizer@64A90951.D19FD2C5.274D17D6.IP)
  2393. # [20:23] * Quits: chmanchester (chmanchest@63CA6098.1EB7376C.ECED8BE3.IP) (Quit: )
  2394. # [20:23] * Joins: chmanchester (chmanchest@63CA6098.1EB7376C.ECED8BE3.IP)
  2395. # [20:23] * Quits: trevorh (trevor@moz-F2E75B24.lns8.ken.bigpond.net.au) (Ping timeout)
  2396. # [20:23] * julienw is now known as julienw_afk
  2397. # [20:25] * Joins: trevorh (trevor@moz-3DA250F8.lns1.cht.bigpond.net.au)
  2398. # [20:26] * Quits: mwargers (mwargers@moz-24157589.mtv2.mozilla.com) (Client exited)
  2399. # [20:26] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/168401edb50d - B2G Bumper Bot - Bumping manifests a=b2g-bump
  2400. # [20:26] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/aa5702bb30ab - Chris Peterson - Bug 1053061 - Remove unnecessary `return undefined`s in JS self-hosted code now that bogus return warning has been removed in bug 1046964. r=billm
  2401. # [20:27] * Quits: ehugg (ehugg@moz-129D90D9.mycingular.net) (Quit: ehugg)
  2402. # [20:28] <@khuey> ted: ping
  2403. # [20:29] * Quits: trevorh (trevor@moz-3DA250F8.lns1.cht.bigpond.net.au) (Ping timeout)
  2404. # [20:29] * bsmedberg-mtg is now known as bsmedberg
  2405. # [20:29] * Joins: jimb (user@B301EC70.B2666F0E.66399531.IP)
  2406. # [20:29] * terrence is now known as terrence-brb
  2407. # [20:30] * Joins: bgrins (bgrins@2E6E9164.E6468DB3.BAB75B95.IP)
  2408. # [20:30] * Joins: trevorh (trevor@moz-D37E4978.lns10.ken.bigpond.net.au)
  2409. # [20:30] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2410. # [20:30] * Joins: jesup|laptop (chatzilla@moz-8FD64E38.phlapa.fios.verizon.net)
  2411. # [20:31] * Joins: trevorh1 (trevor@moz-B4D8F934.lns4.ken.bigpond.net.au)
  2412. # [20:31] * Quits: bgrins (bgrins@2E6E9164.E6468DB3.BAB75B95.IP) (Ping timeout)
  2413. # [20:31] * Quits: trevorh (trevor@moz-D37E4978.lns10.ken.bigpond.net.au) (Ping timeout)
  2414. # [20:31] * Joins: bgrins (bgrins@C7203E51.FBD8ACDB.20F09BA6.IP)
  2415. # [20:32] * Joins: wcosta (wander@A9DF2293.D0ACF8E7.1C880E7D.IP)
  2416. # [20:32] * Quits: siddu_ (siddu@637D4CD0.BF84E432.1C37C358.IP) (Ping timeout)
  2417. # [20:32] * Quits: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP) (Ping timeout)
  2418. # [20:32] * Quits: mak (uid24946@moz-31ABA2C0.irccloud.com) (Quit: Connection closed for inactivity)
  2419. # [20:34] * Joins: gcp (gpascutto@moz-9CEB1C98.access.telenet.be)
  2420. # [20:34] * Joins: mwargers (mwargers@moz-24157589.mtv2.mozilla.com)
  2421. # [20:35] * stephend|mtg is now known as stephend
  2422. # [20:35] * coop|buildduty is now known as coop|mtg
  2423. # [20:35] * dminor is now known as dminor|afk
  2424. # [20:36] * Quits: jviereck03 (Adium@moz-99A5B1E0.ethz.ch) (Ping timeout)
  2425. # [20:37] * Quits: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP) (Connection reset by peer)
  2426. # [20:37] * Joins: mconley (mconley@13F2CEC5.7672369.D8E68FF6.IP)
  2427. # [20:39] * Joins: ep1032 (Mibbit@moz-2621F919.nycmny.fios.verizon.net)
  2428. # [20:39] * Joins: Mano (mano@moz-AB1853E1.red.bezeqint.net)
  2429. # [20:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9bb0d8d53ef9 - Andrew McCreight - Bug 1024795, part 1 - Remove trailing whitespace from lower.py. r=bent
  2430. # [20:40] * rail is now known as rail_away
  2431. # [20:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/ae9afbb34645 - Andrew McCreight - Bug 1024795, part 2 - static_cast isn't needed for nullptr in IPDL codegen. r=bent
  2432. # [20:40] * Joins: lerc (quassel@moz-6CD49BDA.telstraclear.net)
  2433. # [20:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/7945e7a05f8f - Andrew McCreight - Bug 1024795, part 3 - Generate nsTArray instead of InfallibleTArray in lower.py. r=bent
  2434. # [20:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/642e73d314c3 - Andrew McCreight - Bug 1024795, part 4 - Use a default value for initializing unions, except for nsTArray. r=bent
  2435. # [20:41] * Joins: squib (squib@moz-FD68D6B2.dhcp.mdsn.wi.charter.com)
  2436. # [20:41] * Quits: Mano (mano@moz-AB1853E1.red.bezeqint.net) (Ping timeout)
  2437. # [20:41] * terrence-brb is now known as terrence
  2438. # [20:41] * curtisk is now known as curtisk|afk
  2439. # [20:42] <ep1032> I finally got my first custom builds of FF / Xulrunner runing. Just wanted to say thank you to those of you who have helped me last few days
  2440. # [20:42] <ep1032> thank you!
  2441. # [20:42] * stephend is now known as stephend|mtg
  2442. # [20:42] <ep1032> -ep
  2443. # [20:43] * Quits: garvank (Garvan@13F2CEC5.7672369.D8E68FF6.IP) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  2444. # [20:44] * gregglind_afk is now known as gregglind
  2445. # [20:44] * Quits: automata (automata@BA48CF99.FA36B139.BB0EBA72.IP) (Ping timeout)
  2446. # [20:45] * mdas is now known as mdas|afk
  2447. # [20:45] * Quits: kgrandon (Adium@moz-2A1C3CC8.hsd1.ca.comcast.net) (Quit: Leaving.)
  2448. # [20:46] * Joins: automata (automata@BA48CF99.FA36B139.BB0EBA72.IP)
  2449. # [20:46] * rail_away is now known as rail
  2450. # [20:47] <@ted> khuey: pong
  2451. # [20:47] * Joins: lygstate (Mibbit@9235448A.F269E0B9.A66B4843.IP)
  2452. # [20:48] <lygstate> I have such a API void getDescriptionTextPartProperties(in long row, in long partIdx, in nsISupportsArray properties);
  2453. # [20:48] * jlund is now known as jund|lunch
  2454. # [20:48] * Quits: jesup|mac (chatzilla@moz-8FD64E38.phlapa.fios.verizon.net) (Ping timeout)
  2455. # [20:48] <lygstate> Want to replace the properties to AtomArray, how to do that?
  2456. # [20:48] <@ted> khuey: oh you sent mail
  2457. # [20:48] * _6a68|afk is now known as _6a68
  2458. # [20:48] * Joins: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP)
  2459. # [20:49] * Joins: siddu_ (siddu@637D4CD0.BF84E432.1C37C358.IP)
  2460. # [20:49] <@khuey> ted: yeah
  2461. # [20:49] <@khuey> I gave up on getting a response on IRC
  2462. # [20:49] * Quits: catalinb (catalinb@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: This computer has gone to sleep)
  2463. # [20:50] <@ted> hah sorry
  2464. # [20:50] <@ted> was avoiding irc for a bit
  2465. # [20:50] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/6fbd6981ccbf - Birunthan Mohanathas - Bug 1049214 - Fix 'setting a property that has only a getter' warnings on shutdown for nsContentPrefService.js and nsLoginManager.js. r=mossop
  2466. # [20:50] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4399b34c5259 - Birunthan Mohanathas - Bug 1046841 - Convert xpcom/build/ to Gecko style. r=froydnj
  2467. # [20:52] <RyanVM|sheriffduty> khuey: you know I'm thinking about closing *-inbound just to spite you right now after that query earlier ;)
  2468. # [20:53] * Quits: @dbaron (dbaron@moz-6F4D2D12.dsl.dynamic.sonic.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  2469. # [20:53] * Quits: jet (jet@moz-79F891EE.hsd1.ca.comcast.net) (Quit: jet)
  2470. # [20:54] <@khuey> RyanVM|sheriffduty: *shrug*
  2471. # [20:54] <@khuey> I don't have anything to push
  2472. # [20:54] <RyanVM|sheriffduty> so just more of a general query? :)
  2473. # [20:55] <lygstate> What is a list of Atom in IDL?
  2474. # [20:55] <lygstate> List<Atom> ? or other staff?
  2475. # [20:56] * Quits: Swatinem (Instantbir@moz-C3348152.dynamic.surfer.at) (Quit: Instantbird 1.5 -- http://www.instantbird.com)
  2476. # [20:57] * Joins: billm (billm@moz-24157589.mtv2.mozilla.com)
  2477. # [20:57] * Joins: Swatinem (Instantbir@moz-C3348152.dynamic.surfer.at)
  2478. # [20:57] * Joins: jviereck03 (Adium@moz-7859BAFE.dclient.hispeed.ch)
  2479. # [20:58] * terrence is now known as terrence-lunch
  2480. # [20:59] * dminor|afk is now known as dminor
  2481. # [21:00] * curtisk|afk is now known as curtisk
  2482. # [21:01] * rail is now known as rail_away
  2483. # [21:01] * Quits: ekr (Adium@moz-24157589.mtv2.mozilla.com) (Quit: Leaving.)
  2484. # [21:01] <NeilAway> tbsaunde/froydnj: why does that use forward when it's not a template?
  2485. # [21:01] * Joins: ekr (Adium@moz-24157589.mtv2.mozilla.com)
  2486. # [21:02] <Ms2ger> lygstate, [array] in XPIDL
  2487. # [21:02] <froydnj> NeilAway: what?
  2488. # [21:02] * Ms2ger drive-bys gw280
  2489. # [21:03] * Joins: catalinb (catalinb@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2490. # [21:03] * Quits: trevorh1 (trevor@moz-B4D8F934.lns4.ken.bigpond.net.au) (Ping timeout)
  2491. # [21:03] * Joins: garvank (Garvan@13F2CEC5.7672369.D8E68FF6.IP)
  2492. # [21:03] <NeilAway> froydnj: https://hg.mozilla.org/integration/mozilla-inbound/rev/e520de935cba#l1.21
  2493. # [21:03] * Quits: WG9s (bill@moz-C5B3485D.hsd1.ma.comcast.net) (Input/output error)
  2494. # [21:03] <NeilAway> froydnj: that's a regular parameter, so you need to move it, not forward it
  2495. # [21:03] * Joins: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP)
  2496. # [21:03] <NeilAway> froydnj: in fact techincally the parameter should be elem_type and not elem_type&&
  2497. # [21:04] <froydnj> NeilAway: doh
  2498. # [21:05] * coop|mtg is now known as coop|buildduty
  2499. # [21:05] * Quits: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP) (Quit: RealRaven)
  2500. # [21:05] * Joins: trevorh (trevor@moz-926B3533.lns4.cht.bigpond.net.au)
  2501. # [21:05] * Joins: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP)
  2502. # [21:06] * Joins: squib_ (squib@moz-FD68D6B2.dhcp.mdsn.wi.charter.com)
  2503. # [21:07] * Joins: davidb (davidb@13F2CEC5.7672369.D8E68FF6.IP)
  2504. # [21:07] * Quits: trevorh (trevor@moz-926B3533.lns4.cht.bigpond.net.au) (Ping timeout)
  2505. # [21:07] * Joins: trevorh1 (trevor@4556DB84.418914C.670D5E6B.IP)
  2506. # [21:07] <erahm> We need some sort of move/forward/param type flow chart
  2507. # [21:08] * Joins: abwillis (abwillis@CBAC43F2.9DD4DBBF.6A7A197.IP)
  2508. # [21:09] * armenzg_mtg is now known as armenzg
  2509. # [21:10] * Quits: trevorh1 (trevor@4556DB84.418914C.670D5E6B.IP) (Ping timeout)
  2510. # [21:10] * rail_away is now known as rail
  2511. # [21:10] * Quits: garvank (Garvan@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2512. # [21:11] * Joins: trevorh (trevor@moz-58449F0F.lns17.ken.bigpond.net.au)
  2513. # [21:11] * mdas|afk is now known as mdas
  2514. # [21:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/8ba48fa78d58 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  2515. # [21:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/02e97128bcaf - B2G Bumper Bot - Bumping manifests a=b2g-bump
  2516. # [21:11] * Quits: ochameau (ochameau@moz-ACA4384F.fbx.proxad.net) (Ping timeout)
  2517. # [21:12] * Quits: gsvelto (gsvelto@moz-195C2C08.clienti.tiscali.it) (Input/output error)
  2518. # [21:12] * Joins: kgrandon (Adium@moz-2A1C3CC8.hsd1.ca.comcast.net)
  2519. # [21:13] * Quits: trevorh (trevor@moz-58449F0F.lns17.ken.bigpond.net.au) (Ping timeout)
  2520. # [21:15] * Quits: Bas (chatzilla@EBA84827.A73C08F8.348C8185.IP) (Ping timeout)
  2521. # [21:16] * Quits: rkent (Thunderbir@moz-CCEA8D95.hsd1.wa.comcast.net) (Quit: rkent)
  2522. # [21:16] * Joins: trevorh (trevor@moz-E0DE5E22.lns7.ken.bigpond.net.au)
  2523. # [21:17] * kats is now known as kats|away
  2524. # [21:17] * Quits: alex_tz (Adium@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving.)
  2525. # [21:17] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=168401edb50d - 20 changesets
  2526. # [21:18] * Quits: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net) (Quit: OSError: [Errno 130] Owner died)
  2527. # [21:18] * Quits: trevorh (trevor@moz-E0DE5E22.lns7.ken.bigpond.net.au) (Ping timeout)
  2528. # [21:18] * Joins: trevorh (trevor@moz-FAB67C27.lns2.cht.bigpond.net.au)
  2529. # [21:19] * Joins: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net)
  2530. # [21:19] * Quits: flod (flod@B24A55E.C75EE065.2CA42CD4.IP) (Quit: Leaving.)
  2531. # [21:19] <NeilAway> froydnj: I notice that AppendElement(elem_type&&) has the same bug
  2532. # [21:20] * kats|away is now known as kats
  2533. # [21:20] * Quits: bholley (bholley@8910BCF1.26055160.204CA821.IP) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  2534. # [21:21] * Quits: trevorh (trevor@moz-FAB67C27.lns2.cht.bigpond.net.au) (Ping timeout)
  2535. # [21:21] <froydnj> NeilAway: file a bug, please?
  2536. # [21:21] * Joins: alex_tz (Adium@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2537. # [21:21] <NeilAway> froydnj: yeah, it just took me this log to double-check
  2538. # [21:21] <NeilAway> *long
  2539. # [21:22] <froydnj> NeilAway: cool, thanks!
  2540. # [21:23] * Joins: trevorh (trevor@moz-386CB1C6.lns17.ken.bigpond.net.au)
  2541. # [21:24] * Quits: drno (nohlmeier@moz-CCCF7F86.hsd1.ca.comcast.net) (Quit: drno)
  2542. # [21:26] * Quits: trevorh (trevor@moz-386CB1C6.lns17.ken.bigpond.net.au) (Ping timeout)
  2543. # [21:27] * Joins: trevorh (trevor@moz-502E86C6.lns13.cht.bigpond.net.au)
  2544. # [21:27] * Joins: garvank (Garvan@13F2CEC5.7672369.D8E68FF6.IP)
  2545. # [21:28] * Joins: karl (karl@moz-C433B975.jetstream.xtra.co.nz)
  2546. # [21:28] * Quits: siddu (siddu@637D4CD0.BF84E432.1C37C358.IP) (Quit: Leaving)
  2547. # [21:29] * Quits: trevorh (trevor@moz-502E86C6.lns13.cht.bigpond.net.au) (Ping timeout)
  2548. # [21:29] * Quits: garvank (Garvan@13F2CEC5.7672369.D8E68FF6.IP) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  2549. # [21:29] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Input/output error)
  2550. # [21:30] * Joins: trevorh (trevor@moz-262EAFB9.lnse1.ken.bigpond.net.au)
  2551. # [21:30] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  2552. # [21:30] * gaye is now known as gaye|brb
  2553. # [21:30] * kats is now known as kats|away
  2554. # [21:31] <lygstate> How to convert nsIMutableArray to AtomArray
  2555. # [21:31] * Joins: garvank (Garvan@13F2CEC5.7672369.D8E68FF6.IP)
  2556. # [21:32] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  2557. # [21:32] * Quits: trevorh (trevor@moz-262EAFB9.lnse1.ken.bigpond.net.au) (Ping timeout)
  2558. # [21:34] * kats|away is now known as kats
  2559. # [21:34] * Quits: siddu_ (siddu@637D4CD0.BF84E432.1C37C358.IP) (Client exited)
  2560. # [21:35] <@smaug> lygstate: which AtomArray?
  2561. # [21:35] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=7d43251dea52 - 56 changesets
  2562. # [21:35] * Quits: catalinb (catalinb@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: This computer has gone to sleep)
  2563. # [21:35] * Quits: alex_tz (Adium@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: Leaving.)
  2564. # [21:35] <@smaug> nsIMutableArray may contain any kinds of nsISupports objects, so converting to AtomArray may not really work
  2565. # [21:35] <@smaug> but if you know it is an array of nsIAtoms...
  2566. # [21:36] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/pushloghtml?changeset=d7e78f0c1465 - 77 changesets
  2567. # [21:36] <@smaug> then you just take each entry one by one and append them to AtomArray (whatever that is)
  2568. # [21:36] * Quits: sydpolk1 (sydpolk@moz-37CA1DA6.dynamic.ip.windstream.net) (Ping timeout)
  2569. # [21:36] * Joins: trevorh (trevor@moz-28210B97.lns6.cht.bigpond.net.au)
  2570. # [21:36] * Quits: ejpbruel (ejpbruel@moz-C216A63F.cm-7-4b.dynamic.ziggo.nl) (Ping timeout)
  2571. # [21:38] * Joins: sydpolk (sydpolk@moz-E1152AF.dynamic.ip.windstream.net)
  2572. # [21:38] * Quits: trevorh (trevor@moz-28210B97.lns6.cht.bigpond.net.au) (Ping timeout)
  2573. # [21:38] * Joins: trevorh (trevor@2659CAEF.C3C9051B.475248F5.IP)
  2574. # [21:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/9631886da333 - Eric Edens - Bug 1049282 - Remove textVisiblePassword input type from search box. r=margaret
  2575. # [21:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/c0a5b7e1da13 - Margaret Leibovic - Bug 1045655 - Focus search bar and open keyboard on launch. r=eedens
  2576. # [21:41] * Quits: trevorh (trevor@2659CAEF.C3C9051B.475248F5.IP) (Connection reset by peer)
  2577. # [21:41] * gaye|brb is now known as gaye
  2578. # [21:42] * Joins: bogdan_maris (Instantbir@EAD7D6BC.3E5A2831.FB2DBB61.IP)
  2579. # [21:42] * davidb is now known as davidb|afk
  2580. # [21:42] * Joins: vebb (mike@moz-D2989058.callplus.net.nz)
  2581. # [21:43] * davidb|afk is now known as davidb
  2582. # [21:43] * Quits: vebb (mike@moz-D2989058.callplus.net.nz) (Input/output error)
  2583. # [21:43] * Joins: phantom (phantom@moz-F33396C5.customer.t3.se)
  2584. # [21:43] * Joins: trevorh (trevor@moz-39568507.lnse3.ken.bigpond.net.au)
  2585. # [21:44] * davidb is now known as davidb|afk
  2586. # [21:44] * Quits: sydpolk (sydpolk@moz-E1152AF.dynamic.ip.windstream.net) (Ping timeout)
  2587. # [21:44] * Joins: sydpolk1 (sydpolk@moz-890B0D8E.dynamic.ip.windstream.net)
  2588. # [21:44] * Joins: mkohler (mkohler@moz-C07D5168.p2p.sfo1.mozilla.com)
  2589. # [21:45] * Joins: drno (nohlmeier@moz-62518563.mtv2.mozilla.com)
  2590. # [21:46] * Joins: Waldo (waldo@moz-62518563.mtv2.mozilla.com)
  2591. # [21:46] * Quits: sydpolk1 (sydpolk@moz-890B0D8E.dynamic.ip.windstream.net) (Ping timeout)
  2592. # [21:46] * Joins: gandalf (zbraniecki@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2593. # [21:48] * chmanchester is now known as chmanchester|afk
  2594. # [21:49] * Quits: trevorh (trevor@moz-39568507.lnse3.ken.bigpond.net.au) (Ping timeout)
  2595. # [21:49] * davidb|afk is now known as davidb
  2596. # [21:50] * Joins: sydpolk (sydpolk@moz-572F05D4.dynamic.ip.windstream.net)
  2597. # [21:50] * Joins: ejpbruel (ejpbruel@moz-C216A63F.cm-7-4b.dynamic.ziggo.nl)
  2598. # [21:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/32ac8061e886 - Kai Engert - Bug 1049006 - Update Mozilla 33 to use NSS 3.17 final and NSPR 4.10.7 final, r=wtc
  2599. # [21:51] * Quits: Sushant94 (Sushant@F3D9E6A4.9841A019.D30E9BEF.IP) (Quit: Leaving)
  2600. # [21:51] * Quits: jviereck03 (Adium@moz-7859BAFE.dclient.hispeed.ch) (Quit: Leaving.)
  2601. # [21:54] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=d7e78f0c1465 - 13 changesets
  2602. # [21:54] * Joins: arker (Mibbit@342A796C.29E0BAFB.1957C0DA.IP)
  2603. # [21:54] * Quits: stransky (stransky@moz-59D79C36.broadband2.iol.cz) (Quit: Connection reset by beer)
  2604. # [21:55] * Quits: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: sicking)
  2605. # [21:55] * Joins: jfkthame (jfkthame@B663A888.AE912FFB.3E2A4E92.IP)
  2606. # [21:55] <jimm> in the address bar, when I type about:config, I get an autocomplete that looks like |about:config >> about.net/|
  2607. # [21:55] <jimm> anyone know what the heck's going on?
  2608. # [21:55] <Ms2ger> I hit that on glob's logs often
  2609. # [21:55] * chmanchester|afk is now known as chmanchester
  2610. # [21:56] <Ms2ger> Like http://logs.glob.uno/?c=mozilla%23at%20%3E%3E%20lologs.glob.uno/?c=mozilla#ateam
  2611. # [21:56] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?changeset=1d2c0c5edb74 - 35 changesets
  2612. # [21:56] * Quits: arker (Mibbit@342A796C.29E0BAFB.1957C0DA.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2613. # [21:56] <jimm> some new 'feature' maybe?
  2614. # [21:57] <jimm> I want to turn it off! ! :)
  2615. # [21:57] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/pushloghtml?changeset=6f869bd6c96a - 70 changesets
  2616. # [21:57] * Joins: trevorh (trevor@moz-2E3953AF.lns13.ken.bigpond.net.au)
  2617. # [21:57] <Ms2ger> No, pretty old
  2618. # [21:58] * RyanVM|sheriffduty is now known as RyanVM
  2619. # [21:58] <jimm> hmm
  2620. # [21:59] * KWierso is now known as KWierso|sheriffduty
  2621. # [22:00] * Quits: rogeliodh (Thunderbir@DFD77512.8D6AA50D.D67CC001.IP) (Quit: rogeliodh)
  2622. # [22:00] <KWierso|sheriffduty> jimm: started for me when the new searching behaviors landed
  2623. # [22:01] <jimm> I guess I better file a bug
  2624. # [22:01] * coop|buildduty is now known as coop|afk
  2625. # [22:02] * Quits: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP) (Quit: RealRaven)
  2626. # [22:03] * Quits: trevorh (trevor@moz-2E3953AF.lns13.ken.bigpond.net.au) (Ping timeout)
  2627. # [22:03] <jimm> found this - bug 348844
  2628. # [22:03] * Joins: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP)
  2629. # [22:03] <jimm> hmm, that's tbird
  2630. # [22:04] <jimm> also bug 749923
  2631. # [22:04] * Joins: shorlander (shorlander@moz-26B8EBF6.swo.res.rr.com)
  2632. # [22:05] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  2633. # [22:05] * Joins: trevorh (trevor@moz-55CE214.lns6.cht.bigpond.net.au)
  2634. # [22:05] * Quits: MarcoZ (marco.zehe@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Nightly update.)
  2635. # [22:05] * Joins: pwalton (pcwalton@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2636. # [22:06] * nthomas|away is now known as nthomas
  2637. # [22:06] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/cd27648dc4a7 - Nathan Braswell - Bug 1052358 - Support copying over symbol properties in Object.assign. r=jwalden
  2638. # [22:06] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/93c38f995952 - Jeff Walden - Bug 1052988 - Make the error reporter only set the failure flag if the report is actually of an exception. r=jorendorff
  2639. # [22:06] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  2640. # [22:06] * Quits: pcwalton (pcwalton@moz-C07D5168.p2p.sfo1.mozilla.com) (Ping timeout)
  2641. # [22:06] * pwalton is now known as pcwalton
  2642. # [22:06] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  2643. # [22:07] * stephend|mtg is now known as stephend
  2644. # [22:07] * Quits: trevorh (trevor@moz-55CE214.lns6.cht.bigpond.net.au) (Ping timeout)
  2645. # [22:07] * Quits: Archaeopteryx (itsme@moz-DA477F53.cust.telecolumbus.net) (Quit: Goodbye)
  2646. # [22:07] * Joins: trevorh (trevor@moz-C367CF4C.lnse5.cht.bigpond.net.au)
  2647. # [22:08] * Joins: jesup|mac (chatzilla@moz-8FD64E38.phlapa.fios.verizon.net)
  2648. # [22:08] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  2649. # [22:08] * Quits: jesup|laptop (chatzilla@moz-8FD64E38.phlapa.fios.verizon.net) (Ping timeout)
  2650. # [22:09] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/28ca33474307 - Kai Engert - Bug 1049006 - Update Mozilla 33 to use NSS 3.17 final and NSPR 4.10.7 final, r=wtc, a=sylvestre
  2651. # [22:10] * Joins: rstrong (rstrong@moz-217F02CE.lightspeed.sntcca.sbcglobal.net)
  2652. # [22:10] * Joins: trevorh1 (trevor@E0A6BAB6.58BBA7F5.475248F5.IP)
  2653. # [22:10] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/3f0da78fc8e1 - Gijs Kruitbosch - Bug 1043372 - sharing indicator in main menu for keyboard accessibility, r=florian,ui-r=phlsa
  2654. # [22:10] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/90f6fca4674e - Gijs Kruitbosch - Bug 1053245 - ignore number-only hosts in showing notification bars for keyword URI redirection, r=jaws
  2655. # [22:10] * Joins: Archaeopteryx (itsme@moz-DA477F53.cust.telecolumbus.net)
  2656. # [22:10] * Quits: trevorh (trevor@moz-C367CF4C.lnse5.cht.bigpond.net.au) (Ping timeout)
  2657. # [22:11] * Joins: rkent (Thunderbir@moz-CCEA8D95.hsd1.wa.comcast.net)
  2658. # [22:11] * merike|away is now known as merike
  2659. # [22:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/6e4e1d1dc2b2 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  2660. # [22:11] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/9eb05ba8997d - B2G Bumper Bot - Bumping manifests a=b2g-bump
  2661. # [22:12] * Quits: bnicholson (bnicholson@F118B273.BF05706.A36C57B9.IP) (Ping timeout)
  2662. # [22:12] * Quits: trevorh1 (trevor@E0A6BAB6.58BBA7F5.475248F5.IP) (Ping timeout)
  2663. # [22:12] * Joins: MarcoZ (marco.zehe@13F2CEC5.7672369.D8E68FF6.IP)
  2664. # [22:13] * Joins: jviereck03 (Adium@moz-7859BAFE.dclient.hispeed.ch)
  2665. # [22:13] * Joins: trevorh (trevor@2F48EF16.637CE6E6.475248F5.IP)
  2666. # [22:13] * Quits: jviereck03 (Adium@moz-7859BAFE.dclient.hispeed.ch) (Max SendQ exceeded)
  2667. # [22:13] * Joins: jviereck03 (Adium@moz-7859BAFE.dclient.hispeed.ch)
  2668. # [22:13] * Joins: bnicholson (bnicholson@F118B273.BF05706.A36C57B9.IP)
  2669. # [22:14] * Quits: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP) (Quit: RealRaven)
  2670. # [22:14] * Quits: rkent (Thunderbir@moz-CCEA8D95.hsd1.wa.comcast.net) (Quit: rkent)
  2671. # [22:14] * Joins: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP)
  2672. # [22:15] * Quits: trevorh (trevor@2F48EF16.637CE6E6.475248F5.IP) (Ping timeout)
  2673. # [22:15] * Joins: trevorh (trevor@moz-E89AE6A1.lns7.ken.bigpond.net.au)
  2674. # [22:16] * Quits: amoghbl1 (Thunderbir@9B9315E1.A6025CA.1C37C358.IP) (Ping timeout)
  2675. # [22:16] * Quits: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP) (Quit: RealRaven)
  2676. # [22:16] <seth> is this error i'm seeing on try some sort of infrastructure failure? <bound method DesktopUnittest.run_command of <__main__.DesktopUnittest object at 0x0264D110>> failed after 1 tries!
  2677. # [22:16] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0475b6c98bb5 - Luke Wagner - Bug 992461 - Turn off the shell's asm.js cache by default (r=bbouvier)
  2678. # [22:16] <padenot> seth: I've seen that all day as well, I would ignore it
  2679. # [22:16] * Joins: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP)
  2680. # [22:17] <seth> padenot: thanks
  2681. # [22:17] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2682. # [22:17] <sfink> try is closed. Guess I'll push to inbound instead.
  2683. # [22:19] <shu> true adventurer
  2684. # [22:20] * Joins: trevorh1 (trevor@moz-D9436DB5.lnse2.ken.bigpond.net.au)
  2685. # [22:20] * Quits: jesup|mac (chatzilla@moz-8FD64E38.phlapa.fios.verizon.net) (Ping timeout)
  2686. # [22:20] * Quits: trevorh (trevor@moz-E89AE6A1.lns7.ken.bigpond.net.au) (Ping timeout)
  2687. # [22:20] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/549b4ef82544 - Steve Fink - Bug 1015339 - Add functions for getting and dumping the current backtrace, r=jandem
  2688. # [22:20] * Quits: Enn (enn@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2689. # [22:21] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/c3286fd28121 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  2690. # [22:21] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/5e0d4c1d7a7a - B2G Bumper Bot - Bumping manifests a=b2g-bump
  2691. # [22:21] * Joins: trevorh (trevor@moz-35952125.lnse1.cht.bigpond.net.au)
  2692. # [22:22] * Quits: trevorh1 (trevor@moz-D9436DB5.lnse2.ken.bigpond.net.au) (Ping timeout)
  2693. # [22:22] * jund|lunch is now known as jlund
  2694. # [22:23] * Quits: jviereck03 (Adium@moz-7859BAFE.dclient.hispeed.ch) (Ping timeout)
  2695. # [22:23] * Quits: trevorh (trevor@moz-35952125.lnse1.cht.bigpond.net.au) (Ping timeout)
  2696. # [22:25] * Joins: trevorh (trevor@moz-5F90C058.lnse5.cht.bigpond.net.au)
  2697. # [22:25] <Waldo> sfink++
  2698. # [22:25] * Quits: bogdan_maris (Instantbir@EAD7D6BC.3E5A2831.FB2DBB61.IP) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
  2699. # [22:26] * philor|away is now known as philor
  2700. # [22:26] * Quits: trevorh (trevor@moz-5F90C058.lnse5.cht.bigpond.net.au) (Connection reset by peer)
  2701. # [22:26] * Quits: brendan (brendaneic@9EB964C8.9A24A92.348C8185.IP) (Quit: brendan)
  2702. # [22:27] * Joins: trevorh (trevor@moz-84BB1115.lnse2.cht.bigpond.net.au)
  2703. # [22:28] * Joins: PiresFelix (Leonardo@moz-95AD9557.dynamic.adsl.gvt.net.br)
  2704. # [22:29] * Quits: trevorh (trevor@moz-84BB1115.lnse2.cht.bigpond.net.au) (Ping timeout)
  2705. # [22:29] * Quits: robertbindar (Thunderbir@moz-C07D5168.p2p.sfo1.mozilla.com) (Ping timeout)
  2706. # [22:30] * terrence-lunch is now known as terrence
  2707. # [22:30] * Joins: robertbindar (Thunderbir@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2708. # [22:30] * Joins: trevorh (trevor@moz-ADF385F2.lns1.ken.bigpond.net.au)
  2709. # [22:30] <luke> sfink: hah, that's what i did
  2710. # [22:30] * Joins: ferjm (textual@moz-7AD6C97C.red-176-83-120.dynamicip.rima-tde.net)
  2711. # [22:30] * stephend is now known as stephend|mtg
  2712. # [22:31] * Quits: ferjm (textual@moz-7AD6C97C.red-176-83-120.dynamicip.rima-tde.net) (Quit: Textual IRC Client: www.textualapp.com)
  2713. # [22:32] * Quits: trevorh (trevor@moz-ADF385F2.lns1.ken.bigpond.net.au) (Ping timeout)
  2714. # [22:32] * Joins: trevorh (trevor@moz-14EEBAA.lns11.cht.bigpond.net.au)
  2715. # [22:34] * Quits: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net) (Quit: jib)
  2716. # [22:34] <RyanVM> padenot: seth: firebot: bug 1053197
  2717. # [22:34] * Joins: alex_tz (Adium@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2718. # [22:35] * Joins: brendan (brendaneic@9EB964C8.9A24A92.348C8185.IP)
  2719. # [22:35] * Quits: sunfish (chatzilla@moz-62518563.mtv2.mozilla.com) (Ping timeout)
  2720. # [22:36] * Quits: trevorh (trevor@moz-14EEBAA.lns11.cht.bigpond.net.au) (Ping timeout)
  2721. # [22:36] * Quits: lygstate (Mibbit@9235448A.F269E0B9.A66B4843.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2722. # [22:36] * Joins: trevorh (trevor@moz-2DA45E15.lns7.ken.bigpond.net.au)
  2723. # [22:36] * Quits: bbondy (bbondy@moz-E2815EB6.home.cgocable.net) (Client exited)
  2724. # [22:36] * davidb is now known as davidb|afk
  2725. # [22:36] <padenot> RyanVM: cool, thanks
  2726. # [22:38] * Quits: trevorh (trevor@moz-2DA45E15.lns7.ken.bigpond.net.au) (Ping timeout)
  2727. # [22:38] * Joins: catalinb (catalinb@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2728. # [22:39] * Joins: bbondy (bbondy@moz-E2815EB6.home.cgocable.net)
  2729. # [22:39] * Quits: @roc (chatzilla@moz-462A27B9.bng1.tvc.orcon.net.nz) (Input/output error)
  2730. # [22:40] * Joins: WeirdAl (chatzilla@moz-2BBC3AE3.hsd1.ca.comcast.net)
  2731. # [22:40] * Joins: Mano (mano@moz-AB1853E1.red.bezeqint.net)
  2732. # [22:41] * juanb|afk is now known as juanb
  2733. # [22:42] <asobolev> Is there a std::unique_ptr analog which I can use in FF source?
  2734. # [22:42] * davidb|afk is now known as davidb
  2735. # [22:42] * Quits: Mano (mano@moz-AB1853E1.red.bezeqint.net) (Ping timeout)
  2736. # [22:42] <padenot> UniquePtr !
  2737. # [22:42] <Ms2ger> asobolev, UniquePtr
  2738. # [22:42] * davidb is now known as davidb|afk
  2739. # [22:43] <padenot> http://mxr.mozilla.org/mozilla-central/source/mfbt/UniquePtr.h && http://whereswalden.com/2014/07/31/mfbt-now-has-uniqueptr-and-makeunique-for-managing-singly-owned-resources/
  2740. # [22:43] * davidb|afk is now known as davidb
  2741. # [22:43] <asobolev> padenot: Ms2ger: thanks
  2742. # [22:43] * Quits: edmorley (uid27002@moz-5F4AA75A.irccloud.com) (Quit: Connection closed for inactivity)
  2743. # [22:44] * Joins: trevorh (trevor@moz-4BD2612C.lnse2.ken.bigpond.net.au)
  2744. # [22:44] * bgrins is now known as bgrins|afk
  2745. # [22:45] * Quits: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: sicking)
  2746. # [22:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/cd34fb602fc3 - Yura Zenevich - Bug 1053021 - added a responsiveness multiplier to allow users configure screen reader gesture recognition intervals. r=eeejay
  2747. # [22:45] * Quits: tn (tim@moz-E7CE1D28.wp.shawcable.net) (Quit: tn)
  2748. # [22:45] <padenot> RyanVM: any ETA on try reopening?
  2749. # [22:45] * Joins: tn (tim@moz-E7CE1D28.wp.shawcable.net)
  2750. # [22:45] <@khuey> win 29
  2751. # [22:45] <@khuey> bah
  2752. # [22:46] <RyanVM> padenot: haven't heard anything yet - join #vcs and follow along there for current info
  2753. # [22:46] * Quits: trevorh (trevor@moz-4BD2612C.lnse2.ken.bigpond.net.au) (Ping timeout)
  2754. # [22:46] * Joins: amoghbl1 (Thunderbir@9B9315E1.A6025CA.1C37C358.IP)
  2755. # [22:46] * Joins: Snuffleupagus (chatzilla@moz-50E31F78.bredband.comhem.se)
  2756. # [22:46] * Joins: trevorh (trevor@moz-79FA8EEC.lnse3.ken.bigpond.net.au)
  2757. # [22:46] <padenot> apparently, I need a registered nick, and apparently, my nick is not registered
  2758. # [22:47] * Joins: BigBro (TahaIbrahi@moz-61EA4B93.fbx.proxad.net)
  2759. # [22:47] * Quits: BigBro (TahaIbrahi@moz-61EA4B93.fbx.proxad.net) (Quit: Quitte)
  2760. # [22:47] <luke> Waldo: quick, CallArgs needs a namespace!
  2761. # [22:47] * philor is now known as philor|away
  2762. # [22:48] * Quits: trevorh (trevor@moz-79FA8EEC.lnse3.ken.bigpond.net.au) (Ping timeout)
  2763. # [22:48] <Waldo> luke: I blame unified builds, probably
  2764. # [22:48] * Waldo fixes forthwith
  2765. # [22:49] * Quits: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP) (Quit: RealRaven)
  2766. # [22:49] * Parts: wcosta (wander@A9DF2293.D0ACF8E7.1C880E7D.IP)
  2767. # [22:50] * Joins: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP)
  2768. # [22:51] * Joins: wcosta (chatzilla@A9DF2293.D0ACF8E7.1C880E7D.IP)
  2769. # [22:51] * mattwoodrow|away is now known as mattwoodrow
  2770. # [22:51] * dminor is now known as dminor|afk
  2771. # [22:51] * Joins: trevorh (trevor@moz-C2E951B2.lns2.cht.bigpond.net.au)
  2772. # [22:51] * Joins: IanN (chatzilla@moz-7F4009AA.perr.cable.virginm.net)
  2773. # [22:51] * Quits: bbondy (bbondy@moz-E2815EB6.home.cgocable.net) (Client exited)
  2774. # [22:52] * Joins: bbondy (bbondy@moz-E2815EB6.home.cgocable.net)
  2775. # [22:53] * Joins: Bas (chatzilla@moz-2B05EA21.gtcust.grouptelecom.net)
  2776. # [22:54] * Quits: mreavy (chatzilla@moz-8FD64E38.phlapa.fios.verizon.net) (Ping timeout)
  2777. # [22:54] * Quits: jfkthame (jfkthame@B663A888.AE912FFB.3E2A4E92.IP) (Quit: This computer has gone to sleep)
  2778. # [22:54] * Quits: trevorh (trevor@moz-C2E951B2.lns2.cht.bigpond.net.au) (Ping timeout)
  2779. # [22:55] * Quits: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP) (Quit: RealRaven)
  2780. # [22:55] * Quits: brendan (brendaneic@9EB964C8.9A24A92.348C8185.IP) (Quit: brendan)
  2781. # [22:55] * Joins: trevorh (trevor@moz-A123A5A6.lns15.ken.bigpond.net.au)
  2782. # [22:55] * Quits: lduros (user@moz-A888D5F1.phlapa.fios.verizon.net) (Client exited)
  2783. # [22:55] * Joins: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP)
  2784. # [22:56] * Waldo does a non-unified build to test fix
  2785. # [22:57] * Quits: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP) (Quit: RealRaven)
  2786. # [22:57] * Joins: trevorh1 (trevor@moz-3B6D1220.lns16.cht.bigpond.net.au)
  2787. # [22:57] * Quits: trevorh (trevor@moz-A123A5A6.lns15.ken.bigpond.net.au) (Ping timeout)
  2788. # [22:57] * Joins: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP)
  2789. # [22:57] <Waldo> man, non-unified takes forever and a day
  2790. # [22:58] * Quits: wcosta (chatzilla@A9DF2293.D0ACF8E7.1C880E7D.IP) (Quit: ChatZilla 0.9.90.1 [Firefox 34.0a1/20140812030202])
  2791. # [22:59] * Quits: trevorh1 (trevor@moz-3B6D1220.lns16.cht.bigpond.net.au) (Ping timeout)
  2792. # [22:59] * merike is now known as merike|away
  2793. # [23:00] * Quits: amoghbl1 (Thunderbir@9B9315E1.A6025CA.1C37C358.IP) (Quit: amoghbl1)
  2794. # [23:01] * Quits: catalinb (catalinb@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: This computer has gone to sleep)
  2795. # [23:01] * Joins: trevorh (trevor@moz-7680EC3E.lns8.cht.bigpond.net.au)
  2796. # [23:01] * Parts: ckerschb (ckerschb@moz-62518563.mtv2.mozilla.com)
  2797. # [23:01] <Waldo> RyanVM: fix landed, open away
  2798. # [23:01] * Joins: wcosta (wander@A9DF2293.D0ACF8E7.1C880E7D.IP)
  2799. # [23:01] * Joins: amoghbl1 (Thunderbir@9B9315E1.A6025CA.1C37C358.IP)
  2800. # [23:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/8b0121d2a03a - Jeff Walden - Bug 1052358 - Non-unified build bustage fix. r=bustage in a CLOSED TREE
  2801. # [23:03] * Joins: tonymec_KDE (tonymec@C8BE489E.200555EB.277517C1.IP)
  2802. # [23:03] * Quits: trevorh (trevor@moz-7680EC3E.lns8.cht.bigpond.net.au) (Ping timeout)
  2803. # [23:03] * Quits: Bas (chatzilla@moz-2B05EA21.gtcust.grouptelecom.net) (Ping timeout)
  2804. # [23:04] * Quits: gandalf (zbraniecki@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  2805. # [23:04] * Joins: catalinb (catalinb@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2806. # [23:04] * justindarc is now known as justindarc|brb
  2807. # [23:04] * Joins: dbaron (dbaron@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2808. # [23:04] * ChanServ sets mode: +ao dbaron dbaron
  2809. # [23:05] * Quits: tonymec_KDE (tonymec@C8BE489E.200555EB.277517C1.IP) (Ping timeout)
  2810. # [23:05] * Joins: trevorh (trevor@D153773B.364776B3.670D5E6B.IP)
  2811. # [23:05] * Quits: yzen (yzen@13F2CEC5.7672369.D8E68FF6.IP) (Ping timeout)
  2812. # [23:05] * Joins: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp)
  2813. # [23:06] * Parts: wcosta (wander@A9DF2293.D0ACF8E7.1C880E7D.IP)
  2814. # [23:07] * Quits: Ms2ger (Ms2ger@moz-AF1EF8DE.adsl-dyn.isp.belgacom.be) (Quit: nn)
  2815. # [23:07] * Quits: tetsuharu (tetsuharu@moz-A3FEAA56.ap219.ftth.ucom.ne.jp) (Ping timeout)
  2816. # [23:08] * Joins: trevorh1 (trevor@moz-465CB824.lns13.ken.bigpond.net.au)
  2817. # [23:08] * Quits: trevorh (trevor@D153773B.364776B3.670D5E6B.IP) (Ping timeout)
  2818. # [23:08] * Joins: wcosta (chatzilla@A9DF2293.D0ACF8E7.1C880E7D.IP)
  2819. # [23:09] * gregglind is now known as gregglind_afk
  2820. # [23:09] * gregglind_afk is now known as gregglind_away
  2821. # [23:09] * Joins: tonymec_KDE (tonymec@moz-11A8669D.adsl-dyn.isp.belgacom.be)
  2822. # [23:10] * Waldo is confused as to how that non-unified bustage appears to have started the commit *after* the one that broke it
  2823. # [23:10] * Quits: trevorh1 (trevor@moz-465CB824.lns13.ken.bigpond.net.au) (Ping timeout)
  2824. # [23:10] <sfink> shifted the boundary?
  2825. # [23:10] * kats is now known as kats-afk
  2826. # [23:10] * Joins: trevorh (trevor@moz-494F7D06.lnse4.ken.bigpond.net.au)
  2827. # [23:10] * Joins: kentuckyfriedtakahe (ajones@34E8ECDF.DC2C3734.616A18A6.IP)
  2828. # [23:10] <sfink> or coaelesced?
  2829. # [23:10] * nthomas is now known as nthomas|mtg
  2830. # [23:10] <sfink> ETOOMANYVOWELS
  2831. # [23:10] * armenzg is now known as armenzg_afk
  2832. # [23:10] * Quits: armenzg_afk (armenzg@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Leaving)
  2833. # [23:11] * Quits: amoghbl1 (Thunderbir@9B9315E1.A6025CA.1C37C358.IP) (Client exited)
  2834. # [23:11] * Quits: RealRaven (Thunderbir@27F31956.9DE71CD4.C3498625.IP) (Ping timeout)
  2835. # [23:11] * Quits: tonymec_KDE (tonymec@moz-11A8669D.adsl-dyn.isp.belgacom.be) (Ping timeout)
  2836. # [23:11] * Joins: jfkthame (jfkthame@B663A888.AE912FFB.3E2A4E92.IP)
  2837. # [23:12] <jcranmer> queueing
  2838. # [23:13] * Quits: automata (automata@BA48CF99.FA36B139.BB0EBA72.IP) (Ping timeout)
  2839. # [23:14] <KWierso|sheriffduty> Waldo: the push that caused the bustage did not clobber?
  2840. # [23:14] * Joins: tonymec_KDE (tonymec@B5CECE2D.4E80F1F3.277517C1.IP)
  2841. # [23:14] * Quits: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  2842. # [23:14] * Joins: automata (automata@BA48CF99.FA36B139.BB0EBA72.IP)
  2843. # [23:15] * sheppy is now known as sheppy-offline
  2844. # [23:15] * Quits: trevorh (trevor@moz-494F7D06.lnse4.ken.bigpond.net.au) (Ping timeout)
  2845. # [23:15] * Joins: roc (chatzilla@7EA5AB88.DC2C3734.616A18A6.IP)
  2846. # [23:15] * ChanServ sets mode: +o roc
  2847. # [23:15] * baku is now known as baku|away
  2848. # [23:15] * mdoglio|bbl is now known as mdoglio|afk
  2849. # [23:16] * rail is now known as rail_away
  2850. # [23:18] * Quits: mdas (mdas@13F2CEC5.7672369.D8E68FF6.IP) (Input/output error)
  2851. # [23:19] * Joins: Yuhong (chatzilla@moz-53BB3E8D.vc.shawcable.net)
  2852. # [23:19] * Joins: trevorh (trevor@moz-640C1BC.lns10.cht.bigpond.net.au)
  2853. # [23:19] * Joins: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net)
  2854. # [23:19] * jlund is now known as jlund|brb
  2855. # [23:19] * Fallen is now known as Fallen|away
  2856. # [23:19] * jlund|brb is now known as jlund
  2857. # [23:20] * Joins: deanj (johnsdea@60E43BB7.560253C8.20F09BA6.IP)
  2858. # [23:20] * jlund is now known as jlund|brb
  2859. # [23:20] * Quits: Yuhong (chatzilla@moz-53BB3E8D.vc.shawcable.net) (Quit: ChatZilla 0.9.90.1 [Firefox 31.0/20140716183446])
  2860. # [23:20] * jlund|brb is now known as jlund
  2861. # [23:21] * Quits: bjacob_ (bjacob@13F2CEC5.7672369.D8E68FF6.IP) (Quit: Konversation terminated!)
  2862. # [23:21] * spohl is now known as spohl|afk
  2863. # [23:22] * Quits: mkohler (mkohler@moz-C07D5168.p2p.sfo1.mozilla.com) (Quit: mkohler)
  2864. # [23:22] * ahal is now known as ahal|afk
  2865. # [23:23] * Quits: trevorh (trevor@moz-640C1BC.lns10.cht.bigpond.net.au) (Ping timeout)
  2866. # [23:24] <Waldo> KWierso|sheriffduty: huh, I thought everything was clobber, shows what I know
  2867. # [23:24] * Joins: trevorh (trevor@moz-4B939247.lns1.ken.bigpond.net.au)
  2868. # [23:25] <mccr8> I wonder how much CPU time we save on TBPL from not doing clobber builds on every push, now that things are ccached (I think...)
  2869. # [23:25] <efaust> Waldo: only on try, I think
  2870. # [23:25] * Joins: ckerschb (ckerschb@moz-62518563.mtv2.mozilla.com)
  2871. # [23:25] * Joins: philipp64 (chatzilla@moz-B40B9015.ctcweb.net)
  2872. # [23:25] * Quits: trevorh (trevor@moz-4B939247.lns1.ken.bigpond.net.au) (Connection reset by peer)
  2873. # [23:25] * Joins: bholley (bholley@8910BCF1.26055160.204CA821.IP)
  2874. # [23:26] * _6a68 is now known as _6a68|lunch
  2875. # [23:26] * Joins: trevorh (trevor@moz-5133BD0A.lns13.cht.bigpond.net.au)
  2876. # [23:26] * Quits: PiresFelix (Leonardo@moz-95AD9557.dynamic.adsl.gvt.net.br) (Quit: Leaving)
  2877. # [23:27] * Joins: kohei (kohei@moz-82BE3DCE.rmo.bellsouth.net)
  2878. # [23:27] * Quits: elbeardmorez (quassel@moz-7157D0DD.skybroadband.com) (Ping timeout)
  2879. # [23:27] * Quits: kohei (kohei@moz-82BE3DCE.rmo.bellsouth.net) (Quit: Leaving)
  2880. # [23:28] * Quits: kdc (chatzilla@moz-A66E00D4.pk.shawcable.net) (Ping timeout)
  2881. # [23:29] * Quits: twi (Adium@moz-4A7B1469.cust.vodafonedsl.it) (Ping timeout)
  2882. # [23:29] * Quits: trevorh (trevor@moz-5133BD0A.lns13.cht.bigpond.net.au) (Connection reset by peer)
  2883. # [23:29] * Joins: kdc (chatzilla@moz-A66E00D4.pk.shawcable.net)
  2884. # [23:29] <RyanVM> Waldo: the linux32 debug build on your push got coalesced
  2885. # [23:29] <RyanVM> other non-unified builds are periodic
  2886. # [23:29] <RyanVM> as did the static analysis build
  2887. # [23:29] <RyanVM> so basically - coalescing and timing
  2888. # [23:30] * Joins: trevorh (trevor@E287D05F.10E84E77.475248F5.IP)
  2889. # [23:30] <RyanVM> bent: any chance you could take a look at the patch in bug 1049801 soonish? We've got a frequent failure on inbound that may be the same root issue
  2890. # [23:31] <RyanVM> bkelly ^
  2891. # [23:31] * stephend|mtg is now known as stephend
  2892. # [23:31] <RyanVM> bkelly: https://tbpl.mozilla.org/?tree=Mozilla-Inbound&jobname=b2g_emulator_vm%20mozilla-inbound%20opt%20test%20reftest-8 and https://tbpl.mozilla.org/?tree=Mozilla-Inbound&jobname=b2g_emulator_vm%20mozilla-inbound%20opt%20test%20mochitest-8 look related based on timing, but only the mochitest ones show the [@ mozilla::ipc::MessageChannel::DispatchOnChannelConnected(int)] hang
  2893. # [23:31] <RyanVM> presumably differences in how the harnesses handle timeouts
  2894. # [23:32] * stephend is now known as stephend|mtg
  2895. # [23:32] <Optimizer> can I add a telemetry alert for when try reopens ?
  2896. # [23:33] * Quits: ddamjano (Instantbir@A074343D.2D0EA32F.497CF541.IP) (Ping timeout)
  2897. # [23:33] <Optimizer> :P
  2898. # [23:33] * Joins: twi (Adium@moz-4A7B1469.cust.vodafonedsl.it)
  2899. # [23:33] <bkelly> RyanVM: agree on the M8 test... the reftest is unclear to me
  2900. # [23:33] <RyanVM> bkelly: i'm just going off the timing of when they both started
  2901. # [23:33] <RyanVM> and the fact that both have the timeouts
  2902. # [23:34] <RyanVM> it's a bit of a shot in the dark
  2903. # [23:34] * Quits: jfkthame (jfkthame@B663A888.AE912FFB.3E2A4E92.IP) (Quit: This computer has gone to sleep)
  2904. # [23:34] <RyanVM> hopefully the pending retriggers make it more clear
  2905. # [23:34] <bkelly> more stacks from b2g-emulator would help
  2906. # [23:34] * Quits: wcosta (chatzilla@A9DF2293.D0ACF8E7.1C880E7D.IP) (Quit: ChatZilla 0.9.90.1 [Firefox 34.0a1/20140813030201])
  2907. # [23:35] * Joins: Boriss (Boriss@moz-F71CF7D3.as13285.net)
  2908. # [23:35] <RyanVM> bkelly: BTW, I'm seriously going to laugh if Ed's patch "regressed" this
  2909. # [23:36] <RyanVM> i.e. somehow upset the apple cart into making it happen more by turning off NTP updates
  2910. # [23:36] * Joins: sicking (sicking@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2911. # [23:36] <bkelly> well, its a race condition, so any timing changes could have an impact
  2912. # [23:37] * Joins: jet (jet@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2913. # [23:37] * Joins: Bas (chatzilla@moz-28D82A2.gtcust.grouptelecom.net)
  2914. # [23:37] <RyanVM> bkelly: I'm kinda tempted to push it ahead of review to see what happens
  2915. # [23:37] <bkelly> RyanVM: thats what try is for, right? :-)
  2916. # [23:38] <RyanVM> bkelly: this is frequent enough that we need to fix or backout whatever caused this
  2917. # [23:38] <RyanVM> and Try's closed
  2918. # [23:38] <RyanVM> so there's that
  2919. # [23:38] <bkelly> RyanVM: try is closed for a separate reason?
  2920. # [23:39] <RyanVM> hg.m.o issues all day
  2921. # [23:39] <bkelly> ah
  2922. # [23:39] <RyanVM> waiting on various config changes to the hg webheads before reopening it
  2923. # [23:39] <bkelly> I would prefer to wait for bent's review if possible
  2924. # [23:39] <efaust> hey, the linux32 build on the bustage fix push succeeded (at least all the test jobs have been queued) can we reopen the tree?
  2925. # [23:40] * Quits: twi (Adium@moz-4A7B1469.cust.vodafonedsl.it) (Ping timeout)
  2926. # [23:40] <RyanVM> efaust: we're trying to track down frequent B2G oranges at the moment too :(
  2927. # [23:40] * efaust nods
  2928. # [23:41] <efaust> do I really need a try run for all checkin-needed patches?
  2929. # [23:42] * Quits: jet (jet@moz-DFAA4E15.p2p.sfo1.mozilla.com) (Quit: jet)
  2930. # [23:42] <RyanVM> efaust: yeah, the current situation suck hard :(
  2931. # [23:42] * Joins: sunfish (chatzilla@moz-62518563.mtv2.mozilla.com)
  2932. # [23:42] <efaust> RyanVM: OK, so it's $$ against human cost
  2933. # [23:42] * davidb is now known as davidb|afk
  2934. # [23:42] <efaust> and probably it's less of a pain my ass than it is worth spawning try jobs
  2935. # [23:43] * Quits: tonymec_KDE (tonymec@B5CECE2D.4E80F1F3.277517C1.IP) (Ping timeout)
  2936. # [23:43] <RyanVM> efaust: right now it's "all of hg.m.o goes down every time we reopen Try"
  2937. # [23:43] <efaust> oh, try is closed?
  2938. # [23:43] <RyanVM> which blows up all trees
  2939. # [23:43] <efaust> well, that's no go anyway, then
  2940. # [23:43] <@khuey> it's really that the sheriffs don't want to check anything in
  2941. # [23:43] <@khuey> so they close try
  2942. # [23:43] <@khuey> :P
  2943. # [23:43] * Joins: jet (jet@moz-DFAA4E15.p2p.sfo1.mozilla.com)
  2944. # [23:43] <RyanVM> khuey: I TOLD YOU THAT IN CONFIDENCE!
  2945. # [23:43] <efaust> I know we've been looking into it for some time. Is there a bug with the current state of the hg.m.o business?
  2946. # [23:44] <RyanVM> the work is being done in #vcs
  2947. # [23:44] <efaust> khuey: it's OK. I already know about RyanVM's vendetta against me
  2948. # [23:44] <RyanVM> haven't been any recent bug updates that I know of
  2949. # [23:44] <efaust> RyanVM: *nod* thanks
  2950. # [23:44] <RyanVM> efaust: pfft, you're still lower on my list that seth at least ;)
  2951. # [23:44] <@khuey> RyanVM: :)
  2952. # [23:45] <RyanVM> KWierso|sheriffduty: so we've got one as far back as this morning now - https://tbpl.mozilla.org/?tree=Mozilla-Inbound&jobname=b2g_emulator_vm%20mozilla-inbound%20opt%20test%20mochitest-8&fromchange=0a61ae6d603f&tochange=tip&rev=043edc92814e
  2953. # [23:46] * Quits: gozala (uid5923@moz-5F4AA75A.irccloud.com) (Quit: Connection closed for inactivity)
  2954. # [23:46] <efaust> RyanVM: that's very comforting...
  2955. # [23:46] * Quits: jib (Jan-Ivar@moz-7F15DAD2.dyn.optonline.net) (Quit: jib)
  2956. # [23:46] * Quits: fredw (Icedove@moz-B9C110E2.fbx.proxad.net) (Quit: fredw)
  2957. # [23:46] * seth acts casual
  2958. # [23:47] <RyanVM> seth: repent and fix thy oranges!
  2959. # [23:47] * Quits: mt_1 (mt@moz-62518563.mtv2.mozilla.com) (Quit: Leaving.)
  2960. # [23:47] * Quits: squib_ (squib@moz-FD68D6B2.dhcp.mdsn.wi.charter.com) (Ping timeout)
  2961. # [23:47] * curtisk is now known as curtisk|afk
  2962. # [23:48] * khuey is now known as khuey|away
  2963. # [23:48] * Quits: squeakytoy (squeakytoy@moz-79070305.dynamic.se.alltele.net) (Quit: Leaving)
  2964. # [23:48] * Joins: twi (Adium@moz-4A7B1469.cust.vodafonedsl.it)
  2965. # [23:49] * Quits: squib (squib@moz-FD68D6B2.dhcp.mdsn.wi.charter.com) (Quit: Leaving)
  2966. # [23:49] * Quits: garvank (Garvan@13F2CEC5.7672369.D8E68FF6.IP) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  2967. # [23:49] * Quits: ZER0 (ZER0@moz-AB9DF7.dynamic.upc.nl) (Quit: Leaving)
  2968. # [23:50] * nthomas|mtg is now known as nthomas
  2969. # [23:50] * Joins: jfkthame (jfkthame@B663A888.AE912FFB.3E2A4E92.IP)
  2970. # [23:51] * Quits: abwillis (abwillis@CBAC43F2.9DD4DBBF.6A7A197.IP) (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.14/20140621130907])
  2971. # [23:52] * Joins: mreavy (chatzilla@moz-5CCD7A3A.phlapa.fios.verizon.net)
  2972. # [23:53] <@ehsan> holy hell
  2973. # [23:53] <@ehsan> what happened to the hghooks repo?!
  2974. # [23:53] <KWierso|sheriffduty> ehsan: unified elsewhere
  2975. # [23:53] <@ehsan> KWierso|sheriffduty: pardon?
  2976. # [23:54] <sfink> ehsan: moved to version-control-tools
  2977. # [23:54] * Quits: rbarnes_ (rbarnes@BA2E35F6.5E7AC5F4.FAA4474F.IP) (Input/output error)
  2978. # [23:54] <KWierso|sheriffduty> ehsan: The server-side Mercurial hooks living in https://hg.mozilla.org/hgcustom/hghooks/ have been migrated to the hghooks/ directory of https://hg.mozilla.org/hgcustom/version-control-tools/
  2979. # [23:54] <@ehsan> sfink: what's version control tools?
  2980. # [23:54] * Quits: Bas (chatzilla@moz-28D82A2.gtcust.grouptelecom.net) (Ping timeout)
  2981. # [23:54] <@ehsan> oh
  2982. # [23:54] <@ehsan> hmm
  2983. # [23:55] <@ehsan> why?
  2984. # [23:55] <KWierso|sheriffduty> This change will enable:
  2985. # [23:55] <KWierso|sheriffduty> * Code/hook sharing between client and server (version-control-tools is
  2986. # [23:55] <KWierso|sheriffduty> already installed as part of mach mercurial-setup)
  2987. # [23:55] <KWierso|sheriffduty> * A more unified development and testing story for everything Mercurial
  2988. # [23:55] <KWierso|sheriffduty> at Mozilla. This will help us move faster.
  2989. # [23:55] <dholbert> any ETA on when Try will be reopened?
  2990. # [23:55] * @ehsan finds 1052201
  2991. # [23:55] <RyanVM> dholbert: #vcs
  2992. # [23:55] <@ehsan> gps: y? :(
  2993. # [23:55] <RyanVM> and no
  2994. # [23:55] * Quits: janv (varga@FCCEA34F.7672369.D8E68FF6.IP) (Quit: This computer has gone to sleep)
  2995. # [23:55] <dholbert> RyanVM, :-/
  2996. # [23:56] <dholbert> RyanVM, thanks
  2997. # [23:56] * Joins: ochameau (ochameau@moz-ACA4384F.fbx.proxad.net)
  2998. # [23:57] * Quits: trevorh (trevor@E287D05F.10E84E77.475248F5.IP) (Ping timeout)
  2999. # [23:57] * Joins: rkent (Thunderbir@moz-CCEA8D95.hsd1.wa.comcast.net)
  3000. # [23:57] * Joins: trevorh (trevor@moz-65C3747A.lns1.ken.bigpond.net.au)
  3001. # [23:58] * Joins: yzen (yzen@moz-F62769B5.cpe.pppoe.ca)
  3002. # [23:59] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/12e582732409 - Wes Johnston - Bug 1046941 - Disable downloads and extension installs in guest mode. r=margaret
  3003. # [23:59] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/52bba9a1e5b5 - Wes Johnston - Bug 1052254 - Disable loading of file URLs in guest sessions. r=rnewman
  3004. # [23:59] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/f47e1ba9ceca - Wes Johnston - Bug 1048000 - Expect undefined for non-matching regex groups. r=bnicholson
  3005. # [23:59] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/9bf6a72021c3 - Wes Johnston - Bug 1046493 - Enable video casting during tests. r=gbrown
  3006. # [23:59] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/4d0872d38274 - Wes Johnston - Bug 1042194 - Add a framework for adding widgets to error pages. r=margaret
  3007. # Session Close: Thu Aug 14 00:00:01 2014

The end :)