/irc-logs / mozilla / #developers / 2015-01-31 / end

Options:

Previous day, Next day

  1. # Session Start: Sat Jan 31 00:00:00 2015
  2. # Session Ident: #developers
  3. # [00:01] * catlee is now known as catlee-away
  4. # [00:01] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  5. # [00:02] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  6. # [00:04] * Quits: secretrobotron_ (secretrobot@moz-8m0sb9.ckpj.s0pt.0450.2001.IP) (A TLS packet with unexpected length was received.)
  7. # [00:06] * Joins: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu)
  8. # [00:07] <darktrojan> that should work a little better, Mossop :-)
  9. # [00:08] * Joins: yzen (yzen@moz-ql1r6k.cpe.pppoe.ca)
  10. # [00:08] * Quits: handyman (handyman@moz-h6pqf9.ca.comcast.net) (Quit: )
  11. # [00:09] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  12. # [00:09] * Quits: _AtilA_ (atila@moz-5rl.jm7.220.37.IP) (Quit: Changing server)
  13. # [00:09] * Joins: _AtilA_ (atila@moz-5rl.jm7.220.37.IP)
  14. # [00:10] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  15. # [00:11] * Quits: _AtilA_ (atila@moz-5rl.jm7.220.37.IP) (Quit: leaving)
  16. # [00:12] * Joins: _AtilA_ (atila@moz-5rl.jm7.220.37.IP)
  17. # [00:12] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/c982c9de6d4a - B2G Bumper Bot - Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
  18. # [00:12] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/b954aa903d8a - B2G Bumper Bot - Bumping manifests a=b2g-bump
  19. # [00:13] <Mossop> darktrojan: Looks good, thanks
  20. # [00:13] * Quits: mccr8 (mccr8@moz-cfhap5.mtv2.mozilla.com) (Connection closed)
  21. # [00:13] * Joins: mccr8 (mccr8@moz-cfhap5.mtv2.mozilla.com)
  22. # [00:14] * Joins: aceman (inet@moz-7dsad9.dynamic.nextra.sk)
  23. # [00:14] * Quits: yzen (yzen@moz-ql1r6k.cpe.pppoe.ca) (Ping timeout: 121 seconds)
  24. # [00:15] * Quits: darktrojan (geoff@moz-rdppp8.dsl.telstraclear.net) (Ping timeout: 121 seconds)
  25. # [00:15] * Quits: mwargers (mwargers@moz-jn4uds.dynamic.ziggo.nl) (Connection closed)
  26. # [00:15] <aceman> hi, if in JS there is a function inside a function, will it need to be parsed/compiled by the JS engine every time the containing function is called?
  27. # [00:16] * miketaylr_ is now known as zz_miketaylr_
  28. # [00:16] <shu> aceman: no, parsing should only happen once
  29. # [00:17] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  30. # [00:17] <bholley> RyanVM: yt?
  31. # [00:17] <aceman> shu: I mean, would it be any faster if the internal function is defined outside?
  32. # [00:17] <shu> aceman: could be, yes, but not due to parsing
  33. # [00:18] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  34. # [00:18] <aceman> shu: the function does not change in any way, I just wonder if the engine sees that and does not reparse/recompile it each time
  35. # [00:18] <aceman> shu: so why could it be faster?
  36. # [00:19] <shu> aceman: short story is type inference
  37. # [00:19] * Quits: bholley (bholley@moz-81c.06q.210.98.IP) (Quit: Textual IRC Client: www.textualapp.com)
  38. # [00:20] <RyanVM> bholley: yo
  39. # [00:20] <shu> aceman: we tend to track toplevel functions (i.e., those defined outside of any function) more carefully in the type profiling and inference, leading to things like easier inlining in the JITs, etc
  40. # [00:20] * Quits: sir_none (Thunderbird@moz-ia5ebf.stat.salzburg-online.at) (Client exited)
  41. # [00:21] * whimboo is now known as whimboo|afk
  42. # [00:21] <aceman> shu: what about functions as members of objects?
  43. # [00:22] <shu> aceman: what about them?
  44. # [00:22] <shu> aceman: are you asking calling them will be as fast?
  45. # [00:22] <aceman> shu: do you track those?
  46. # [00:22] <shu> err, if calling them*
  47. # [00:22] <shu> aceman: so, that depends on a few more variables
  48. # [00:22] <aceman> shu: yes, if they are also considered toplevel
  49. # [00:22] <shu> aceman: the usual pattern is something like, you a method 'm' on some object's prototype
  50. # [00:23] <shu> aceman: if i have such an object 'o', and call 'o.m()', it'll depend on how well the engine can figure out the types of 'o', and from there the functions that 'm' can possibly be
  51. # [00:23] * Quits: gandalf (zbraniecki@moz-gtc1n1.ca.comcast.net) (Connection closed)
  52. # [00:23] * Joins: gandalf (zbraniecki@moz-gtc1n1.ca.comcast.net)
  53. # [00:23] <shu> aceman: in the best case, it'll be just as fast
  54. # [00:24] <aceman> do I need to set it via prototype?
  55. # [00:24] <shu> aceman: but there's also a greater chance that the JIT can't generate the best case
  56. # [00:24] <aceman> or just var o = { m:function() {} }
  57. # [00:24] <shu> aceman: the engine should be able to figure out both cases
  58. # [00:24] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  59. # [00:25] * Quits: AaronMT (AaronMT@moz-5e6tl2.cable.rogers.com) (Quit: Textual IRC Client: www.textualapp.com)
  60. # [00:25] * Quits: ahal (ahal@moz-blga2k.cpe.pppoe.ca) (A TLS packet with unexpected length was received.)
  61. # [00:26] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  62. # [00:26] <aceman> shu: is there any difference if there is only a single instance of that object?
  63. # [00:27] <shu> aceman: most of the time no
  64. # [00:28] <aceman> ok, thanks
  65. # [00:28] * Parts: Snuffleupagus (chatzilla@moz-5hgc5j.bredband.comhem.se) ("")
  66. # [00:28] <shu> aceman: we have some specific heuristics for guessing if it's likely there will only be one value of some type, ever
  67. # [00:28] * Quits: mcsmurf (Frank@moz-f7ec35.dip0.t-ipconnect.de) (Connection closed)
  68. # [00:29] * Quits: jet|pto (uid49872@moz-oqb09r.uxbridge.irccloud.com) (Quit: Connection closed for inactivity)
  69. # [00:29] <dholbert> I'm trying to use "rr" for the first time, but it's hanging on "Starting program: /path/to/firefox", when I try to replay an execution. Anyone else hit this before?
  70. # [00:29] * Quits: paolo (paolo@moz-74a.0nt.218.207.IP) (Quit: Konversation terminated!)
  71. # [00:29] * Joins: tedders1 (tedders1@moz-ne2.9j7.168.101.IP)
  72. # [00:31] * Quits: fabrice (fabrice@moz-s35rpb.ujol.1ibb.0101.2620.IP) (Quit: Leaving.)
  73. # [00:32] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  74. # [00:32] * Quits: mccr8 (mccr8@moz-cfhap5.mtv2.mozilla.com) (Connection closed)
  75. # [00:33] * Joins: mccr8 (mccr8@moz-cfhap5.mtv2.mozilla.com)
  76. # [00:33] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  77. # [00:36] * Parts: aceman (inet@moz-7dsad9.dynamic.nextra.sk)
  78. # [00:36] <dholbert> never mind, I got it (by running replay with "-g" arg and an event number, to delay attaching the debugger)
  79. # [00:36] * Joins: mmcdonough (Martin@moz-qfl.dci.229.137.IP)
  80. # [00:36] * Quits: mmcdonough (Martin@moz-qfl.dci.229.137.IP) (Connection closed)
  81. # [00:37] * Quits: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
  82. # [00:39] * Joins: Boriss (Boriss@moz-aq4.h2b.247.173.IP)
  83. # [00:40] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  84. # [00:40] * Quits: tonymec (tonymec@moz-m9k.36n.129.109.IP) (Ping timeout: 121 seconds)
  85. # [00:41] * Joins: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com)
  86. # [00:41] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  87. # [00:41] * Quits: emtwo (Adium@moz-i5m.05u.207.66.IP) (Quit: Leaving.)
  88. # [00:42] * Quits: Ankouc (chatzilla@moz-l70.mrs.234.104.IP) (Ping timeout: 121 seconds)
  89. # [00:43] * coop|buildduty is now known as coop|afk
  90. # [00:44] * jandem is now known as jandem-away
  91. # [00:44] * RyanVM is now known as RyanVM|afk
  92. # [00:44] * Joins: ddamjano (Instantbird@moz-g750ap.dynamic.surfer.at)
  93. # [00:45] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
  94. # [00:45] * Joins: handyman (handyman@moz-h6pqf9.ca.comcast.net)
  95. # [00:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/ce52eb68bc21 - Gary Kwong - Bug 1128097 - Unable to compile js 32-bit ARM-simulator shells on Mac. rs=jandem
  96. # [00:46] * Quits: rbarnes (rbarnes@moz-bg9.tia.177.128.IP) (A TLS packet with unexpected length was received.)
  97. # [00:46] * Joins: rbarnes (rbarnes@moz-bg9.tia.177.128.IP)
  98. # [00:46] * Quits: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
  99. # [00:48] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  100. # [00:48] * Quits: handyman (handyman@moz-h6pqf9.ca.comcast.net) (Quit: )
  101. # [00:49] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  102. # [00:50] * Joins: tonymec (tonymec@moz-m9k.36n.129.109.IP)
  103. # [00:50] * Joins: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com)
  104. # [00:51] * Quits: rbarnes (rbarnes@moz-bg9.tia.177.128.IP) (Ping timeout: 121 seconds)
  105. # [00:51] * Quits: hallvors (uid23371@moz-uj1g6s.highgate.irccloud.com) (Quit: Connection closed for inactivity)
  106. # [00:51] * Quits: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
  107. # [00:51] * Quits: botond|home (chatzilla@moz-303r5l.cpe.pppoe.ca) (Quit: ChatZilla 0.9.91.1 [Firefox 35.0.1/20150122214805])
  108. # [00:52] * Fallen is now known as Fallen|away
  109. # [00:53] * Quits: mastizada (Thunderbird@moz-bat.sij.197.5.IP) (Ping timeout: 121 seconds)
  110. # [00:53] * Joins: mmcdonough (KashyyykNam@moz-qfl.dci.229.137.IP)
  111. # [00:54] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
  112. # [00:55] * Quits: jrmuize__ (jrmuizel@moz-i5m.05u.207.66.IP) (Connection closed)
  113. # [00:55] * Quits: mccr8 (mccr8@moz-cfhap5.mtv2.mozilla.com) (Connection closed)
  114. # [00:55] * Joins: mccr8 (mccr8@moz-cfhap5.mtv2.mozilla.com)
  115. # [00:56] * Quits: h4writer (h4writer@moz-eqgqgv.access.telenet.be) (Ping timeout: 121 seconds)
  116. # [00:56] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  117. # [00:56] * Quits: mccr8 (mccr8@moz-cfhap5.mtv2.mozilla.com) (Connection closed)
  118. # [00:56] * stephend is now known as stephend|brb
  119. # [00:56] * Joins: mccr8 (mccr8@moz-cfhap5.mtv2.mozilla.com)
  120. # [00:57] * Joins: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com)
  121. # [00:57] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  122. # [00:58] * Quits: jgilbert_ (jgilbert@moz-snh4qt.ujol.1ibb.0101.2620.IP) (Ping timeout: 121 seconds)
  123. # [00:58] * Quits: Archaeopteryx (Archaeopter@moz-6hnogj.cust.telecolumbus.net) (Quit: Goodbye)
  124. # [00:59] * Quits: givanica (Thunderbird@moz-h10.q8n.76.82.IP) (Client exited)
  125. # [00:59] * Joins: zakb (bzlandfill@moz-op4veh.elisa.ee)
  126. # [00:59] * Quits: lgarner (lgarner@moz-9a4.att.59.50.IP) (Ping timeout: 121 seconds)
  127. # [01:00] * Quits: zakb (bzlandfill@moz-op4veh.elisa.ee) (Quit: CGI:IRC)
  128. # [01:00] * Quits: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
  129. # [01:01] * Joins: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com)
  130. # [01:01] * stephend|brb is now known as stephend
  131. # [01:01] * Joins: Ankouc (chatzilla@moz-4mr.kg2.234.104.IP)
  132. # [01:02] * Joins: jimblandy (user@moz-6gkikn.or.comcast.net)
  133. # [01:03] * Quits: jimb (user@moz-6gkikn.or.comcast.net) (Ping timeout: 121 seconds)
  134. # [01:04] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  135. # [01:05] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  136. # [01:05] * Joins: sicking (sicking@moz-u3dg2t.sfo1.mozilla.com)
  137. # [01:05] * Joins: rpete (_rpete@moz-61l.22p.237.209.IP)
  138. # [01:06] * BenWa is now known as BenWa|email
  139. # [01:07] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?changeset=a0f242c5683b - 17 changesets
  140. # [01:07] * Quits: rmcdougall (Adium@moz-f2h.mvj.38.216.IP) (Quit: Leaving.)
  141. # [01:07] * Quits: jimm-bbiab (jmathies@moz-sj8.oa5.235.67.IP) (Quit: )
  142. # [01:07] * Quits: oliverthor (oliverthor@moz-5i3.51j.125.50.IP) (Ping timeout: 121 seconds)
  143. # [01:11] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  144. # [01:12] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b4c5e8bcb819 - Tom Schuster - Bug 1100936 - Handle various operations on revoked proxies. r=efaust
  145. # [01:13] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  146. # [01:13] * ewong|away is now known as ewong
  147. # [01:15] * Quits: azakai (alon@moz-9stadm.ujol.1ibb.0101.2620.IP) (Quit: Ex-Chat)
  148. # [01:17] * Joins: dark-knight (dark-knight@moz-toh1lk.boingboing.net)
  149. # [01:17] * Quits: chmanchester (chmancheste@moz-cbt.jf0.246.96.IP) (Quit: )
  150. # [01:17] * Joins: milan (milan@moz-vpv.gm9.50.70.IP)
  151. # [01:18] * Quits: edmorley (uid27002@moz-524haa.brockwell.irccloud.com) (Quit: Connection closed for inactivity)
  152. # [01:19] * Joins: loveless (loveless@moz-neu.q7l.56.172.IP)
  153. # [01:19] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  154. # [01:20] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  155. # [01:23] * Quits: pcwalton (pcwalton@moz-6kjabm.ca.comcast.net) (Client exited)
  156. # [01:23] * Quits: coop|afk (coop@moz-eo8.unf.175.184.IP) (Client exited)
  157. # [01:24] * Joins: pcwalton (pcwalton@moz-6kjabm.ca.comcast.net)
  158. # [01:25] * Quits: mccr8 (mccr8@moz-cfhap5.mtv2.mozilla.com) (Quit: computer sleep)
  159. # [01:25] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/10e9829d6d61 - JW Wang - Bug 1121332. Part 1 - add media key status to gmp-api. r=cpearce.
  160. # [01:25] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/d65558816f0d - JW Wang - Bug 1121332. Part 2 - expose media key status from CDMCaps. r=cpearce.
  161. # [01:25] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/b3db757e1445 - JW Wang - Bug 1121332. Part 3 - export MapObject from JS. r=jorendorff.
  162. # [01:25] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/455407ddfe43 - JW Wang - Bug 1121332. Part 4 - implement MediaKeySession.keyStatuses and remove MediaKeySession.getUsableKeyIds. r=bz.
  163. # [01:25] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/cc87f9a19451 - JW Wang - Bug 1121332. Part 5 - update EME mochitests for webidl changes. r=cpearce.
  164. # [01:25] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/5a172ae82ff1 - JW Wang - Bug 1121332. Part 6 - update test_interfaces.html. r=bz
  165. # [01:27] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  166. # [01:28] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  167. # [01:29] * Quits: ddamjano (Instantbird@moz-g750ap.dynamic.surfer.at) (Ping timeout: 121 seconds)
  168. # [01:30] * Quits: rstrong (rstrong@moz-p5u481.bjuq.3rti.0306.2602.IP) (Quit: ChatZilla 0.9.86.1-rdmsoft [XULRunner 1.8.0.9/2006120508])
  169. # [01:31] * BenWa|email is now known as BenWa
  170. # [01:34] * Quits: milan (milan@moz-vpv.gm9.50.70.IP) (Connection closed)
  171. # [01:35] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  172. # [01:36] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  173. # [01:36] * Joins: surkov (surkov@moz-v8g78c.cpe.teksavvy.com)
  174. # [01:37] * Quits: surkov (surkov@moz-v8g78c.cpe.teksavvy.com) (Client exited)
  175. # [01:38] * Joins: surkov (surkov@moz-v8g78c.cpe.teksavvy.com)
  176. # [01:38] * Quits: gandalf (zbraniecki@moz-gtc1n1.ca.comcast.net) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  177. # [01:38] * Quits: botond|laptop (quassel@moz-i5m.05u.207.66.IP) (Quit: No Ping reply in 180 seconds.)
  178. # [01:39] * Quits: rpete (_rpete@moz-61l.22p.237.209.IP) (Quit: Leaving)
  179. # [01:40] * Joins: botond_ (quassel@moz-6k1ona.ckpj.s0pt.0450.2001.IP)
  180. # [01:41] * Joins: ericjung (ericjung@moz-caqquv.7ch4.iin2.0006.2601.IP)
  181. # [01:41] * stephend is now known as stephend|transit
  182. # [01:42] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  183. # [01:43] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
  184. # [01:43] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  185. # [01:45] * Joins: fabrice (fabrice@moz-3oj.il6.198.71.IP)
  186. # [01:46] * Quits: surkov (surkov@moz-v8g78c.cpe.teksavvy.com) (Client exited)
  187. # [01:48] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Connection closed)
  188. # [01:49] * blassey is now known as blassey|PTO
  189. # [01:49] * Quits: @smaug (chatzilla@moz-c8d.sse.236.109.IP) (Ping timeout: 121 seconds)
  190. # [01:49] * Joins: bbondy (bbondy@moz-6r5.5q5.55.24.IP)
  191. # [01:50] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
  192. # [01:50] * Quits: bgrins (bgrins@moz-i476cb.ujol.1ibb.0101.2620.IP) (Quit: Leaving.)
  193. # [01:50] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  194. # [01:50] * Quits: Rik (rik@moz-luv43d.rev.numericable.fr) (A TLS packet with unexpected length was received.)
  195. # [01:51] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  196. # [01:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/54b740e62970 - Dan Gohman - Bug 1125236 - SpiderMonkey: Implement a minimal x86 disassembler r=jandem
  197. # [01:51] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/4b6586cc875f - Dan Gohman - Bug 1125236 - SpiderMonkey: Verify that asm.js heap loads and stores can be correctly disassembled r=jandem
  198. # [01:52] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
  199. # [01:53] * Quits: clokep (Instantbird@moz-ivrdpu.cable.rcn.com) (Ping timeout: 121 seconds)
  200. # [01:54] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/cebdafba3a85 - Brian Nicholson - Bug 1126514 - Add tile IDs to Fennec tiles. r=mfinkle
  201. # [01:55] * Quits: dark-knight (dark-knight@moz-toh1lk.boingboing.net) (Ping timeout: 121 seconds)
  202. # [01:56] * Quits: gustavold (gustavold@moz-0nj.5o3.95.177.IP) (Ping timeout: 121 seconds)
  203. # [01:58] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  204. # [02:00] * Quits: Mnyromyr (Mnyromyr@moz-oqvpdt.ejss.mv3s.0908.2a02.IP) (Quit: ChatZilla 0.9.91.1 [SeaMonkey 2.32/20150112202503])
  205. # [02:00] * Quits: luke (luke@moz-fk7pee.tx.charter.com) (Quit: Leaving.)
  206. # [02:00] * Quits: bajaj (bajaj_afk@moz-gb97o2.mh2d.1ibb.0101.2620.IP) (Quit: Leaving.)
  207. # [02:00] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  208. # [02:00] * Quits: jdm (jdm@moz-tj36ct.isp.belgacom.be) (Quit: )
  209. # [02:00] * Quits: espadrine (tyl@moz-c1v.q9u.134.109.IP) (Ping timeout: 121 seconds)
  210. # [02:01] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
  211. # [02:01] * Quits: jsx (uid48919@moz-ldeku3.uxbridge.irccloud.com) (Quit: Connection closed for inactivity)
  212. # [02:02] * Quits: tomer (tomer@moz-uce.mlf.142.37.IP) (Ping timeout: 121 seconds)
  213. # [02:02] * Quits: mmcdonough (KashyyykNam@moz-qfl.dci.229.137.IP) (Ping timeout: 121 seconds)
  214. # [02:02] * Joins: ddahl (ddahl@moz-40a6g5.il.comcast.net)
  215. # [02:03] * Quits: juanb (jbecerra@moz-cfhap5.mtv2.mozilla.com) (Client exited)
  216. # [02:05] * Quits: RyanVM|afk (Thunderbird@moz-hu3p96.fios.verizon.net) (Client exited)
  217. # [02:05] * Joins: milan (milan@moz-vpv.gm9.50.70.IP)
  218. # [02:06] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  219. # [02:06] * wlach|biab is now known as wlach
  220. # [02:07] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  221. # [02:07] * Quits: alexbard_ (alexbardas@moz-ueqpl3.CV.idilis.net) (A TLS packet with unexpected length was received.)
  222. # [02:09] * Quits: mixedpuppy (mixedpuppy@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
  223. # [02:09] * AutomatedTester is now known as AutomatedTester|AFK
  224. # [02:10] * Quits: milan (milan@moz-vpv.gm9.50.70.IP) (Ping timeout: 121 seconds)
  225. # [02:11] * Joins: JosiahOne (Instantbird@moz-r75e7q.l2d1.q8mm.0306.2602.IP)
  226. # [02:12] * Quits: Ankouc (chatzilla@moz-4mr.kg2.234.104.IP) (Quit: ChatZilla 0.9.91.1 [Firefox 35.0.1/20150122214805])
  227. # [02:13] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  228. # [02:14] * Quits: myk (myk@moz-cfhap5.mtv2.mozilla.com) (Ping timeout: 121 seconds)
  229. # [02:14] * jlund|buildduty is now known as jlund|afk
  230. # [02:14] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  231. # [02:17] * Quits: ehugg (ehugg@moz-63sj5i.wa.comcast.net) (Client exited)
  232. # [02:17] * Quits: tedders1 (tedders1@moz-ne2.9j7.168.101.IP) (Connection closed)
  233. # [02:17] * Quits: bbondy (bbondy@moz-6r5.5q5.55.24.IP) (Connection closed)
  234. # [02:17] * Joins: bgrins (bgrins@moz-evbsu7.qnor.1u98.0009.2601.IP)
  235. # [02:17] * Joins: tedders1 (tedders1@moz-ne2.9j7.168.101.IP)
  236. # [02:18] * Joins: jimbland` (user@moz-6gkikn.or.comcast.net)
  237. # [02:20] * Quits: jimblandy (user@moz-6gkikn.or.comcast.net) (Ping timeout: 121 seconds)
  238. # [02:20] * Quits: sicking (sicking@moz-u3dg2t.sfo1.mozilla.com) (Client exited)
  239. # [02:20] * Quits: idwer (irc@moz-bp1sle.adsl.online.nl) (A TLS packet with unexpected length was received.)
  240. # [02:21] * Quits: bison (bison@moz-ettmar.rev.poneytelecom.eu) (Quit: ZNC - http://znc.in)
  241. # [02:21] * Quits: tedders1 (tedders1@moz-ne2.9j7.168.101.IP) (Ping timeout: 121 seconds)
  242. # [02:21] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  243. # [02:22] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  244. # [02:24] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
  245. # [02:29] * Joins: bison (bison@moz-ettmar.rev.poneytelecom.eu)
  246. # [02:29] * Quits: Mossop (dtownsend@moz-1gfh2v.fios.verizon.net) (Quit: Leaving)
  247. # [02:29] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  248. # [02:30] * zz_miketaylr_ is now known as zz_zz_miketaylr_
  249. # [02:30] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  250. # [02:34] * Quits: pcwalton (pcwalton@moz-6kjabm.ca.comcast.net) (Client exited)
  251. # [02:34] * Quits: bent (chatzilla@moz-9vg9qn.ca.comcast.net) (Quit: ChatZilla 0.9.91-rdmsoft [XULRunner 32.0.3/20140923175406])
  252. # [02:37] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  253. # [02:38] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  254. # [02:38] * Joins: myk (myk@moz-lpe.7vl.56.172.IP)
  255. # [02:40] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/00ec63159c11 - Jim Blandy - Bug 1095145: Remove compileAndGoGlobal argument to Debugger::onNewScript, and simplify accordingly. r=shu
  256. # [02:43] * Quits: mt (mt@moz-5e384v.ujol.1ibb.0101.2620.IP) (A TLS packet with unexpected length was received.)
  257. # [02:44] * Quits: mcomella (mcomella@moz-ps8n7n.2rkg.9kg1.0101.2620.IP) (Quit: Leaving)
  258. # [02:44] * Joins: myk1 (myk@moz-kbred7.tmodns.net)
  259. # [02:45] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  260. # [02:45] * Quits: jcj (jcj@moz-tbsov6.phnx.qwest.net) (Quit: goodnight, night vale. goodnight.)
  261. # [02:45] * Quits: bwc (Adium@moz-7qa.7fp.250.162.IP) (Quit: Leaving.)
  262. # [02:46] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  263. # [02:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/74d5eb626c0d - Bobby Holley - Bug 1127203 - Rename aError to aTolerance. r=mattwoodrow
  264. # [02:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e5591b1c4d64 - Bobby Holley - Bug 1127203 - Be more consistent about when and how we apply the fuzz factor. r=mattwoodrow
  265. # [02:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/99994b4a3682 - Bobby Holley - Bug 1127203 - Use the tolerance value in TrackBuffersContainTime so that seeking operates with tolerance too. r=mattwoodrow
  266. # [02:46] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/320b02bd690c - Bobby Holley - Bug 1127203 - Disable mediasource-play-then-seek-back.html.ini. r=me
  267. # [02:46] * Quits: myk (myk@moz-lpe.7vl.56.172.IP) (Ping timeout: 121 seconds)
  268. # [02:46] * myk1 is now known as myk
  269. # [02:47] * Joins: gandalf (zbraniecki@moz-gtc1n1.ca.comcast.net)
  270. # [02:47] * Quits: kgrandon (Adium@moz-580l32.rgd2.9kg1.0101.2620.IP) (Quit: Leaving.)
  271. # [02:50] * Quits: gandalf (zbraniecki@moz-gtc1n1.ca.comcast.net) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  272. # [02:50] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
  273. # [02:51] * Joins: rniwa (rniwa@moz-so1v9t.sub-70-197-26.myvzw.com)
  274. # [02:51] * Quits: Silne30 (Silne30@moz-osb574.dybhfl.sbcglobal.net) (Quit: )
  275. # [02:53] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  276. # [02:54] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  277. # [02:54] * Quits: jgriffin (uid51409@moz-si9qbr.highgate.irccloud.com) (Quit: )
  278. # [02:59] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
  279. # [03:01] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  280. # [03:01] * Joins: Rik (rik@moz-luv43d.rev.numericable.fr)
  281. # [03:02] * Quits: WaltS48-away (Thunderbird@moz-d7r2ca.east.verizon.net) (Client exited)
  282. # [03:02] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  283. # [03:03] * Quits: wlach (wlach@moz-dp56io.ckpj.s0pt.0450.2001.IP) (Quit: Ex-Chat)
  284. # [03:05] * Quits: loveless (loveless@moz-neu.q7l.56.172.IP) (Quit: Leaving...)
  285. # [03:05] * Quits: Rik (rik@moz-luv43d.rev.numericable.fr) (Ping timeout: 121 seconds)
  286. # [03:05] * Joins: chewey_ (chewey@moz-gcicbv.dip0.t-ipconnect.de)
  287. # [03:08] * Quits: chewey (chewey@moz-2bt8ku.dip0.t-ipconnect.de) (Ping timeout: 121 seconds)
  288. # [03:09] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  289. # [03:09] * Joins: bajaj (bajaj_afk@moz-6lou4i.ca.comcast.net)
  290. # [03:09] * terrence is now known as terrence-afk
  291. # [03:10] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  292. # [03:12] * Joins: jrmuizel (jrmuizel@moz-3tbdip.cpe.teksavvy.com)
  293. # [03:13] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Connection closed)
  294. # [03:13] * Quits: bajaj (bajaj_afk@moz-6lou4i.ca.comcast.net) (Ping timeout: 121 seconds)
  295. # [03:14] * Joins: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net)
  296. # [03:15] * Quits: ewong (chatzilla@moz-a2bclr.net) (Quit: ToBeOrNotToBeThatIsTheQuestion)
  297. # [03:15] * Quits: botond_ (quassel@moz-6k1ona.ckpj.s0pt.0450.2001.IP) (Quit: No Ping reply in 180 seconds.)
  298. # [03:15] * Joins: kgrandon (Adium@moz-l8e1ui.ca.comcast.net)
  299. # [03:16] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  300. # [03:17] * Joins: mwargers (mwargers@moz-jn4uds.dynamic.ziggo.nl)
  301. # [03:17] * Quits: rniwa (rniwa@moz-so1v9t.sub-70-197-26.myvzw.com) (Quit: Textual IRC Client: www.textualapp.com)
  302. # [03:17] * Quits: bgrins (bgrins@moz-evbsu7.qnor.1u98.0009.2601.IP) (Quit: Leaving.)
  303. # [03:17] * Quits: squib_ (squib@moz-napvi8.wi.charter.com) (Quit: Leaving)
  304. # [03:18] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  305. # [03:18] * Quits: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
  306. # [03:18] * Joins: squib (squib@moz-napvi8.wi.charter.com)
  307. # [03:19] * Quits: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com) (Client exited)
  308. # [03:19] * Joins: botond_ (quassel@moz-i5m.05u.207.66.IP)
  309. # [03:19] * Quits: billm (billm@moz-vnpnqt.mh2d.1ibb.0101.2620.IP) (Ping timeout: 121 seconds)
  310. # [03:21] * stephend|transit is now known as stephend|movie
  311. # [03:21] * Quits: mwargers (mwargers@moz-jn4uds.dynamic.ziggo.nl) (Ping timeout: 121 seconds)
  312. # [03:23] * Quits: bdahl (bdahl@moz-nre51m.2rkg.9kg1.0101.2620.IP) (A TLS packet with unexpected length was received.)
  313. # [03:23] * Joins: ewong (chatzilla@moz-a2bclr.net)
  314. # [03:24] * zz_zz_miketaylr_ is now known as miketaylr
  315. # [03:24] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  316. # [03:25] * Joins: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net)
  317. # [03:25] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  318. # [03:29] * Quits: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
  319. # [03:29] * BenWa is now known as BenWa|email
  320. # [03:30] * Quits: &dbaron (dbaron@moz-v19fvq.2rkg.9kg1.0101.2620.IP) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  321. # [03:32] * Quits: benfrancis|away (uid16068@moz-v6fohe.uxbridge.irccloud.com) (Quit: Connection closed for inactivity)
  322. # [03:32] * philor|away is now known as philor
  323. # [03:32] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  324. # [03:33] * Quits: mak (uid24946@moz-7ljuor.highgate.irccloud.com) (Quit: Connection closed for inactivity)
  325. # [03:33] * Quits: till (till@moz-moork2.adsl.alicedsl.de) (Ping timeout: 121 seconds)
  326. # [03:33] * Joins: till (till@moz-71au20.adsl.alicedsl.de)
  327. # [03:33] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  328. # [03:34] * Quits: myk (myk@moz-kbred7.tmodns.net) (Ping timeout: 121 seconds)
  329. # [03:36] <philor> okay, that's unacceptable. we claim that https://www.graywolfpress.org/sites/default/files/Percy%20-%20Goodnight%20moon.mp3 can't be played because it's corrupt, while both Safari and Chrome will play its absolutely lovely and wonderful self
  330. # [03:39] * Quits: Boriss (Boriss@moz-aq4.h2b.247.173.IP) (Client exited)
  331. # [03:39] * Quits: justindarc (justindarc@moz-lev.v84.203.209.IP) (A TLS packet with unexpected length was received.)
  332. # [03:39] * Joins: justindarc (justindarc@moz-lev.v84.203.209.IP)
  333. # [03:40] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  334. # [03:41] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  335. # [03:42] * Joins: maxli (maxli@moz-fs8bmd.cs.uwaterloo.ca)
  336. # [03:42] * Joins: bajaj (bajaj_afk@moz-6lou4i.ca.comcast.net)
  337. # [03:45] * nsm is now known as nsm|away
  338. # [03:47] * Quits: jrmuizel (jrmuizel@moz-3tbdip.cpe.teksavvy.com) (Connection closed)
  339. # [03:48] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
  340. # [03:48] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  341. # [03:48] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Connection closed)
  342. # [03:49] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
  343. # [03:49] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  344. # [03:51] * Joins: billm (billm@moz-lm6ef3.ca.comcast.net)
  345. # [03:52] * Quits: JosiahOne (Instantbird@moz-r75e7q.l2d1.q8mm.0306.2602.IP) (Ping timeout: 121 seconds)
  346. # [03:56] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  347. # [03:56] * Quits: bajaj (bajaj_afk@moz-6lou4i.ca.comcast.net) (Quit: Leaving.)
  348. # [03:56] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
  349. # [03:57] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  350. # [04:01] <philor> bnicholson: bustage
  351. # [04:03] * Quits: spohl (Adium@moz-34r.olo.156.104.IP) (Quit: Leaving.)
  352. # [04:03] * Joins: jrmuizel (jrmuizel@moz-3tbdip.cpe.teksavvy.com)
  353. # [04:03] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
  354. # [04:03] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  355. # [04:05] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  356. # [04:08] * Joins: milan (milan@moz-vpv.gm9.50.70.IP)
  357. # [04:11] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  358. # [04:12] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  359. # [04:13] * stephend|movie is now known as stephend|dinner
  360. # [04:13] * Quits: shine (uid50849@moz-5q9ti4.highgate.irccloud.com) (Quit: Connection closed for inactivity)
  361. # [04:13] * Quits: milan (milan@moz-vpv.gm9.50.70.IP) (Ping timeout: 121 seconds)
  362. # [04:14] * Quits: billm (billm@moz-lm6ef3.ca.comcast.net) (Ping timeout: 121 seconds)
  363. # [04:14] * Joins: bdahl (bdahl@moz-hp7huo.dynamic.fusionbroadband.com)
  364. # [04:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/54996bae1084 - Phil Ringnalda - Back out cebdafba3a85 (bug 1126514) for robocop bustage
  365. # [04:17] * Joins: kamidphish (dglastonbur@moz-ouggk0.tpgi.com.au)
  366. # [04:19] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  367. # [04:20] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  368. # [04:20] * Joins: hcwool (hcwool@moz-q9hrr3.bigpond.net.au)
  369. # [04:21] <hcwool> Are there any mozilla web projects running python3?
  370. # [04:21] * jcranmer|away is now known as jcranmer
  371. # [04:23] * Quits: reed (reed@tech.monkey) (RecvQ exceeded)
  372. # [04:23] * Joins: reed (reed@tech.monkey)
  373. # [04:26] <Unfocused> hcwool: you likely want to ask that in #webdev
  374. # [04:26] * Quits: mchang (mchang@moz-4b7hgp.res.rr.com) (Client exited)
  375. # [04:26] * Quits: jrmuizel (jrmuizel@moz-3tbdip.cpe.teksavvy.com) (Connection closed)
  376. # [04:27] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  377. # [04:28] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  378. # [04:33] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Connection closed)
  379. # [04:35] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  380. # [04:36] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  381. # [04:40] * Quits: till (till@moz-71au20.adsl.alicedsl.de) (A TLS packet with unexpected length was received.)
  382. # [04:41] * Joins: mastizada (Thunderbird@moz-bat.sij.197.5.IP)
  383. # [04:42] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  384. # [04:44] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  385. # [04:45] * nsm|away is now known as nsm
  386. # [04:46] * Quits: trevorh (trevor@moz-qj2i3c.bigpond.net.au) (Ping timeout: 121 seconds)
  387. # [04:47] * Joins: trevorh (trevor@moz-qj2i3c.bigpond.net.au)
  388. # [04:48] * Joins: Boriss (Boriss@moz-tk8.nnf.245.162.IP)
  389. # [04:48] * Quits: bdahl (bdahl@moz-hp7huo.dynamic.fusionbroadband.com) (A TLS packet with unexpected length was received.)
  390. # [04:50] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  391. # [04:51] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  392. # [04:53] * Joins: bgrins (bgrins@moz-9h5e2g.ca.comcast.net)
  393. # [04:53] * Quits: bgrins (bgrins@moz-9h5e2g.ca.comcast.net) (Quit: Leaving.)
  394. # [04:54] * Joins: mixedpuppy (mixedpuppy@moz-608.i2q.170.166.IP)
  395. # [04:54] * Quits: mastizada (Thunderbird@moz-bat.sij.197.5.IP) (Ping timeout: 121 seconds)
  396. # [04:55] * Quits: aklotz (Thunderbird@moz-1jtcvi.cg.shawcable.net) (Client exited)
  397. # [04:55] * Joins: gandalf (zbraniecki@moz-gtc1n1.ca.comcast.net)
  398. # [04:58] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  399. # [04:58] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
  400. # [04:59] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  401. # [05:00] * Joins: pcwalton (pcwalton@moz-6kjabm.ca.comcast.net)
  402. # [05:01] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
  403. # [05:02] * Quits: pcwalton (pcwalton@moz-6kjabm.ca.comcast.net) (Client exited)
  404. # [05:03] * Joins: gandalf_ (zbraniecki@moz-gtc1n1.ca.comcast.net)
  405. # [05:05] * Quits: gandalf (zbraniecki@moz-gtc1n1.ca.comcast.net) (Ping timeout: 121 seconds)
  406. # [05:06] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  407. # [05:07] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  408. # [05:07] * Quits: Waldo (waldo@moz-cfhap5.mtv2.mozilla.com) (Quit: ChatZilla 0.9.87-8.1450hg.fc20 [XULRunner 32.0/20140902134853])
  409. # [05:08] * Quits: justindarc (justindarc@moz-lev.v84.203.209.IP) (A TLS packet with unexpected length was received.)
  410. # [05:08] * Joins: alexbardas (alexbardas@moz-dvhnru.CV.idilis.net)
  411. # [05:08] * Joins: justindarc (justindarc@moz-lev.v84.203.209.IP)
  412. # [05:08] * Quits: justindarc (justindarc@moz-lev.v84.203.209.IP) (A TLS packet with unexpected length was received.)
  413. # [05:08] * Quits: pepijndevos (pepijndevos@moz-c6opip.p7s2.623k.dcc0.2a00.IP) (Ping timeout: 121 seconds)
  414. # [05:08] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
  415. # [05:10] * Joins: milan (milan@moz-vpv.gm9.50.70.IP)
  416. # [05:11] * Joins: shine (uid50849@moz-5q9ti4.highgate.irccloud.com)
  417. # [05:12] * Joins: pepijndevos (pepijndevos@moz-c6opip.p7s2.623k.dcc0.2a00.IP)
  418. # [05:12] * Quits: alexbardas (alexbardas@moz-dvhnru.CV.idilis.net) (Ping timeout: 121 seconds)
  419. # [05:13] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  420. # [05:14] * KWierso is now known as KWierso|afk
  421. # [05:15] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  422. # [05:15] * Joins: kamidphi_ (textual@moz-ouggk0.tpgi.com.au)
  423. # [05:15] * Quits: milan (milan@moz-vpv.gm9.50.70.IP) (Ping timeout: 121 seconds)
  424. # [05:18] * Joins: mwargers (mwargers@moz-jn4uds.dynamic.ziggo.nl)
  425. # [05:18] * Quits: Boriss (Boriss@moz-tk8.nnf.245.162.IP) (Client exited)
  426. # [05:21] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  427. # [05:22] * Quits: mwargers (mwargers@moz-jn4uds.dynamic.ziggo.nl) (Ping timeout: 121 seconds)
  428. # [05:22] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  429. # [05:23] * Quits: gandalf_ (zbraniecki@moz-gtc1n1.ca.comcast.net) (Quit: My MacBook has gone to sleep. ZZZzzz…)
  430. # [05:24] * Joins: darklord (darklord@moz-9i1.k6o.139.14.IP)
  431. # [05:29] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  432. # [05:29] * Quits: ashughes (uid34327@moz-ckmc47.charlton.irccloud.com) (Quit: Connection closed for inactivity)
  433. # [05:29] * Quits: jduell (jduell@moz-2dadj3.wa.comcast.net) (Quit: Leaving)
  434. # [05:30] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  435. # [05:30] * Joins: sicking (sicking@moz-lqm0dq.ca.comcast.net)
  436. # [05:33] * miketaylr is now known as zz_miketaylr
  437. # [05:34] * Joins: mt_ (mt@moz-q5mdp9.ca.comcast.net)
  438. # [05:37] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  439. # [05:38] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  440. # [05:40] * Joins: billm (billm@moz-lm6ef3.ca.comcast.net)
  441. # [05:44] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  442. # [05:46] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  443. # [05:46] * darkowlzz|afk is now known as darkowlzz
  444. # [05:50] * Joins: dbaron (dbaron@moz-rb4k89.dynamic.fusionbroadband.com)
  445. # [05:50] * killer sets mode: +ao dbaron dbaron
  446. # [05:52] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  447. # [05:53] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  448. # [05:56] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Connection closed)
  449. # [05:56] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
  450. # [05:58] * Quits: billm (billm@moz-lm6ef3.ca.comcast.net) (Quit: Leaving)
  451. # [05:58] * Joins: billm (billm@moz-lm6ef3.ca.comcast.net)
  452. # [05:58] * Quits: billm (billm@moz-lm6ef3.ca.comcast.net) (Connection closed)
  453. # [05:59] * BenWa|email is now known as BenWa
  454. # [05:59] * ewong is now known as ewong|away
  455. # [06:00] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  456. # [06:01] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  457. # [06:04] * Joins: jsx (uid48919@moz-ldeku3.uxbridge.irccloud.com)
  458. # [06:06] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
  459. # [06:07] * Quits: jimbland` (user@moz-6gkikn.or.comcast.net) (Ping timeout: 121 seconds)
  460. # [06:07] * Joins: Edgar (Thunderbird@moz-9398u1.dynamic.hinet.net)
  461. # [06:08] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  462. # [06:09] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  463. # [06:10] * Quits: kamidphi_ (textual@moz-ouggk0.tpgi.com.au) (Ping timeout: 121 seconds)
  464. # [06:11] * Joins: bwc (Adium@moz-7qa.7fp.250.162.IP)
  465. # [06:13] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
  466. # [06:15] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Connection closed)
  467. # [06:16] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  468. # [06:17] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  469. # [06:18] * Quits: maxli (maxli@moz-fs8bmd.cs.uwaterloo.ca) (Quit: Leaving.)
  470. # [06:18] * Joins: mwargers (mwargers@moz-jn4uds.dynamic.ziggo.nl)
  471. # [06:18] * Quits: darklord (darklord@moz-9i1.k6o.139.14.IP) (Ping timeout: 121 seconds)
  472. # [06:21] * Joins: zerous (naveen@moz-ep4.o2j.69.77.IP)
  473. # [06:22] * Quits: mwargers (mwargers@moz-jn4uds.dynamic.ziggo.nl) (Ping timeout: 121 seconds)
  474. # [06:23] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  475. # [06:24] * Quits: zerous_ (naveen@moz-pc4.tug.255.84.IP) (Ping timeout: 121 seconds)
  476. # [06:25] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  477. # [06:31] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/157dbfa50820 - Martin Thomson - Bug 1063290 - Disabling extended gUM tests on gonk for intermittent failures, r=jib
  478. # [06:31] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  479. # [06:32] * Joins: darklord (darklord@moz-9i1.k6o.139.14.IP)
  480. # [06:32] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  481. # [06:36] * Quits: &dbaron (dbaron@moz-rb4k89.dynamic.fusionbroadband.com) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  482. # [06:36] * Quits: Edgar (Thunderbird@moz-9398u1.dynamic.hinet.net) (Client exited)
  483. # [06:36] * Joins: maxli (maxli@moz-favcmk.cs.uwaterloo.ca)
  484. # [06:39] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  485. # [06:40] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  486. # [06:40] * Joins: dbaron (dbaron@moz-rb4k89.dynamic.fusionbroadband.com)
  487. # [06:40] * killer sets mode: +ao dbaron dbaron
  488. # [06:41] * nsm is now known as nsm|away
  489. # [06:47] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  490. # [06:48] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  491. # [06:51] * Joins: nattokirai (nattokirai@moz-rq9a8e.asahi-net.or.jp)
  492. # [06:51] * Quits: bnicholson (bnicholson@moz-olu.vgl.130.24.IP) (Quit: This computer has gone to sleep)
  493. # [06:53] * Joins: kapy (kapy@moz-sqf.lc1.63.123.IP)
  494. # [06:53] * Joins: Bas (chatzilla@moz-b0u.sse.236.109.IP)
  495. # [06:54] * Joins: nj (nj@moz-e4n.r51.187.1.IP)
  496. # [06:54] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  497. # [06:56] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  498. # [06:57] * Quits: &dbaron (dbaron@moz-rb4k89.dynamic.fusionbroadband.com) (Ping timeout: 121 seconds)
  499. # [06:57] * Quits: darklord (darklord@moz-9i1.k6o.139.14.IP) (Ping timeout: 121 seconds)
  500. # [07:00] * Quits: nj (nj@moz-e4n.r51.187.1.IP) (Quit: WeeChat 1.1.1)
  501. # [07:02] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  502. # [07:03] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  503. # [07:04] * Joins: Boriss (Boriss@moz-tk8.nnf.245.162.IP)
  504. # [07:09] * Joins: sawrubh (uid6719@moz-sr8l1j.brockwell.irccloud.com)
  505. # [07:09] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/71b3ff44cca6 - Andy Pusch - Bug 1125529 - Removed obsolete string for testSelection tests in StringHelper.java, r=margaret
  506. # [07:10] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  507. # [07:11] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
  508. # [07:11] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  509. # [07:13] * Quits: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com) (Ping timeout: 121 seconds)
  510. # [07:15] * Joins: mconley (mconley@moz-l3h.nvt.177.12.IP)
  511. # [07:15] * Quits: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu) (Ping timeout: 121 seconds)
  512. # [07:18] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  513. # [07:18] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
  514. # [07:18] * Joins: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com)
  515. # [07:19] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  516. # [07:22] * Quits: bwc (Adium@moz-7qa.7fp.250.162.IP) (Quit: Leaving.)
  517. # [07:24] * Joins: myk (myk@moz-1nu6fg.dynamic.fusionbroadband.com)
  518. # [07:24] * Joins: lsumar (lsumar@moz-ipa305.xtra.co.nz)
  519. # [07:25] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
  520. # [07:26] * Quits: lsumar (lsumar@moz-ipa305.xtra.co.nz) (Connection closed)
  521. # [07:26] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  522. # [07:27] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  523. # [07:27] * Joins: nonsensickle_ (nonsensickl@moz-ipa305.xtra.co.nz)
  524. # [07:28] * Joins: kiwi_orao (nonsensickl@moz-ipa305.xtra.co.nz)
  525. # [07:28] * Quits: nonsensickle_ (nonsensickl@moz-ipa305.xtra.co.nz) (Connection closed)
  526. # [07:28] * Quits: kiwi_orao (nonsensickl@moz-ipa305.xtra.co.nz) (Connection closed)
  527. # [07:29] * Joins: nonsensickle_ (nonsensickl@moz-ipa305.xtra.co.nz)
  528. # [07:29] * Quits: nonsensickle_ (nonsensickl@moz-ipa305.xtra.co.nz) (Connection closed)
  529. # [07:29] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
  530. # [07:29] * Joins: nonsensickle_ (nonsensickl@moz-ipa305.xtra.co.nz)
  531. # [07:33] * Quits: nonsensickle_ (nonsensickl@moz-ipa305.xtra.co.nz) (Quit: Leaving)
  532. # [07:33] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  533. # [07:34] * Joins: dbaron (dbaron@moz-u3dg2t.sfo1.mozilla.com)
  534. # [07:34] * killer sets mode: +ao dbaron dbaron
  535. # [07:35] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  536. # [07:38] * Joins: nonsensickle_ (nonsensickl@moz-ipa305.xtra.co.nz)
  537. # [07:39] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
  538. # [07:41] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  539. # [07:42] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  540. # [07:43] * Quits: mconley (mconley@moz-l3h.nvt.177.12.IP) (Connection closed)
  541. # [07:44] * Joins: mconley (mconley@moz-l3h.nvt.177.12.IP)
  542. # [07:45] * Quits: mconley (mconley@moz-l3h.nvt.177.12.IP) (Connection closed)
  543. # [07:46] * mattwoodrow|away is now known as mattwoodrow
  544. # [07:49] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  545. # [07:50] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  546. # [07:51] * mattwoodrow is now known as mattwoodrow|away
  547. # [07:51] <kapy> hello, does anyone has experience with gunicorn django ??
  548. # [07:52] * Quits: sicking (sicking@moz-lqm0dq.ca.comcast.net) (Client exited)
  549. # [07:57] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  550. # [07:58] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  551. # [07:59] * Quits: kgrandon (Adium@moz-l8e1ui.ca.comcast.net) (Quit: Leaving.)
  552. # [08:00] * Joins: sicking (sicking@moz-lqm0dq.ca.comcast.net)
  553. # [08:01] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
  554. # [08:01] * Quits: sicking (sicking@moz-lqm0dq.ca.comcast.net) (Client exited)
  555. # [08:02] * Joins: Shrooms (Shrooms@moz-pnkrra.ip.windstream.net)
  556. # [08:03] * Quits: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com) (Ping timeout: 121 seconds)
  557. # [08:05] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  558. # [08:06] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  559. # [08:07] * hwine is now known as hwine-ooo
  560. # [08:10] * Joins: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com)
  561. # [08:11] * jcranmer is now known as jcranmer|away
  562. # [08:12] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  563. # [08:13] * xidorn|away is now known as xidorn
  564. # [08:13] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  565. # [08:14] * whimboo|afk is now known as whimboo
  566. # [08:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/bae702058e42 - Xidorn Quan - Bug 569334 part 1 - Support getting font info in content query. r=masayuki,jfkthame,smaug
  567. # [08:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/9758962dd013 - Xidorn Quan - Bug 569334 part 2 - Provide font info for content query on Mac. r=smichaud
  568. # [08:20] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  569. # [08:21] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  570. # [08:28] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  571. # [08:29] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  572. # [08:31] * baku|away is now known as baku
  573. # [08:32] * Quits: drno (nohlmeier@moz-ec0bb5.ca.comcast.net) (Client exited)
  574. # [08:36] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  575. # [08:37] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  576. # [08:37] * Quits: &dbaron (dbaron@moz-u3dg2t.sfo1.mozilla.com) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  577. # [08:38] * Quits: kapy (kapy@moz-sqf.lc1.63.123.IP) (Connection closed)
  578. # [08:40] * Joins: kapy (kapy@moz-sqf.lc1.63.123.IP)
  579. # [08:43] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  580. # [08:44] * Quits: happy-dude_ (uid62780@moz-jt3517.charlton.irccloud.com) (Quit: Connection closed for inactivity)
  581. # [08:45] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  582. # [08:49] * Quits: reed (reed@tech.monkey) (RecvQ exceeded)
  583. # [08:49] * Quits: hcwool (hcwool@moz-q9hrr3.bigpond.net.au) (Connection closed)
  584. # [08:50] * Joins: reed (reed@tech.monkey)
  585. # [08:51] * Quits: schien (anonymous@moz-j3viin.dynamic.hinet.net) (Client exited)
  586. # [08:51] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  587. # [08:52] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  588. # [08:59] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  589. # [09:00] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  590. # [09:00] * Quits: myk (myk@moz-1nu6fg.dynamic.fusionbroadband.com) (Ping timeout: 121 seconds)
  591. # [09:01] * philor is now known as philor|away
  592. # [09:06] * Joins: darklord (darklord@moz-9i1.k6o.139.14.IP)
  593. # [09:07] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  594. # [09:07] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/d7486f0d0747 - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  595. # [09:07] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/e35751d17895 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  596. # [09:08] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  597. # [09:11] * darkowlzz is now known as darkowlzz|afk
  598. # [09:14] * Joins: Zupoman (mistrzmag@moz-qc3.esk.224.91.IP)
  599. # [09:15] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  600. # [09:16] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  601. # [09:16] * Joins: darktrojan (geoff@moz-rdppp8.dsl.telstraclear.net)
  602. # [09:16] * Joins: tedders1 (tedders1@moz-ne2.9j7.168.101.IP)
  603. # [09:21] * Quits: nonsensickle_ (nonsensickl@moz-ipa305.xtra.co.nz) (Ping timeout: 121 seconds)
  604. # [09:22] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  605. # [09:23] * Joins: surkov (surkov@moz-v8g78c.cpe.teksavvy.com)
  606. # [09:24] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  607. # [09:27] * Quits: surkov (surkov@moz-v8g78c.cpe.teksavvy.com) (Ping timeout: 121 seconds)
  608. # [09:29] * Joins: nonsensickle_ (nonsensickl@moz-ipa305.xtra.co.nz)
  609. # [09:29] * Joins: Dexter (Dexter@moz-vhp2ff.retail.telecomitalia.it)
  610. # [09:30] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  611. # [09:31] * Quits: sawrubh (uid6719@moz-sr8l1j.brockwell.irccloud.com) (Quit: Connection closed for inactivity)
  612. # [09:31] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  613. # [09:34] * Joins: hallvors (uid23371@moz-uj1g6s.highgate.irccloud.com)
  614. # [09:35] * Joins: ahunt_ (ahunt@moz-hq8kb0.cam.ac.uk)
  615. # [09:38] * Quits: mt_ (mt@moz-q5mdp9.ca.comcast.net) (Quit: Leaving.)
  616. # [09:38] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  617. # [09:39] * Joins: alexbardas (alexbardas@moz-1upj53.HD.idilis.net)
  618. # [09:39] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  619. # [09:39] * baku is now known as baku|away
  620. # [09:40] * Quits: nonsensickle_ (nonsensickl@moz-ipa305.xtra.co.nz) (Ping timeout: 121 seconds)
  621. # [09:42] * Quits: mixedpuppy (mixedpuppy@moz-608.i2q.170.166.IP) (Client exited)
  622. # [09:43] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
  623. # [09:46] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  624. # [09:47] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  625. # [09:48] * Joins: nonsensickle_ (nonsensickl@moz-ipa305.xtra.co.nz)
  626. # [09:54] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  627. # [09:55] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  628. # [09:55] * Joins: kamidphi_ (textual@moz-ouggk0.tpgi.com.au)
  629. # [09:58] * Joins: smaug (chatzilla@moz-c8d.sse.236.109.IP)
  630. # [09:58] * killer sets mode: +o smaug
  631. # [10:00] * Quits: tonymec (tonymec@moz-m9k.36n.129.109.IP) (Connection closed)
  632. # [10:01] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  633. # [10:02] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  634. # [10:05] * Quits: tonymec_KDE (tonymec@moz-m9k.36n.129.109.IP) (Quit: Konversation terminated!)
  635. # [10:08] * Quits: tedders1 (tedders1@moz-ne2.9j7.168.101.IP) (Connection closed)
  636. # [10:09] * Joins: tonymec_KDE (tonymec@moz-m9k.36n.129.109.IP)
  637. # [10:09] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  638. # [10:10] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  639. # [10:13] * Quits: nonsensickle_ (nonsensickl@moz-ipa305.xtra.co.nz) (Ping timeout: 121 seconds)
  640. # [10:15] * BenWa is now known as BenWa|email
  641. # [10:15] * darkowlzz|afk is now known as darkowlzz
  642. # [10:17] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  643. # [10:18] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  644. # [10:20] * Joins: mwargers (mwargers@moz-jn4uds.dynamic.ziggo.nl)
  645. # [10:22] * Joins: alexbard_ (alexbardas@moz-6506no.BN.idilis.net)
  646. # [10:22] * Quits: alexbardas (alexbardas@moz-1upj53.HD.idilis.net) (Ping timeout: 121 seconds)
  647. # [10:22] * Joins: Archaeopteryx (Archaeopter@moz-6hnogj.cust.telecolumbus.net)
  648. # [10:23] * Quits: maxli (maxli@moz-favcmk.cs.uwaterloo.ca) (Quit: Leaving.)
  649. # [10:24] * Quits: mwargers (mwargers@moz-jn4uds.dynamic.ziggo.nl) (Ping timeout: 121 seconds)
  650. # [10:25] * Joins: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net)
  651. # [10:25] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  652. # [10:25] * Joins: Pike (chatzilla@moz-u3nr3a.customers.d1-online.com)
  653. # [10:26] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  654. # [10:28] * mattwoodrow|away is now known as mattwoodrow
  655. # [10:29] * Joins: kamidph__ (textual@moz-ouggk0.tpgi.com.au)
  656. # [10:29] * Quits: kamidphi_ (textual@moz-ouggk0.tpgi.com.au) (Connection closed)
  657. # [10:29] * Quits: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
  658. # [10:29] * Quits: Pike (chatzilla@moz-u3nr3a.customers.d1-online.com) (Ping timeout: 121 seconds)
  659. # [10:33] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  660. # [10:34] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  661. # [10:36] * Quits: ahunt_ (ahunt@moz-hq8kb0.cam.ac.uk) (Ping timeout: 121 seconds)
  662. # [10:36] * Quits: dria (dria@moz-739mdb.dsl.teksavvy.com) (Ping timeout: 121 seconds)
  663. # [10:39] * Joins: steveofthestow (steveofthes@moz-r6oc8q.range217-42.btcentralplus.com)
  664. # [10:40] * Joins: marco (marco@moz-6f0jsi.retail.telecomitalia.it)
  665. # [10:40] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  666. # [10:41] * whimboo is now known as whimboo|afk
  667. # [10:41] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  668. # [10:42] * Joins: dria (dria@moz-739mdb.dsl.teksavvy.com)
  669. # [10:48] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  670. # [10:49] * Joins: tonymec (tonymec@moz-m9k.36n.129.109.IP)
  671. # [10:49] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  672. # [10:53] * Joins: h4writer (h4writer@moz-eqgqgv.access.telenet.be)
  673. # [10:54] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
  674. # [10:54] * mattwoodrow is now known as mattwoodrow|away
  675. # [10:55] * Joins: Ms2ger (Ms2ger@moz-e6l7sc.s01g.b12r.067c.2001.IP)
  676. # [10:55] * Joins: alexxdim94 (alexander@moz-sj9s1u.btc-net.bg)
  677. # [10:55] * Ms2ger is now known as Ms2ger|docsdevroom
  678. # [10:56] * Quits: Ms2ger|docsdevroom (Ms2ger@moz-e6l7sc.s01g.b12r.067c.2001.IP) (Connection closed)
  679. # [10:56] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  680. # [10:56] * Joins: Ms2ger (Ms2ger@moz-e6l7sc.s01g.b12r.067c.2001.IP)
  681. # [10:56] * Ms2ger is now known as Ms2ger|docsdevroom
  682. # [10:56] * Ms2ger|docsdevroom is now known as Ms2ger|docs
  683. # [10:56] * Quits: shorlander (shorlander@moz-4lj2qn.lsvlky.sbcglobal.net) (Connection closed)
  684. # [10:57] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  685. # [10:57] * Joins: shorlander (shorlander@moz-4lj2qn.lsvlky.sbcglobal.net)
  686. # [10:57] * Quits: chrisccoulson (chr1s@moz-2r61ne.uno.uk.net) (Ping timeout: 121 seconds)
  687. # [10:58] <Ms2ger|docs> So much for reliable wifi
  688. # [11:02] * Joins: Honza (chatzilla@moz-tiq.7ku.62.176.IP)
  689. # [11:02] * Joins: elin (elin@moz-remtlb.dynamic.hinet.net)
  690. # [11:04] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  691. # [11:04] * Joins: ttaubert (uid2620@moz-6d2u0s.uxbridge.irccloud.com)
  692. # [11:05] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  693. # [11:09] * Quits: marco (marco@moz-6f0jsi.retail.telecomitalia.it) (Ping timeout: 121 seconds)
  694. # [11:11] * Quits: jsx (uid48919@moz-ldeku3.uxbridge.irccloud.com) (Quit: Connection closed for inactivity)
  695. # [11:11] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  696. # [11:12] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  697. # [11:15] * Joins: Ms2ger` (Ms2ger@moz-h421ci.9c0v.b12r.067c.2001.IP)
  698. # [11:15] * Quits: @smaug (chatzilla@moz-c8d.sse.236.109.IP) (Ping timeout: 121 seconds)
  699. # [11:16] * Quits: Honza (chatzilla@moz-tiq.7ku.62.176.IP) (Ping timeout: 121 seconds)
  700. # [11:17] * Quits: elin (elin@moz-remtlb.dynamic.hinet.net) (Client exited)
  701. # [11:17] * Quits: Ms2ger|docs (Ms2ger@moz-e6l7sc.s01g.b12r.067c.2001.IP) (Ping timeout: 121 seconds)
  702. # [11:19] * darkowlzz is now known as darkowlzz|afk
  703. # [11:20] * Ms2ger` is now known as Ms2ger|docs
  704. # [11:20] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  705. # [11:20] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  706. # [11:21] * Joins: mwargers (mwargers@moz-jn4uds.dynamic.ziggo.nl)
  707. # [11:22] * Joins: Rik (rik@moz-luv43d.rev.numericable.fr)
  708. # [11:25] * Quits: mwargers (mwargers@moz-jn4uds.dynamic.ziggo.nl) (Ping timeout: 121 seconds)
  709. # [11:26] * Joins: rednaks (rednaks@moz-5l5.3h3.18.197.IP)
  710. # [11:27] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  711. # [11:28] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  712. # [11:35] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  713. # [11:36] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  714. # [11:36] * darkowlzz|afk is now known as darkowlzz
  715. # [11:37] <Ms2ger|docs> OH: "tinderbox"
  716. # [11:37] * Ms2ger|docs is now known as Ms2ger|omw
  717. # [11:37] <darktrojan> never heard of it
  718. # [11:41] * Quits: Ms2ger|omw (Ms2ger@moz-h421ci.9c0v.b12r.067c.2001.IP) (Ping timeout: 121 seconds)
  719. # [11:42] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  720. # [11:44] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  721. # [11:49] * Joins: Ms2ger|omw (Ms2ger@moz-h421ci.9c0v.b12r.067c.2001.IP)
  722. # [11:49] * Ms2ger|omw is now known as Ms2ger|distros
  723. # [11:49] * Joins: Jackneill (Jackneill@moz-irj3sc.pool.digikabel.hu)
  724. # [11:49] <Ms2ger|distros> lsblakk, so, ready for your talk? :)
  725. # [11:50] <Ms2ger|distros> darktrojan, sounded like it was still in active use at libreoffice
  726. # [11:50] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  727. # [11:51] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  728. # [11:54] <daleharvey> So the latest nightly 1. seemed to wipe my profile, and 2. is crashy as, like every other click crashes the tabs
  729. # [11:55] * Joins: jgilbert_ (jgilbert@moz-oi65pr.ca.comcast.net)
  730. # [11:56] * Quits: bz (bzbarsky@moz-m10oko.fios.verizon.net) (Ping timeout: 121 seconds)
  731. # [11:57] <darktrojan> Ms2ger, having used libreoffice, I can believe that
  732. # [11:57] <Ms2ger|distros> Ha
  733. # [11:57] <Ms2ger|distros> Hey, they use C++11 now
  734. # [11:57] * Joins: Sander (chatzilla@moz-f4egml.direct-adsl.nl)
  735. # [11:57] <darktrojan> it's not what you use, it's if you do anything useful with it
  736. # [11:58] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  737. # [11:59] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  738. # [12:00] * Quits: jrgill (jrgill@moz-ng2hkq.res.rr.com) (Connection closed)
  739. # [12:03] * Joins: jrgill (jrgill@moz-ng2hkq.res.rr.com)
  740. # [12:05] * Quits: jgilbert_ (jgilbert@moz-oi65pr.ca.comcast.net) (Ping timeout: 121 seconds)
  741. # [12:06] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  742. # [12:07] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  743. # [12:09] * Joins: mahdi (mahdi@moz-p6m.hbe.244.151.IP)
  744. # [12:14] <xidorn> there seems to be a time dependent intermittent failure on a gaia unittest
  745. # [12:14] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  746. # [12:14] <xidorn> https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&filter-platform=B2G%20Desktop%20Linux%20x64%20opt&filter-job_type_symbol=Gu
  747. # [12:15] * Joins: Honza (chatzilla@moz-tiq.7ku.62.176.IP)
  748. # [12:15] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  749. # [12:16] * Joins: espadrine (tyl@moz-1rf710.s01g.b12r.067c.2001.IP)
  750. # [12:21] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  751. # [12:22] * Quits: kamidph__ (textual@moz-ouggk0.tpgi.com.au) (Ping timeout: 121 seconds)
  752. # [12:23] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  753. # [12:23] * Quits: darktrojan (geoff@moz-rdppp8.dsl.telstraclear.net) (Client exited)
  754. # [12:25] * Quits: darklord (darklord@moz-9i1.k6o.139.14.IP) (Ping timeout: 121 seconds)
  755. # [12:25] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
  756. # [12:27] * Joins: james_ (james@moz-228.5su.218.180.IP)
  757. # [12:28] * Joins: mkmelin (mkmelin@moz-84rdkg.elisa-laajakaista.fi)
  758. # [12:29] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  759. # [12:29] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
  760. # [12:30] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  761. # [12:36] * Joins: smaug (chatzilla@moz-mvkq24.s01g.b12r.067c.2001.IP)
  762. # [12:36] * killer sets mode: +o smaug
  763. # [12:37] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  764. # [12:38] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  765. # [12:38] * Joins: ddamjano (Instantbird@moz-57lq3h.cfl3.oeer.8388.2a02.IP)
  766. # [12:39] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/rev/6161f6b9dbbe - ffxbld - No bug, Automated HSTS preload list update from host bld-linux64-spot-015 - a=hsts-update
  767. # [12:39] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/rev/8c56dd382b2c - ffxbld - No bug, Automated HPKP preload list update from host bld-linux64-spot-015 - a=hpkp-update
  768. # [12:39] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/rev/5cbae82bdb4b - ffxbld - No bug, Automated blocklist update from host bld-linux64-spot-015 - a=blocklist-update
  769. # [12:39] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/5a04e849dc12 - ffxbld - No bug, Automated HSTS preload list update from host bld-linux64-spot-202 - a=hsts-update
  770. # [12:39] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/119ed11ce2d9 - ffxbld - No bug, Automated HPKP preload list update from host bld-linux64-spot-202 - a=hpkp-update
  771. # [12:39] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/48d576bf04d4 - ffxbld - No bug, Automated blocklist update from host bld-linux64-spot-202 - a=blocklist-update
  772. # [12:45] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  773. # [12:46] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  774. # [12:48] * Ms2ger|distros is now known as Ms2ger|omw
  775. # [12:52] * Quits: ericjung (ericjung@moz-caqquv.7ch4.iin2.0006.2601.IP) (Ping timeout: 121 seconds)
  776. # [12:52] * Quits: espadrine (tyl@moz-1rf710.s01g.b12r.067c.2001.IP) (Ping timeout: 121 seconds)
  777. # [12:53] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  778. # [12:53] * xidorn is now known as xidorn|away
  779. # [12:54] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  780. # [12:55] * Ms2ger|omw is now known as Ms2ger|janson
  781. # [12:57] <daleharvey> is nightly crashy for anyone else or just me?
  782. # [12:59] * Fallen|away is now known as Fallen
  783. # [13:00] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  784. # [13:01] * Quits: Ms2ger|janson (Ms2ger@moz-h421ci.9c0v.b12r.067c.2001.IP) (Ping timeout: 121 seconds)
  785. # [13:02] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  786. # [13:02] * Quits: shorlander (shorlander@moz-4lj2qn.lsvlky.sbcglobal.net) (Connection closed)
  787. # [13:03] * Joins: shorlander (shorlander@moz-4lj2qn.lsvlky.sbcglobal.net)
  788. # [13:03] * Quits: james_ (james@moz-228.5su.218.180.IP) (Ping timeout: 121 seconds)
  789. # [13:04] * Quits: alexxdim94 (alexander@moz-sj9s1u.btc-net.bg) (Connection closed)
  790. # [13:05] * Quits: zerous (naveen@moz-ep4.o2j.69.77.IP) (Ping timeout: 121 seconds)
  791. # [13:05] * Joins: ericjung (ericjung@moz-caqquv.7ch4.iin2.0006.2601.IP)
  792. # [13:08] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  793. # [13:09] * Joins: marco (marco@moz-6f0jsi.retail.telecomitalia.it)
  794. # [13:09] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  795. # [13:15] * Joins: ZER0 (ZER0@moz-a54dlg.s01g.b12r.067c.2001.IP)
  796. # [13:16] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  797. # [13:16] * darkowlzz is now known as darkowlzz|afk
  798. # [13:17] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  799. # [13:18] * Quits: kapy (kapy@moz-sqf.lc1.63.123.IP) (Ping timeout: 121 seconds)
  800. # [13:18] * Joins: kapy (kapy@moz-sqf.lc1.63.123.IP)
  801. # [13:21] * Joins: Utal (Mibbit@moz-fac.abs.110.203.IP)
  802. # [13:22] * Joins: Ms2ger|janson (Ms2ger@moz-h421ci.9c0v.b12r.067c.2001.IP)
  803. # [13:22] <Utal> hi i want to work on mozilla can anyone tell me where to start on any project to start
  804. # [13:23] <Sander> Utal: have you seen https://www.mozilla.org/en-US/contribute/signup/ ?
  805. # [13:24] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  806. # [13:24] <Utal> ya am looking for a new project to work on
  807. # [13:25] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  808. # [13:29] * Quits: Ms2ger|janson (Ms2ger@moz-h421ci.9c0v.b12r.067c.2001.IP) (Ping timeout: 121 seconds)
  809. # [13:32] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  810. # [13:32] * Joins: till (till@moz-71au20.adsl.alicedsl.de)
  811. # [13:32] * Quits: Utal (Mibbit@moz-fac.abs.110.203.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  812. # [13:33] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  813. # [13:33] * Quits: alexbard_ (alexbardas@moz-6506no.BN.idilis.net) (A TLS packet with unexpected length was received.)
  814. # [13:36] * Quits: @smaug (chatzilla@moz-mvkq24.s01g.b12r.067c.2001.IP) (Ping timeout: 121 seconds)
  815. # [13:37] * Joins: smaug (chatzilla@moz-mvkq24.s01g.b12r.067c.2001.IP)
  816. # [13:37] * killer sets mode: +o smaug
  817. # [13:37] * Quits: ZER0 (ZER0@moz-a54dlg.s01g.b12r.067c.2001.IP) (Ping timeout: 121 seconds)
  818. # [13:37] * Joins: ZER0 (ZER0@moz-iq2le8.s01g.b12r.067c.2001.IP)
  819. # [13:38] * Quits: ZER0 (ZER0@moz-iq2le8.s01g.b12r.067c.2001.IP) (Connection closed)
  820. # [13:39] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  821. # [13:40] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  822. # [13:42] * Quits: @smaug (chatzilla@moz-mvkq24.s01g.b12r.067c.2001.IP) (Ping timeout: 121 seconds)
  823. # [13:47] * Joins: smaug (chatzilla@moz-mvkq24.s01g.b12r.067c.2001.IP)
  824. # [13:47] * killer sets mode: +o smaug
  825. # [13:47] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  826. # [13:48] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  827. # [13:49] * Quits: steveofthestow (steveofthes@moz-r6oc8q.range217-42.btcentralplus.com) (Ping timeout: 121 seconds)
  828. # [13:50] * Quits: kapy (kapy@moz-sqf.lc1.63.123.IP) (Quit: )
  829. # [13:50] * Quits: h4writer (h4writer@moz-eqgqgv.access.telenet.be) (Ping timeout: 121 seconds)
  830. # [13:52] * Joins: steveofthestow (steveofthes@moz-r6oc8q.range217-42.btcentralplus.com)
  831. # [13:53] * Joins: jdm (jdm@moz-a8pjnv.s01g.b12r.067c.2001.IP)
  832. # [13:54] * Quits: ddamjano (Instantbird@moz-57lq3h.cfl3.oeer.8388.2a02.IP) (Ping timeout: 121 seconds)
  833. # [13:55] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  834. # [13:56] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  835. # [13:56] * Joins: idwer (irc@moz-bp1sle.adsl.online.nl)
  836. # [13:56] * Joins: givanica (Thunderbird@moz-h10.q8n.76.82.IP)
  837. # [14:00] * Joins: dark-knight (dark-knight@moz-5gr25r.telostor.ca)
  838. # [14:00] * Quits: idwer (irc@moz-bp1sle.adsl.online.nl) (Ping timeout: 121 seconds)
  839. # [14:00] * Joins: idwer (irc@moz-bp1sle.adsl.online.nl)
  840. # [14:02] * Quits: ericjung (ericjung@moz-caqquv.7ch4.iin2.0006.2601.IP) (Ping timeout: 121 seconds)
  841. # [14:03] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  842. # [14:03] * Joins: Ms2ger|hackerroom (Ms2ger@moz-h421ci.9c0v.b12r.067c.2001.IP)
  843. # [14:04] * Quits: jkitch (Thunderbird@moz-7e8nnl.k4n0.vhij.44b8.2001.IP) (Ping timeout: 121 seconds)
  844. # [14:04] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  845. # [14:04] * Quits: amoghbl1 (Thunderbird@moz-9i1.k6o.139.14.IP) (Ping timeout: 121 seconds)
  846. # [14:05] * Ms2ger|hackerroom is now known as Ms2ger|omw
  847. # [14:05] * Joins: amoghbl1 (Thunderbird@moz-9i1.k6o.139.14.IP)
  848. # [14:06] * Joins: bz (bzbarsky@moz-m10oko.fios.verizon.net)
  849. # [14:07] * Joins: mccr8 (mccr8@moz-m84lpe.ca.comcast.net)
  850. # [14:08] * Ms2ger|omw is now known as Ms2ger|janson
  851. # [14:08] * Quits: mccr8 (mccr8@moz-m84lpe.ca.comcast.net) (Quit: )
  852. # [14:09] * Quits: jdm (jdm@moz-a8pjnv.s01g.b12r.067c.2001.IP) (Connection closed)
  853. # [14:09] * Joins: elin (elin@moz-remtlb.dynamic.hinet.net)
  854. # [14:10] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  855. # [14:12] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  856. # [14:12] * Quits: Ms2ger|janson (Ms2ger@moz-h421ci.9c0v.b12r.067c.2001.IP) (Ping timeout: 121 seconds)
  857. # [14:13] * Quits: marco (marco@moz-6f0jsi.retail.telecomitalia.it) (Client exited)
  858. # [14:13] * Quits: mkmelin (mkmelin@moz-84rdkg.elisa-laajakaista.fi) (Ping timeout: 121 seconds)
  859. # [14:14] * Joins: ericjung (ericjung@moz-caqquv.7ch4.iin2.0006.2601.IP)
  860. # [14:16] * Quits: amoghbl1 (Thunderbird@moz-9i1.k6o.139.14.IP) (Client exited)
  861. # [14:16] * Joins: WaltS48 (Thunderbird@moz-nb25qo.east.verizon.net)
  862. # [14:16] * Joins: amoghbl1 (Thunderbird@moz-9i1.k6o.139.14.IP)
  863. # [14:17] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
  864. # [14:17] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/76ac4c3323a9 - Masatoshi Kimura - backout 3d4d4a91f29a (bug 1102632) as some web pages can no longer connect without enabling SSLv3
  865. # [14:17] * Joins: clokep (Instantbird@moz-ivrdpu.cable.rcn.com)
  866. # [14:18] * Joins: jviereck (Adium@moz-gubd9e.dclient.hispeed.ch)
  867. # [14:18] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  868. # [14:19] * Joins: milan (milan@moz-vpv.gm9.50.70.IP)
  869. # [14:20] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  870. # [14:21] * Quits: ckitching (ckitching@moz-cbggqe.cable.virginm.net) (A TLS packet with unexpected length was received.)
  871. # [14:24] * Quits: milan (milan@moz-vpv.gm9.50.70.IP) (Ping timeout: 121 seconds)
  872. # [14:24] * Joins: alexbardas (alexbardas@moz-l5snco.BR.idilis.net)
  873. # [14:24] * Joins: ckitching (ckitching@moz-cbggqe.cable.virginm.net)
  874. # [14:25] * Quits: elin (elin@moz-remtlb.dynamic.hinet.net) (Client exited)
  875. # [14:26] * Quits: stefanh|away (stefanh@moz-ea1cgv.customers.ownit.se) (Connection closed)
  876. # [14:26] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  877. # [14:27] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  878. # [14:28] * Joins: elin (elin@moz-remtlb.dynamic.hinet.net)
  879. # [14:34] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  880. # [14:34] * Joins: mwargers (mwargers@moz-jn4uds.dynamic.ziggo.nl)
  881. # [14:35] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  882. # [14:42] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  883. # [14:43] * Quits: elin (elin@moz-remtlb.dynamic.hinet.net) (Client exited)
  884. # [14:43] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  885. # [14:44] * Joins: elin (elin@moz-remtlb.dynamic.hinet.net)
  886. # [14:45] * Joins: stefanh|away (stefanh@moz-ea1cgv.customers.ownit.se)
  887. # [14:46] * Fallen is now known as Fallen|away
  888. # [14:46] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Connection closed)
  889. # [14:47] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/88e79853f47c - B2G Bumper Bot - Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
  890. # [14:47] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/1b52affe1fe8 - B2G Bumper Bot - Bumping manifests a=b2g-bump
  891. # [14:47] * Quits: odin_ (Odin@moz-2qdl0h.soj0.bofc.0348.2a01.IP) (Ping timeout: 121 seconds)
  892. # [14:50] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  893. # [14:51] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  894. # [14:52] * Joins: darklord (darklord@moz-9i1.k6o.139.14.IP)
  895. # [14:55] * Quits: elin (elin@moz-remtlb.dynamic.hinet.net) (Client exited)
  896. # [14:56] * Joins: marco (marco@moz-6f0jsi.retail.telecomitalia.it)
  897. # [14:57] * Quits: WaltS48 (Thunderbird@moz-nb25qo.east.verizon.net) (Client exited)
  898. # [14:57] * Joins: WaltS48 (Thunderbird@moz-nb25qo.east.verizon.net)
  899. # [14:58] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  900. # [14:59] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  901. # [15:00] * Quits: Rik (rik@moz-luv43d.rev.numericable.fr) (Ping timeout: 121 seconds)
  902. # [15:01] * Joins: clokep_ (Instantbird@moz-ivrdpu.cable.rcn.com)
  903. # [15:01] * Joins: jdm (jdm@moz-97ri05.s01g.b12r.067c.2001.IP)
  904. # [15:02] * Quits: clokep (Instantbird@moz-ivrdpu.cable.rcn.com) (Ping timeout: 121 seconds)
  905. # [15:02] * clokep_ is now known as clokep
  906. # [15:02] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/cb01144424b5 - Jan de Mooij - Bug 1113240 - Allow optimizing nursery-allocated getters/setters in Ion. r=bhackett
  907. # [15:05] * Joins: alexxdim94 (alexander@moz-sj9s1u.btc-net.bg)
  908. # [15:05] * Quits: jdm (jdm@moz-97ri05.s01g.b12r.067c.2001.IP) (Connection closed)
  909. # [15:05] * Joins: Rik (rik@moz-luv43d.rev.numericable.fr)
  910. # [15:05] * Joins: Ms2ger (Ms2ger@moz-iej.u71.216.151.IP)
  911. # [15:05] * Ms2ger is now known as Ms2ger|docs
  912. # [15:05] * Quits: mwargers (mwargers@moz-jn4uds.dynamic.ziggo.nl) (Connection closed)
  913. # [15:06] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  914. # [15:06] * Joins: zerous (naveen@moz-ep4.o2j.69.77.IP)
  915. # [15:07] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  916. # [15:08] * Quits: Ms2ger|docs (Ms2ger@moz-iej.u71.216.151.IP) (Connection closed)
  917. # [15:09] * Joins: Ms2ger|docs (Ms2ger@moz-iej.u71.216.151.IP)
  918. # [15:11] * Joins: jdm (jdm@moz-cvqv70.s01g.b12r.067c.2001.IP)
  919. # [15:13] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  920. # [15:14] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  921. # [15:17] * Joins: james_ (james@moz-228.5su.218.180.IP)
  922. # [15:17] * Quits: marco (marco@moz-6f0jsi.retail.telecomitalia.it) (Client exited)
  923. # [15:18] <padenot> jandem-away: yes ?
  924. # [15:18] <jandem-away> padenot: hey, i was looking at crash-stats last week and i noticed you got some
  925. # [15:18] <jandem-away> padenot: is that right?
  926. # [15:19] * Joins: elin (elin@moz-remtlb.dynamic.hinet.net)
  927. # [15:21] * Joins: milan (milan@moz-vpv.gm9.50.70.IP)
  928. # [15:21] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  929. # [15:21] <padenot> jandem-away: don't know, you have a link ?
  930. # [15:22] <jandem-away> padenot: hm not offhand, also don't remember which branch. I think it crashed when using the debugger
  931. # [15:22] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  932. # [15:23] * Quits: bz (bzbarsky@moz-m10oko.fios.verizon.net) (Ping timeout: 121 seconds)
  933. # [15:23] <Ms2ger|docs> Hmm, I haven't run into MarcoZ yet
  934. # [15:23] <padenot> jandem-away: there are some crashes I know, but they are fixed in some branches
  935. # [15:23] <jandem-away> padenot: we have no leads so far so i'm grasping at straws ;)
  936. # [15:23] <padenot> jandem-away: any specific platform ?
  937. # [15:24] <jandem-away> padenot: don't think so; signature is EnterBaseline
  938. # [15:24] <jandem-away> padenot: thanks, i'm just looking for somebody with STR :)
  939. # [15:24] <padenot> how did you link it to me ? :-)
  940. # [15:25] * Joins: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net)
  941. # [15:25] <jandem-away> i think it had your mail address, or name in the url, not sure
  942. # [15:25] <padenot> ahh
  943. # [15:25] * Joins: sir_none (Thunderbird@moz-ia5ebf.stat.salzburg-online.at)
  944. # [15:26] <padenot> ok I understand, I thought it was a crash in my code
  945. # [15:26] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (Connection closed)
  946. # [15:26] <padenot> I usually put my mozilla email adress in crash reports for this reason, yeah
  947. # [15:26] * Quits: milan (milan@moz-vpv.gm9.50.70.IP) (Ping timeout: 121 seconds)
  948. # [15:27] <padenot> but looking at about:crashes on this machine does not yield anything interesting, sorry
  949. # [15:28] <jandem-away> padenot: oops sorry, i realize that was confusing
  950. # [15:28] <jandem-away> padenot: thanks
  951. # [15:28] <padenot> I'll have a look on other machine, but I'm at FOSDEM atm, so I only have this laptop
  952. # [15:29] * Quits: masayuki (Thunderbird@moz-1gqv2s.zaq.ne.jp) (Client exited)
  953. # [15:29] * Quits: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
  954. # [15:29] * Quits: elin (elin@moz-remtlb.dynamic.hinet.net) (Client exited)
  955. # [15:30] * Quits: jviereck (Adium@moz-gubd9e.dclient.hispeed.ch) (Quit: Leaving.)
  956. # [15:31] * Ms2ger|docs waves at padenot
  957. # [15:32] * darkowlzz|afk is now known as darkowlzz
  958. # [15:33] * Quits: jdm (jdm@moz-cvqv70.s01g.b12r.067c.2001.IP) (Quit: )
  959. # [15:33] * Matti is now known as Matti_away
  960. # [15:42] * Joins: wkn (Mibbit@moz-hrlfn3.dynamic.chello.pl)
  961. # [15:42] <wkn> hello
  962. # [15:42] <Ms2ger|docs> padenot, where are you, btw?
  963. # [15:43] <padenot> Ms2ger|docs: performance track, in Janson, there is a guy from the CERN talking about a cool profiler
  964. # [15:43] * Joins: kaze (kaze@moz-j6f.vl2.216.151.IP)
  965. # [15:43] <Ms2ger|docs> About to head there
  966. # [15:43] <padenot> he actually used it on Firefox, and it has cool features, I want to give it a try
  967. # [15:43] * Joins: marco (marco@moz-6f0jsi.retail.telecomitalia.it)
  968. # [15:44] <wkn> i have a little problem by mach. When i run ./mach run fifefox don't launch but when i type in terminal firefox it launch whai is the problem ?
  969. # [15:44] * Quits: dark-knight (dark-knight@moz-5gr25r.telostor.ca) (A TLS packet with unexpected length was received.)
  970. # [15:44] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  971. # [15:44] * Joins: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu)
  972. # [15:45] <padenot> heh, the guy on stage is thanking cjones for some reay
  973. # [15:46] <padenot> reason*
  974. # [15:46] <Ms2ger|docs> cjones does lots of cool stuff
  975. # [15:46] <padenot> yeah
  976. # [15:46] * Quits: zerous (naveen@moz-ep4.o2j.69.77.IP) (Quit: leaving)
  977. # [15:47] * Ms2ger|docs is now known as Ms2ger|omw
  978. # [15:48] * Joins: mconley (mconley@moz-l3h.nvt.177.12.IP)
  979. # [15:50] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  980. # [15:50] * Joins: masayuki (Thunderbird@moz-1gqv2s.zaq.ne.jp)
  981. # [15:53] * Joins: Rajeshk (Rajesh@moz-1vl.rg3.99.115.IP)
  982. # [15:53] * Quits: alexbardas (alexbardas@moz-l5snco.BR.idilis.net) (A TLS packet with unexpected length was received.)
  983. # [15:54] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  984. # [15:54] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  985. # [15:54] * Ms2ger|omw is now known as Ms2ger|janson
  986. # [15:54] <Ms2ger|janson> padenot, still here?
  987. # [15:55] * Ms2ger|janson wishes janson had power outlets
  988. # [15:57] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  989. # [15:58] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  990. # [15:58] * Quits: mconley (mconley@moz-l3h.nvt.177.12.IP) (Connection closed)
  991. # [15:58] <Ms2ger|janson> I'll probably be off after this talk
  992. # [15:59] * Quits: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu) (Ping timeout: 121 seconds)
  993. # [16:00] * Joins: espadrine (tyl@moz-1rf710.s01g.b12r.067c.2001.IP)
  994. # [16:00] <padenot> Ms2ger|janson: yep, I've spotted you
  995. # [16:00] * Joins: JosiahOne (Instantbird@moz-a5qp0q.l2d1.q8mm.0306.2602.IP)
  996. # [16:01] <Ms2ger|janson> padenot, now I just need to spot you back
  997. # [16:01] <padenot> we are a down the room, on the left with nical and bbouvier
  998. # [16:01] * padenot waves with a black hat a beard
  999. # [16:02] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  1000. # [16:03] * Joins: alexbardas (alexbardas@moz-l5snco.BR.idilis.net)
  1001. # [16:03] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  1002. # [16:06] * Quits: Ms2ger|janson (Ms2ger@moz-iej.u71.216.151.IP) (Ping timeout: 121 seconds)
  1003. # [16:07] * Quits: espadrine (tyl@moz-1rf710.s01g.b12r.067c.2001.IP) (Ping timeout: 121 seconds)
  1004. # [16:08] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  1005. # [16:09] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (RecvQ exceeded)
  1006. # [16:16] * Quits: WaltS48 (Thunderbird@moz-nb25qo.east.verizon.net) (Client exited)
  1007. # [16:17] * Joins: odin_ (Odin@moz-9q12b0.skybroadband.com)
  1008. # [16:17] * Joins: mconley (mconley@moz-l3h.nvt.177.12.IP)
  1009. # [16:18] * Quits: mconley (mconley@moz-l3h.nvt.177.12.IP) (Connection closed)
  1010. # [16:18] * Quits: victorporof (victorporof@moz-42f97s.dsl.bell.ca) (Connection closed)
  1011. # [16:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/5c4b7be30f7d - Tom Schuster - Bug 1127443 - Don't mark objects created by JS_NewObjectWithGivenProto as having unknown properties.
  1012. # [16:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/87f2bd784f41 - Tom Schuster - Bug 1127443 - Move some JS_NewObject callers to JS_NewObjectWithGiveProto
  1013. # [16:19] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/3f806794d466 - Tom Schuster - Bug 1127443 - Remove JS_NewObject proto argument.
  1014. # [16:21] * Joins: badescunicu (Thunderbird@moz-873.cnc.118.79.IP)
  1015. # [16:22] * Parts: wkn (Mibbit@moz-hrlfn3.dynamic.chello.pl)
  1016. # [16:22] * Joins: elin (elin@moz-remtlb.dynamic.hinet.net)
  1017. # [16:22] * Quits: marco (marco@moz-6f0jsi.retail.telecomitalia.it) (Ping timeout: 121 seconds)
  1018. # [16:23] * Joins: Jerry_Mac (hshih@moz-qofhr3.kbronet.com.tw)
  1019. # [16:23] * Joins: milan (milan@moz-vpv.gm9.50.70.IP)
  1020. # [16:24] * Quits: ericjung (ericjung@moz-caqquv.7ch4.iin2.0006.2601.IP) (Ping timeout: 121 seconds)
  1021. # [16:25] * Joins: ahunt_ (ahunt@moz-hq8kb0.cam.ac.uk)
  1022. # [16:25] * Joins: ivan` (ivan@moz-c30.r7c.241.192.IP)
  1023. # [16:26] * Joins: marco (marco@moz-rf50lb.retail.telecomitalia.it)
  1024. # [16:28] * Quits: milan (milan@moz-vpv.gm9.50.70.IP) (Ping timeout: 121 seconds)
  1025. # [16:31] * Joins: dark-knight (dark-knight@moz-n8lug9.cloudexit.eu)
  1026. # [16:31] * Joins: jdm (jdm@moz-av8h3b.s01g.b12r.067c.2001.IP)
  1027. # [16:34] * Quits: elin (elin@moz-remtlb.dynamic.hinet.net) (Client exited)
  1028. # [16:37] * Joins: givanica1 (Thunderbird@moz-ib7.nfe.78.82.IP)
  1029. # [16:38] * Joins: ericjung (ericjung@moz-caqquv.7ch4.iin2.0006.2601.IP)
  1030. # [16:39] * Quits: givanica (Thunderbird@moz-h10.q8n.76.82.IP) (Ping timeout: 121 seconds)
  1031. # [16:39] * Quits: JosiahOne (Instantbird@moz-a5qp0q.l2d1.q8mm.0306.2602.IP) (Ping timeout: 121 seconds)
  1032. # [16:42] * Joins: Ms2ger|janson (Ms2ger@moz-h421ci.9c0v.b12r.067c.2001.IP)
  1033. # [16:42] <Ms2ger|janson> padenot, sorry I ran, had to take a call
  1034. # [16:43] * ttaubert is now known as ttaubert|fosdem
  1035. # [16:45] <Ms2ger|janson> smaug, still around?
  1036. # [16:45] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/a20a539ac610 - Victor Porof - Bug 1127472 - RecordingUtils.getSamplesFromAllocations should include the function name in the frames' location, r=jsantell
  1037. # [16:45] <ttaubert|fosdem> yeah I can see him :P
  1038. # [16:46] * philor|away is now known as philor
  1039. # [16:46] <Ms2ger|janson> ttaubert|fosdem, oh, where?
  1040. # [16:46] <ttaubert|fosdem> view from the stage... top left corner
  1041. # [16:46] <ttaubert|fosdem> *viewed
  1042. # [16:46] <Ms2ger|janson> Doh
  1043. # [16:47] <Ms2ger|janson> Back to janson it is, then :)
  1044. # [16:47] <ttaubert|fosdem> yeah
  1045. # [16:47] * Quits: ivan` (ivan@moz-c30.r7c.241.192.IP) (Ping timeout: 121 seconds)
  1046. # [16:47] * Quits: mahdi (mahdi@moz-p6m.hbe.244.151.IP) (Connection closed)
  1047. # [16:48] * Joins: amoghbl2 (Thunderbird@moz-9i1.k6o.139.14.IP)
  1048. # [16:49] * Quits: amoghbl1 (Thunderbird@moz-9i1.k6o.139.14.IP) (Ping timeout: 121 seconds)
  1049. # [16:49] * Quits: Rajeshk (Rajesh@moz-1vl.rg3.99.115.IP) (Quit: Leaving)
  1050. # [16:50] * Joins: ericjung__ (ericjung@moz-ara9ac.7ch4.iin2.0006.2601.IP)
  1051. # [16:50] <Ms2ger|janson> Alright, coming by there as I'm leaving :)
  1052. # [16:50] * Ms2ger|janson is now known as Ms2ger|goinghome
  1053. # [16:52] * Joins: kapy (kapy@moz-vam.lb4.68.182.IP)
  1054. # [16:53] * Quits: amoghbl2 (Thunderbird@moz-9i1.k6o.139.14.IP) (Ping timeout: 121 seconds)
  1055. # [16:54] * Quits: Ms2ger|goinghome (Ms2ger@moz-h421ci.9c0v.b12r.067c.2001.IP) (Ping timeout: 121 seconds)
  1056. # [16:57] * Joins: ericjung_ (ericjung@moz-pc98ag.7ch4.iin2.0006.2601.IP)
  1057. # [16:57] * Joins: jviereck (Adium@moz-pqri8u.dclient.hispeed.ch)
  1058. # [16:59] * Joins: maxli (maxli@moz-fs8bmd.cs.uwaterloo.ca)
  1059. # [17:01] * Joins: jviereck1 (Adium@moz-gubd9e.dclient.hispeed.ch)
  1060. # [17:02] * Quits: jviereck (Adium@moz-pqri8u.dclient.hispeed.ch) (Ping timeout: 121 seconds)
  1061. # [17:06] * Quits: alexbardas (alexbardas@moz-l5snco.BR.idilis.net) (A TLS packet with unexpected length was received.)
  1062. # [17:06] * darkowlzz is now known as darkowlzz|afk
  1063. # [17:07] * Quits: Dexter (Dexter@moz-vhp2ff.retail.telecomitalia.it) (Quit: Leaving)
  1064. # [17:18] * Joins: ProgramFOX (ProgramFOX@moz-ta8.dp1.176.91.IP)
  1065. # [17:20] * Quits: nattokirai (nattokirai@moz-rq9a8e.asahi-net.or.jp) (Client exited)
  1066. # [17:21] * Quits: maxli (maxli@moz-fs8bmd.cs.uwaterloo.ca) (Quit: Leaving.)
  1067. # [17:24] * Joins: nattokirai (nattokirai@moz-rq9a8e.asahi-net.or.jp)
  1068. # [17:25] * Joins: milan (milan@moz-vpv.gm9.50.70.IP)
  1069. # [17:26] * Quits: garvank (Garvan@moz-p18v30.dsl.teksavvy.com) (Quit: )
  1070. # [17:26] * Quits: naveed (nihsanullah@moz-4gnqsq.fios.verizon.net) (Quit: )
  1071. # [17:29] * Quits: milan (milan@moz-vpv.gm9.50.70.IP) (Ping timeout: 121 seconds)
  1072. # [17:29] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-beta/rev/fff54c008d7d - Jeff Muizelaar - Bug 1099074. Don't enable D2D1.1 with non-OMTC. r=bgirard,a=sylvestre
  1073. # [17:34] * Quits: @smaug (chatzilla@moz-mvkq24.s01g.b12r.067c.2001.IP) (Ping timeout: 121 seconds)
  1074. # [17:37] * Quits: jdm (jdm@moz-av8h3b.s01g.b12r.067c.2001.IP) (Quit: )
  1075. # [17:37] * Joins: hunboy_ (hunboy@moz-7j3411.pool.invitel.hu)
  1076. # [17:38] * Quits: hunboy (hunboy@moz-nhggfp.pool.invitel.hu) (Ping timeout: 121 seconds)
  1077. # [17:38] * hunboy_ is now known as hunboy
  1078. # [17:42] * Joins: wkn (Mibbit@moz-hrlfn3.dynamic.chello.pl)
  1079. # [17:43] * Joins: mixedpuppy (mixedpuppy@moz-608.i2q.170.166.IP)
  1080. # [17:49] * Parts: wkn (Mibbit@moz-hrlfn3.dynamic.chello.pl)
  1081. # [17:50] * Joins: dbaron (dbaron@moz-rb4k89.dynamic.fusionbroadband.com)
  1082. # [17:50] * killer sets mode: +ao dbaron dbaron
  1083. # [17:52] * Quits: wchen (wchen@moz-m1s.rj1.211.198.IP) (Quit: bye)
  1084. # [17:52] * Joins: alexbardas (alexbardas@moz-dir3tf.CV.idilis.net)
  1085. # [17:52] * Joins: mkmelin (mkmelin@moz-84rdkg.elisa-laajakaista.fi)
  1086. # [17:54] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=6f9b69780bf4 - 84 changesets
  1087. # [17:55] * Joins: wchen (wchen@moz-m1s.rj1.211.198.IP)
  1088. # [17:55] * Quits: tanner (tanner@isnt.republican) (Ping timeout: 121 seconds)
  1089. # [17:56] * Quits: alexxdim94 (alexander@moz-sj9s1u.btc-net.bg) (Connection closed)
  1090. # [17:59] * Joins: florent (Thunderbird@moz-7vso7m.abo.wanadoo.fr)
  1091. # [17:59] * Quits: Jerry_Mac (hshih@moz-qofhr3.kbronet.com.tw) (Quit: Leaving)
  1092. # [18:03] * Joins: hodor (kvirc@moz-qiv.4ro.16.61.IP)
  1093. # [18:05] <hodor> I am new to software development. Till now I have done only competative coding. I would love to start development with Mozilla. Any help would be appriciated
  1094. # [18:06] * Quits: mkmelin (mkmelin@moz-84rdkg.elisa-laajakaista.fi) (Ping timeout: 121 seconds)
  1095. # [18:08] <till> hodor: welcome!
  1096. # [18:08] <pulsebot> Check-in: https://hg.mozilla.org/mozilla-central/pushloghtml?changeset=426bc5ee47d9 - 18 changesets
  1097. # [18:08] <till> hodor: a good place to start is https://developer.mozilla.org/en-US/docs/Introduction
  1098. # [18:08] <Archaeopteryx> hodor: hi, https://developer.mozilla.org/en-US/docs/Introduction has an introduction and http://www.joshmatthews.net/bugsahoy/ lets you choose bugs and filter them by programming language, project, and if the bug is owned
  1099. # [18:08] <till> hodor: also, #introduction is a good channel, though it might be pretty deserted right now, weekend and all that
  1100. # [18:08] <Archaeopteryx> hodor is already there
  1101. # [18:09] <till> heh
  1102. # [18:09] <till> ah
  1103. # [18:09] <hodor> I know c++, so what would be good for me to start with?
  1104. # [18:09] * Quits: kaze (kaze@moz-j6f.vl2.216.151.IP) (Ping timeout: 121 seconds)
  1105. # [18:10] * Joins: mconley (mconley@moz-96o.754.125.64.IP)
  1106. # [18:13] * Quits: nattokirai (nattokirai@moz-rq9a8e.asahi-net.or.jp) (Client exited)
  1107. # [18:13] * Quits: rednaks (rednaks@moz-5l5.3h3.18.197.IP) (Ping timeout: 121 seconds)
  1108. # [18:14] * Quits: mconley (mconley@moz-96o.754.125.64.IP) (Connection closed)
  1109. # [18:14] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?changeset=37cbadfe1bc1 - 45 changesets
  1110. # [18:15] * Quits: james_ (james@moz-228.5su.218.180.IP) (Ping timeout: 121 seconds)
  1111. # [18:16] * Joins: mconley (mconley@moz-96o.754.125.64.IP)
  1112. # [18:16] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/pushloghtml?changeset=b87805b30385 - 111 changesets
  1113. # [18:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/pushloghtml?changeset=bc0f298ad3ab - 107 changesets
  1114. # [18:25] * Joins: tanner (tanner@moz-vgvnqd.republican)
  1115. # [18:25] * Quits: &dbaron (dbaron@moz-rb4k89.dynamic.fusionbroadband.com) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  1116. # [18:26] * Joins: milan (milan@moz-vpv.gm9.50.70.IP)
  1117. # [18:27] * Parts: hodor (kvirc@moz-qiv.4ro.16.61.IP) ("Once you know what it is you want to be true, instinct is a very useful device for enabling you to know that it is")
  1118. # [18:29] * Joins: kaze (kaze@moz-j6f.vl2.216.151.IP)
  1119. # [18:29] * Joins: rednaks (rednaks@moz-82e.frs.227.41.IP)
  1120. # [18:30] * Joins: dustinm` (dustinm@moz-uqo.ea2.241.192.IP)
  1121. # [18:31] * Quits: milan (milan@moz-vpv.gm9.50.70.IP) (Ping timeout: 121 seconds)
  1122. # [18:32] * Quits: tanner (tanner@moz-vgvnqd.republican) (Changing host)
  1123. # [18:32] * Joins: tanner (tanner@isnt.republican)
  1124. # [18:32] * Joins: junaid (junaid@moz-4nb.bgj.101.212.IP)
  1125. # [18:34] * Joins: smaug (chatzilla@moz-pfg.sse.236.109.IP)
  1126. # [18:34] * killer sets mode: +o smaug
  1127. # [18:35] * Quits: fabrice (fabrice@moz-3oj.il6.198.71.IP) (Quit: Leaving.)
  1128. # [18:36] * Joins: fabrice (fabrice@moz-3oj.il6.198.71.IP)
  1129. # [18:37] * Quits: kaze (kaze@moz-j6f.vl2.216.151.IP) (Ping timeout: 121 seconds)
  1130. # [18:37] * Joins: sankha93 (sankha93@moz-1dk.tvj.227.220.IP)
  1131. # [18:38] * Joins: kaze (kaze@moz-j6f.vl2.216.151.IP)
  1132. # [18:39] * Joins: maxli (maxli@moz-h8kluf.cs.uwaterloo.ca)
  1133. # [18:42] * Joins: jdm (jdm@moz-tj36ct.isp.belgacom.be)
  1134. # [18:42] * Quits: kaze (kaze@moz-j6f.vl2.216.151.IP) (Ping timeout: 121 seconds)
  1135. # [18:43] * Quits: shine (uid50849@moz-5q9ti4.highgate.irccloud.com) (Quit: Connection closed for inactivity)
  1136. # [18:44] * Quits: masayuki (Thunderbird@moz-1gqv2s.zaq.ne.jp) (Client exited)
  1137. # [18:44] * Joins: masayuki (Thunderbird@moz-1gqv2s.zaq.ne.jp)
  1138. # [18:48] <@smaug> anyone recalls if menus-being-placed-incorrectly in non-e10s has been filed?
  1139. # [18:48] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/a2e2e25e3587 - Chris Pearce - Bug 1123535 - Run MediaDecoderReader::ReleaseMediaResources on decode task queue. r=jwwang a=sledru
  1140. # [18:48] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/864660ce7095 - Chris Pearce - Bug 1123535 - Make MP4Reader and WMFMediaDataDecoder support going dormant. r=kentuckyfriedtakahe a=sledru
  1141. # [18:49] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/e41e13cff724 - Chris Pearce - Bug 1123535 - Enable dormant heuristic for MP4Reader. r=kentuckyfriedtakahe a=sledru
  1142. # [18:49] <pulsebot> Check-in: https://hg.mozilla.org/releases/mozilla-aurora/rev/533ac462e0e5 - Chris Pearce - Bug 1123535 - Don't hold decoder monitor while calling PreReadMetadata. r=kentuckyfriedtakahe a=sledru
  1143. # [18:49] * Quits: jviereck1 (Adium@moz-gubd9e.dclient.hispeed.ch) (Quit: Leaving.)
  1144. # [18:49] * Quits: fabrice (fabrice@moz-3oj.il6.198.71.IP) (Quit: Leaving.)
  1145. # [18:51] * Quits: dria (dria@moz-739mdb.dsl.teksavvy.com) (Client exited)
  1146. # [18:53] * Quits: florent (Thunderbird@moz-7vso7m.abo.wanadoo.fr) (Connection closed)
  1147. # [18:55] * Joins: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com)
  1148. # [19:01] <Archaeopteryx> smaug: related to the current status / a regression of bug 1075670?
  1149. # [19:04] * Quits: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com) (Ping timeout: 121 seconds)
  1150. # [19:09] * Joins: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com)
  1151. # [19:12] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/030744f8ef5a - Andrea Marchesini - Bug 1127885 - Console API should display blobs when used in workers, r=smaug
  1152. # [19:14] <@smaug> Archaeopteryx: hmm, that shouldn't have affected non-e10s
  1153. # [19:14] * Quits: ericjung_ (ericjung@moz-pc98ag.7ch4.iin2.0006.2601.IP) (Ping timeout: 121 seconds)
  1154. # [19:17] * Quits: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com) (Client exited)
  1155. # [19:19] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
  1156. # [19:22] * Quits: alexbardas (alexbardas@moz-dir3tf.CV.idilis.net) (A TLS packet with unexpected length was received.)
  1157. # [19:22] * Joins: dria (dria@moz-739mdb.dsl.teksavvy.com)
  1158. # [19:25] * Quits: Rik (rik@moz-luv43d.rev.numericable.fr) (A TLS packet with unexpected length was received.)
  1159. # [19:28] * Joins: milan (milan@moz-vpv.gm9.50.70.IP)
  1160. # [19:28] * Joins: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com)
  1161. # [19:30] <NeilAway> glandium: does @xpidl_rules@ contain dependency information? it looks as if the xpt generation process is duplicating effort, and thus breaking in the rename/delete idl file case
  1162. # [19:31] * Quits: Boriss (Boriss@moz-tk8.nnf.245.162.IP) (Client exited)
  1163. # [19:31] * Joins: Boriss (Boriss@moz-tk8.nnf.245.162.IP)
  1164. # [19:31] * Joins: ddamjano (Instantbird@moz-k883bd.cfl3.oeer.8388.2a02.IP)
  1165. # [19:34] * Quits: milan (milan@moz-vpv.gm9.50.70.IP) (Ping timeout: 121 seconds)
  1166. # [19:35] * Joins: Mnyromyr (Mnyromyr@moz-oa110u.ejss.mv3s.0908.2a02.IP)
  1167. # [19:37] * Quits: ddamjano (Instantbird@moz-k883bd.cfl3.oeer.8388.2a02.IP) (Ping timeout: 121 seconds)
  1168. # [19:38] * Quits: kapy (kapy@moz-vam.lb4.68.182.IP) (Quit: )
  1169. # [19:39] * Joins: ddamjano (Instantbird@moz-givaiq.cfl3.oeer.8388.2a02.IP)
  1170. # [19:42] * Quits: sankha93 (sankha93@moz-1dk.tvj.227.220.IP) (Ping timeout: 121 seconds)
  1171. # [19:43] * Quits: @smaug (chatzilla@moz-pfg.sse.236.109.IP) (Ping timeout: 121 seconds)
  1172. # [19:43] * Quits: ddamjano (Instantbird@moz-givaiq.cfl3.oeer.8388.2a02.IP) (Ping timeout: 121 seconds)
  1173. # [19:44] * Joins: alexbardas (alexbardas@moz-dir3tf.CV.idilis.net)
  1174. # [19:46] * Joins: mkmelin (mkmelin@moz-84rdkg.elisa-laajakaista.fi)
  1175. # [19:46] * Joins: fabrice (fabrice@moz-3oj.il6.198.71.IP)
  1176. # [19:48] * Quits: jdm (jdm@moz-tj36ct.isp.belgacom.be) (Quit: )
  1177. # [19:51] * BenWa|email is now known as BenWa
  1178. # [19:51] * Quits: mixedpuppy (mixedpuppy@moz-608.i2q.170.166.IP) (Client exited)
  1179. # [19:53] * BenWa is now known as BenWa|email
  1180. # [19:54] * Joins: jsx (uid48919@moz-ldeku3.uxbridge.irccloud.com)
  1181. # [19:54] * Joins: bnicholson (bnicholson@moz-olu.vgl.130.24.IP)
  1182. # [19:55] * Quits: hobinjk (hobinjk@moz-vfphq1.mit.edu) (Ping timeout: 121 seconds)
  1183. # [19:55] * Joins: hobinjk (hobinjk@moz-vfphq1.mit.edu)
  1184. # [19:57] * Joins: dbaron (dbaron@moz-rb4k89.dynamic.fusionbroadband.com)
  1185. # [19:57] * killer sets mode: +ao dbaron dbaron
  1186. # [19:59] * mattwoodrow|away is now known as mattwoodrow
  1187. # [20:00] * Joins: Rik (rik@moz-luv43d.rev.numericable.fr)
  1188. # [20:01] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/012da03f6655 - L. David Baron - Bug 891347 - Make bug 385526 crashtest appropriate for use in the reftest/crashtest harness. r=mats
  1189. # [20:01] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/c469b23c542e - L. David Baron - Bug 1106755 - Make more overflow area computation code apply only to floating ::first-letter. r=jfkthame
  1190. # [20:04] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Connection closed)
  1191. # [20:06] * darkowlzz|afk is now known as darkowlzz
  1192. # [20:07] * Joins: bbondy (bbondy@moz-hchicl.home4.cgocable.net)
  1193. # [20:11] * darkowlzz is now known as darkowlzz|afk
  1194. # [20:13] <pulsebot> Check-in: https://hg.mozilla.org/integration/b2g-inbound/rev/22e21fde8e18 - Markus Nilsson - Bug 1084505 - Fix explicit permission lookup for trusted hosted apps r=fabrice
  1195. # [20:17] * Joins: mwargers (mwargers@moz-t02btv.ip.telfort.nl)
  1196. # [20:17] * Quits: ProgramFOX (ProgramFOX@moz-ta8.dp1.176.91.IP) (Quit: ChatZilla 0.9.91.1 [Firefox 35.0.1/20150122214805])
  1197. # [20:18] * Joins: dveditz (dveditz@moz-dgbov2.ca.comcast.net)
  1198. # [20:18] * killer sets mode: +o dveditz
  1199. # [20:18] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/e5c0911f112b - Brian Hackett - Bug 1116855 - Various fixes and VM changes for JIT'ing unboxed objects, r=jandem.
  1200. # [20:21] * Joins: Snuffleupagus (chatzilla@moz-5hgc5j.bredband.comhem.se)
  1201. # [20:21] * Quits: mwargers (mwargers@moz-t02btv.ip.telfort.nl) (Ping timeout: 121 seconds)
  1202. # [20:21] * Joins: capella-s3 (capella-s3@moz-a6lqme.res.rr.com)
  1203. # [20:25] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
  1204. # [20:25] * Quits: Rik (rik@moz-luv43d.rev.numericable.fr) (A TLS packet with unexpected length was received.)
  1205. # [20:29] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
  1206. # [20:30] * Joins: milan (milan@moz-vpv.gm9.50.70.IP)
  1207. # [20:31] * Quits: darklord (darklord@moz-9i1.k6o.139.14.IP) (Quit: Leaving)
  1208. # [20:32] * Joins: bdahl (bdahl@moz-hp7huo.dynamic.fusionbroadband.com)
  1209. # [20:35] * Parts: marco (marco@moz-rf50lb.retail.telecomitalia.it) ("")
  1210. # [20:35] * Joins: ericjung_ (ericjung@moz-h2a.9hc.161.107.IP)
  1211. # [20:39] * Joins: jviereck (Adium@moz-pqri8u.dclient.hispeed.ch)
  1212. # [20:41] * Quits: jviereck (Adium@moz-pqri8u.dclient.hispeed.ch) (Quit: Leaving.)
  1213. # [20:41] * bc is now known as bc|afk
  1214. # [20:43] * Quits: Archaeopteryx (Archaeopter@moz-6hnogj.cust.telecolumbus.net) (Quit: Goodbye)
  1215. # [20:46] * Joins: mt_ (mt@moz-q5mdp9.ca.comcast.net)
  1216. # [20:47] * Joins: myk (myk@moz-1nu6fg.dynamic.fusionbroadband.com)
  1217. # [20:48] <philor> baku|away: hazard bustage
  1218. # [20:51] * Joins: tomer (tomer@moz-uce.mlf.142.37.IP)
  1219. # [20:52] * Joins: jviereck (Adium@moz-pqri8u.dclient.hispeed.ch)
  1220. # [20:52] * Joins: drno (nohlmeier@moz-ec0bb5.ca.comcast.net)
  1221. # [20:54] * Quits: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com) (Client exited)
  1222. # [20:55] * Quits: mmatyas (mmatyas@moz-mf5q0b.inf.u-szeged.hu) (Connection closed)
  1223. # [20:55] * Joins: mmatyas (mmatyas@moz-mf5q0b.inf.u-szeged.hu)
  1224. # [20:58] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
  1225. # [21:06] * Joins: mib_9o1yq8 (Mibbit@moz-su2.956.192.117.IP)
  1226. # [21:07] * Quits: mt_ (mt@moz-q5mdp9.ca.comcast.net) (Quit: Leaving.)
  1227. # [21:07] * mattwoodrow is now known as mattwoodrow|away
  1228. # [21:08] <pulsebot> Check-in: https://hg.mozilla.org/integration/mozilla-inbound/rev/0674270dedae - Phil Ringnalda - Back out 030744f8ef5a (bug 1127885) for hazard bustage
  1229. # [21:14] * Joins: mmatyas_ (mmatyas@moz-mf5q0b.inf.u-szeged.hu)
  1230. # [21:14] * Quits: mmatyas (mmatyas@moz-mf5q0b.inf.u-szeged.hu) (Connection closed)
  1231. # [21:14] * Quits: milan (milan@moz-vpv.gm9.50.70.IP) (Connection closed)
  1232. # [21:16] * Joins: kgrandon (Adium@moz-l8e1ui.ca.comcast.net)
  1233. # [21:17] * Quits: mmatyas_ (mmatyas@moz-mf5q0b.inf.u-szeged.hu) (Connection closed)
  1234. # [21:17] * Joins: mmatyas_ (mmatyas@moz-mf5q0b.inf.u-szeged.hu)
  1235. # [21:18] * Joins: Ms2ger (Ms2ger@moz-180.qfb.180.91.IP)
  1236. # [21:18] * AutomatedTester|AFK is now known as AutomatedTester
  1237. # [21:20] * Quits: ericjung_ (ericjung@moz-h2a.9hc.161.107.IP) (Ping timeout: 121 seconds)
  1238. # [21:21] * Quits: alexbardas (alexbardas@moz-dir3tf.CV.idilis.net) (A TLS packet with unexpected length was received.)
  1239. # [21:22] * Joins: Delta706 (xx@moz-eo9gj3.as13285.net)
  1240. # [21:23] * Parts: Delta706 (xx@moz-eo9gj3.as13285.net)
  1241. # [21:24] * mattwoodrow|away is now known as mattwoodrow
  1242. # [21:24] * Joins: mwargers (mwargers@moz-t02btv.ip.telfort.nl)
  1243. # [21:26] * Joins: alexbardas (alexbardas@moz-188jub.CV.idilis.net)
  1244. # [21:30] * Quits: Matti_away (Matti@moz-s9n9qr.iip5.7epi.4dd0.2001.IP) (Quit: Quit)
  1245. # [21:30] * Quits: reed (reed@tech.monkey) (RecvQ exceeded)
  1246. # [21:31] * Joins: reed (reed@tech.monkey)
  1247. # [21:32] * Quits: kgrandon (Adium@moz-l8e1ui.ca.comcast.net) (Quit: Leaving.)
  1248. # [21:33] * Joins: Matti (Matti@moz-h9flo2.dip0.t-ipconnect.de)
  1249. # [21:33] * Quits: alexbardas (alexbardas@moz-188jub.CV.idilis.net) (A TLS packet with unexpected length was received.)
  1250. # [21:36] * Joins: Rik (rik@moz-luv43d.rev.numericable.fr)
  1251. # [21:36] * Quits: Matti (Matti@moz-h9flo2.dip0.t-ipconnect.de) (Quit: Quit)
  1252. # [21:38] * Joins: Matti (Matti@moz-nuth80.dip0.t-ipconnect.de)
  1253. # [21:39] * Quits: mib_9o1yq8 (Mibbit@moz-su2.956.192.117.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1254. # [21:40] * Quits: Rik (rik@moz-luv43d.rev.numericable.fr) (Ping timeout: 121 seconds)
  1255. # [21:42] * Quits: Matti (Matti@moz-nuth80.dip0.t-ipconnect.de) (Ping timeout: 121 seconds)
  1256. # [21:44] * Quits: jviereck (Adium@moz-pqri8u.dclient.hispeed.ch) (Quit: Leaving.)
  1257. # [21:45] * Joins: amoghbl1 (Thunderbird@moz-9i1.k6o.139.14.IP)
  1258. # [21:46] * mattwoodrow is now known as mattwoodrow|away
  1259. # [21:48] * Joins: Matti_away (Matti@moz-gv5kmb.dip0.t-ipconnect.de)
  1260. # [21:48] * Matti_away is now known as Matti
  1261. # [21:48] * Joins: jviereck (Adium@moz-gubd9e.dclient.hispeed.ch)
  1262. # [21:55] * Quits: Ms2ger (Ms2ger@moz-180.qfb.180.91.IP) (Ping timeout: 121 seconds)
  1263. # [21:58] * Quits: ckitching (ckitching@moz-cbggqe.cable.virginm.net) (A TLS packet with unexpected length was received.)
  1264. # [22:00] * Quits: maxli (maxli@moz-h8kluf.cs.uwaterloo.ca) (Quit: Leaving.)
  1265. # [22:00] * Quits: Jackneill (Jackneill@moz-irj3sc.pool.digikabel.hu) (Ping timeout: 121 seconds)
  1266. # [22:02] * Joins: mixedpuppy (mixedpuppy@moz-608.i2q.170.166.IP)
  1267. # [22:03] * Quits: mixedpuppy (mixedpuppy@moz-608.i2q.170.166.IP) (Client exited)
  1268. # [22:03] * Quits: Matti (Matti@moz-gv5kmb.dip0.t-ipconnect.de) (Quit: Quit)
  1269. # [22:05] * Quits: Boriss (Boriss@moz-tk8.nnf.245.162.IP) (Client exited)
  1270. # [22:05] * Joins: paolo (paolo@moz-74a.0nt.218.207.IP)
  1271. # [22:05] * Joins: Matti (Matti@moz-a8j44j.dip0.t-ipconnect.de)
  1272. # [22:06] * Quits: Snuffleupagus (chatzilla@moz-5hgc5j.bredband.comhem.se) (Quit: ChatZilla 0.9.91-rdmsoft [XULRunner 32.0.3/20140923175406])
  1273. # [22:08] * Joins: jviereck1 (Adium@moz-gubd9e.dclient.hispeed.ch)
  1274. # [22:09] * Quits: jviereck (Adium@moz-gubd9e.dclient.hispeed.ch) (Connection closed)
  1275. # [22:11] * Quits: rednaks (rednaks@moz-82e.frs.227.41.IP) (Ping timeout: 121 seconds)
  1276. # [22:12] * Joins: DGMurdockIII (dgmurdockii@moz-gehpof.in.comcast.net)
  1277. # [22:13] * Quits: myk (myk@moz-1nu6fg.dynamic.fusionbroadband.com) (Quit: Instantbird 1.6a1pre -- http://www.instantbird.com)
  1278. # [22:16] * Joins: kgrandon (Adium@moz-l8e1ui.ca.comcast.net)
  1279. # [22:18] * merike is now known as merike|away
  1280. # [22:20] * Joins: myk (myk@moz-1nu6fg.dynamic.fusionbroadband.com)
  1281. # [22:23] * Quits: tomer (tomer@moz-uce.mlf.142.37.IP) (Ping timeout: 121 seconds)
  1282. # [22:24] * Quits: myk (myk@moz-1nu6fg.dynamic.fusionbroadband.com) (Ping timeout: 121 seconds)
  1283. # [22:25] * Joins: victorporof (victorporof@moz-42f97s.dsl.bell.ca)
  1284. # [22:25] * Joins: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com)
  1285. # [22:25] * Quits: bdahl (bdahl@moz-hp7huo.dynamic.fusionbroadband.com) (A TLS packet with unexpected length was received.)
  1286. # [22:27] * Joins: rednaks (rednaks@moz-5l5.3h3.18.197.IP)
  1287. # [22:29] * Joins: Snuffleupagus (chatzilla@moz-5hgc5j.bredband.comhem.se)
  1288. # [22:30] <pulsebot> Check-in: https://hg.mozilla.org/integration/fx-team/rev/a569f5a4bb6a - Paolo Amadini - Bug 1128203 - Reduce indentation from 4 to 2 spaces. rs=dolske DONTBUILD CLOSED TREE
  1289. # [22:31] * Joins: mt_ (mt@moz-q5mdp9.ca.comcast.net)
  1290. # [22:34] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
  1291. # [22:34] * Quits: ahunt_ (ahunt@moz-hq8kb0.cam.ac.uk) (Ping timeout: 121 seconds)
  1292. # [22:39] * Quits: hobinjk (hobinjk@moz-vfphq1.mit.edu) (Ping timeout: 121 seconds)
  1293. # [22:40] * Quits: mt_ (mt@moz-q5mdp9.ca.comcast.net) (Quit: Leaving.)
  1294. # [22:45] * Joins: hobinjk (hobinjk@moz-vfphq1.mit.edu)
  1295. # [22:47] * Quits: &dbaron (dbaron@moz-rb4k89.dynamic.fusionbroadband.com) (Quit: 8403864 bytes have been tenured, next gc will be global.)
  1296. # [22:49] * Quits: bbondy (bbondy@moz-hchicl.home4.cgocable.net) (Connection closed)
  1297. # [22:51] * Quits: hobinjk (hobinjk@moz-vfphq1.mit.edu) (Ping timeout: 121 seconds)
  1298. # [22:51] * Joins: alexbardas (alexbardas@moz-188jub.CV.idilis.net)
  1299. # [22:52] * Joins: hobinjk (hobinjk@moz-vfphq1.mit.edu)
  1300. # [22:53] * Joins: ddamjano (Instantbird@moz-o2uc1e.cfl3.oeer.8388.2a02.IP)
  1301. # [22:53] * Joins: dbaron (dbaron@moz-rb4k89.dynamic.fusionbroadband.com)
  1302. # [22:53] * killer sets mode: +ao dbaron dbaron
  1303. # [22:55] * Quits: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com) (Ping timeout: 121 seconds)
  1304. # [22:57] * Joins: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu)
  1305. # [22:59] * Quits: mkmelin (mkmelin@moz-84rdkg.elisa-laajakaista.fi) (Ping timeout: 121 seconds)
  1306. # [23:00] * Joins: maxli (maxli@moz-favcmk.cs.uwaterloo.ca)
  1307. # [23:01] * Joins: dholbert (dholbert@moz-pnm275.static.fusionbroadband.com)
  1308. # [23:02] * Quits: ericjung__ (ericjung@moz-ara9ac.7ch4.iin2.0006.2601.IP) (Quit: Leaving)
  1309. # [23:03] * AutomatedTester is now known as AutomatedTester|AFK
  1310. # [23:06] * Joins: jdm (jdm@moz-tj36ct.isp.belgacom.be)
  1311. # [23:10] * Joins: wkn (Mibbit@moz-hrlfn3.dynamic.chello.pl)
  1312. # [23:13] * Joins: ericjung__ (ericjung@moz-ara9ac.7ch4.iin2.0006.2601.IP)
  1313. # [23:13] * Quits: hobinjk (hobinjk@moz-vfphq1.mit.edu) (Ping timeout: 121 seconds)
  1314. # [23:15] * Quits: alexbardas (alexbardas@moz-188jub.CV.idilis.net) (A TLS packet with unexpected length was received.)
  1315. # [23:16] * Joins: loveless (loveless@moz-fb4.mg6.56.172.IP)
  1316. # [23:16] * Quits: badescunicu (Thunderbird@moz-873.cnc.118.79.IP) (Connection closed)
  1317. # [23:16] * Joins: hobinjk (hobinjk@moz-vfphq1.mit.edu)
  1318. # [23:18] * Joins: Snuffleupagus_ (chatzilla@moz-5hgc5j.bredband.comhem.se)
  1319. # [23:19] * mattwoodrow|away is now known as mattwoodrow
  1320. # [23:19] * Quits: Snuffleupagus (chatzilla@moz-5hgc5j.bredband.comhem.se) (Ping timeout: 121 seconds)
  1321. # [23:19] * Snuffleupagus_ is now known as Snuffleupagus
  1322. # [23:21] * Quits: jsx (uid48919@moz-ldeku3.uxbridge.irccloud.com) (Quit: Connection closed for inactivity)
  1323. # [23:22] * Quits: hobinjk (hobinjk@moz-vfphq1.mit.edu) (Ping timeout: 121 seconds)
  1324. # [23:22] * Joins: hobinjk (hobinjk@moz-vfphq1.mit.edu)
  1325. # [23:23] * Quits: Shrooms (Shrooms@moz-pnkrra.ip.windstream.net) (Ping timeout: 121 seconds)
  1326. # [23:24] * Parts: Snuffleupagus (chatzilla@moz-5hgc5j.bredband.comhem.se) ("")
  1327. # [23:24] * Joins: myk (myk@moz-qqv.tdl.56.172.IP)
  1328. # [23:25] * Joins: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net)
  1329. # [23:27] * Quits: paolo (paolo@moz-74a.0nt.218.207.IP) (Quit: Konversation terminated!)
  1330. # [23:28] * Joins: smontagu (chatzilla@moz-ap9qjm.red.bezeqint.net)
  1331. # [23:29] * Joins: Rik (rik@moz-luv43d.rev.numericable.fr)
  1332. # [23:29] * mattwoodrow is now known as mattwoodrow|away
  1333. # [23:29] * Joins: jkitch (Thunderbird@moz-dqatn9.k4n0.vhij.44b8.2001.IP)
  1334. # [23:29] * Quits: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
  1335. # [23:29] * Quits: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu) (Ping timeout: 121 seconds)
  1336. # [23:30] * Joins: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu)
  1337. # [23:31] * Quits: hobinjk (hobinjk@moz-vfphq1.mit.edu) (Ping timeout: 121 seconds)
  1338. # [23:32] * Joins: hobinjk (hobinjk@moz-vfphq1.mit.edu)
  1339. # [23:32] * Joins: nrc (nrc@moz-qetuu1.xtra.co.nz)
  1340. # [23:34] * Quits: smontagu (chatzilla@moz-ap9qjm.red.bezeqint.net) (Ping timeout: 121 seconds)
  1341. # [23:35] * Quits: maxli (maxli@moz-favcmk.cs.uwaterloo.ca) (Quit: Leaving.)
  1342. # [23:37] * Quits: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu) (Ping timeout: 121 seconds)
  1343. # [23:38] * Joins: kaie (kaie@moz-h467v6.de)
  1344. # [23:39] * Joins: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu)
  1345. # [23:39] <kaie> in 2011 I created webm videos using ffmpeg, which at that time had worked fine in Firefox. They no longer work. Videos that I create today using ffmpeg don't play either.
  1346. # [23:39] <kaie> Are you aware this broke?
  1347. # [23:40] <kaie> e.g. http://video.fosdem.org/2011/devrooms/mozilla/mozilla_sun1300__fighting_i_o__hommey.webm
  1348. # [23:40] * Quits: nrc (nrc@moz-qetuu1.xtra.co.nz) (Ping timeout: 121 seconds)
  1349. # [23:41] * Quits: mwargers (mwargers@moz-t02btv.ip.telfort.nl) (Connection closed)
  1350. # [23:41] * Quits: junaid (junaid@moz-4nb.bgj.101.212.IP) (Ping timeout: 121 seconds)
  1351. # [23:41] <kaie> in firefox 17 video works, but audio doesn't (audio works in latest ff) - strange world :-( --- I wish I knew ffmpeg settings that worked in all firefox versions, but cannot find good info
  1352. # [23:42] * Joins: smaug (chatzilla@moz-c8d.sse.236.109.IP)
  1353. # [23:42] * killer sets mode: +o smaug
  1354. # [23:42] * Joins: alexbardas (alexbardas@moz-188jub.CV.idilis.net)
  1355. # [23:42] * Quits: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu) (A TLS packet with unexpected length was received.)
  1356. # [23:44] * Quits: lizzard (ehenry@moz-ueqta1.static.fusionbroadband.com) (Client exited)
  1357. # [23:44] * Quits: dark-knight (dark-knight@moz-n8lug9.cloudexit.eu) (A TLS packet with unexpected length was received.)
  1358. # [23:44] <kaie> please ignore my comments. Must be something with my addons. Videos work fine in Firefox 35 with a default profile.
  1359. # [23:45] * Quits: hobinjk (hobinjk@moz-vfphq1.mit.edu) (Ping timeout: 121 seconds)
  1360. # [23:46] * Joins: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu)
  1361. # [23:46] * Joins: mwargers (mwargers@moz-t02btv.ip.telfort.nl)
  1362. # [23:47] * Joins: hobinjk (hobinjk@moz-vfphq1.mit.edu)
  1363. # [23:48] * Quits: mwargers (mwargers@moz-t02btv.ip.telfort.nl) (Connection closed)
  1364. # [23:48] * Joins: mwargers_ (mwargers@moz-t02btv.ip.telfort.nl)
  1365. # [23:49] * Quits: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu) (A TLS packet with unexpected length was received.)
  1366. # [23:50] * Quits: mwargers_ (mwargers@moz-t02btv.ip.telfort.nl) (Connection closed)
  1367. # [23:50] * Joins: mwargers (mwargers@moz-t02btv.ip.telfort.nl)
  1368. # [23:52] * Quits: mwargers (mwargers@moz-t02btv.ip.telfort.nl) (Connection closed)
  1369. # [23:53] * Joins: mwargers (mwargers@moz-t02btv.ip.telfort.nl)
  1370. # [23:54] * Quits: mwargers (mwargers@moz-t02btv.ip.telfort.nl) (Connection closed)
  1371. # [23:54] * Joins: mwargers (mwargers@moz-t02btv.ip.telfort.nl)
  1372. # [23:55] * Quits: mwargers (mwargers@moz-t02btv.ip.telfort.nl) (Connection closed)
  1373. # [23:55] * Joins: mwargers (mwargers@moz-t02btv.ip.telfort.nl)
  1374. # [23:56] * Quits: loveless (loveless@moz-fb4.mg6.56.172.IP) (Quit: Leaving...)
  1375. # [23:57] * Joins: flo-retina (Instantbird@moz-frdf7e.ip-37-59-48.eu)
  1376. # [23:59] * Quits: mwargers (mwargers@moz-t02btv.ip.telfort.nl) (Ping timeout: 121 seconds)
  1377. # Session Close: Sun Feb 01 00:00:00 2015

Previous day, Next day

Think these logs are useful? Then please donate to show your gratitude (and keep them up, of course). Thanks! — Krijn