/irc-logs / mozilla / #developers / 2013-07-21 / end

Options:

  1. # Session Start: Sun Jul 21 00:00:00 2013
  2. # Session Ident: #developers
  3. # [00:00] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Ping timeout)
  4. # [00:01] * Joins: jduell (jduell@moz-E765EB2E.hsd1.wa.comcast.net)
  5. # [00:01] * Quits: merike|away (merike@moz-E3E96EB7.cable.starman.ee) (Ping timeout)
  6. # [00:01] * Joins: tmyoung (Thunderbir@moz-A52EE408.alyoung.com)
  7. # [00:02] * Joins: merike|away (merike@moz-E3E96EB7.cable.starman.ee)
  8. # [00:02] * Quits: @bz_sleep (bzbarsky@moz-A28C5395.bstnma.fios.verizon.net) (Ping timeout)
  9. # [00:02] <Mossop> mjrosenb: It might be that you need to run the full set rather than just the directory. It might be that the crash only happens on the build slave hardware. It might be that the crash only occurs one in 200 times. All kinds of reasons why you may not see the same results locally
  10. # [00:02] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
  11. # [00:02] * merike|away is now known as merike
  12. # [00:07] * Quits: jib (Jan-Ivar@moz-C1D3F8C.hsd1.ma.comcast.net) (Quit: jib)
  13. # [00:07] * Quits: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net) (Quit: ekr)
  14. # [00:12] * Quits: givanica (givanica@757D2793.251E5D55.FB866788.IP) (Connection reset by peer)
  15. # [00:12] * Quits: capella (chatzilla@moz-8F413D10.twcny.res.rr.com) (Ping timeout)
  16. # [00:14] * Joins: capella (chatzilla@moz-8F413D10.twcny.res.rr.com)
  17. # [00:15] * Quits: ckitching (ckitching@moz-329F29A3.lightspeed.sntcca.sbcglobal.net) (Connection reset by peer)
  18. # [00:16] * Joins: ckitching (ckitching@moz-329F29A3.lightspeed.sntcca.sbcglobal.net)
  19. # [00:20] <@smaug> !seen bsmith
  20. # [00:20] <@killer> I don't know who bsmith is.
  21. # [00:20] <firebot> bsmith was last seen 2 weeks, 1 day, 21 hours, 2 minutes and 20 seconds ago, changing nick to briansmith.
  22. # [00:20] <@smaug> briansmith: ping
  23. # [00:21] <briansmith> smaug: ping
  24. # [00:21] <@smaug> briansmith: are you familiar with nsNSSASN1Sequence ?
  25. # [00:21] <@smaug> I'm trying to figure out what to do with Bug 892588
  26. # [00:22] <@smaug> I think the problem comes from the insanity of nsI*Array
  27. # [00:23] * Joins: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net)
  28. # [00:24] <@smaug> if ASN1Objects is first used in main thread, and then in another thread, or if nsNSSASN1Sequence gets deleted in non-main-thread then, deletion of ASN1Objects may not work, since it is possibly main thread only
  29. # [00:24] <@smaug> but if it is main thread only, even accessing GetASN1Objects in non-main-thread may cause crashes
  30. # [00:25] * Joins: Asa (asa@moz-B5ECF169.ptr.us.xo.net)
  31. # [00:27] <briansmith> smaug: perhaps we can just tell Cert Patrol to stop using it
  32. # [00:27] <briansmith> literally nothing has changed in the nsIASN* code in a long time, AFAICT
  33. # [00:28] <@smaug> right
  34. # [00:28] <briansmith> and literally nothing in security/manager even deals with the cycle collector
  35. # [00:28] <@smaug> yup
  36. # [00:28] <@smaug> we should just use non-CCable stuff there
  37. # [00:29] <@smaug> but because of some old insanity nsIMutableArray may or may not be cycle collectable
  38. # [00:29] <@smaug> and if it is, one should use it in main thread only
  39. # [00:29] * Joins: JosiahOne (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net)
  40. # [00:30] * Quits: maxli (maxli@B5559308.9C54E60.2FA4EA88.IP) (Quit: Leaving.)
  41. # [00:30] <@smaug> briansmith: I'd like to force use of non-CC-able nsIMutableArray there
  42. # [00:31] <@smaug> briansmith: would you object if nsNSSASN1Sequence::SetASN1Objects would just copy items from aASN1Objects to a new nsIMutableArray, which isn't CCable
  43. # [00:31] * Quits: tonymec (tonymec@moz-D801653C.adsl-dyn.isp.belgacom.be) (Ping timeout)
  44. # [00:31] <@smaug> and nsNSSASN1Sequence::GetASN1Objects would create non-CCable, if there isn't mASN1Objects yet
  45. # [00:32] <briansmith> Sorry for my ignorance here, but how do we distinguish between what will be non-CCable and what will be CCable?
  46. # [00:32] <@smaug> with nsIMutableArray it is hard currently
  47. # [00:33] * Quits: tmyoung (Thunderbir@moz-A52EE408.alyoung.com) (Input/output error)
  48. # [00:33] * Quits: tonymec|away (tonymec@moz-D801653C.adsl-dyn.isp.belgacom.be) (Ping timeout)
  49. # [00:33] <@smaug> by default nsIMutableArray created in the main thread is CCable
  50. # [00:33] <@smaug> (it has the refcnt of an CCable object)
  51. # [00:33] * Joins: cers (csonne@3B6BDCDF.47275860.8B3CB80E.IP)
  52. # [00:33] <@smaug> (and has different AddRef and Release implementation comparing to non-cc-able object)
  53. # [00:33] <briansmith> How about we just remove nsIASN*
  54. # [00:34] * Joins: tonymec (tonymec@moz-D801653C.adsl-dyn.isp.belgacom.be)
  55. # [00:34] * Joins: tonymec|away (tonymec@moz-D801653C.adsl-dyn.isp.belgacom.be)
  56. # [00:34] * Quits: capella (chatzilla@moz-8F413D10.twcny.res.rr.com) (Ping timeout)
  57. # [00:35] <briansmith> In Gecko, I don't see anywhere where we deal with nsIASN* off the main thread.
  58. # [00:35] * Joins: capella (chatzilla@moz-8F413D10.twcny.res.rr.com)
  59. # [00:35] <briansmith> Is the issue that the addon is perhaps dealing with nsIASN* off the main thread and that is causing problems, or these problems can happen even if everything is on the main thread?
  60. # [00:36] <briansmith> Keep in mind that the entire purpose of nsIASN* is to show the tree view in the certificate viewer "details" tab.
  61. # [00:36] <@smaug> briansmith: I think Bug 892588 means that we're deleting nsNSSASN1Sequence off-main-thread
  62. # [00:38] * Joins: Lan (allan@wirth.xxx)
  63. # [00:38] <@smaug> briansmith: hmm, I think the simplest fix is to make http://mxr.mozilla.org/mozilla-central/source/security/manager/ssl/public/nsIASN1Sequence.idl#41 readonly and force nsNSSASN1Sequence to create an nsIMutableArray which isn't ccable
  64. # [00:38] <@smaug> then one can access it from any thread
  65. # [00:38] <briansmith> oh, hold on
  66. # [00:38] * Joins: smooney (sheilamoon@moz-FC1ADCB.dsl.bell.ca)
  67. # [00:39] * @smaug doesn't see any case we're calling SetASN1Objects
  68. # [00:39] <briansmith> I see nsCOMPtr<nsIASN1Object> mASN1Structure in nsNSSCertificate;
  69. # [00:39] <@smaug> just GetASN1Objects and then we append to the result
  70. # [00:39] <briansmith> and that is something that does get dealt with off the main thread
  71. # [00:39] <briansmith> Perhaps the simplest fix is to simply get rid of nsNSSCertificate::mASN1Structure;
  72. # [00:40] <@smaug> and then perhaps make nsNSSASN1Sequence's refcounting non-thread safe?
  73. # [00:40] <Lan> is this the right place to ask questions about firefox UI development?
  74. # [00:40] <briansmith> smaug: yes.
  75. # [00:40] <briansmith> See, the only reason that nsNSSCertificate has that reference is to cache the tree structure
  76. # [00:40] <briansmith> but, actually, that is bad
  77. # [00:40] <briansmith> it means that we'll leak that tree structure until shutdown
  78. # [00:41] <briansmith> if you ever view the cert
  79. # [00:41] <briansmith> Lan: #fx-team might be a better place
  80. # [00:42] <Lan> briansmith: thanks, I'll try there
  81. # [00:43] <@smaug> briansmith: ah, so http://mxr.mozilla.org/mozilla-central/source/security/manager/ssl/src/nsNSSCertHelper.cpp#2113 should just return nsIASN1Sequence, but not actually store the result in a member variable
  82. # [00:44] <briansmith> yes, exactly
  83. # [00:44] * Parts: nhnt11 (Instantbir@D40D3E6F.A8460E3F.2A068A5E.IP)
  84. # [00:44] <@smaug> ok, I'll write a patch
  85. # [00:44] * Joins: marco (mozilla@moz-A7CDB794.dia.static.qwest.net)
  86. # [00:44] <@smaug> briansmith: I assume you're the right person to review this ?
  87. # [00:44] * Parts: Lan (allan@wirth.xxx)
  88. # [00:45] <briansmith> smaug: I would be a reasonable reviewer, I think
  89. # [00:45] * Joins: Honza (chatzilla@F8BF899B.23B79DE4.D0083327.IP)
  90. # [00:45] <briansmith> Please change all the _THREADSAFE_* to non-_THREADSAFE_
  91. # [00:45] <@smaug> k
  92. # [00:52] * Quits: sfink (chatzilla@moz-B96B23B.dsl.pltn13.sbcglobal.net) (Client exited)
  93. # [00:55] * Joins: maxli (maxli@B5559308.9C54E60.2FA4EA88.IP)
  94. # [00:57] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  95. # [00:57] <NeilAway> what's the minimum you need in a folder apart from jar.mn?
  96. # [00:59] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  97. # [01:00] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  98. # [01:01] * Quits: marco (mozilla@moz-A7CDB794.dia.static.qwest.net) (Connection reset by peer)
  99. # [01:01] * Quits: smooney (sheilamoon@moz-FC1ADCB.dsl.bell.ca) (Quit: smooney)
  100. # [01:02] * Joins: smooney (sheilamoon@moz-FC1ADCB.dsl.bell.ca)
  101. # [01:03] * Quits: Asa (asa@moz-B5ECF169.ptr.us.xo.net) (Ping timeout)
  102. # [01:04] * Joins: marco (mozilla@moz-A7CDB794.dia.static.qwest.net)
  103. # [01:04] * Quits: pbocan (Thunderbir@moz-F9BEFCB0.bsa.slovanet.sk) (Quit: pbocan)
  104. # [01:06] * Joins: mmargoliono (min@moz-9DBD522D.static.internode.on.net)
  105. # [01:06] * Joins: bajaj (Adium@moz-C8BA7EB5.hsd1.ca.comcast.net)
  106. # [01:07] <jcranmer> someone's going to bitrot my massive patch :-(
  107. # [01:07] * jcranmer was surprised the last update had no merge conflicts
  108. # [01:07] * Quits: guestish (guestish@43D1A8B7.DDA28EE9.6654B540.IP) (Quit: Leaving)
  109. # [01:08] <JosiahOne> jcranmer: Better land it soon then...
  110. # [01:08] * Joins: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net)
  111. # [01:09] <jcranmer> JosiahOne: I need one reviewer who won't be back until monday
  112. # [01:09] <jcranmer> oh, and bsmedberg-away
  113. # [01:11] <JosiahOne> jcranmer: Shame. I'd be amazed if it wasn't botrotted by then.
  114. # [01:12] <JosiahOne> Heh, botrotted.
  115. # [01:12] <JosiahOne> bitrotted too.
  116. # [01:15] * Quits: sfoster (sfoster@moz-D30056A1.hsd1.or.comcast.net) (Connection reset by peer)
  117. # [01:16] * Joins: sfoster (sfoster@moz-D30056A1.hsd1.or.comcast.net)
  118. # [01:18] * Joins: the_wanderer (wanderer@moz-6106ECBB.hfc.comcastbusiness.net)
  119. # [01:21] * Joins: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net)
  120. # [01:21] * Quits: JosiahOne (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net) (Quit: [self dealloc];)
  121. # [01:22] * Quits: squeakytoy (christoffe@moz-79070305.dynamic.se.alltele.net) (Ping timeout)
  122. # [01:23] <mjrosenb> Mossop: how do I run the full set?
  123. # [01:24] * Quits: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net) (Connection reset by peer)
  124. # [01:25] * Joins: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net)
  125. # [01:25] <briansmith> smaug: Are you sure you have the right bug number?
  126. # [01:26] <briansmith> bug 480509?
  127. # [01:27] <@smaug> briansmith: I took it from the mochitest
  128. # [01:27] * Quits: rnewman (rich_holyg@moz-DB4A9C19.scl3.mozilla.com) (Ping timeout)
  129. # [01:27] <@smaug> also the test for bug 483440 breaks
  130. # [01:30] <@smaug> briansmith: oh, I need to set the retval earlier..
  131. # [01:30] <@smaug> something doesn't seem to care about the nsresult retval
  132. # [01:30] <@smaug> ok, new patch coming, it should keep the old behavior
  133. # [01:33] * Joins: rnewman (rich_holyg@moz-DB4A9C19.scl3.mozilla.com)
  134. # [01:34] * Joins: mmc|laptop (mchew@moz-BBC0C7F1.hsd1.ca.comcast.net)
  135. # [01:36] * Joins: ehugg (ehugg@moz-44D86B1E.cisco.com)
  136. # [01:37] * Quits: mmc|laptop (mchew@moz-BBC0C7F1.hsd1.ca.comcast.net) (Quit: mmc|laptop)
  137. # [01:40] * Joins: stux (stux@3FAD86E7.C9167A9F.37339E3A.IP)
  138. # [01:42] <Mossop> mjrosenb: The test log from tinderbox should show the command lines, otherwise look at https://developer.mozilla.org/en-US/docs/Mochitest
  139. # [01:43] * Quits: ehugg (ehugg@moz-44D86B1E.cisco.com) (Quit: ehugg)
  140. # [01:43] * jcranmer is now known as jcranmer|away
  141. # [01:43] * Joins: gwagner (Gregor@moz-B8B530C2.hsd1.ca.comcast.net)
  142. # [01:44] * Joins: jib (Jan-Ivar@moz-C1D3F8C.hsd1.ma.comcast.net)
  143. # [01:44] * Quits: jib (Jan-Ivar@moz-C1D3F8C.hsd1.ma.comcast.net) (Quit: jib)
  144. # [01:45] * Quits: RealRaven (Thunderbir@7B02DA30.94AD4949.C3498625.IP) (Ping timeout)
  145. # [01:48] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  146. # [01:48] <mjrosenb> Mossop: are they not run with 'make mochitest-remote'?
  147. # [01:48] <Mossop> Depends on the kind of mochitest you're talking about specifically
  148. # [01:49] <Mossop> Not sure what mochitest-remote is, I think android stuff
  149. # [01:49] <mjrosenb> odd, the string 'mochitest-remote' doesn't exist in the log file.
  150. # [01:49] * Joins: RealRaven (Thunderbir@47CEE256.89AEBC9F.C3498625.IP)
  151. # [01:49] <mjrosenb> Mossop: https://tbpl.mozilla.org/php/getParsedLog.php?id=25475849&full=1&branch=mozilla-inbound is one of many crashes.
  152. # [01:49] <Mossop> Yeah, tinderbox uses the full command line to run the tests
  153. # [01:50] <mjrosenb> Mossop: I can't seem to find the command line :-(
  154. # [01:50] <Mossop> The command line there is python mochitest/runtestsremote.py --deviceIP 10.250.49.83 --xre-path ../hostutils/xre --utility-path ../hostutils/bin --certificate-path certs --app org.mozilla.fennec --console-level INFO --http-port 30095 --ssl-port 31095 --pidfile /builds/tegra-095/test/../runtestsremote.pid --run-only-tests android.json --symbols-path=http://ftp.mozilla.org/pub/mozilla.org/mobile/tin
  155. # [01:50] <Mossop> derbox-builds/mozilla-inbound-android-armv6/1374207917/fennec-25.0a1.en-US.android-arm-armv6.crashreporter-symbols.zip --total-chunks 8 --this-chunk 2
  156. # [01:50] * Quits: FabioMagnoni (fabiomagno@CEDA1208.33792BC3.5E2BFDF3.IP) (Input/output error)
  157. # [01:51] <Mossop> I don't reallyt know much about running remote mochitests though
  158. # [01:51] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  159. # [01:52] <mjrosenb> how on earth is there not some simple make tbpl-mochitest-remote that will do exactly what tbpl does :(
  160. # [01:52] <mjrosenb> Mossop: any idea what this argument does? --run-only-tests android.json
  161. # [01:56] * Joins: Bas (chatzilla@F26D4C89.FF9ABF1C.FC7A0EBB.IP)
  162. # [01:56] * Joins: tmyoung (Thunderbir@moz-A52EE408.alyoung.com)
  163. # [02:00] * Joins: bsmedberg_ (bsmedberg@moz-748CAEF1.jst.pa.atlanticbb.net)
  164. # [02:01] * Quits: @bsmedberg-away (bsmedberg@moz-748CAEF1.jst.pa.atlanticbb.net) (Ping timeout)
  165. # [02:02] * Joins: kdc_ (chatzilla@moz-2ACC6B38.pk.shawcable.net)
  166. # [02:02] * Quits: kdc (chatzilla@moz-2ACC6B38.pk.shawcable.net) (Ping timeout)
  167. # [02:02] * kdc_ is now known as kdc
  168. # [02:04] * Quits: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net) (Quit: ekr)
  169. # [02:05] * Joins: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net)
  170. # [02:05] * Joins: Olipro (Olipro@moz-36AEAE5A.catv.pool.telekom.hu)
  171. # [02:05] * Quits: bajaj (Adium@moz-C8BA7EB5.hsd1.ca.comcast.net) (Quit: Leaving.)
  172. # [02:07] * Quits: RealRaven (Thunderbir@47CEE256.89AEBC9F.C3498625.IP) (Quit: RealRaven)
  173. # [02:07] * Quits: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net) (Connection reset by peer)
  174. # [02:08] * Joins: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net)
  175. # [02:09] * Quits: cers (csonne@3B6BDCDF.47275860.8B3CB80E.IP) (Quit: Computer has gone to sleep.)
  176. # [02:11] <@dolske> uhh
  177. # [02:11] * Joins: jcv (john@moz-9DD98F0F.cable.mindspring.com)
  178. # [02:11] <@dolske> is the graph server broken? or am I doing something dumb?
  179. # [02:11] * Quits: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net) (Quit: ekr)
  180. # [02:11] <@dolske> I get nothing for http://graphs.mozilla.org/graph.html#tests=[[82,1,1]]&sel=none&displayrange=30&datatype=running
  181. # [02:13] * Joins: spohl (Adium@moz-658B4036.reverse.softlayer.com)
  182. # [02:15] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  183. # [02:15] * Quits: bjacob__ (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Ping timeout)
  184. # [02:17] * Joins: jet (jet@moz-79F891EE.hsd1.ca.comcast.net)
  185. # [02:18] * Quits: gwagner (Gregor@moz-B8B530C2.hsd1.ca.comcast.net) (Quit: gwagner)
  186. # [02:20] * Joins: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net)
  187. # [02:22] * Quits: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net) (Quit: ekr)
  188. # [02:22] * Quits: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net) (Connection reset by peer)
  189. # [02:23] * Joins: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net)
  190. # [02:23] * Joins: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net)
  191. # [02:24] * Quits: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net) (Quit: ekr)
  192. # [02:24] <@dolske> and the link in tbpl for the last nightly sends me to https://datazilla.mozilla.org/talos/summary/Firefox/9af6265e9884?product=Firefox&branch_version=25.0a1
  193. # [02:24] <@dolske> which is of course also broken. fantastic.
  194. # [02:25] <@dolske> "No metrics data available for 9af6265e9884 on Firefox Firefox 25.0a1"
  195. # [02:25] * Quits: mmargoliono (min@moz-9DBD522D.static.internode.on.net) (Ping timeout)
  196. # [02:26] <@dolske> jesus
  197. # [02:26] <@dolske> do we have any working tools?
  198. # [02:26] <davidb__> Yeah weird
  199. # [02:26] * Quits: jet (jet@moz-79F891EE.hsd1.ca.comcast.net) (Ping timeout)
  200. # [02:27] * Joins: jet (jet@moz-79F891EE.hsd1.ca.comcast.net)
  201. # [02:28] * Quits: twi1 (Adium@moz-3F8C4233.cust.dsl.vodafone.it) (Quit: Leaving.)
  202. # [02:29] <@dolske> hmm, maybe that isn't the nightly. but how can I tell? and still shouldn't be broken.
  203. # [02:30] <@dolske> I get some stuff for https://datazilla.mozilla.org/talos/summary/Firefox-Non-PGO/b7fbc6770e37?product=Firefox&branch_version=25.0a1, but of course nothing for the actual test I clicked on.
  204. # [02:30] <@dolske> ffs.
  205. # [02:31] * Joins: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net)
  206. # [02:33] <fabrice> !seen sicking
  207. # [02:33] <firebot> sicking was last seen 27 hours, 25 minutes and 58 seconds ago, saying 'jcranmer: i modified the page to clarify it a bit more I hope' in #developers.
  208. # [02:34] * Quits: @smaug (chatzilla@moz-D8807168.elisa-laajakaista.fi) (Ping timeout)
  209. # [02:41] * Quits: Mano (mano@98E10BDE.1B51AEC8.39716721.IP) (Ping timeout)
  210. # [02:41] * Quits: glosoli (glosoli@moz-72C60525.static.zebra.lt) (Quit: Textual IRC Client: www.textualapp.com)
  211. # [02:42] * Quits: KaiRo (robert@moz-8F193AAC.adsl.highway.telekom.at) (Input/output error)
  212. # [02:42] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  213. # [02:46] * Quits: tmyoung (Thunderbir@moz-A52EE408.alyoung.com) (Input/output error)
  214. # [02:52] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  215. # [02:54] * Quits: inolen (Adium@moz-D2D12FC1.socal.res.rr.com) (Quit: Leaving.)
  216. # [02:55] * Joins: jrmuizel (jrmuizel@CE5C2B0.8DBACF1E.47C41102.IP)
  217. # [02:57] * Joins: surkov (surkov@moz-6EE3EE5C.cpe.net.cable.rogers.com)
  218. # [02:57] * Quits: jrmuizel (jrmuizel@CE5C2B0.8DBACF1E.47C41102.IP) (Ping timeout)
  219. # [02:59] * jcranmer|away is now known as jcranmer
  220. # [03:01] * Quits: dzbarsky (Adium@moz-A7CDB794.dia.static.qwest.net) (Quit: Leaving.)
  221. # [03:01] * Quits: smooney (sheilamoon@moz-FC1ADCB.dsl.bell.ca) (Quit: smooney)
  222. # [03:02] * Joins: smooney (sheilamoon@moz-FC1ADCB.dsl.bell.ca)
  223. # [03:02] * MrDHat is now known as MrDHat|afk
  224. # [03:02] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  225. # [03:04] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  226. # [03:07] * Quits: jet (jet@moz-79F891EE.hsd1.ca.comcast.net) (Quit: jet)
  227. # [03:10] * Joins: jet (jet@moz-79F891EE.hsd1.ca.comcast.net)
  228. # [03:12] * Joins: inolen (Adium@moz-D2D12FC1.socal.res.rr.com)
  229. # [03:14] * Quits: StevenLee (Adium@moz-B56E11E.dynamic.hinet.net) (Quit: Leaving.)
  230. # [03:15] * Quits: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net) (Quit: Boriss)
  231. # [03:19] * Joins: kdc_ (chatzilla@moz-2ACC6B38.pk.shawcable.net)
  232. # [03:19] * Quits: jet (jet@moz-79F891EE.hsd1.ca.comcast.net) (Ping timeout)
  233. # [03:19] * Quits: kdc (chatzilla@moz-2ACC6B38.pk.shawcable.net) (Ping timeout)
  234. # [03:19] * kdc_ is now known as kdc
  235. # [03:20] * Quits: maxli (maxli@B5559308.9C54E60.2FA4EA88.IP) (Quit: Leaving.)
  236. # [03:26] * Quits: jduell (jduell@moz-E765EB2E.hsd1.wa.comcast.net) (Ping timeout)
  237. # [03:27] * Quits: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net) (Connection reset by peer)
  238. # [03:27] * Joins: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net)
  239. # [03:28] * ewong|sleep is now known as ewong
  240. # [03:29] * Joins: gwagner (Gregor@moz-B8B530C2.hsd1.ca.comcast.net)
  241. # [03:31] * Quits: mbrubeck (mbrub_000@moz-45568FC0.hsd1.wa.comcast.net) (Quit: Leaving.)
  242. # [03:34] * Quits: tonymec (tonymec@moz-D801653C.adsl-dyn.isp.belgacom.be) (Input/output error)
  243. # [03:35] * heycam|away is now known as heycam
  244. # [03:36] * Joins: tonymec (tonymec@moz-D801653C.adsl-dyn.isp.belgacom.be)
  245. # [03:38] * Joins: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net)
  246. # [03:38] * Joins: JosiahOne (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net)
  247. # [03:38] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  248. # [03:40] * Joins: bz_sleep (bzbarsky@moz-A28C5395.bstnma.fios.verizon.net)
  249. # [03:50] * Quits: tonymec (tonymec@moz-D801653C.adsl-dyn.isp.belgacom.be) (Input/output error)
  250. # [03:51] * Quits: chewey (chewey@moz-9B31C9A7.dip0.t-ipconnect.de) (NickServ (GHOST command used by chewey_))
  251. # [03:51] * Joins: chewey (chewey@moz-D3BCD4D2.dip0.t-ipconnect.de)
  252. # [03:52] * Joins: tonymec (tonymec@moz-D801653C.adsl-dyn.isp.belgacom.be)
  253. # [03:52] * Joins: tmyoung (Thunderbir@moz-A52EE408.alyoung.com)
  254. # [03:53] * Joins: lmandel (lmandel@A155E007.77875401.ADB88A9.IP)
  255. # [03:57] * Joins: jduell (jduell@moz-E765EB2E.hsd1.wa.comcast.net)
  256. # [03:57] * Quits: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net) (Quit: Boriss)
  257. # [03:57] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  258. # [03:59] * Quits: tmyoung (Thunderbir@moz-A52EE408.alyoung.com) (Quit: tmyoung)
  259. # [04:02] * Quits: aut0mata (automata@ACBB333A.6DF9FAA4.10054EA3.IP) (Ping timeout)
  260. # [04:03] * Quits: tonymec (tonymec@moz-D801653C.adsl-dyn.isp.belgacom.be) (Input/output error)
  261. # [04:04] * Joins: tonymec (tonymec@moz-D801653C.adsl-dyn.isp.belgacom.be)
  262. # [04:06] * Joins: dzbarsky (Adium@moz-A7CDB794.dia.static.qwest.net)
  263. # [04:13] * Quits: lmandel (lmandel@A155E007.77875401.ADB88A9.IP) (Quit: lmandel)
  264. # [04:14] * Joins: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net)
  265. # [04:16] * Joins: jrmuizel (jrmuizel@57541171.A93A320B.47C41102.IP)
  266. # [04:17] * Joins: kdc_ (chatzilla@moz-2ACC6B38.pk.shawcable.net)
  267. # [04:17] * Quits: kdc (chatzilla@moz-2ACC6B38.pk.shawcable.net) (Ping timeout)
  268. # [04:17] * kdc_ is now known as kdc
  269. # [04:17] * Quits: tonymec (tonymec@moz-D801653C.adsl-dyn.isp.belgacom.be) (Ping timeout)
  270. # [04:18] * Quits: tonymec|away (tonymec@moz-D801653C.adsl-dyn.isp.belgacom.be) (Ping timeout)
  271. # [04:20] * Quits: surkov (surkov@moz-6EE3EE5C.cpe.net.cable.rogers.com) (Quit: surkov)
  272. # [04:22] * Quits: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net) (Quit: Boriss)
  273. # [04:23] * Quits: jrmuizel (jrmuizel@57541171.A93A320B.47C41102.IP) (Ping timeout)
  274. # [04:26] * bz_sleep is now known as bz
  275. # [04:26] * Joins: jrmuizel (jrmuizel@57541171.A93A320B.47C41102.IP)
  276. # [04:28] * Joins: dao (dao@moz-91921B3B.superkabel.de)
  277. # [04:29] * Joins: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net)
  278. # [04:33] * Quits: jrmuizel (jrmuizel@57541171.A93A320B.47C41102.IP) (Client exited)
  279. # [04:33] * Quits: lduros (user@moz-47F34250.phlapa.fios.verizon.net) (Client exited)
  280. # [04:33] * Quits: Wolf_ (wolf@moz-F8C1AF63.carolina.res.rr.com) (Quit: ChatZilla 0.9.88.2-rdmsoft [XULRunner 12.0/20120420145725])
  281. # [04:34] * Joins: surkov (surkov@moz-6EE3EE5C.cpe.net.cable.rogers.com)
  282. # [04:36] * Joins: bnicholson (bnicholson@moz-1278B71.public.wayport.net)
  283. # [04:36] * Quits: JonathanS (JonathanS@74338381.87D4EDDB.521902B0.IP) (Quit: Computer has gone to sleep.)
  284. # [04:36] * Quits: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net) (Quit: Boriss)
  285. # [04:38] * Quits: bnicholson (bnicholson@moz-1278B71.public.wayport.net) (Ping timeout)
  286. # [04:39] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  287. # [04:41] * Quits: marco (mozilla@moz-A7CDB794.dia.static.qwest.net) (Quit: Leaving.)
  288. # [04:44] * Joins: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net)
  289. # [04:45] * Joins: jwilde (Thunderbir@moz-23E1A364.aton.com)
  290. # [04:46] * JosiahOne is now known as JosiahOne|Away
  291. # [04:46] * mattwoodrow is now known as mattwoodrow|away
  292. # [04:49] * Joins: tonymec_ (tonymec@A154114.55A138C.277517C1.IP)
  293. # [04:49] * tonymec_ is now known as tonymec|away
  294. # [04:50] * Quits: surkov (surkov@moz-6EE3EE5C.cpe.net.cable.rogers.com) (Quit: surkov)
  295. # [04:54] * Quits: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net) (Quit: Boriss)
  296. # [04:58] * Quits: jwilde (Thunderbir@moz-23E1A364.aton.com) (Quit: jwilde)
  297. # [05:00] * Joins: squeakytoy (christoffe@moz-79070305.dynamic.se.alltele.net)
  298. # [05:00] * Quits: firebot (firebot@moz-F8C1AF63.carolina.res.rr.com) (Ping timeout)
  299. # [05:01] * Quits: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net) (Ping timeout)
  300. # [05:02] * Joins: marco (mozilla@moz-A7CDB794.dia.static.qwest.net)
  301. # [05:02] * Joins: firebot (firebot@moz-F8C1AF63.carolina.res.rr.com)
  302. # [05:03] * Quits: dao (dao@moz-91921B3B.superkabel.de) (Quit: Leaving.)
  303. # [05:06] * Quits: JosiahOne|Away (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net) (Quit: [self dealloc];)
  304. # [05:08] * Quits: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net) (Ping timeout)
  305. # [05:08] * Joins: dbaron (dbaron@moz-FD349932.dsl.dynamic.sonic.net)
  306. # [05:08] * ChanServ sets mode: +ao dbaron dbaron
  307. # [05:09] * Quits: Mossop (mossop@moz-3D9B2D8F.lsanca.fios.verizon.net) (Ping timeout)
  308. # [05:11] * Joins: jwilde (Thunderbir@moz-23E1A364.aton.com)
  309. # [05:13] * Joins: surkov (surkov@moz-6EE3EE5C.cpe.net.cable.rogers.com)
  310. # [05:16] * Joins: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net)
  311. # [05:22] * Joins: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net)
  312. # [05:22] * Joins: annevk (annevk@moz-1534F032.ptr.us.xo.net)
  313. # [05:26] * Quits: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net) (Quit: Boriss)
  314. # [05:26] * heycam is now known as heycam|away
  315. # [05:27] * Quits: jduell (jduell@moz-E765EB2E.hsd1.wa.comcast.net) (Connection reset by peer)
  316. # [05:28] * Joins: Mossop (mossop@moz-3D9B2D8F.lsanca.fios.verizon.net)
  317. # [05:30] * Quits: Mossop (mossop@moz-3D9B2D8F.lsanca.fios.verizon.net) (Ping timeout)
  318. # [05:31] * Quits: spohl (Adium@moz-658B4036.reverse.softlayer.com) (Quit: Leaving.)
  319. # [05:33] * Quits: smooney (sheilamoon@moz-FC1ADCB.dsl.bell.ca) (Quit: smooney)
  320. # [05:38] * Joins: bajaj (Adium@moz-C8BA7EB5.hsd1.ca.comcast.net)
  321. # [05:40] * Joins: bholley (anonymous@moz-FCAF9AAB.hsd1.ca.comcast.net)
  322. # [05:40] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  323. # [05:42] * Quits: b10n1k (j0ni@moz-5B9E99FF.home.otenet.gr) (Ping timeout)
  324. # [05:43] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  325. # [05:44] * Joins: dao (dao@moz-91921B3B.superkabel.de)
  326. # [05:46] * Joins: mconley (mconley@8CBAE1D3.EB8166C5.F30C9E9E.IP)
  327. # [05:49] * Quits: surkov (surkov@moz-6EE3EE5C.cpe.net.cable.rogers.com) (Quit: surkov)
  328. # [05:52] * Joins: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com)
  329. # [05:53] * Quits: gwagner (Gregor@moz-B8B530C2.hsd1.ca.comcast.net) (Quit: gwagner)
  330. # [05:57] * Quits: Matti (Matti@moz-69517286.dip0.t-ipconnect.de) (Ping timeout)
  331. # [05:57] * Quits: dao (dao@moz-91921B3B.superkabel.de) (Quit: Leaving.)
  332. # [05:58] * Quits: bholley (anonymous@moz-FCAF9AAB.hsd1.ca.comcast.net) (Quit: bholley)
  333. # [05:58] * Joins: b10n1k (j0ni@moz-995C948F.home.otenet.gr)
  334. # [06:00] * Quits: bz (bzbarsky@moz-A28C5395.bstnma.fios.verizon.net) (Ping timeout)
  335. # [06:00] * Joins: bz (bzbarsky@moz-A28C5395.bstnma.fios.verizon.net)
  336. # [06:00] * ChanServ sets mode: +o bz
  337. # [06:00] * Joins: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net)
  338. # [06:01] * Joins: Matti_away (Matti@moz-874FDDB4.dip0.t-ipconnect.de)
  339. # [06:01] * Matti_away is now known as Matti
  340. # [06:01] * Quits: squeakytoy (christoffe@moz-79070305.dynamic.se.alltele.net) (Connection reset by peer)
  341. # [06:02] * Joins: squeakytoy (christoffe@moz-79070305.dynamic.se.alltele.net)
  342. # [06:10] * Quits: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com) (Client exited)
  343. # [06:16] * jchen is now known as jchen|away
  344. # [06:19] * Quits: kdc (chatzilla@moz-2ACC6B38.pk.shawcable.net) (Connection reset by peer)
  345. # [06:19] * Joins: kdc (chatzilla@moz-2ACC6B38.pk.shawcable.net)
  346. # [06:20] * Joins: mmargoliono (min@moz-9DBD522D.static.internode.on.net)
  347. # [06:26] * Quits: Twisol (Mibbit@moz-17948F30.socal.res.rr.com) (Quit: http://www.mibbit.com ajax IRC Client)
  348. # [06:34] <mjrosenb> ohhh boy.
  349. # [06:34] <mjrosenb> I ran the test suite 100 times, and got *one* crash.
  350. # [06:36] * jchen|away is now known as jchen
  351. # [06:38] * jchen is now known as jchen|away
  352. # [06:41] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  353. # [06:42] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  354. # [06:47] * Quits: dholbert (dholbert@moz-B8EBBCE7.hsd1.ca.comcast.net) (Ping timeout)
  355. # [06:47] * Quits: afwang (afwang@moz-CFE05FEE.hsd1.ca.comcast.net) (Ping timeout)
  356. # [06:48] * Joins: dholbert (dholbert@moz-B8EBBCE7.hsd1.ca.comcast.net)
  357. # [06:49] * Joins: aut0mata (automata@ACBB333A.6DF9FAA4.10054EA3.IP)
  358. # [06:50] * Quits: aut0mata (automata@ACBB333A.6DF9FAA4.10054EA3.IP) (Client exited)
  359. # [06:50] * Joins: Mossop (mossop@moz-3D9B2D8F.lsanca.fios.verizon.net)
  360. # [06:55] * Joins: JonathanS (JonathanS@74338381.87D4EDDB.521902B0.IP)
  361. # [06:56] * Joins: drbalor (aidan@moz-476C12CD.static.enta.net)
  362. # [06:56] * Joins: afwang (afwang@moz-CFE05FEE.hsd1.ca.comcast.net)
  363. # [06:57] <firebot> Check-in: http://hg.mozilla.org/integration/mozilla-inbound/rev/86b7630f73e0 - Mike Hommey - Bug 895083 - Set NS_STDCALL to nothing on WIN64. r=ehsan
  364. # [06:57] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/f5d32e9b903c - Mike Hommey - Bug 895248 - Move --enable-stdcxx-compat in build/unix/mozconfig.linux. r=ted
  365. # [06:57] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/d98e2fa5b380 - Mike Hommey - Bug 894538 - Don't use -static-stdc++ on b2g. r=ted
  366. # [06:57] <firebot> http://hg.mozilla.org/integration/mozilla-inbound/rev/f710d274e853 - Mike Hommey - Bug 895253 - Disable crash reporter when cross building across different OSes (e.g. OSX android builds). r=ted
  367. # [06:57] * Quits: briansmith (briansmith@moz-BE33DA21.fw1.sfo1.mozilla.net) (Ping timeout)
  368. # [06:57] * jcranmer is now known as jcranmer|away
  369. # [06:58] * Quits: squeakytoy (christoffe@moz-79070305.dynamic.se.alltele.net) (Connection reset by peer)
  370. # [06:58] * Quits: Mossop (mossop@moz-3D9B2D8F.lsanca.fios.verizon.net) (Ping timeout)
  371. # [06:58] * Joins: squeakytoy (christoffe@moz-79070305.dynamic.se.alltele.net)
  372. # [07:01] * Joins: Mossop (mossop@moz-3D9B2D8F.lsanca.fios.verizon.net)
  373. # [07:02] * Quits: sfoster (sfoster@moz-D30056A1.hsd1.or.comcast.net) (Connection reset by peer)
  374. # [07:02] * Joins: sfoster (sfoster@moz-D30056A1.hsd1.or.comcast.net)
  375. # [07:04] * Quits: Mossop (mossop@moz-3D9B2D8F.lsanca.fios.verizon.net) (Ping timeout)
  376. # [07:06] * Joins: fossterer (Thunderbir@EFD7D4EF.F5E5CB45.7796163B.IP)
  377. # [07:07] * jchen|away is now known as jchen
  378. # [07:08] * Joins: Asa (asa@moz-B5ECF169.ptr.us.xo.net)
  379. # [07:11] * Joins: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net)
  380. # [07:11] * Quits: squeakytoy (christoffe@moz-79070305.dynamic.se.alltele.net) (Ping timeout)
  381. # [07:12] * Joins: imsurit (Thunderbir@3A1FA496.F9EF9A22.1A5E31FF.IP)
  382. # [07:14] * jchen is now known as jchen|away
  383. # [07:14] * Quits: drbalor (aidan@moz-476C12CD.static.enta.net) (Ping timeout)
  384. # [07:15] * Joins: bjacob__ (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  385. # [07:16] * Quits: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net) (Connection reset by peer)
  386. # [07:17] * Quits: bjacob__ (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Quit: Konversation terminated!)
  387. # [07:17] * Joins: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net)
  388. # [07:17] * Joins: roc (chatzilla@C0ACF8B.5E1E9EEA.613E47D1.IP)
  389. # [07:17] * Quits: bajaj (Adium@moz-C8BA7EB5.hsd1.ca.comcast.net) (Quit: Leaving.)
  390. # [07:17] * ChanServ sets mode: +o roc
  391. # [07:19] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  392. # [07:20] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  393. # [07:21] * Quits: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net) (Ping timeout)
  394. # [07:22] * heycam|away is now known as heycam
  395. # [07:25] * Joins: tmyoung (Thunderbir@moz-A52EE408.alyoung.com)
  396. # [07:26] <@dolske> arrrrrrgh... office vpn, y u no connect?
  397. # [07:28] <@dolske> anyone with MoCo office VPN access able to connect?
  398. # [07:28] <Mook> it's just trying to tell you that it's a weekend
  399. # [07:28] <@dolske> actually I guess I should wanter over to #it
  400. # [07:28] * Quits: Optimizer (Optimizer@B840962.FF693F8.274D17D6.IP) (Ping timeout)
  401. # [07:29] * Quits: dzbarsky (Adium@moz-A7CDB794.dia.static.qwest.net) (Quit: Leaving.)
  402. # [07:31] * Quits: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net) (Quit: Boriss)
  403. # [07:35] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  404. # [07:38] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  405. # [07:38] <reuben> fwiw, I can connect to the vpn, but I'm at the office so…
  406. # [07:40] * Joins: mihneadb (mihneadb@moz-329F29A3.lightspeed.sntcca.sbcglobal.net)
  407. # [07:40] <JonathanS> What is a good of VPN if you can't connect?
  408. # [07:42] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  409. # [07:42] <@dolske> I just rebooted: got a functional VPN and a mental image of a sweaty Ballmer chanting "Just like Windows! Just like Windows!"
  410. # [07:43] <@dolske> let's see, now what was I doing... ah, yes.
  411. # [07:43] * Quits: Asa (asa@moz-B5ECF169.ptr.us.xo.net) (Ping timeout)
  412. # [07:43] * Quits: imsurit (Thunderbir@3A1FA496.F9EF9A22.1A5E31FF.IP) (Quit: imsurit)
  413. # [07:43] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  414. # [07:43] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  415. # [07:44] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  416. # [07:45] <JonathanS> dolske, DEVELOPERS! DEVELOPERS! DEVELOPERS! DEVELOPERS! DEVELOPERS!
  417. # [07:51] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  418. # [07:51] * Quits: mmargoliono (min@moz-9DBD522D.static.internode.on.net) (Ping timeout)
  419. # [07:52] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  420. # [07:52] * Joins: smontagu (chatzilla@moz-563B28F0.red.bezeqint.net)
  421. # [07:55] <mjrosenb> uhh, firebot should *probably* not respond to things that logbot says.
  422. # [07:58] * Quits: Mook (mook@moz-A2055CDA.dsl.teksavvy.com) (Quit: Mook)
  423. # [07:59] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  424. # [08:00] * Joins: cers (csonne@3B6BDCDF.47275860.8B3CB80E.IP)
  425. # [08:00] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  426. # [08:00] <reuben> also we should just disable firebot's spelling module. it fails more than it works
  427. # [08:02] <reuben> mjrosenb: a firebot admin should be able to add logbot to its list of ignored users. I would try gavin
  428. # [08:10] * Quits: JonathanS (JonathanS@74338381.87D4EDDB.521902B0.IP) (Quit: Computer has gone to sleep.)
  429. # [08:12] <mjrosenb> gavin: ping?
  430. # [08:21] * Quits: tmyoung (Thunderbir@moz-A52EE408.alyoung.com) (Quit: tmyoung)
  431. # [08:22] * Quits: mconley (mconley@8CBAE1D3.EB8166C5.F30C9E9E.IP) (Input/output error)
  432. # [08:27] <@dolske> afaik firebot is controlled exclusively by Wolf.
  433. # [08:37] * Quits: kdc (chatzilla@moz-2ACC6B38.pk.shawcable.net) (Connection reset by peer)
  434. # [08:38] * Joins: kdc (chatzilla@moz-2ACC6B38.pk.shawcable.net)
  435. # [08:41] * Quits: @dbaron (dbaron@moz-FD349932.dsl.dynamic.sonic.net) (Ping timeout)
  436. # [08:41] * Joins: Lethalman (lethal@moz-94EA69E1.service.infuturo.it)
  437. # [08:41] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  438. # [08:43] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  439. # [08:45] * Quits: cers (csonne@3B6BDCDF.47275860.8B3CB80E.IP) (Quit: Computer has gone to sleep.)
  440. # [08:47] <mjrosenb> logbot: (sp?)
  441. # [08:47] <logbot> mjrosenb, found 4 results showing 3
  442. # [08:47] <logbot> May 30 2013 <ewong|away> roc go to Hagendaz (sp?) during mid-autumn festival.. they have ice cream moon cakes
  443. # [08:47] <logbot> Apr 11 2013 <BenWa> vd: MOZ_ENABLE_GTEST will be replaced by MOZ_ENABLE_TESTS (sp?) which is the configuration which ship
  444. # [08:47] <logbot> Apr 11 2013 <Callek> Unfocused: I remember aza raszkin (sp?) did
  445. # [08:47] <firebot> The dictionary service is not accessible right now, sorry.
  446. # [08:47] <firebot> The dictionary service is not accessible right now, sorry.
  447. # [08:47] <firebot> The dictionary service is not accessible right now, sorry.
  448. # [08:47] * firebot was kicked by killer (Stop repeating yourself!)
  449. # [08:47] <mjrosenb> uhhh, oops.
  450. # [08:48] <mjrosenb> dolske: wolf does not seem to be here for this demonstration.
  451. # [08:49] <@dolske> eh, I've seen worse.
  452. # [08:50] <mjrosenb> dolske: yeah, but you can make logbot say basically anything you want
  453. # [08:50] * Joins: bdahl (bdahl@moz-819E1051.hsd1.or.comcast.net)
  454. # [08:51] <mjrosenb> and iirc, you can get firebot to respond to non-prefixed commands without some ever-present prefix in the response.
  455. # [08:51] <@dolske> no, really. http://quotes.burntelectrons.org/5007
  456. # [08:52] <@dolske> (also http://quotes.burntelectrons.org/6500)
  457. # [08:54] * Joins: kaze (kaze@moz-7E0F0F9E.fbx.proxad.net)
  458. # [09:00] <reuben> mjrosenb: Wolf is in #firebot. I guessed gavin because he seems to be an admin of everything
  459. # [09:00] * Quits: bdahl (bdahl@moz-819E1051.hsd1.or.comcast.net) (Client exited)
  460. # [09:04] * Joins: twi (Adium@moz-3F8C4233.cust.dsl.vodafone.it)
  461. # [09:05] * Quits: lerc (quassel@moz-598ED764.telstraclear.net) (Quit: No Ping reply in 180 seconds.)
  462. # [09:05] * Joins: lerc (quassel@moz-598ED764.telstraclear.net)
  463. # [09:10] * Quits: fossterer (Thunderbir@EFD7D4EF.F5E5CB45.7796163B.IP) (Ping timeout)
  464. # [09:13] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  465. # [09:14] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  466. # [09:17] * Fallen|away is now known as Fallen
  467. # [09:19] * Quits: b10n1k (j0ni@moz-995C948F.home.otenet.gr) (Ping timeout)
  468. # [09:23] * Joins: mconley (mconley@8CBAE1D3.EB8166C5.F30C9E9E.IP)
  469. # [09:29] * Quits: mconley (mconley@8CBAE1D3.EB8166C5.F30C9E9E.IP) (Ping timeout)
  470. # [09:29] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  471. # [09:30] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  472. # [09:31] * Joins: spohl (Adium@ADA93DF6.F81DF239.C69D10BF.IP)
  473. # [09:33] * Quits: spohl (Adium@ADA93DF6.F81DF239.C69D10BF.IP) (Ping timeout)
  474. # [09:42] * Quits: phenom (phenom@26D8B9A1.6AC9BFD2.4A5F0685.IP) (Ping timeout)
  475. # [09:44] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  476. # [09:44] * Joins: Ms2ger (Ms2ger@moz-12781595.adsl-dyn.isp.belgacom.be)
  477. # [09:46] <Ms2ger> Bonjour
  478. # [09:46] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  479. # [09:49] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  480. # [09:50] * Quits: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net) (Connection reset by peer)
  481. # [09:50] * Joins: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net)
  482. # [09:50] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  483. # [09:53] * Joins: destrbad (AndChat536@1D50491A.DF9B0437.FDCAC96B.IP)
  484. # [09:54] * Quits: destrbad (AndChat536@1D50491A.DF9B0437.FDCAC96B.IP) (Connection reset by peer)
  485. # [09:54] * Quits: squib (squib@moz-54866485.dhcp.mdsn.wi.charter.com) (Quit: Leaving)
  486. # [09:54] * Joins: destrbad (AndChat536@1D50491A.DF9B0437.FDCAC96B.IP)
  487. # [09:55] * Quits: destrbad (AndChat536@1D50491A.DF9B0437.FDCAC96B.IP) (Quit: Bye)
  488. # [09:55] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  489. # [09:55] * Joins: destrbad (AndChat536@1D50491A.DF9B0437.FDCAC96B.IP)
  490. # [09:57] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  491. # [09:57] * Quits: marco (mozilla@moz-A7CDB794.dia.static.qwest.net) (Connection reset by peer)
  492. # [09:58] * Joins: phenom (phenom@26D8B9A1.6AC9BFD2.4A5F0685.IP)
  493. # [09:59] * Quits: destrbad (AndChat536@1D50491A.DF9B0437.FDCAC96B.IP) (Connection reset by peer)
  494. # [09:59] * Joins: destrbad (AndChat536@1D50491A.DF9B0437.FDCAC96B.IP)
  495. # [10:00] * Quits: destrbad (AndChat536@1D50491A.DF9B0437.FDCAC96B.IP) (Quit: Bye)
  496. # [10:01] * Quits: phenom (phenom@26D8B9A1.6AC9BFD2.4A5F0685.IP) (Ping timeout)
  497. # [10:02] * Joins: robertbindar (Thunderbir@261906A2.9119BF8A.D731B824.IP)
  498. # [10:03] * Fallen is now known as Fallen|away
  499. # [10:07] * Joins: Optimizer (Optimizer@4EB1EF3E.2B6BC21.D5D59AD9.IP)
  500. # [10:10] * Quits: kaze (kaze@moz-7E0F0F9E.fbx.proxad.net) (Ping timeout)
  501. # [10:11] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  502. # [10:12] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  503. # [10:15] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  504. # [10:17] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  505. # [10:17] * Fallen|away is now known as Fallen
  506. # [10:20] * Quits: ckitching (ckitching@moz-329F29A3.lightspeed.sntcca.sbcglobal.net) (Input/output error)
  507. # [10:21] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  508. # [10:23] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  509. # [10:23] * Quits: Optimizer (Optimizer@4EB1EF3E.2B6BC21.D5D59AD9.IP) (Ping timeout)
  510. # [10:24] * Joins: Optimizer (Optimizer@FD318E68.9A3FC817.BE90E62C.IP)
  511. # [10:25] * Quits: tba (tba@moz-9CF81A35.range86-151.btcentralplus.com) (Ping timeout)
  512. # [10:25] * Quits: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net) (Connection reset by peer)
  513. # [10:25] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  514. # [10:25] * Joins: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net)
  515. # [10:26] * Fallen is now known as Fallen|away
  516. # [10:27] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  517. # [10:27] * Joins: msucan (mihai@48B6DE4B.700B7157.7C5F70AF.IP)
  518. # [10:28] * Joins: tba (tba@moz-9CF81A35.range86-151.btcentralplus.com)
  519. # [10:28] * Joins: mmargoliono (min@moz-9DBD522D.static.internode.on.net)
  520. # [10:29] * Joins: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl)
  521. # [10:30] * Quits: tba (tba@moz-9CF81A35.range86-151.btcentralplus.com) (Ping timeout)
  522. # [10:30] * Joins: tba (tba@moz-9CF81A35.range86-151.btcentralplus.com)
  523. # [10:33] * Quits: Optimizer (Optimizer@FD318E68.9A3FC817.BE90E62C.IP) (Ping timeout)
  524. # [10:41] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Ping timeout)
  525. # [10:44] * Fallen|away is now known as Fallen
  526. # [10:45] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  527. # [10:47] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  528. # [10:48] * Quits: mihneadb (mihneadb@moz-329F29A3.lightspeed.sntcca.sbcglobal.net) (Quit: Leaving)
  529. # [10:57] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  530. # [10:58] * Quits: twi (Adium@moz-3F8C4233.cust.dsl.vodafone.it) (Connection reset by peer)
  531. # [10:59] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  532. # [11:03] * Joins: h4writer (h4writer@1C05CC21.246E5E69.4AE11518.IP)
  533. # [11:12] * Joins: Optimizer (Optimizer@28C7C4C.CFB18D30.D5D59AD9.IP)
  534. # [11:12] * Quits: ggp (ggp@moz-5CF47426.dia.static.qwest.net) (Connection reset by peer)
  535. # [11:14] * Joins: ggp (ggp@moz-5CF47426.dia.static.qwest.net)
  536. # [11:17] * Quits: ggp (ggp@moz-5CF47426.dia.static.qwest.net) (Ping timeout)
  537. # [11:20] * Joins: ggp (ggp@moz-5CF47426.dia.static.qwest.net)
  538. # [11:21] * Quits: sawrubh (uid6719@moz-5F4AA75A.irccloud.com) (Quit: Connection closed for inactivity)
  539. # [11:25] * Fallen is now known as Fallen|away
  540. # [11:27] * Joins: imsurit (Thunderbir@C41D9BE8.964694C.1A5E31FF.IP)
  541. # [11:28] * Quits: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net) (Connection reset by peer)
  542. # [11:28] * Joins: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net)
  543. # [11:29] * Joins: smaug (chatzilla@moz-D8807168.elisa-laajakaista.fi)
  544. # [11:29] * ChanServ sets mode: +o smaug
  545. # [11:36] * Joins: squeakytoy (christoffe@moz-79070305.dynamic.se.alltele.net)
  546. # [11:37] * Quits: christoffer__ (christoffe@moz-79070305.dynamic.se.alltele.net) (Ping timeout)
  547. # [11:38] * Quits: h4writer (h4writer@1C05CC21.246E5E69.4AE11518.IP) (Ping timeout)
  548. # [11:41] * Fallen|away is now known as Fallen
  549. # [11:41] * Quits: Lethalman (lethal@moz-94EA69E1.service.infuturo.it) (Ping timeout)
  550. # [11:46] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  551. # [11:48] * Quits: jwilde (Thunderbir@moz-23E1A364.aton.com) (Quit: jwilde)
  552. # [11:48] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  553. # [11:49] * Joins: glosoli (glosoli@moz-72C60525.static.zebra.lt)
  554. # [11:58] * Joins: mcsmurf (chatzilla@moz-EA7AD0A7.dip0.t-ipconnect.de)
  555. # [12:00] * heycam is now known as heycam|away
  556. # [12:03] * Joins: phenom (phenom@26D8B9A1.6AC9BFD2.4A5F0685.IP)
  557. # [12:06] * Joins: norton- (norton@E680EB3B.B72C3CE3.9FD833D8.IP)
  558. # [12:09] * Quits: imsurit (Thunderbir@C41D9BE8.964694C.1A5E31FF.IP) (Ping timeout)
  559. # [12:12] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  560. # [12:13] * Joins: imsurit (Thunderbir@9D1B6A57.8B3D2A82.1A5E31FF.IP)
  561. # [12:14] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  562. # [12:18] * Quits: imsurit (Thunderbir@9D1B6A57.8B3D2A82.1A5E31FF.IP) (Quit: imsurit)
  563. # [12:18] * Quits: lerc (quassel@moz-598ED764.telstraclear.net) (Quit: No Ping reply in 180 seconds.)
  564. # [12:19] * Joins: lerc (quassel@moz-598ED764.telstraclear.net)
  565. # [12:19] * Quits: @smaug (chatzilla@moz-D8807168.elisa-laajakaista.fi) (Ping timeout)
  566. # [12:22] * Fallen is now known as Fallen|away
  567. # [12:23] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  568. # [12:25] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  569. # [12:25] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  570. # [12:31] * Joins: smaug (chatzilla@moz-D8807168.elisa-laajakaista.fi)
  571. # [12:31] * ChanServ sets mode: +o smaug
  572. # [12:32] * Joins: KaiRo (robert@moz-B2441F67.adsl.highway.telekom.at)
  573. # [12:34] * Joins: ckitching (ckitching@moz-329F29A3.lightspeed.sntcca.sbcglobal.net)
  574. # [12:38] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  575. # [12:39] * Quits: michal (michal@moz-6CE1017D.broadband17.iol.cz) (Ping timeout)
  576. # [12:41] * Quits: phenom (phenom@26D8B9A1.6AC9BFD2.4A5F0685.IP) (Ping timeout)
  577. # [12:41] * Joins: imsurit (Thunderbir@5BA519C6.D670FBE5.1A5E31FF.IP)
  578. # [12:44] * Joins: maxli (maxli@B5559308.9C54E60.2FA4EA88.IP)
  579. # [12:47] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  580. # [12:47] * Quits: KaiRo (robert@moz-B2441F67.adsl.highway.telekom.at) (Input/output error)
  581. # [12:48] * Joins: KaiRo (robert@moz-B2441F67.adsl.highway.telekom.at)
  582. # [12:49] * Joins: atuljangra (Mibbit@4F882FCC.4850A4DD.1957C0DA.IP)
  583. # [12:50] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  584. # [12:50] * Quits: imsurit (Thunderbir@5BA519C6.D670FBE5.1A5E31FF.IP) (Quit: imsurit)
  585. # [12:53] * mattwoodrow|away is now known as mattwoodrow
  586. # [12:55] * Joins: michal (michal@moz-6CE1017D.broadband17.iol.cz)
  587. # [12:56] * Joins: phenom (phenom@C16A7CFA.9EB7BC86.19D4AAB7.IP)
  588. # [12:56] * Quits: @smaug (chatzilla@moz-D8807168.elisa-laajakaista.fi) (Ping timeout)
  589. # [12:58] * Joins: imsurit (Thunderbir@5BA519C6.D670FBE5.1A5E31FF.IP)
  590. # [12:58] * Quits: phenom (phenom@C16A7CFA.9EB7BC86.19D4AAB7.IP) (Ping timeout)
  591. # [12:58] * Joins: ggo98 (Thunderbir@moz-5872E29F.w86-212.abo.wanadoo.fr)
  592. # [12:59] * Joins: phenom (phenom@C16A7CFA.9EB7BC86.19D4AAB7.IP)
  593. # [13:01] * Joins: dzbarsky (Adium@moz-A7CDB794.dia.static.qwest.net)
  594. # [13:03] * Joins: espadrine (ttyl@moz-E9893C57.w90-2.abo.wanadoo.fr)
  595. # [13:04] * Quits: Optimizer (Optimizer@28C7C4C.CFB18D30.D5D59AD9.IP) (Ping timeout)
  596. # [13:08] * Quits: phenom (phenom@C16A7CFA.9EB7BC86.19D4AAB7.IP) (Ping timeout)
  597. # [13:10] * Quits: imsurit (Thunderbir@5BA519C6.D670FBE5.1A5E31FF.IP) (Ping timeout)
  598. # [13:10] * Joins: darktrojan (geoff@moz-F23687F.dsl.telstraclear.net)
  599. # [13:12] * Joins: rednaks (rednaks@E0EDE104.7B78A399.55FFA9B4.IP)
  600. # [13:14] * Quits: mcote|afk (mcote@1D8E4B86.9B0C981.6C85A25D.IP) (Ping timeout)
  601. # [13:16] * Joins: mcote|afk (mcote@1D8E4B86.9B0C981.6C85A25D.IP)
  602. # [13:22] * Joins: phenom (phenom@C16A7CFA.9EB7BC86.19D4AAB7.IP)
  603. # [13:23] * MrDHat|afk is now known as MrDHat
  604. # [13:23] * Quits: dzbarsky (Adium@moz-A7CDB794.dia.static.qwest.net) (Connection reset by peer)
  605. # [13:23] * Joins: dzbarsky (Adium@moz-A7CDB794.dia.static.qwest.net)
  606. # [13:23] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  607. # [13:24] * Quits: ckitching (ckitching@moz-329F29A3.lightspeed.sntcca.sbcglobal.net) (Input/output error)
  608. # [13:25] * Parts: mcsmurf (chatzilla@moz-EA7AD0A7.dip0.t-ipconnect.de)
  609. # [13:26] * Quits: darktrojan (geoff@moz-F23687F.dsl.telstraclear.net) (Quit: darktrojan)
  610. # [13:27] * Joins: vingtetun (Thunderbir@moz-64E1A8DA.fbx.proxad.net)
  611. # [13:31] * Quits: brambles (xymox@moz-969AAE9B.barwen.ch) (Ping timeout)
  612. # [13:32] * Quits: dzbarsky (Adium@moz-A7CDB794.dia.static.qwest.net) (Connection reset by peer)
  613. # [13:32] * Joins: dzbarsky1 (Adium@moz-A7CDB794.dia.static.qwest.net)
  614. # [13:32] * Joins: brambles (xymox@moz-969AAE9B.barwen.ch)
  615. # [13:43] * Joins: clokep (Instantbir@5538644.6A558D2.4EF9B99B.IP)
  616. # [13:45] * Quits: phenom (phenom@C16A7CFA.9EB7BC86.19D4AAB7.IP) (Ping timeout)
  617. # [13:47] * Joins: imsurit (Thunderbir@CFA71DE.7F107DB6.1A5E31FF.IP)
  618. # [13:48] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  619. # [13:51] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  620. # [13:51] * Quits: dzbarsky1 (Adium@moz-A7CDB794.dia.static.qwest.net) (Quit: Leaving.)
  621. # [13:52] * Quits: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  622. # [13:53] * Quits: vingtetun (Thunderbir@moz-64E1A8DA.fbx.proxad.net) (Quit: vingtetun)
  623. # [13:54] * Quits: mmargoliono (min@moz-9DBD522D.static.internode.on.net) (Quit: Leaving)
  624. # [13:54] * Joins: mmargoliono (min@moz-9DBD522D.static.internode.on.net)
  625. # [13:56] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  626. # [14:13] * Joins: phenom (phenom@26D8B9A1.6AC9BFD2.4A5F0685.IP)
  627. # [14:32] * mattwoodrow is now known as mattwoodrow|away
  628. # [14:33] * Quits: clokep (Instantbir@5538644.6A558D2.4EF9B99B.IP) (Ping timeout)
  629. # [14:36] * Quits: imsurit (Thunderbir@CFA71DE.7F107DB6.1A5E31FF.IP) (Quit: imsurit)
  630. # [14:38] * Joins: smaug (chatzilla@moz-D8807168.elisa-laajakaista.fi)
  631. # [14:38] * ChanServ sets mode: +o smaug
  632. # [14:39] * Quits: smontagu (chatzilla@moz-563B28F0.red.bezeqint.net) (Ping timeout)
  633. # [14:39] * Quits: sfoster (sfoster@moz-D30056A1.hsd1.or.comcast.net) (Ping timeout)
  634. # [14:40] * Joins: sfoster (sfoster@moz-D30056A1.hsd1.or.comcast.net)
  635. # [14:40] * Joins: lduros (user@moz-47F34250.phlapa.fios.verizon.net)
  636. # [14:48] * Joins: FabioMagnoni (fabiomagno@7103A180.4D72A436.F3163DCD.IP)
  637. # [14:49] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  638. # [14:49] * Quits: maxli (maxli@B5559308.9C54E60.2FA4EA88.IP) (Quit: Leaving.)
  639. # [14:49] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  640. # [14:52] <mmargoliono> do I need to rebuild when I modified mochitest browser test case before re-run the test?
  641. # [14:52] <Ms2ger> What platform?
  642. # [14:52] <mmargoliono> xp. Is it different in diff os?
  643. # [14:54] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  644. # [14:56] <Ms2ger> It's required on windows, not on unix
  645. # [14:56] * mattwoodrow|away is now known as mattwoodrow
  646. # [14:57] <mmargoliono> Ms2ger, thanks. Is it because of symlink?
  647. # [14:57] <Ms2ger> Yep
  648. # [15:00] * Joins: pbocan (Thunderbir@moz-87D742C.adsl.slovanet.sk)
  649. # [15:02] * Quits: ochameau (ochameau@moz-109A6728.fbx.proxad.net) (Ping timeout)
  650. # [15:02] * Joins: ochameau (ochameau@moz-109A6728.fbx.proxad.net)
  651. # [15:03] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  652. # [15:03] * Quits: mmargoliono (min@moz-9DBD522D.static.internode.on.net) (Ping timeout)
  653. # [15:03] * Joins: bbondy (bbondy@moz-717FF534.home.cgocable.net)
  654. # [15:03] * Quits: FabioMagnoni (fabiomagno@7103A180.4D72A436.F3163DCD.IP) (Input/output error)
  655. # [15:05] * Quits: a-865 (fmcz@moz-8F21088B.cable.mindspring.com) (Quit: ChatZilla 0.9.90-2013062019 [SeaMonkey 2.20/20130708004437])
  656. # [15:06] * Quits: MrMazda (fmcz@moz-8F21088B.cable.mindspring.com) (Quit: ChatZilla 0.9.86 [SeaMonkey 1.1.18/2009082712])
  657. # [15:09] * Joins: maxli (maxli@B5559308.9C54E60.2FA4EA88.IP)
  658. # [15:09] * Quits: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp) (Quit: masayuki)
  659. # [15:09] * Joins: masayuki (Thunderbir@moz-86D7F6E4.zaq.ne.jp)
  660. # [15:12] * Joins: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net)
  661. # [15:16] * Quits: bbondy (bbondy@moz-717FF534.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  662. # [15:18] * Joins: imsurit (Thunderbir@CFA71DE.7F107DB6.1A5E31FF.IP)
  663. # [15:19] * Quits: ochameau (ochameau@moz-109A6728.fbx.proxad.net) (Ping timeout)
  664. # [15:19] * Joins: ochameau (ochameau@moz-109A6728.fbx.proxad.net)
  665. # [15:21] * Joins: spohl (Adium@ADA93DF6.F81DF239.C69D10BF.IP)
  666. # [15:21] * Quits: spohl (Adium@ADA93DF6.F81DF239.C69D10BF.IP) (Input/output error)
  667. # [15:23] * Joins: Six (Mibbit@moz-7AD8F4AE.net-81-220-86.toulouse.rev.numericable.fr)
  668. # [15:25] * Joins: surkov (surkov@moz-6EE3EE5C.cpe.net.cable.rogers.com)
  669. # [15:25] * Joins: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com)
  670. # [15:27] <Six> surkov: ping?
  671. # [15:27] * mattwoodrow is now known as mattwoodrow|away
  672. # [15:27] <surkov> Six: pong
  673. # [15:28] <Six> surkov: hi, i submitted a patch yesterday for bug 883672 and i wanted to know if it was what was asked or if there was more things to do about it?
  674. # [15:28] <surkov> Six: let me look
  675. # [15:31] <surkov> Six: you need to check impll carefully, for example, you need to fix NS_IMPL_ISUPPORTS_INHERITED1 since inheritance chain was changed
  676. # [15:31] <surkov> probably there's something else
  677. # [15:32] <surkov> Six: I didn't put there good first bug so I suspect it's a bit more complicated than changing inheritance chain but I don't remember at this point
  678. # [15:32] * Joins: vingtetun (Thunderbir@moz-64E1A8DA.fbx.proxad.net)
  679. # [15:33] <surkov> Six: I will do review later (today evening or tomorrow morning) and probably I'll find something else
  680. # [15:33] <surkov> if you don't find anything at that point :)
  681. # [15:33] * Quits: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com) (Client exited)
  682. # [15:34] <Six> surkov: ok i just find out about NS_IMPL_ISUPPORTS_INHERITED1
  683. # [15:35] <Six> surkov: yeah i wasn't rushing you, i will push a new patch with NS_IMPL_ISUPPORTS_INHERITED1 so you will just have to find out if there are other stuff to change :)
  684. # [15:35] <Six> surkov: ty
  685. # [15:36] * Joins: kaze (kaze@moz-7E0F0F9E.fbx.proxad.net)
  686. # [15:38] * Quits: squeakytoy (christoffe@moz-79070305.dynamic.se.alltele.net) (Quit: Leaving)
  687. # [15:38] * Joins: squeakytoy (christoffe@moz-79070305.dynamic.se.alltele.net)
  688. # [15:39] <surkov> Six: thanks to you
  689. # [15:40] * Parts: atuljangra (Mibbit@4F882FCC.4850A4DD.1957C0DA.IP)
  690. # [15:41] * Quits: ochameau (ochameau@moz-109A6728.fbx.proxad.net) (Ping timeout)
  691. # [15:42] * Joins: ochameau (ochameau@moz-109A6728.fbx.proxad.net)
  692. # [15:46] * Quits: rednaks (rednaks@E0EDE104.7B78A399.55FFA9B4.IP) (Ping timeout)
  693. # [15:48] * Joins: tiziana (tiziana@C440B6E2.5A4197A9.73D36934.IP)
  694. # [15:49] * Joins: rednaks (rednaks@6491AFEC.B64E1312.55FFA9B4.IP)
  695. # [15:50] * Quits: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net) (Quit: Boriss)
  696. # [15:50] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  697. # [15:53] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  698. # [15:54] * Joins: smooney (sheilamoon@moz-FC1ADCB.dsl.bell.ca)
  699. # [15:55] * Quits: ggo98 (Thunderbir@moz-5872E29F.w86-212.abo.wanadoo.fr) (Quit: ggo98)
  700. # [15:56] * Quits: tiziana (tiziana@C440B6E2.5A4197A9.73D36934.IP) (Quit: tiziana)
  701. # [16:00] * Quits: norton- (norton@E680EB3B.B72C3CE3.9FD833D8.IP) (Ping timeout)
  702. # [16:02] * ewong is now known as ewong|sleep
  703. # [16:09] * Joins: MrMazda (fmcz@moz-8F21088B.cable.mindspring.com)
  704. # [16:14] * Joins: FabioMagnoni (fabiomagno@7103A180.4D72A436.F3163DCD.IP)
  705. # [16:14] * Quits: vd (vd@moz-7A53EEF0.ddns.cablebg.net) (Ping timeout)
  706. # [16:14] * Quits: @smaug (chatzilla@moz-D8807168.elisa-laajakaista.fi) (Ping timeout)
  707. # [16:16] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  708. # [16:17] * Quits: FabioMagnoni (fabiomagno@7103A180.4D72A436.F3163DCD.IP) (Ping timeout)
  709. # [16:18] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  710. # [16:19] * Quits: ggp (ggp@moz-5CF47426.dia.static.qwest.net) (Input/output error)
  711. # [16:20] * Joins: a-865 (fmcz@moz-8F21088B.cable.mindspring.com)
  712. # [16:21] * Joins: ggp (ggp@moz-5CF47426.dia.static.qwest.net)
  713. # [16:24] * Quits: bkelly (bkelly@moz-8C21D137.washdc.fios.verizon.net) (Quit: Ex-Chat)
  714. # [16:24] * Quits: ggp (ggp@moz-5CF47426.dia.static.qwest.net) (Ping timeout)
  715. # [16:27] * Quits: ewong|sleep (chatzilla@moz-772F27FF.netvigator.com) (Ping timeout)
  716. # [16:29] * Joins: cronco (Thunderbir@17FF97FF.AE2F10B0.3376CD77.IP)
  717. # [16:29] * Quits: kaze (kaze@moz-7E0F0F9E.fbx.proxad.net) (Ping timeout)
  718. # [16:29] * Joins: ggp (ggp@moz-5CF47426.dia.static.qwest.net)
  719. # [16:31] * Quits: ggp (ggp@moz-5CF47426.dia.static.qwest.net) (Ping timeout)
  720. # [16:31] * Quits: maxli (maxli@B5559308.9C54E60.2FA4EA88.IP) (Quit: Leaving.)
  721. # [16:35] * Quits: imsurit (Thunderbir@CFA71DE.7F107DB6.1A5E31FF.IP) (Quit: imsurit)
  722. # [16:35] * Joins: imsurit (Thunderbir@CFA71DE.7F107DB6.1A5E31FF.IP)
  723. # [16:40] * Quits: derf (derf@moz-4168F490.net) (Ping timeout)
  724. # [16:42] * Quits: bsmedberg_ (bsmedberg@moz-748CAEF1.jst.pa.atlanticbb.net) (Connection reset by peer)
  725. # [16:43] * Quits: imsurit (Thunderbir@CFA71DE.7F107DB6.1A5E31FF.IP) (Ping timeout)
  726. # [16:44] * Joins: norton- (norton@E680EB3B.B72C3CE3.9FD833D8.IP)
  727. # [16:46] * Joins: phenom2 (yaaic@26D8B9A1.6AC9BFD2.4A5F0685.IP)
  728. # [16:50] * Quits: cronco (Thunderbir@17FF97FF.AE2F10B0.3376CD77.IP) (Quit: cronco)
  729. # [16:50] * Joins: maxli (maxli@B5559308.9C54E60.2FA4EA88.IP)
  730. # [16:51] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  731. # [16:53] * Quits: glosoli (glosoli@moz-72C60525.static.zebra.lt) (Quit: Textual IRC Client: www.textualapp.com)
  732. # [16:53] * Fallen|away is now known as Fallen
  733. # [16:54] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  734. # [16:56] * Joins: bernd (chatzilla@moz-864843C7.dip0.t-ipconnect.de)
  735. # [16:59] * Joins: jabbar (superuser@9582D44C.C2D701F9.B0B016E4.IP)
  736. # [17:00] <jabbar> how to fetch record from sqlite with dbConn.createStatement?
  737. # [17:00] * Joins: derf (derf@moz-4168F490.net)
  738. # [17:00] * Joins: glosoli (glosoli@moz-72C60525.static.zebra.lt)
  739. # [17:00] <jabbar> i tried but that return me nothing
  740. # [17:01] <jabbar> plz help me
  741. # [17:06] * Joins: tomer (tomer@moz-F45DAEFD.static.012.net.il)
  742. # [17:07] <jabbar> help
  743. # [17:07] <jabbar> help plz
  744. # [17:11] * jchen|away is now known as jchen
  745. # [17:12] * Quits: @bz (bzbarsky@moz-A28C5395.bstnma.fios.verizon.net) (Ping timeout)
  746. # [17:13] * Joins: dustin (djmitche@moz-1B1CBE3B.albyny.fios.verizon.net)
  747. # [17:13] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  748. # [17:15] * Joins: alfredo (chatzilla@moz-F3F875C4.dynamic.hinet.net)
  749. # [17:19] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  750. # [17:19] * Joins: cers (csonne@3B6BDCDF.47275860.8B3CB80E.IP)
  751. # [17:25] * Quits: annevk (annevk@moz-1534F032.ptr.us.xo.net) (Ping timeout)
  752. # [17:30] * Quits: alfredo (chatzilla@moz-F3F875C4.dynamic.hinet.net) (Ping timeout)
  753. # [17:30] * Quits: derf (derf@moz-4168F490.net) (Ping timeout)
  754. # [17:30] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  755. # [17:31] * Joins: derf (derf@moz-4168F490.net)
  756. # [17:33] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  757. # [17:34] * Quits: dustin (djmitche@moz-1B1CBE3B.albyny.fios.verizon.net) (Ping timeout)
  758. # [17:36] * Joins: dustin (djmitche@moz-1B1CBE3B.albyny.fios.verizon.net)
  759. # [17:36] * Joins: bsmedberg (bsmedberg@moz-748CAEF1.jst.pa.atlanticbb.net)
  760. # [17:36] * ChanServ sets mode: +o bsmedberg
  761. # [17:38] * Quits: schien (anonymous@moz-FF2DF627.dynamic.hinet.net) (Quit: schien)
  762. # [17:41] * Joins: imsurit (Thunderbir@52E73B6E.964694C.1A5E31FF.IP)
  763. # [17:42] * Quits: tchevalier (Thunderbir@moz-C2751B0C.fbx.proxad.net) (Quit: tchevalier)
  764. # [17:43] * Joins: tchevalier (Thunderbir@moz-C2751B0C.fbx.proxad.net)
  765. # [17:45] <Callek> jabbar: where is your code going to sit (roughly - e.g. frontend Firefox, Frontend Android, Backend/Gecko, a website?), and what language are you writing in (javascript, php, python, C++, java?)
  766. # [17:45] * Parts: dustin (djmitche@moz-1B1CBE3B.albyny.fios.verizon.net)
  767. # [17:45] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  768. # [17:48] <jabbar> Callek: i work on firefox extension and use js and my code is:http://pastebin.mozilla.org/2681075
  769. # [17:48] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  770. # [17:48] * Joins: twi (Adium@moz-B65411AF.cust.dsl.vodafone.it)
  771. # [17:49] * Quits: derf (derf@moz-4168F490.net) (Ping timeout)
  772. # [17:49] <Callek> jabbar: I'd recommend you follow the advice in http://dutherenverseauborddelatable.wordpress.com/2013/07/19/asynchronous-database-connections-in-the-mozilla-platform/ :-)
  773. # [17:49] <Callek> it even has a good API for you
  774. # [17:51] <Callek> more-info at https://developer.mozilla.org/en-US/docs/Mozilla/JavaScript_code_modules/Sqlite.jsm
  775. # [17:52] <Callek> the blog post also mentions Task.jsm as well -- which you can get more info at https://developer.mozilla.org/en-US/docs/Mozilla/JavaScript_code_modules/Task.jsm
  776. # [17:53] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  777. # [17:54] <NeilAway> aargh, why does my build always fail to make dombindings_s
  778. # [17:55] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  779. # [17:57] * Joins: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl)
  780. # [18:05] * Joins: cilias (cilias@moz-D65C0C74.cpe.net.cable.rogers.com)
  781. # [18:08] * Quits: norton- (norton@E680EB3B.B72C3CE3.9FD833D8.IP) (Ping timeout)
  782. # [18:08] * Quits: phenom2 (yaaic@26D8B9A1.6AC9BFD2.4A5F0685.IP) (Quit: Yaaic - Yet another Android IRC client - http://www.yaaic.org)
  783. # [18:08] * Quits: smooney (sheilamoon@moz-FC1ADCB.dsl.bell.ca) (Quit: smooney)
  784. # [18:09] * NeilAway wonders whom to ask for a review of a patch to nsFileView.cpp
  785. # [18:12] * Joins: mmc|laptop (mchew@moz-BBC0C7F1.hsd1.ca.comcast.net)
  786. # [18:14] * Joins: breck (breck@moz-AD418F52.dsl.static.sonic.net)
  787. # [18:18] * Joins: aut0mata (automata@ACBB333A.6DF9FAA4.10054EA3.IP)
  788. # [18:19] * Joins: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net)
  789. # [18:20] * Quits: rednaks (rednaks@6491AFEC.B64E1312.55FFA9B4.IP) (Ping timeout)
  790. # [18:23] * mattwoodrow|away is now known as mattwoodrow
  791. # [18:24] * Joins: fossterer (Thunderbir@EFD7D4EF.F5E5CB45.7796163B.IP)
  792. # [18:24] * jchen is now known as jchen|away
  793. # [18:25] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  794. # [18:25] * Quits: mmc|laptop (mchew@moz-BBC0C7F1.hsd1.ca.comcast.net) (Quit: mmc|laptop)
  795. # [18:27] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  796. # [18:30] * Quits: maxli (maxli@B5559308.9C54E60.2FA4EA88.IP) (Quit: Leaving.)
  797. # [18:32] * Quits: vingtetun (Thunderbir@moz-64E1A8DA.fbx.proxad.net) (Quit: vingtetun)
  798. # [18:35] * Joins: rohandalvi (rohandalvi@moz-F8DC07B3.rochester.res.rr.com)
  799. # [18:35] * Joins: cronco (Thunderbir@17FF97FF.AE2F10B0.3376CD77.IP)
  800. # [18:35] * Joins: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net)
  801. # [18:39] * Joins: Asa (asa@moz-B5ECF169.ptr.us.xo.net)
  802. # [18:40] * Joins: maxli (maxli@B5559308.9C54E60.2FA4EA88.IP)
  803. # [18:40] * Joins: b10n1k (j0ni@moz-937C0C8D.access.hol.gr)
  804. # [18:42] * Joins: mmc|laptop (mchew@moz-BBC0C7F1.hsd1.ca.comcast.net)
  805. # [18:42] * Joins: rednaks (rednaks@6491AFEC.B64E1312.55FFA9B4.IP)
  806. # [18:44] * Parts: mmc|laptop (mchew@moz-BBC0C7F1.hsd1.ca.comcast.net)
  807. # [18:46] * Quits: rednaks (rednaks@6491AFEC.B64E1312.55FFA9B4.IP) (Ping timeout)
  808. # [18:47] * jchen|away is now known as jchen
  809. # [18:48] * Joins: vingtetun (Thunderbir@moz-64E1A8DA.fbx.proxad.net)
  810. # [18:53] * Quits: vingtetun (Thunderbir@moz-64E1A8DA.fbx.proxad.net) (Ping timeout)
  811. # [18:53] * Quits: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net) (Quit: Boriss)
  812. # [18:53] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  813. # [18:56] * Quits: fossterer (Thunderbir@EFD7D4EF.F5E5CB45.7796163B.IP) (Quit: I'm away)
  814. # [18:56] * Joins: ErvisTusha (ErvisTusha@90CC31DA.F69FB6EA.363D84A4.IP)
  815. # [18:57] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  816. # [18:58] * Joins: smaug (chatzilla@moz-D8807168.elisa-laajakaista.fi)
  817. # [18:58] * ChanServ sets mode: +o smaug
  818. # [19:00] * Joins: smooney (sheilamoon@moz-FC1ADCB.dsl.bell.ca)
  819. # [19:02] * Quits: abr (abr@moz-E7573D65.lightspeed.dllstx.sbcglobal.net) (Ping timeout)
  820. # [19:03] * Joins: abr (abr@moz-E7573D65.lightspeed.dllstx.sbcglobal.net)
  821. # [19:07] * Quits: surkov (surkov@moz-6EE3EE5C.cpe.net.cable.rogers.com) (Quit: surkov)
  822. # [19:10] * Quits: Asa (asa@moz-B5ECF169.ptr.us.xo.net) (Ping timeout)
  823. # [19:10] * Joins: Asa (asa@moz-B5ECF169.ptr.us.xo.net)
  824. # [19:11] * Joins: derf (derf@moz-4168F490.net)
  825. # [19:11] * Joins: vingtetun (Thunderbir@moz-64E1A8DA.fbx.proxad.net)
  826. # [19:12] * mattwoodrow is now known as mattwoodrow|away
  827. # [19:13] * jchen is now known as jchen|away
  828. # [19:14] * Quits: vingtetun (Thunderbir@moz-64E1A8DA.fbx.proxad.net) (Quit: vingtetun)
  829. # [19:14] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  830. # [19:15] * Quits: imsurit (Thunderbir@52E73B6E.964694C.1A5E31FF.IP) (Quit: imsurit)
  831. # [19:16] * Joins: Mossop (mossop@moz-3D9B2D8F.lsanca.fios.verizon.net)
  832. # [19:16] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  833. # [19:19] * Quits: smooney (sheilamoon@moz-FC1ADCB.dsl.bell.ca) (Quit: smooney)
  834. # [19:20] * Joins: vendo (chatzilla@56D55732.7114713F.B1C414DA.IP)
  835. # [19:20] * Quits: vendo (chatzilla@56D55732.7114713F.B1C414DA.IP) (Quit: ChatZilla 0.9.90-rdmsoft [XULRunner 1.9.0.17/2009122204])
  836. # [19:25] * Joins: mconley (mconley@8CBAE1D3.EB8166C5.F30C9E9E.IP)
  837. # [19:26] * Quits: Callek (chatzilla@moz-89F90B30.dhcp.oxfr.ma.charter.com) (Ping timeout)
  838. # [19:26] * Quits: Asa (asa@moz-B5ECF169.ptr.us.xo.net) (Ping timeout)
  839. # [19:26] * Joins: Callek (chatzilla@moz-89F90B30.dhcp.oxfr.ma.charter.com)
  840. # [19:26] * Joins: Asa (asa@moz-B5ECF169.ptr.us.xo.net)
  841. # [19:27] * Quits: b10n1k (j0ni@moz-937C0C8D.access.hol.gr) (Ping timeout)
  842. # [19:28] * Quits: cers (csonne@3B6BDCDF.47275860.8B3CB80E.IP) (Quit: Computer has gone to sleep.)
  843. # [19:31] * Quits: gerv (Instantbir@moz-8E68CF56.in-addr.arpa) (Ping timeout)
  844. # [19:32] * Joins: gerv (Instantbir@moz-8E68CF56.in-addr.arpa)
  845. # [19:33] * Quits: @smaug (chatzilla@moz-D8807168.elisa-laajakaista.fi) (Ping timeout)
  846. # [19:33] * Joins: smaug (chatzilla@moz-D8807168.elisa-laajakaista.fi)
  847. # [19:33] * ChanServ sets mode: +o smaug
  848. # [19:34] * Quits: rohandalvi (rohandalvi@moz-F8DC07B3.rochester.res.rr.com) (Client exited)
  849. # [19:34] * Quits: flo-retina (Instantbir@moz-87C33FDA.kimsufi.com) (Ping timeout)
  850. # [19:35] * Joins: rohandalvi (rohandalvi@moz-F8DC07B3.rochester.res.rr.com)
  851. # [19:36] * Quits: Six (Mibbit@moz-7AD8F4AE.net-81-220-86.toulouse.rev.numericable.fr) (Quit: http://www.mibbit.com ajax IRC Client)
  852. # [19:37] * Quits: rohandalvi (rohandalvi@moz-F8DC07B3.rochester.res.rr.com) (Ping timeout)
  853. # [19:41] * Quits: maxli (maxli@B5559308.9C54E60.2FA4EA88.IP) (Quit: Leaving.)
  854. # [19:42] * jchen|away is now known as jchen
  855. # [19:43] * Joins: b10n1k (j0ni@moz-D540C14A.access.hol.gr)
  856. # [19:44] * Joins: Lethalman (lethal@moz-1AD22393.libero.it)
  857. # [19:45] * Joins: vingtetun (Thunderbir@moz-64E1A8DA.fbx.proxad.net)
  858. # [19:45] * Joins: cers (csonne@3B6BDCDF.47275860.8B3CB80E.IP)
  859. # [19:46] * Joins: maxli (maxli@B5559308.9C54E60.2FA4EA88.IP)
  860. # [19:47] * Quits: ErvisTusha (ErvisTusha@90CC31DA.F69FB6EA.363D84A4.IP) (Ping timeout)
  861. # [19:47] * Quits: maxli (maxli@B5559308.9C54E60.2FA4EA88.IP) (Ping timeout)
  862. # [19:47] * Quits: Lethalman (lethal@moz-1AD22393.libero.it) (Ping timeout)
  863. # [19:48] * Joins: ErvisTusha (ErvisTusha@90CC31DA.F69FB6EA.363D84A4.IP)
  864. # [19:51] * Joins: abhishekp (chatzilla@D29E7280.286FE6A7.53E421C3.IP)
  865. # [19:51] <Ms2ger> 896k bugs... Anyone who wants to guess when we hit 900k?
  866. # [19:51] * jchen is now known as jchen|away
  867. # [19:52] * Joins: WG9s (bill@moz-E9E3CA35.hsd1.ma.comcast.net)
  868. # [19:52] * Quits: dew (Instantbir@moz-2C6F2E2.dhcp.stls.mo.charter.com) (Ping timeout)
  869. # [19:54] * Quits: abhishekp (chatzilla@D29E7280.286FE6A7.53E421C3.IP) (Quit: ChatZilla 0.9.90.1 [Firefox 22.0/20130618035212])
  870. # [19:56] * Quits: derf (derf@moz-4168F490.net) (Ping timeout)
  871. # [20:03] * Joins: JonathanS (JonathanS@74338381.87D4EDDB.521902B0.IP)
  872. # [20:03] * Joins: RealRaven (Thunderbir@47CEE256.89AEBC9F.C3498625.IP)
  873. # [20:04] * Quits: breck (breck@moz-AD418F52.dsl.static.sonic.net) (Client exited)
  874. # [20:07] * Quits: ErvisTusha (ErvisTusha@90CC31DA.F69FB6EA.363D84A4.IP) (Ping timeout)
  875. # [20:08] * Joins: ErvisTusha (ErvisTusha@90CC31DA.F69FB6EA.363D84A4.IP)
  876. # [20:13] * Quits: Asa (asa@moz-B5ECF169.ptr.us.xo.net) (Ping timeout)
  877. # [20:13] * Joins: squib (squib@moz-54866485.dhcp.mdsn.wi.charter.com)
  878. # [20:19] <gaston> isnt there a contest for that ?
  879. # [20:21] * Joins: derf (derf@moz-4168F490.net)
  880. # [20:25] * Joins: dew (Instantbir@moz-2C6F2E2.dhcp.stls.mo.charter.com)
  881. # [20:27] <Ms2ger> gerv doesn't seem to have started a sweepstake yet
  882. # [20:30] <Ms2ger> 800k was filed on 2012-10-10, so 8-9 months for 100k bugs
  883. # [20:31] <Ms2ger> Which puts the 1 millionth bug somewhere in March, probably
  884. # [20:32] <glosoli> Hmm
  885. # [20:33] <glosoli> Sounds sad
  886. # [20:33] * Joins: rohandalvi (rohandalvi@moz-F8DC07B3.rochester.res.rr.com)
  887. # [20:36] * Joins: dveditz (dveditz@moz-67794A0A.hsd1.ca.comcast.net)
  888. # [20:36] * ChanServ sets mode: +o dveditz
  889. # [20:36] * Joins: josh (josh@moz-348C4790.hsd1.mn.comcast.net)
  890. # [20:37] * Joins: dbaron (dbaron@moz-FD349932.dsl.dynamic.sonic.net)
  891. # [20:37] * ChanServ sets mode: +ao dbaron dbaron
  892. # [20:38] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  893. # [20:39] * Joins: smooney (sheilamoon@moz-FC1ADCB.dsl.bell.ca)
  894. # [20:41] <@smaug> why bad?
  895. # [20:42] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  896. # [20:44] * Joins: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com)
  897. # [20:46] * jcranmer|away is now known as jcranmer
  898. # [20:47] * Quits: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net) (Ping timeout)
  899. # [20:47] * corey|away is now known as corey
  900. # [20:48] * Quits: mconley (mconley@8CBAE1D3.EB8166C5.F30C9E9E.IP) (Input/output error)
  901. # [20:49] * Joins: kaze (kaze@moz-7E0F0F9E.fbx.proxad.net)
  902. # [20:49] * Joins: tonymec (tonymec@A154114.55A138C.277517C1.IP)
  903. # [20:51] * Quits: vingtetun (Thunderbir@moz-64E1A8DA.fbx.proxad.net) (Ping timeout)
  904. # [20:51] * Joins: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net)
  905. # [20:53] * Joins: m_gol (m_gol@moz-9BDB7946.dynamic.chello.pl)
  906. # [20:54] * Quits: Enn (enn@moz-1758BB1C.cpe.net.cable.rogers.com) (Ping timeout)
  907. # [20:55] * Joins: AaronMT (AaronMT@moz-5DF3A271.cpe.net.cable.rogers.com)
  908. # [20:56] * Quits: rohandalvi (rohandalvi@moz-F8DC07B3.rochester.res.rr.com) (Client exited)
  909. # [20:56] * Quits: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net) (Quit: ekr)
  910. # [20:59] * Quits: tonymec (tonymec@A154114.55A138C.277517C1.IP) (Ping timeout)
  911. # [20:59] * Quits: smooney (sheilamoon@moz-FC1ADCB.dsl.bell.ca) (Quit: smooney)
  912. # [21:00] * corey is now known as corey|away
  913. # [21:00] * Quits: Callek (chatzilla@moz-89F90B30.dhcp.oxfr.ma.charter.com) (Connection reset by peer)
  914. # [21:02] * Joins: Callek (chatzilla@moz-89F90B30.dhcp.oxfr.ma.charter.com)
  915. # [21:02] * Joins: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net)
  916. # [21:03] * Joins: Callek_Away (chatzilla@moz-89F90B30.dhcp.oxfr.ma.charter.com)
  917. # [21:03] * Quits: Callek (chatzilla@moz-89F90B30.dhcp.oxfr.ma.charter.com) (Connection reset by peer)
  918. # [21:04] * Callek_Away is now known as Callek
  919. # [21:07] * Joins: rohandalvi (rohandalvi@moz-F8DC07B3.rochester.res.rr.com)
  920. # [21:08] * Joins: jwilde (Thunderbir@moz-23E1A364.aton.com)
  921. # [21:09] * Quits: sfoster (sfoster@moz-D30056A1.hsd1.or.comcast.net) (Ping timeout)
  922. # [21:11] * Joins: sfoster (sfoster@moz-D30056A1.hsd1.or.comcast.net)
  923. # [21:14] * Quits: dew (Instantbir@moz-2C6F2E2.dhcp.stls.mo.charter.com) (Quit: Instantbird 1.4 -- http://www.instantbird.com)
  924. # [21:14] * Quits: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net) (Connection reset by peer)
  925. # [21:14] * Joins: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net)
  926. # [21:16] * Joins: smooney (sheilamoon@moz-FC1ADCB.dsl.bell.ca)
  927. # [21:17] * Quits: aut0mata (automata@ACBB333A.6DF9FAA4.10054EA3.IP) (Quit: Saindo)
  928. # [21:17] * Joins: dew (Instantbir@moz-2C6F2E2.dhcp.stls.mo.charter.com)
  929. # [21:18] * Joins: aut0mata (automata@ACBB333A.6DF9FAA4.10054EA3.IP)
  930. # [21:18] * Quits: rohandalvi (rohandalvi@moz-F8DC07B3.rochester.res.rr.com) (Client exited)
  931. # [21:20] * Quits: bernd (chatzilla@moz-864843C7.dip0.t-ipconnect.de) (Quit: ChatZilla 0.9.90.1 [Firefox 25.0a1/20130718030201])
  932. # [21:22] * Quits: capella (chatzilla@moz-8F413D10.twcny.res.rr.com) (Connection reset by peer)
  933. # [21:24] * Joins: capella (chatzilla@moz-8F413D10.twcny.res.rr.com)
  934. # [21:25] * Quits: smooney (sheilamoon@moz-FC1ADCB.dsl.bell.ca) (Quit: smooney)
  935. # [21:25] * Joins: maxli (maxli@B5559308.9C54E60.2FA4EA88.IP)
  936. # [21:27] * Quits: JonathanS (JonathanS@74338381.87D4EDDB.521902B0.IP) (Quit: Computer has gone to sleep.)
  937. # [21:29] * Joins: gwagner (Gregor@moz-B8B530C2.hsd1.ca.comcast.net)
  938. # [21:30] * Joins: vendo (chatzilla@56D55732.7114713F.B1C414DA.IP)
  939. # [21:30] * Joins: JosiahOne (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net)
  940. # [21:32] * Joins: bajaj (Adium@moz-C8BA7EB5.hsd1.ca.comcast.net)
  941. # [21:32] * Joins: BartlomiejB (bartlomiej@23F051CF.2814101B.59EB8DFD.IP)
  942. # [21:37] * Quits: b10n1k (j0ni@moz-D540C14A.access.hol.gr) (Ping timeout)
  943. # [21:39] * Quits: nigelb (nigel@AC024D61.81112D4F.EE6E63A5.IP) (Ping timeout)
  944. # [21:42] * Joins: jet (jet@moz-79F891EE.hsd1.ca.comcast.net)
  945. # [21:45] * Quits: capella (chatzilla@moz-8F413D10.twcny.res.rr.com) (Ping timeout)
  946. # [21:45] * Joins: rohandalvi (rohandalvi@moz-F8DC07B3.rochester.res.rr.com)
  947. # [21:46] * Quits: Ms2ger (Ms2ger@moz-12781595.adsl-dyn.isp.belgacom.be) (Quit: nn)
  948. # [21:46] * Joins: capella (chatzilla@moz-8F413D10.twcny.res.rr.com)
  949. # [21:53] * Joins: jviereck (Adium@moz-A034D4DA.dclient.hispeed.ch)
  950. # [21:54] * Quits: jviereck (Adium@moz-A034D4DA.dclient.hispeed.ch) (Quit: Leaving.)
  951. # [21:55] * Quits: tomer (tomer@moz-F45DAEFD.static.012.net.il) (Ping timeout)
  952. # [21:59] * Joins: breck (breck@moz-75F4A57.hsd1.ca.comcast.net)
  953. # [21:59] * Quits: josh (josh@moz-348C4790.hsd1.mn.comcast.net) (Quit: josh)
  954. # [22:01] * Quits: capella (chatzilla@moz-8F413D10.twcny.res.rr.com) (Ping timeout)
  955. # [22:01] * Joins: capella (chatzilla@moz-8F413D10.twcny.res.rr.com)
  956. # [22:03] * Joins: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net)
  957. # [22:03] * merike is now known as merike|away
  958. # [22:04] * Joins: mconley (mconley@8CBAE1D3.EB8166C5.F30C9E9E.IP)
  959. # [22:07] * Quits: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net) (Quit: Boriss)
  960. # [22:10] * Joins: FabioMagnoni (fabiomagno@E13DCD0F.C6AAE853.368B8D1A.IP)
  961. # [22:11] * Quits: bajaj (Adium@moz-C8BA7EB5.hsd1.ca.comcast.net) (Connection reset by peer)
  962. # [22:11] * Joins: bajaj (Adium@moz-C8BA7EB5.hsd1.ca.comcast.net)
  963. # [22:11] * Quits: pbocan (Thunderbir@moz-87D742C.adsl.slovanet.sk) (Ping timeout)
  964. # [22:13] * Quits: vendo (chatzilla@56D55732.7114713F.B1C414DA.IP) (Quit: ChatZilla 0.9.90-rdmsoft [XULRunner 1.9.0.17/2009122204])
  965. # [22:14] * Joins: bjacob__ (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  966. # [22:15] * Joins: pbocan (Thunderbir@moz-87D742C.adsl.slovanet.sk)
  967. # [22:16] * Joins: nigelb (nigel@AC024D61.81112D4F.EE6E63A5.IP)
  968. # [22:16] * Quits: FabioMagnoni (fabiomagno@E13DCD0F.C6AAE853.368B8D1A.IP) (Ping timeout)
  969. # [22:17] * Quits: capella (chatzilla@moz-8F413D10.twcny.res.rr.com) (Ping timeout)
  970. # [22:19] * Joins: capella (chatzilla@moz-8F413D10.twcny.res.rr.com)
  971. # [22:20] * Joins: chrisccoulson (chr1s@moz-6A3A134E.cust-13020.ip.static.uno.uk.net)
  972. # [22:20] * Joins: dzbarsky (Adium@moz-A7CDB794.dia.static.qwest.net)
  973. # [22:23] * Quits: msucan (mihai@48B6DE4B.700B7157.7C5F70AF.IP) (Quit: Leaving.)
  974. # [22:24] * Quits: Mossop (mossop@moz-3D9B2D8F.lsanca.fios.verizon.net) (Ping timeout)
  975. # [22:27] * Quits: maxli (maxli@B5559308.9C54E60.2FA4EA88.IP) (Quit: Leaving.)
  976. # [22:29] * Joins: till (till@moz-8AB41601.adsl.alicedsl.de)
  977. # [22:30] * Quits: glosoli (glosoli@moz-72C60525.static.zebra.lt) (Quit: Textual IRC Client: www.textualapp.com)
  978. # [22:30] * Joins: glosoli (glosoli@moz-72C60525.static.zebra.lt)
  979. # [22:30] * Joins: maxli (maxli@B5559308.9C54E60.2FA4EA88.IP)
  980. # [22:33] * Joins: Mossop (mossop@moz-3D9B2D8F.lsanca.fios.verizon.net)
  981. # [22:34] * Quits: capella (chatzilla@moz-8F413D10.twcny.res.rr.com) (Ping timeout)
  982. # [22:35] * Quits: bajaj (Adium@moz-C8BA7EB5.hsd1.ca.comcast.net) (Quit: Leaving.)
  983. # [22:36] * Joins: capella (chatzilla@moz-8F413D10.twcny.res.rr.com)
  984. # [22:37] * Quits: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net) (Quit: ekr)
  985. # [22:39] * Quits: binki (ohnobinki@moz-5F431110.try.wideopenwest.com) (Ping timeout)
  986. # [22:41] * Quits: cers (csonne@3B6BDCDF.47275860.8B3CB80E.IP) (Quit: Computer has gone to sleep.)
  987. # [22:43] * Joins: JonathanS (JonathanS@74338381.87D4EDDB.521902B0.IP)
  988. # [22:45] * Joins: binki (ohnobinki@moz-5F431110.try.wideopenwest.com)
  989. # [22:48] * Joins: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net)
  990. # [22:48] * Quits: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP) (Connection reset by peer)
  991. # [22:50] * Joins: FabioMagnoni (fabiomagno@E13DCD0F.C6AAE853.368B8D1A.IP)
  992. # [22:51] * Joins: nrc (nrc@7BE24E90.A5032A01.3CFC199D.IP)
  993. # [22:53] * Quits: michal (michal@moz-6CE1017D.broadband17.iol.cz) (Quit: Leaving.)
  994. # [22:55] * Quits: capella (chatzilla@moz-8F413D10.twcny.res.rr.com) (Ping timeout)
  995. # [22:55] * Joins: capella (chatzilla@moz-8F413D10.twcny.res.rr.com)
  996. # [22:56] * Joins: michal (michal@18728636.D0F82CD8.32697916.IP)
  997. # [22:57] * Quits: openjck|offline (openjck@moz-73F89E5C.com) (Input/output error)
  998. # [23:02] * Quits: FabioMagnoni (fabiomagno@E13DCD0F.C6AAE853.368B8D1A.IP) (Input/output error)
  999. # [23:02] * Joins: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net)
  1000. # [23:08] * Quits: capella (chatzilla@moz-8F413D10.twcny.res.rr.com) (Ping timeout)
  1001. # [23:09] * Joins: smooney (sheilamoon@AC3C7CA.26735741.CA5B6332.IP)
  1002. # [23:10] * Quits: rohandalvi (rohandalvi@moz-F8DC07B3.rochester.res.rr.com) (Client exited)
  1003. # [23:10] * Joins: jrmuizel (jrmuizel@moz-6E78BC7C.cpe.teksavvy.com)
  1004. # [23:10] * Quits: Boriss (FlyingToas@moz-D58E9.public.monkeybrains.net) (Quit: Boriss)
  1005. # [23:10] * Joins: rohandalvi (rohandalvi@moz-F8DC07B3.rochester.res.rr.com)
  1006. # [23:13] * Joins: capella (chatzilla@moz-8F413D10.twcny.res.rr.com)
  1007. # [23:14] * Quits: rohandalvi (rohandalvi@moz-F8DC07B3.rochester.res.rr.com) (Ping timeout)
  1008. # [23:16] * Joins: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net)
  1009. # [23:20] * Joins: rohandalvi (rohandalvi@moz-F8DC07B3.rochester.res.rr.com)
  1010. # [23:21] * Joins: bajaj (Adium@moz-C8BA7EB5.hsd1.ca.comcast.net)
  1011. # [23:23] * Quits: JonathanS (JonathanS@74338381.87D4EDDB.521902B0.IP) (Quit: Computer has gone to sleep.)
  1012. # [23:23] * Joins: Earth4 (cht-zla_un@68C12B.CAF513AD.E496B34E.IP)
  1013. # [23:24] * Quits: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net) (Quit: damons)
  1014. # [23:27] * Quits: smooney (sheilamoon@AC3C7CA.26735741.CA5B6332.IP) (Quit: smooney)
  1015. # [23:28] * @smaug kicks someone. browser chrome is leaking again
  1016. # [23:28] <NeilAway> hmm, so I've got until then to tweak my ChatZilla to recognise 7-digit bug numbers
  1017. # [23:28] * Joins: smooney (sheilamoon@AC3C7CA.26735741.CA5B6332.IP)
  1018. # [23:28] <NeilAway> (too lazy to install a newer version)
  1019. # [23:30] * Quits: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  1020. # [23:30] * Joins: ckitching (ckitching@moz-329F29A3.lightspeed.sntcca.sbcglobal.net)
  1021. # [23:31] * Joins: damons (gnubeard@moz-BCB43F5D.hsd1.ca.comcast.net)
  1022. # [23:35] * Joins: vikash (vikash@4F64C168.251D702B.74119F78.IP)
  1023. # [23:39] * Quits: smooney (sheilamoon@AC3C7CA.26735741.CA5B6332.IP) (Quit: smooney)
  1024. # [23:41] * Joins: maxli1 (maxli@B5559308.9C54E60.2FA4EA88.IP)
  1025. # [23:41] * Quits: maxli (maxli@B5559308.9C54E60.2FA4EA88.IP) (Connection reset by peer)
  1026. # [23:41] * Quits: jet (jet@moz-79F891EE.hsd1.ca.comcast.net) (Quit: jet)
  1027. # [23:41] * Joins: cpearce (chatzilla@538BABFE.A073F3E.97BBD552.IP)
  1028. # [23:41] <NeilAway> Mossop/Gavin: which of our toolkit reviewers use Linux?
  1029. # [23:43] * Joins: brian (chatzilla@moz-A87574A6.hsd1.pa.comcast.net)
  1030. # [23:45] * Quits: jwilde (Thunderbir@moz-23E1A364.aton.com) (Ping timeout)
  1031. # [23:45] * Joins: jwilde (Thunderbir@moz-23E1A364.aton.com)
  1032. # [23:46] * Quits: capella (chatzilla@moz-8F413D10.twcny.res.rr.com) (Ping timeout)
  1033. # [23:47] * Quits: JosiahOne (Instantbir@moz-2C74C5DD.lightspeed.livnmi.sbcglobal.net) (Quit: [self dealloc];)
  1034. # [23:47] * Joins: karl (karl@moz-C433B975.jetstream.xtra.co.nz)
  1035. # [23:47] * Joins: capella (chatzilla@moz-8F413D10.twcny.res.rr.com)
  1036. # [23:47] * Fallen is now known as Fallen|away
  1037. # [23:51] * Quits: ekr (ekr@moz-AEFB747.hfc.comcastbusiness.net) (Ping timeout)
  1038. # [23:53] * Quits: espadrine (ttyl@moz-E9893C57.w90-2.abo.wanadoo.fr) (Ping timeout)
  1039. # [23:55] * Joins: mbrubeck (mbrub_000@moz-45568FC0.hsd1.wa.comcast.net)
  1040. # Session Close: Mon Jul 22 00:00:00 2013

The end :)