/irc-logs / mozilla / #developers / 2012-04-18 / end

Options:

  1. # Session Start: Wed Apr 18 00:00:01 2012
  2. # Session Ident: #developers
  3. # [00:00] * Quits: gozala (gozala@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: Leaving.)
  4. # [00:01] <RyanVM> so, inbound's basically going to be a ghost town now?
  5. # [00:01] * Joins: Optimizer (Mibbit@6BCF5DE2.2E81CE6D.89AC0F27.IP)
  6. # [00:01] * Parts: Optimizer (Mibbit@6BCF5DE2.2E81CE6D.89AC0F27.IP)
  7. # [00:01] * jhammel is now known as jhammel|coffeee
  8. # [00:02] * RyanVM won't be cloning Birch for a week and a half
  9. # [00:02] * Joins: hessam (hessam@7009CA22.C6D8CC8E.AAC02D62.IP)
  10. # [00:02] * glob is now known as glob|away
  11. # [00:03] * Quits: qheaden (qheaden@moz-67E02157.nrflva.fios.verizon.net) (Quit: I've got to go. See ya!)
  12. # [00:03] * joduinn-brb is now known as joduinn
  13. # [00:03] <gavin> oops, just missed qheaden
  14. # [00:04] * khuey is now known as khuey|away
  15. # [00:05] * Joins: marcia_ (chatzilla@moz-BBE3ABD.mv.mozilla.com)
  16. # [00:06] * Parts: yury (yury@moz-E1A05497.ok.ok.cox.net) (Quit)
  17. # [00:06] * Quits: mccr8 (mccr8@moz-AAEFBBD1.gw.connect.com.au) (Quit: mccr8)
  18. # [00:06] <bnicholson> josh: ping
  19. # [00:08] * Joins: gozala (gozala@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  20. # [00:08] * cjones is now known as cjones-brb
  21. # [00:09] * zzzzz can't wait to see the mess on m-c once they try to merge 300-400 patches
  22. # [00:09] * Quits: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com) (Quit: juanb)
  23. # [00:09] * philor|away is now known as philor
  24. # [00:10] * Quits: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  25. # [00:10] <edmorley> zzzzz: shall be fun...
  26. # [00:11] <zzzzz> Welcome aboard sir - you moving to states or working from home ?
  27. # [00:11] * Joins: dao (dao@moz-F47EAF0.superkabel.de)
  28. # [00:11] <edmorley> I'll be based out of the London office, I'm just in SF for the a-team work week
  29. # [00:11] <zzzzz> :)
  30. # [00:12] * Quits: anky (anky@C818DB70.4632A0C2.A3D1B221.IP) (Client exited)
  31. # [00:13] * Quits: jimb (user@9E727688.17C2F9C.163DC5C6.IP) (Ping timeout)
  32. # [00:13] * Joins: krit (Adium@moz-1FC1932F.adobe.com)
  33. # [00:13] * Joins: qheaden (qah661@moz-67E02157.nrflva.fios.verizon.net)
  34. # [00:13] * Joins: cilias (cilias@moz-D65C0C74.cpe.net.cable.rogers.com)
  35. # [00:14] * Quits: hessam (hessam@7009CA22.C6D8CC8E.AAC02D62.IP) (Connection reset by peer)
  36. # [00:14] <jaws> smaug: ping?
  37. # [00:14] <@smaug> jaws: pong
  38. # [00:14] <qheaden> When is the code in JavaScript modules first run? When they are first imported, or when the browser starts up?
  39. # [00:15] * Quits: dseif (dseif@C080F02E.33EE9F8A.1139E686.IP) (Input/output error)
  40. # [00:15] <jaws> smaug: do you know if the new mutation event listeners (bug 641821) have performance implications if we wanted to get notifications if elements go from display:none to display:block?
  41. # [00:15] <@roc> that's not a mutation event
  42. # [00:15] <jaws> k, then i guess we can't use it :)
  43. # [00:15] <@smaug> mutationobserver observes changes to DOM
  44. # [00:15] <@smaug> things like attribute value changes
  45. # [00:16] <kbrosnan> Jesse: ping
  46. # [00:16] <@smaug> adding and removing child nodes
  47. # [00:16] <jaws> k, makes sense
  48. # [00:16] <@smaug> etc
  49. # [00:16] * Quits: jlund (jlund@moz-B77DEAEB.mozilla.org) (Quit: leaving)
  50. # [00:16] <Waldo> qheaden: the scripts are parsed and executed the first time the module is imported; when nested code in them runs is up to the module and its users to set up, of course
  51. # [00:16] <mak> jaws: well, if you set the style by setting an attribute...
  52. # [00:16] <Jesse> kbrosnan: pong
  53. # [00:16] * Quits: ajuma (ajuma@F2D29657.F60B0462.67AC9B1.IP) (Quit: ajuma)
  54. # [00:17] <jaws> mak: yeah, but it has to work generically across all sites who may not use the attribute approach
  55. # [00:17] * Joins: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com)
  56. # [00:17] <qheaden> Waldo: So if I wanted any non-nested code to run in the module, I would need to import it somewhere?
  57. # [00:18] <kbrosnan> Jesse: think i figured it out was trying to get bugzilla quick search to only match - on a flag and not match ---
  58. # [00:18] <kbrosnan> Jesse: appears that '-' works where "-" does not
  59. # [00:18] <Waldo> qheaden: if the module contains |var x = foo(); function foo() { ... }| then foo() will only run the once, and if you wanted to run it more than once you'd need to expose the foo symbol or have foo() set itself up to be called again, or whatever
  60. # [00:19] * coop is now known as coop|afk
  61. # [00:19] * Joins: aw1231 (Mibbit@moz-A19884DB.dhcp.embarqhsd.net)
  62. # [00:19] * Quits: aw1231 (Mibbit@moz-A19884DB.dhcp.embarqhsd.net) (Quit: http://www.mibbit.com ajax IRC Client)
  63. # [00:20] <qheaden> Waldo: Right, that's the run-once behavior I want for one of my lines. So basically, I would need to import my module somewhere in order to get that line to run?
  64. # [00:20] <Waldo> qheaden: yes, modules don't run unless they're imported
  65. # [00:20] <gavin> qheaden: pong!
  66. # [00:20] <qheaden> Waldo: Great, I understand now. Thanks for the help.
  67. # [00:20] * Quits: JonathanS (JonathanS@17EDFC35.8737F162.521902B0.IP) (Quit: Computer has gone to sleep.)
  68. # [00:21] <qheaden> gavin: Hey there! I pinged you before I saw your comment on bug 335781. I'm working on moving the SearchEngineProvider to a JavaScript module.
  69. # [00:21] <qheaden> gavin: I think it will be cleaner that way, and easier to maintain.
  70. # [00:21] * Quits: kutsurak (pex@moz-4D02685A.w90-46.abo.wanadoo.fr) (Quit: Leaving)
  71. # [00:22] * Quits: cviecco__ (cviecco@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Input/output error)
  72. # [00:22] * Quits: vikash (vikash@88DD17D3.9B552DFD.5D9ABA9F.IP) (Quit: Leaving)
  73. # [00:22] <graememcc> ehsan: did you mean for the a? on bug 686203? Bug 740784 is the one involving undo
  74. # [00:23] * Quits: mdas (mdas@93B4174C.6E78B65D.CDBA6951.IP) (Ping timeout)
  75. # [00:23] <graememcc> er, ehsan|extremely-busy ^
  76. # [00:23] * Joins: cviecco_ (cviecco@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  77. # [00:23] * Quits: smontagu (chatzilla@moz-62BEE8DA.red.bezeqint.net) (Ping timeout)
  78. # [00:24] * Quits: prazuber (prazuber@moz-8FDA4E25.savvy.volia.net) (Quit: )
  79. # [00:24] <@ehsan|extremely-busy> graememcc: fixed
  80. # [00:24] <@ehsan|extremely-busy> graememcc: please submit patches which address the nits if you don't have commit access :)
  81. # [00:24] <@ehsan|extremely-busy> thanks!
  82. # [00:25] * Joins: dseif (dseif@C6D96E7A.531FD64C.630E4E47.IP)
  83. # [00:25] <padenot> anybody knows on the top of their head why the configure step on this new tree thinks that I have strndup on Mac ?
  84. # [00:26] <padenot> because afaik, Macs don't have strndup, so it does not build...
  85. # [00:26] <Wevah> function or binary?
  86. # [00:26] <padenot> function
  87. # [00:26] * joduinn is now known as joduinn-mtg
  88. # [00:26] * Quits: @smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi) (Input/output error)
  89. # [00:27] <padenot> there is a strndup binary ?
  90. # [00:27] <padenot> seems kind of weird
  91. # [00:27] <Wevah> i dunno
  92. # [00:27] <Wevah> never used either
  93. # [00:27] * Joins: smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi)
  94. # [00:27] * ChanServ sets mode: +o smaug
  95. # [00:27] * Quits: victorporof (victorporo@B394FFAE.6465CCD9.79933D60.IP) (Ping timeout)
  96. # [00:27] <Wevah> but man 3 strndup gives me a manpage
  97. # [00:27] <Wevah> (i spend most of my time in cocoaland)
  98. # [00:28] <Wevah> hmm...weird
  99. # [00:28] <gavin> qheaden: cool!
  100. # [00:28] * Quits: florian (Instantbir@moz-87C33FDA.kimsufi.com) (Quit: Instantbird -- http://www.instantbird.com)
  101. # [00:29] <Wevah> padenot: what os version?
  102. # [00:29] * Ziggy_Maes is now known as Ziggy|AWAY
  103. # [00:29] <padenot> Mac Os Lion
  104. # [00:29] <padenot> 10.7.3
  105. # [00:29] <Wevah> what sdk are you building with? do you know?
  106. # [00:29] <Wevah> looks like strndup doesn't exist until lion
  107. # [00:29] <Wevah> on os x
  108. # [00:29] * Standard8 is now known as Standard8Away
  109. # [00:29] * Quits: lmandel (lmandel@F2D29657.F60B0462.67AC9B1.IP) (Quit: lmandel)
  110. # [00:29] * Quits: Standard8Away (Standard8@B7F1AE36.48015583.54C3481B.IP) (Quit: ZNC - http://znc.in)
  111. # [00:30] * Quits: Hendikins (wolfox@moz-16899DFF.hhui4.ken.bigpond.net.au) (Ping timeout)
  112. # [00:30] * Quits: mconley (mconley@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  113. # [00:30] <Wevah> (i'm pretty dumb about most moz build processes tbh)
  114. # [00:30] <padenot> xcode 3.2
  115. # [00:30] <padenot> which seems to be outdated on lion
  116. # [00:31] <mkaply> Is there some simple way to test if I still have hg checkin access?
  117. # [00:31] <padenot> but that's what is written on the wiki page
  118. # [00:31] <Wevah> oh yeah it is
  119. # [00:31] <mkaply> without actually checking something in?
  120. # [00:31] <Wevah> outdated on lion that is
  121. # [00:31] <biesi> mkaply, ssh to hg.mozilla.org
  122. # [00:31] <Wevah> probably building with the 10.6 sdk then
  123. # [00:31] <padenot> okay. anyway, I've tricked it by hand editing files in the objdir
  124. # [00:31] * Quits: @smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi) (Ping timeout)
  125. # [00:31] <Wevah> word
  126. # [00:32] <padenot> i should probably install a newer XCode
  127. # [00:32] <mbrubeck> edmorley, RyanVM, other TBPL-watchers: There are a few new keyboard shortcuts available on TBPL now; press "?" or see bug 738925 for details.
  128. # [00:32] <mkaply> disabled due to inactivity again
  129. # [00:32] * Joins: lduros (lduros@moz-BED1C6A5.c3-0.rdl-ubr1.trpr-rdl.pa.cable.rcn.com)
  130. # [00:32] <RyanVM> thanks for the heads-up
  131. # [00:33] <mkaply> biesi: how does it know what id to use to check?
  132. # [00:33] <edmorley> mbrubeck: sweet, thank you :-)
  133. # [00:33] * gregglind_afk is now known as gregglind
  134. # [00:33] <mkaply> biesi: actually it's key based, isn't it
  135. # [00:33] <biesi> mkaply, from your .ssh/config or you need to tell it on the commandline
  136. # [00:33] <biesi> that too
  137. # [00:33] * Joins: Hendikins (wolfox@moz-16899DFF.hhui4.ken.bigpond.net.au)
  138. # [00:33] <RyanVM> do patches in build/mobile/sutagent/android require approval for landing?
  139. # [00:34] * jhammel|coffeee is now known as jhammel
  140. # [00:34] * Joins: eflores (eflores@538BABFE.A073F3E.97BBD552.IP)
  141. # [00:35] <mkaply> strange. I requested my ID be switched from mkaply@us.ibm.com to mozilla@kaply.com. When I ssh with mkaply@us.ibm.com it says "disabled" when I switch to mozilla@kaply.com, it asks for a password on my id_dsa file and then fails.
  142. # [00:35] * AaronMT|dinner is now known as AaronMT
  143. # [00:35] <RyanVM> akeybl: do test-only changes require approval?
  144. # [00:35] <mkaply> man, this is going back years. is the id_dsa file based on my userid?
  145. # [00:35] * Quits: dao (dao@moz-F47EAF0.superkabel.de) (Quit: Leaving.)
  146. # [00:35] * Joins: bbondy (bbondy@moz-C9962B2.home.cgocable.net)
  147. # [00:35] <biesi> mkaply, how does it fail?
  148. # [00:35] <biesi> you're not supposed to get a shell
  149. # [00:35] <biesi> so it is expected to fail, in some way
  150. # [00:36] <biesi> but it sounds like your account probably still works
  151. # [00:36] <mkaply> Permission denied. It's asking for a password. I'll be danged if I can remember a password on that file. I haven't had to type in a password in 10years
  152. # [00:36] <mbrubeck> RyanVM, akeybl: This is a suggestion, not an answer, but I would advocate blanket approval for test-only changes, and other changes that are NPOTB for fennec.
  153. # [00:36] <mkaply> but it doesn't ask for a password if my user is mkaply@us.ibm.com
  154. # [00:37] * cjones-brb is now known as cjones
  155. # [00:37] <RyanVM> mbrubeck, akeybl: test-only has had blanket approval in the past, but the tbpl message says nothing about it
  156. # [00:37] <edmorley> Am I still ok to merge inbound to m-c, or are there non a= csets on there that shouldn't go across yet? (playing catchup with dev.* mail)
  157. # [00:37] <hub> does Firefox honour the Exif orientation tag?
  158. # [00:37] <Mossop> hub: No
  159. # [00:37] <mkaply> hub: no. There's a bug open somewhere
  160. # [00:37] <RyanVM> akeybl, mbrubeck: I'm not cloning Birch, so it would be nice to know for sure what I can land on inbound in the mean time
  161. # [00:37] * Joins: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com)
  162. # [00:37] <hub> just wondering
  163. # [00:37] <Mossop> The bug got closed I think
  164. # [00:37] <RyanVM> bug 298619
  165. # [00:38] <biesi> mkaply, so your id_dsa file is local; the password is something you set when you generated it
  166. # [00:38] <mbrubeck> edmorley: m-i was made approval-required at (essentially) the same time as m-c
  167. # [00:38] * Joins: jlund (jlund@moz-B77DEAEB.mozilla.org)
  168. # [00:38] <mbrubeck> edmorley: So any changesets already there should either have approval, or managed to get in before it was required.
  169. # [00:38] <hub> oh, I'm not arguing it. I just wanted to make sure it is what I thought
  170. # [00:39] <mbrubeck> edmorley: I'd go ahead and merge them, since the plan is to continue merges going forward... maybe check with ehsan|extremely-busy though.
  171. # [00:39] * Joins: loadbang (loadbang@moz-B2745192.range81-157.btcentralplus.com)
  172. # [00:39] * Quits: Mnyromyr (Mnyromyr@B2521176.7B0892CB.771966F7.IP) (Quit: ChatZilla 0.9.86 [SeaMonkey 1.1.19/2010030105])
  173. # [00:39] * Joins: dao (dao@moz-F47EAF0.superkabel.de)
  174. # [00:39] <mkaply> biesi: Looks like it was stored in keychain. You know, every day I kick myself for the horrendous passphrase I created when generating that key. I didn't know any better
  175. # [00:39] <edmorley> mbrubeck: ok thank you
  176. # [00:40] <biesi> mkaply, ah. well you can change it
  177. # [00:40] <mimcpher> hub: bug 298619
  178. # [00:40] <biesi> ssh-keygen has an option for it
  179. # [00:40] <biesi> see its manpage
  180. # [00:40] <mkaply> biesi: Even if I put the right passkey in, I still get permission denied. I'm betting when they switched my user account, they didn't mess with the keys
  181. # [00:40] <hub> mimcpher: yeah I was on it :-) thanks
  182. # [00:40] <edmorley> mbrubeck: currently waiting for my mozilla LDAP to get a key attached and L3 added and will merge once that's working; will star in the meantime
  183. # [00:40] <biesi> mkaply, I'm not sure if that's expected or not :/
  184. # [00:41] <mbrubeck> hub: http://mozillamemes.tumblr.com/post/20015554407/ohai-bug-739690
  185. # [00:41] <mkaply> Does any browser support exif ?
  186. # [00:41] <mbrubeck> no, as far as I know.
  187. # [00:43] * Quits: Matti (chatzilla@moz-2F0F95DB.customers.d1-online.com) (Connection reset by peer)
  188. # [00:43] <mimcpher> I've heard rumours that Mobile Safari does, but don't have an iOS device to test.
  189. # [00:44] <mimcpher> See https://bugs.webkit.org/show_bug.cgi?id=19688
  190. # [00:44] <@ehsan|extremely-busy> mbrubeck: what's up?
  191. # [00:44] * Joins: jimb (user@moz-F4EC06CC.hsd1.or.comcast.net)
  192. # [00:45] <mbrubeck> ehsan|extremely-busy: edmorley wants to merge inbound to m-c, just checking that it is okay w.r.t. approval-required
  193. # [00:45] <@ehsan|extremely-busy> yep
  194. # [00:46] * Quits: aja (chatzilla@44BE1548.AEC64F0A.7880DB15.IP) (Ping timeout)
  195. # [00:46] <mbrubeck> thanks
  196. # [00:46] <hub> mbrubeck: :-)
  197. # [00:47] * bwinton is now known as bwinton_away
  198. # [00:47] * Quits: twi (Adium@moz-D3D42ABC.cust.dsl.vodafone.it) (Quit: Leaving.)
  199. # [00:47] * Quits: yuan (ywang@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: yuan)
  200. # [00:47] * Joins: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
  201. # [00:48] * Quits: bholley (bholley@moz-9375A05C.fbx.proxad.net) (Quit: bholley)
  202. # [00:49] <mkaply> Is there a perl script for repackaging omni.jar?
  203. # [00:49] * Quits: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com) (Quit: juanb)
  204. # [00:49] <mkaply> (I know there used to be)
  205. # [00:50] <qheaden> What could be the reason Services.search is turning up null in my JavaScript module although I imported Services.jsm?
  206. # [00:51] * Joins: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com)
  207. # [00:51] * Joins: Matti (chatzilla@moz-2F0F95DB.customers.d1-online.com)
  208. # [00:51] * glob|away is now known as glob
  209. # [00:52] * IRCMonkey54011 is now known as rhelmer_
  210. # [00:52] <mbrubeck> qheaden: In Firefox, or another app?
  211. # [00:52] * Quits: Pike (Pike@moz-E31CD2CB.mozilla.org) (Quit: ChatZilla 0.9.88.2 [Firefox 11.0/20120312181643])
  212. # [00:53] * zpao is now known as zpao|detached
  213. # [00:53] * Joins: Boriss (FlyingToas@7198BD30.7034AC9B.59FA0BB1.IP)
  214. # [00:53] <NeilAway> Mossop: still in meeting?
  215. # [00:53] * Quits: dseif (dseif@C6D96E7A.531FD64C.630E4E47.IP) (Input/output error)
  216. # [00:53] <qheaden> mbrubeck: Firefox.
  217. # [00:53] <mkaply> At what point are you accessing it?
  218. # [00:53] <Mossop> NeilAway: Ah no, am free now
  219. # [00:54] * Quits: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  220. # [00:54] <mkaply> are you importing it into your own namespace? or into the global namespace?
  221. # [00:54] <qheaden> Well, I created an addon provider, and it seems to fail within the getAddonsByType method of the provider.
  222. # [00:55] <NeilAway> Mossop: ok, so originally back in the day for xul progressmeters I think we just had some cheesy background image
  223. # [00:55] <qheaden> mkaply: I'm just using Components.utils.import("resource://gre/modules/Services.jsm")
  224. # [00:55] <qheaden> At the beginning of the file
  225. # [00:55] <NeilAway> Mossop: for undetermined meters, this is, sorry
  226. # [00:55] <NeilAway> Mossop: then we added this XBL binding which animates a rectangle of the determined image across the width of the progressmeter
  227. # [00:56] <NeilAway> Mossop: do you think it's likely that third-party themes use this binding for their progressmeters?
  228. # [00:56] * catlee is now known as catlee-away
  229. # [00:57] * Quits: gal (gal@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: gal)
  230. # [00:57] <mkaply> qheaden: Unfortunately I have to head out. If you are doing add-on stuff, I suggest you ask in #extdev
  231. # [00:57] <Mossop> NeilAway: Where is it now?
  232. # [00:57] <qheaden> K. Thanks
  233. # [00:57] <NeilAway> Mossop: toolkit/content/widgets/progressmeter.xml
  234. # [00:57] <Mossop> The background image I mean
  235. # [00:58] <NeilAway> Mossop: *stripe no longer uses it
  236. # [00:58] <Mossop> Oh wait, I just re-read your question
  237. # [00:59] <akeybl> RyanVM: mbrubeck: a=test-only
  238. # [00:59] <akeybl> I'll update the header
  239. # [00:59] * Joins: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com)
  240. # [01:00] <rniwa> fantasai: are you still there?
  241. # [01:01] <Mossop> NeilAway: I see maybe 15 themes on AMO using it, not sure how many are actively maintained though. That seems a low enough number that making changes shouldn't be much of an issue, though maybe have jorge include it in one of his regular blog posts
  242. # [01:01] <mbrubeck> akeybl: Okay if I move the current header text to a wiki page and replace it with a link? The long text messes up the TBPL layout on small screens.
  243. # [01:03] * nical is now known as nical|away
  244. # [01:03] <NeilAway> Mossop: well, jimm wanted to #ifdef it not to animate on windows (rather than on winstripe, which is what he was trying to fix), and I wasn't happy with the idea, and then it occured to me that this would be a bad idea because of compatibility issues, would you have an opinion?
  245. # [01:03] * Quits: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com) (Ping timeout)
  246. # [01:03] * Quits: graememcc (chatzilla@moz-77A8A989.range86-147.btcentralplus.com) (Quit: ChatZilla 0.9.88.2 [Firefox 11.0/20120310193349])
  247. # [01:04] <Mossop> NeilAway: Is this for a performance fix?
  248. # [01:04] * Joins: rillian_lime (rillian@moz-DBEBB2B4.bc.hsia.telus.net)
  249. # [01:04] * Quits: Asa (asa@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  250. # [01:04] <NeilAway> Mossop: no, it's to fix native themeing of xul progressmeters on aerostripe
  251. # [01:05] * Quits: cviecco_ (cviecco@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Input/output error)
  252. # [01:05] <Mossop> Is there a bug for this>
  253. # [01:05] <Mossop> ?
  254. # [01:05] * Quits: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP) (Ping timeout)
  255. # [01:05] <NeilAway> Mossop: well, the patch to progressmeter.xml is attachment 614803 in bug 658829
  256. # [01:06] * Quits: Matti (chatzilla@moz-2F0F95DB.customers.d1-online.com) (Ping timeout)
  257. # [01:06] * Joins: jet (junglecode@moz-AAEFBBD1.gw.connect.com.au)
  258. # [01:06] * Quits: brendan (brendaneic@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: brendan)
  259. # [01:06] <RyanVM> akeybl: thanks
  260. # [01:06] <qheaden> Do you still have to change the build id when changing JavaScript modules?
  261. # [01:07] <NeilAway> qheaden: have you tried -purgecaches ?
  262. # [01:07] * Joins: Asa (asa@moz-BBE3ABD.mv.mozilla.com)
  263. # [01:07] <qheaden> NeilAway: I haven't. Let me try.
  264. # [01:07] <RyanVM> akeybl: I asked about it in the newsgroups, but I haven't heard an answer. Is there any plan for Birch nightly testing?
  265. # [01:07] * Joins: jdm (jdm@moz-15BB5FE6.cable.teksavvy.com)
  266. # [01:08] * Quits: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com) (Quit: juanb)
  267. # [01:09] * Joins: willy1234x1 (willy1234x@moz-AD0E5689.slkc.qwest.net)
  268. # [01:09] * zpao|detached is now known as zpao
  269. # [01:10] * Joins: brendan (brendaneic@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  270. # [01:10] * Quits: pascalc (chatzilla@moz-446F98C8.fbxo.proxad.net) (Ping timeout)
  271. # [01:11] * Quits: rwaldron (rwaldron@moz-BDCCF091.hfc.comcastbusiness.net) (Quit: Leaving...)
  272. # [01:11] * Joins: pwalton (pcwalton@moz-BBE3ABD.mv.mozilla.com)
  273. # [01:11] <qheaden> NeilAway: Thanks for that. I purged the caches and a new error showed from the SearchService constructor, which is the reason why Services.search was null.
  274. # [01:12] * Quits: pcwalton (pcwalton@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  275. # [01:12] * pwalton is now known as pcwalton
  276. # [01:12] <Mossop> NeilAway: If it is just that a few theme authors will have to update their themes then I don't have much of an urge to push back on that (unless avoiding it is fairly trivial). I guess it depends how much themes would break though but it doesn't look like much to me
  277. # [01:14] * Quits: rniwa (rniwa@60A74940.D6CCE4AE.77834EAA.IP) (Quit: rniwa)
  278. # [01:15] <akeybl> RyanVM: builds are available to developers, but no plans to move a population over to that branch
  279. # [01:15] <akeybl> mbrubeck: I can move that to a wiki yes
  280. # [01:15] * Joins: adev (Instantbir@moz-24EE697D.ictp.it)
  281. # [01:16] <RyanVM> akeybl: Which basically means, no, we won't have any nightly regression testing for a week and a half
  282. # [01:16] <akeybl> right, we're going to get creative with splitting up the landings from birch to m-c
  283. # [01:16] <rillian_lime> RyanVM: I liked your suggestion better :/
  284. # [01:16] * Joins: Matti (chatzilla@moz-BD3EA363.dip.t-dialin.net)
  285. # [01:16] * Quits: adev (Instantbir@moz-24EE697D.ictp.it) (Quit: Instantbird -- http://www.instantbird.com)
  286. # [01:16] <akeybl> in a meeting right now, shoot me an email if you'd like to talk more about this
  287. # [01:17] <RyanVM> akeybl: Newsgroups are fine. Thanks
  288. # [01:18] * glob is now known as glob|away
  289. # [01:18] * Joins: jlebar|mac (~jlebarmac@moz-AAEFBBD1.gw.connect.com.au)
  290. # [01:18] * khuey|away is now known as khuey
  291. # [01:19] <dholbert> RyanVM, we'll still be able to regression-test, though (we still make nightlies for twigs)
  292. # [01:19] <dholbert> RyanVM, see e.g. http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-oak/
  293. # [01:19] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  294. # [01:19] * Quits: Archaeopteryx (itsme@moz-756328DB.cust.telecolumbus.net) (Quit: Too much information in my brain driving me insane)
  295. # [01:19] <RyanVM> dholbert: I'm concerned about the Birch-->m-c merge when nightly users get almost two week's worth of patches in one shot
  296. # [01:19] * Joins: birtles (chatzilla@moz-348F61F0.mozilla.or.jp)
  297. # [01:20] <RyanVM> yes, we'll be able to go back, but it's adding that much more complexity
  298. # [01:20] <dholbert> RyanVM, closer to 1 week, right?
  299. # [01:20] <NeilAway> Mossop: well, it would make their progress meters stop animating on Windows, with no way of fixing it
  300. # [01:20] <RyanVM> we'll see
  301. # [01:20] * NeilAway isn't sure what Mossop means by "update"
  302. # [01:20] <dholbert> RyanVM, I see your point, but IMHO doing some sort of magic user-balancing would be more complexity.
  303. # [01:20] * Quits: jdm (jdm@moz-15BB5FE6.cable.teksavvy.com) (Client exited)
  304. # [01:20] <Mossop> NeilAway: They couldn't use the same binding that we currently use?
  305. # [01:20] <RyanVM> dholbert: I would rather have seen a plan for switching them over automatically
  306. # [01:21] <RyanVM> dholbert: Of course, IMO this flies in the face of the entire train model
  307. # [01:21] <NeilAway> Mossop: not if it's got an #ifdef, that's my point
  308. # [01:21] <jimm> NeilAway: maybe there is some way to get removing that binding in our css working. I ran into a number of issues though once I removed.
  309. # [01:21] <Mossop> NeilAway: I don't understand, they can copy the binding into their theme no? In fact they likely already have
  310. # [01:21] <RyanVM> and I don't see why mobile needs to take over m-c and m-i and push all non-mobile work to a project branch instead of just using one themselves
  311. # [01:21] <NeilAway> Mossop: no, themes can't run script
  312. # [01:21] <Mossop> Since when?
  313. # [01:21] * Quits: taras (chatzilla@moz-8E045071.hsd1.wa.comcast.net) (Quit: ChatZilla 0.9.88.2 [Firefox 14.0a1/20120413040201])
  314. # [01:22] * Quits: paulproteus (quassel@rose.makesad.us) (Ping timeout)
  315. # [01:22] <Mossop> I was of the impression that XBL scripts ran just fine for themes
  316. # [01:22] <dholbert> RyanVM, because if they used their own project branch, they'd be based off of a different Gecko 14 flavor than everything else Gecko-14-based
  317. # [01:23] <dholbert> RyanVM, (IIUC)
  318. # [01:23] <NeilAway> Mossop: my understanding is that they've never been able to run script, modulo bugs that have been fixed
  319. # [01:23] * Joins: mdas (mdas@93B4174C.6E78B65D.CDBA6951.IP)
  320. # [01:23] * dholbert is now known as dholbert|haircut
  321. # [01:23] <rillian_lime> do we have to take action to get a patch approved, or is setting approval-mozilla-central? sufficient?
  322. # [01:24] <RyanVM> should be enough
  323. # [01:24] * Joins: paulproteus (quassel@moz-E86A3B42.makesad.us)
  324. # [01:24] * glob|away is now known as glob
  325. # [01:24] * Joins: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com)
  326. # [01:24] * Mook_as thought mobile will be using a different gecko14 anyway (since they'll release off the beta tree early)
  327. # [01:25] <rillian_lime> RyanVM: thanks
  328. # [01:25] <NeilAway> Mossop: although the only bug I can find so far is bug 315004 which relates to another way in which a theme was able to inject script
  329. # [01:25] * Joins: mjschranz (mjschranz@moz-6FE6B833.cpe.net.cable.rogers.com)
  330. # [01:25] * Quits: johanc (chatzilla@moz-D8A1AA43.bredband.comhem.se) (Ping timeout)
  331. # [01:25] <NeilAway> jimm: yeah, I filed bug 745447
  332. # [01:26] * Joins: taras (chatzilla@moz-8E045071.hsd1.wa.comcast.net)
  333. # [01:26] * Joins: mjschranz_ (mjschranz@moz-6FE6B833.cpe.net.cable.rogers.com)
  334. # [01:26] <Mossop> I know we tried to stop scripts in themes but I'm prety sure we gave up and that's why we went to the fuller install UI for themes
  335. # [01:26] <dao> NeilAway, Mossop, jimm: the default theme won't necessarily use native theming in all places either
  336. # [01:26] * Quits: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com) (Ping timeout)
  337. # [01:27] * Joins: mccr8 (mccr8@moz-AAEFBBD1.gw.connect.com.au)
  338. # [01:27] * Quits: mjschranz (mjschranz@moz-6FE6B833.cpe.net.cable.rogers.com) (Ping timeout)
  339. # [01:28] * Quits: marcia_ (chatzilla@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  340. # [01:29] * Quits: dao (dao@moz-F47EAF0.superkabel.de) (Write error: Broken pipe)
  341. # [01:30] * Quits: pcwalton (pcwalton@moz-BBE3ABD.mv.mozilla.com) (Quit: pcwalton)
  342. # [01:30] * Joins: pcwalton (pcwalton@moz-7B0110AD.mv.mozilla.com)
  343. # [01:30] * Quits: Hendikins (wolfox@moz-16899DFF.hhui4.ken.bigpond.net.au) (Ping timeout)
  344. # [01:31] * Joins: ctyler_ (chris@moz-A54458EA.proximity.on.ca)
  345. # [01:31] * Joins: Hendikins (wolfox@moz-16899DFF.hhui4.ken.bigpond.net.au)
  346. # [01:31] * mjschranz_ is now known as mjschranz
  347. # [01:32] <mdas> gavin: ping
  348. # [01:32] * Quits: ctyler (chris@moz-A54458EA.proximity.on.ca) (Ping timeout)
  349. # [01:32] * Quits: mkaply (Earlybird@moz-92EDDD02.lightspeed.austtx.sbcglobal.net) (Ping timeout)
  350. # [01:32] * Joins: WeirdAl (chatzilla@moz-D461843.ask.info)
  351. # [01:32] <gavin> mdas: pong
  352. # [01:34] * Quits: Mardak (Mardak@moz-BBE3ABD.mv.mozilla.com) (Quit: Mardak)
  353. # [01:34] <mdas> gavin: I'm creating an LDAP account for our automation machines. It'll be used to commit to hg.mozilla.org/projects directory (for git->hg mirroring).
  354. # [01:34] <gavin> I am CCed on the bug!
  355. # [01:34] <mdas> for it to get commit access, it requires your blessing! https://bugzilla.mozilla.org/show_bug.cgi?id=734140
  356. # [01:34] <gavin> mdas: which repo exactly?
  357. # [01:34] <WeirdAl> bsmedberg: I'm planning on adding some stderr logging to nsIXULAppInstall, at least locally, to see what install-app is actually doing... any suggestions? (I know you want install-app moved to python. This is an intermediate step which I don't plan on submitting to central.)
  358. # [01:35] <mdas> gavin: right now it will be http://hg.mozilla.org/projects/dxr/
  359. # [01:35] * rail is now known as rail_away
  360. # [01:35] * Joins: kaie2 (kaie@moz-2AF8EA1E.dip.t-dialin.net)
  361. # [01:36] * Joins: krit1 (Adium@moz-1FC1932F.adobe.com)
  362. # [01:36] * Quits: krit (Adium@moz-1FC1932F.adobe.com) (Connection reset by peer)
  363. # [01:36] <mdas> the automation machine lives in the MV network
  364. # [01:36] * Joins: krit (Adium@moz-1FC1932F.adobe.com)
  365. # [01:36] * Quits: krit1 (Adium@moz-1FC1932F.adobe.com) (Connection reset by peer)
  366. # [01:36] * Joins: mburst (mburst@C5B03ED4.15EE8362.5379700C.IP)
  367. # [01:36] * Quits: kaie (kaie@moz-2904B4F2.dip.t-dialin.net) (Ping timeout)
  368. # [01:36] * kaie2 is now known as kaie
  369. # [01:37] * Joins: markh (markh@moz-25D681DF.cxzr1.win.bigpond.net.au)
  370. # [01:38] * Quits: birtles (chatzilla@moz-348F61F0.mozilla.or.jp) (Ping timeout)
  371. # [01:38] <gavin> mdas: ooc, why do you need an hg-mirror for the DXR project?
  372. # [01:38] * Joins: cadecairos (cadecairos@moz-632B4208.cpe.net.cable.rogers.com)
  373. # [01:39] <mdas> gavin: we want to get builds done by releng, and they rely on hg repositories
  374. # [01:39] * Joins: birtles (chatzilla@moz-348F61F0.mozilla.or.jp)
  375. # [01:39] <gavin> i see
  376. # [01:39] <Mossop> We have the same for Jetpack
  377. # [01:40] <gavin> Mossop: whose credentials does it use? :)
  378. # [01:40] <Mossop> You know I have never asked ;)
  379. # [01:40] * Quits: AaronMT (AaronMT@moz-E26428A8.cpe.net.cable.rogers.com) (Quit: Textual IRC Client: http://www.textualapp.com/)
  380. # [01:41] <gavin> looks like myk's?
  381. # [01:41] <gavin> (http://hg.mozilla.org/labs/jetpack/pushloghtml)
  382. # [01:41] <akeybl> bz: https://bugzilla.mozilla.org/show_bug.cgi?id=745453#c22 - can we kick off a try build with the latest changeset? QA is having trouble verifying with the mozilla-beta on-change build
  383. # [01:41] * Joins: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com)
  384. # [01:42] <Mossop> gavin: More like warner's http://hg.mozilla.org/projects/addon-sdk/pushloghtml
  385. # [01:42] <gavin> ah
  386. # [01:42] <Mossop> Which makes sense as it currently runs on a box in his closet or something
  387. # [01:43] <akeybl> bz: actually I should have refreshed (looks like https://bugzilla.mozilla.org/show_bug.cgi?id=745453#c23 may allow us to verify)
  388. # [01:44] <gavin> mdas: so you're going to be responsible for this account and treat it like your own?
  389. # [01:46] * Quits: andreasn (andreasn@moz-436FB3D1.a336.priv.bahnhof.se) (Quit: Leaving.)
  390. # [01:46] <mdas> gavin: yes, I will be the one responsible for the account
  391. # [01:47] * Quits: jet (junglecode@moz-AAEFBBD1.gw.connect.com.au) (Quit: jet)
  392. # [01:47] * Joins: jet (junglecode@moz-AAEFBBD1.gw.connect.com.au)
  393. # [01:47] <mdas> and will treat it as my own
  394. # [01:47] * Joins: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com)
  395. # [01:49] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Input/output error)
  396. # [01:50] * Quits: Mossop (mossop@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  397. # [01:50] * Quits: jlund (jlund@moz-B77DEAEB.mozilla.org) (Quit: leaving)
  398. # [01:51] * heycam|away is now known as heycam
  399. # [01:53] * Joins: aja (chatzilla@44BE1548.AEC64F0A.7880DB15.IP)
  400. # [01:53] * Quits: brendan (brendaneic@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: brendan)
  401. # [01:54] * zpao is now known as zpao|detached
  402. # [01:54] * Joins: jlund (jlund@moz-B77DEAEB.mozilla.org)
  403. # [01:58] * gregglind is now known as gregglind_away
  404. # [01:59] * zpao|detached is now known as zpao
  405. # [01:59] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  406. # [02:00] * Joins: JonathanS (JonathanS@17EDFC35.8737F162.521902B0.IP)
  407. # [02:00] <ejpbruel> mrbkap: ping
  408. # [02:00] * Joins: asadotzler (asa@moz-BBE3ABD.mv.mozilla.com)
  409. # [02:01] * Joins: brendan (brendaneic@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  410. # [02:01] <RyanVM> akeybl: npotb patches are still ok, right?
  411. # [02:03] * Joins: faramarz (faramarz@moz-CD61C00E.hsd1.ca.comcast.net)
  412. # [02:03] <akeybl> RyanVM: go ahead and land those as well - our goal is to give blanket approval to as much as possible that we know would not affect the quality of Fennec Native
  413. # [02:03] <RyanVM> great, thanks
  414. # [02:03] * Joins: Matti_ (chatzilla@moz-BD3EA363.dip.t-dialin.net)
  415. # [02:04] * Quits: Matti (chatzilla@moz-BD3EA363.dip.t-dialin.net) (Ping timeout)
  416. # [02:04] * Matti_ is now known as Matti
  417. # [02:05] * Joins: mkaply (Earlybird@moz-92EDDD02.lightspeed.austtx.sbcglobal.net)
  418. # [02:05] * Quits: Boriss (FlyingToas@7198BD30.7034AC9B.59FA0BB1.IP) (Quit: Boriss)
  419. # [02:05] * Joins: nattokirai (nattokirai@moz-348F61F0.mozilla.or.jp)
  420. # [02:06] * Joins: njn (chatzilla@moz-AAEFBBD1.gw.connect.com.au)
  421. # [02:07] * Quits: wesj (Instantbir@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: Instantbird -- http://www.instantbird.com)
  422. # [02:08] * Quits: birtles (chatzilla@moz-348F61F0.mozilla.or.jp) (Ping timeout)
  423. # [02:08] * Quits: nattokirai (nattokirai@moz-348F61F0.mozilla.or.jp) (Ping timeout)
  424. # [02:08] * Quits: mcot (mcot@C4B02.F3C4E8F3.C8444B8.IP) (Ping timeout)
  425. # [02:08] * Joins: nattokirai (nattokirai@moz-4B5534A0.mozilla.or.jp)
  426. # [02:08] * Quits: rillian_lime (rillian@moz-DBEBB2B4.bc.hsia.telus.net) (Input/output error)
  427. # [02:08] * dholbert|haircut is now known as dholbert
  428. # [02:08] * Joins: c0smikdebris (c0smikdebr@93EFE709.6E5D865F.274D17D6.IP)
  429. # [02:09] * Quits: biesi (cbiesinger@EE9A5AA8.6B10AC3.E2F59BBC.IP) (Ping timeout)
  430. # [02:09] * Joins: birtles (chatzilla@moz-4B5534A0.mozilla.or.jp)
  431. # [02:11] * Quits: Asa (asa@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  432. # [02:11] * Quits: asadotzler (asa@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  433. # [02:11] * Quits: brendan (brendaneic@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: brendan)
  434. # [02:13] * Joins: dholbert_ (dholbert@moz-8B177EF7.dsl.dynamic.sonic.net)
  435. # [02:14] * Quits: dholbert_ (dholbert@moz-8B177EF7.dsl.dynamic.sonic.net) (Connection reset by peer)
  436. # [02:14] * Quits: automata (automata@moz-1CE7A56D.ifsc.usp.br) (Quit: Saindo)
  437. # [02:14] * Quits: Poly-C (Poly-C@moz-82BD47B9.dip.t-dialin.net) (Ping timeout)
  438. # [02:14] * jhammel is now known as noone
  439. # [02:14] * noone is now known as jhammel
  440. # [02:15] * Quits: priya (Adium@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving.)
  441. # [02:16] * Quits: mak (chatzilla@moz-84625997.retail.telecomitalia.it) (Input/output error)
  442. # [02:18] * Quits: gkw (Instantbir@moz-104CC309.mv.mozilla.com) (Quit: Instantbird -- http://www.instantbird.com)
  443. # [02:18] * Joins: gkw (Instantbir@moz-104CC309.mv.mozilla.com)
  444. # [02:19] * Quits: @ehsan|extremely-busy (ehsan@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  445. # [02:19] * Quits: c0smikdebris (c0smikdebr@93EFE709.6E5D865F.274D17D6.IP) (Quit: Computer has gone to sleep.)
  446. # [02:19] * Quits: gcp (gpascutto@moz-D0E475EA.access.telenet.be) (Quit: Make a new plan, Stan!)
  447. # [02:20] * Quits: juanb (jbecerra@moz-BBE3ABD.mv.mozilla.com) (Quit: juanb)
  448. # [02:20] * edransch is now known as edransch-away
  449. # [02:20] * Quits: gandalf (zbraniecki@moz-F66A472.neoplus.adsl.tpnet.pl) (Quit: Computer has gone to sleep.)
  450. # [02:20] * Joins: rwaldron (rwaldron@moz-71B3012E.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com)
  451. # [02:21] * Joins: pwalton (pcwalton@moz-BBE3ABD.mv.mozilla.com)
  452. # [02:22] * Quits: pcwalton (pcwalton@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  453. # [02:22] * pwalton is now known as pcwalton
  454. # [02:22] <jlebar|mac> bsmith: ping re https://bugzilla.mozilla.org/show_bug.cgi?id=576902#c9 ?
  455. # [02:22] * Joins: WG9s (bill@moz-7A06A043.hsd1.ma.comcast.net)
  456. # [02:23] * Quits: harth (harth@moz-C2C235AC.bb.sky.com) (Input/output error)
  457. # [02:24] * Joins: gwagner (idefix2@5AAE35B2.5EFFC0B8.24454B25.IP)
  458. # [02:26] <mdas> gavin: thanks for looking at that so quickly
  459. # [02:26] * Joins: maxli (Max_Li@moz-3CCEBE3.cpe.net.cable.rogers.com)
  460. # [02:26] <mdas> :)
  461. # [02:26] * Quits: akeybl (akeybl@moz-BBE3ABD.mv.mozilla.com) (Quit: Leaving...)
  462. # [02:28] * Quits: pcwalton (pcwalton@moz-BBE3ABD.mv.mozilla.com) (Quit: pcwalton)
  463. # [02:29] * Joins: dseif (dseif@moz-7F02C9C3.dsl.teksavvy.com)
  464. # [02:29] * Joins: pwalton (pcwalton@moz-BBE3ABD.mv.mozilla.com)
  465. # [02:29] * Joins: ferjm (ferjm@moz-74C07A62.red-176-81-61.dynamicip.rima-tde.net)
  466. # [02:31] <bsmith> jlebar|mac: I do not know of anything in PSM that is going to give a substantial enough win for memshrink to justify doing it in Q2
  467. # [02:31] <jlebar|mac> bsmith: Fantastic, I'll downgrade the bug.
  468. # [02:31] <bsmith> as for the rest of Necko, please ask josh to find somebody who knows more about the buffering and caching that is done in Necko.
  469. # [02:32] <jlebar|mac> bsmith: Sounds good.
  470. # [02:33] * Quits: kaie (kaie@moz-2AF8EA1E.dip.t-dialin.net) (Quit: Leaving)
  471. # [02:34] * Quits: bmoss (bmoss@moz-BBE3ABD.mv.mozilla.com) (Quit: bmoss)
  472. # [02:34] <Callek> bbondy: ping
  473. # [02:35] <Callek> bbondy: do you have 15-20 minutes [max] to chat about MAR_CHANNEL_ID and friends as it would affect non-Firefox/Fennec ?
  474. # [02:35] <Callek> vidyo, IRC, or skype is fine by me
  475. # [02:35] <Callek> bbondy: if not we can schedule a convo later this week if you like
  476. # [02:35] * Quits: dougt (dougt@moz-A8ADD744.org) (Input/output error)
  477. # [02:35] * Joins: adev (Instantbir@moz-24EE697D.ictp.it)
  478. # [02:35] * Quits: adev (Instantbir@moz-24EE697D.ictp.it) (Quit: adev)
  479. # [02:36] <bbondy> Callek: Just in the middle of finishing my taxes could we do it tomorrow, thurs, or friday day or night?
  480. # [02:36] * Joins: dougt (dougt@moz-A8ADD744.org)
  481. # [02:37] <Callek> bbondy: sure how about in 23 hours from now (7pm EDT, 4pm PDT) ?
  482. # [02:37] * Quits: kumar (kmcmillan@moz-F2D05B8.c3-0.stk-ubr1.chi-stk.il.cable.rcn.com) (Quit: kumar)
  483. # [02:37] <Callek> (ok 22.5 hours from now for any nitpickers here)
  484. # [02:37] <bbondy> 5PM PDT and you got a deal :)
  485. # [02:37] <lduros> is DOMParser going to be in FF 12 for sure?
  486. # [02:37] <lduros> :-)
  487. # [02:37] <Callek> hehe sure
  488. # [02:37] <bbondy> k sold
  489. # [02:37] <bbondy> :)
  490. # [02:38] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  491. # [02:38] <bbondy> we'll do vidyo tomorrow around 5PM PDT just ping me on IRC first
  492. # [02:38] <bbondy> Callek^
  493. # [02:38] <Callek> bbondy: sure, will-do
  494. # [02:38] * Quits: qheaden (qah661@moz-67E02157.nrflva.fios.verizon.net) (Connection reset by peer)
  495. # [02:38] * Quits: jimm (jmathies@moz-7F164CA1.pn.at.cox.net) (Quit: )
  496. # [02:39] * Joins: sheppy (sheppy@moz-F39D62DA.dhcp.kgpt.tn.charter.com)
  497. # [02:40] * Quits: terrence (terrence@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  498. # [02:40] * Quits: cpeterson (cpeterson@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Ping timeout)
  499. # [02:41] * Quits: Mark_Capella (chatzilla@moz-DD0C7E4F.twcny.res.rr.com) (Quit: ChatZilla 0.9.88.2 [Firefox 14.0a1/20120417002531])
  500. # [02:41] * Quits: sfink (chatzilla@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  501. # [02:41] * Parts: TabAtkins (tabatkins@moz-CD91E596.google.com)
  502. # [02:42] * Joins: Boriss (FlyingToas@DA2C7F43.A84A939A.55B09B25.IP)
  503. # [02:43] * Quits: birtles (chatzilla@moz-4B5534A0.mozilla.or.jp) (Ping timeout)
  504. # [02:43] * Quits: clee (clee@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: clee)
  505. # [02:43] * Quits: nhirata (nhirata.bu@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: nhirata)
  506. # [02:44] * Quits: ircloggr (nodebot@moz-955600F1.compute-1.amazonaws.com) (Client exited)
  507. # [02:45] * Joins: ircloggr (nodebot@moz-800B84A8.compute-1.amazonaws.com)
  508. # [02:47] * Quits: bonnie (bbsurender@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Ping timeout)
  509. # [02:47] * Quits: bonnie_ (bbsurender@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Ping timeout)
  510. # [02:48] * Joins: clee (clee@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  511. # [02:49] <gregglind_away> anyone have tips on setting up windows (VM) for python / moz debugging. I have GitBash, fabric, but jiminy it feels rough
  512. # [02:49] * Joins: ehsan|extremely-busy (ehsan@F0B20A8D.8458880F.57F33CED.IP)
  513. # [02:49] <edmorley> Going to merge inbound from 6b917c007510 unless anyone has any objections?
  514. # [02:50] * Quits: Matti (chatzilla@moz-BD3EA363.dip.t-dialin.net) (Ping timeout)
  515. # [02:50] * Quits: KaiRo_away (robert@moz-E3515DDE.adsl.highway.telekom.at) (Input/output error)
  516. # [02:51] * Quits: nattokirai (nattokirai@moz-4B5534A0.mozilla.or.jp) (Quit: nattokirai)
  517. # [02:51] * Joins: Matti (chatzilla@moz-8147F60E.customers.d1-online.com)
  518. # [02:55] <RyanVM> mbrubeck: holy crap, I never knew tbpl had all of these features
  519. # [02:55] * Quits: tonymec (tonymec@4C300CF0.A8F5D19C.277517C1.IP) (Input/output error)
  520. # [02:56] * Joins: nattokirai (nattokirai@moz-348F61F0.mozilla.or.jp)
  521. # [02:56] * jhford-work is now known as jhford-work-away
  522. # [02:56] <edmorley> RyanVM: which?
  523. # [02:57] <RyanVM> hit ? on tbpl
  524. # [02:57] * RyanVM <3 'u' already
  525. # [02:58] <philor> oh, man, you've been starring with a blindfold on and both hands tied behind your back?
  526. # [02:58] * Quits: krit (Adium@moz-1FC1932F.adobe.com) (Quit: Leaving.)
  527. # [02:58] * philor feels guilty about not mentioning it more often
  528. # [02:58] * bear is now known as bear-afk
  529. # [02:58] * Quits: smooney_ (smooney@moz-BBE3ABD.mv.mozilla.com) (Quit: smooney_)
  530. # [02:59] <edmorley> RyanVM: yeah I use ?, just wondered which new feature you'd spotted :-)
  531. # [02:59] * Joins: automata (automata@8D23278A.C27CA109.16867D26.IP)
  532. # [02:59] <RyanVM> edmorley: I never knew it existed
  533. # [02:59] <edmorley> ah
  534. # [03:00] <RyanVM> 'u' is awesome
  535. # [03:00] * Quits: tonymec|away (tonymec@4C300CF0.A8F5D19C.277517C1.IP) (Quit: Konversation terminated!)
  536. # [03:00] * Quits: hub (hub@21B7B9F2.B87E9213.6E712CE2.IP) (Ping timeout)
  537. # [03:00] * Joins: jamesr (jamesr@moz-CD91E596.google.com)
  538. # [03:00] <RyanVM> can't believe I never knew about it
  539. # [03:00] <Callek> RyanVM: "filters->" has it as well
  540. # [03:00] <RyanVM> philor: yes, I've been doing it the hard way :P
  541. # [03:01] <edmorley> a shortcut key to select the star and submit in one step, for suggestions where there is only one orange suggested would be pretty cool
  542. # [03:01] * edmorley adds to list to take a look at
  543. # [03:01] <jamesr> bz, i don't think my proposal is very heavyweight. if it is, then i'd like to understand how to make it lighter. it's at http://lists.w3.org/Archives/Public/www-style/2012Jan/0816.html starting at the text "Here's an alternate proposal:"
  544. # [03:02] * nthomas is now known as nthomas|away
  545. # [03:02] <Callek> can *someone* explain to me the details/rules/whatever behind central APPROVAL REQUIRED without requiring me to read a long thread that was specifically a proposal?
  546. # [03:02] * zpao is now known as zpao|detached
  547. # [03:02] * nthomas|away is now known as nthomas
  548. # [03:03] <Callek> and such that I can fill it in on Tree Rules wiki page for others to know
  549. # [03:03] <jamesr> bz, i can copy+paste the proposal into the thread again if it'd help
  550. # [03:03] <Callek> jamesr: if that was to me, I'm not bz :-P
  551. # [03:03] * Quits: taras (chatzilla@moz-8E045071.hsd1.wa.comcast.net) (Quit: ChatZilla 0.9.88.2 [Firefox 14.0a1/20120404154809])
  552. # [03:04] <jamesr> Callek, the question was to boris :)
  553. # [03:05] * Callek didn't know if you were replying about a different thing is why I asked
  554. # [03:05] <edmorley> Callek: the first post of the thread pretty much sums it up to be honest
  555. # [03:05] <Callek> edmorley: the first "part of the thread" or the first "post in the thread"
  556. # [03:05] <RyanVM> mattwoodrow++ (in case you haven't gotten enough yet for taking on bug 539356)
  557. # [03:05] * Quits: gabor (gabor@moz-3B57BCD1.catv.pool.telekom.hu) (Ping timeout)
  558. # [03:05] * Quits: myk (Instantbir@moz-64D96850.dsl.dynamic.sonic.net) (Quit: Instantbird -- http://www.instantbird.com)
  559. # [03:05] <Callek> edmorley: I want to be able to concisely declare what the rules/plan/etc. is somewhere for both my benefit and for others
  560. # [03:06] <mattwoodrow> haha thanks RyanVM
  561. # [03:06] * Quits: loadbang (loadbang@moz-B2745192.range81-157.btcentralplus.com) (Quit: loadbang)
  562. # [03:07] * Joins: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com)
  563. # [03:08] <Callek> edmorley: at the least there should have been a followup post that is a "Per the previous thread and discussion [1] Until Tuesday April 24'th m-c will be APPROVAL REQUIRED" as an entirely new thread. So people who don't care to read the details/argue over the *proposal* (me) but still care enough to know the process behind landings/patches (also me) can know what is going on
  564. # [03:08] <Callek> preferrably with more details than just that quote though
  565. # [03:09] <catlee-away> Callek++
  566. # [03:09] <catlee-away> I got caught not knowing inbound was affected too
  567. # [03:09] * Quits: AryehGregor (AryehGrego@9EF8C145.F045C4CE.CB858787.IP) (Ping timeout)
  568. # [03:09] * Quits: Mook_as (mook@moz-1FCC0032.activestate.com) (Quit: gone)
  569. # [03:10] <philor> edmorley: that actually already exists, but it's broken so we hope you never notice it ;)
  570. # [03:10] <Callek> catlee-away: yea, I want to try and get said post done, since no-one else stepped up to do so, but I really don't want to spend the next 2 hours decyphering the proposal thread to try and figure out what is actually happening
  571. # [03:10] * Joins: sworkman_ (sworkman@moz-BBE3ABD.mv.mozilla.com)
  572. # [03:10] * Quits: sworkman_ (sworkman@moz-BBE3ABD.mv.mozilla.com) (Quit: sworkman_)
  573. # [03:10] <philor> actually it's a two-click, not one, but then it keeps silently starring everything else you do later as that first one
  574. # [03:11] * Quits: chrisccoulson (chr1s@CF62D2D6.FC921812.EE27BB8D.IP) (Ping timeout)
  575. # [03:11] * Joins: AryehGregor (AryehGrego@moz-2FB4FCB3.red.bezeqint.net)
  576. # [03:12] * Quits: sworkman (sworkman@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  577. # [03:13] * Quits: mkaply (Earlybird@moz-92EDDD02.lightspeed.austtx.sbcglobal.net) (Ping timeout)
  578. # [03:13] <Callek> hrm I know who I should poke for that info, the sheriff!
  579. # [03:13] * jhford-work-away is now known as jhford-work
  580. # [03:13] <Callek> joe: ping
  581. # [03:14] <Callek> (failing Joe, I'll accept tomorrows sheriff, dolske)
  582. # [03:15] * Quits: sheppy (sheppy@moz-F39D62DA.dhcp.kgpt.tn.charter.com) (Quit: Leaving)
  583. # [03:17] <philor> heh
  584. # [03:17] <RyanVM> Callek: the tbpl header pretty much sums up the rules
  585. # [03:17] <RyanVM> Callek: though test-only and npotb aren't listed but are indeed OK
  586. # [03:17] <philor> I think there might be as many as one person on that old sheriff schedule who still plays sheriff
  587. # [03:17] <philor> neither of those being the one
  588. # [03:18] * Quits: automata (automata@8D23278A.C27CA109.16867D26.IP) (Ping timeout)
  589. # [03:19] <Callek> philor: yea that was tonge in cheek :-) since I bet the sheriff scheduler is mostly ignored now since we inbound and amazing people to manage it
  590. # [03:19] * Quits: gwagner (idefix2@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: gwagner)
  591. # [03:20] <Callek> RyanVM: so "pretty much" or "is the rules"
  592. # [03:20] <Callek> RyanVM: as in, are we restricting desktop Firefox-only changes too?
  593. # [03:20] <Callek> since the proposal first-post skim I did seemed to indicate this would be only for fennec changes
  594. # [03:20] <RyanVM> Callek: it's for all changes
  595. # [03:20] * jhford-work is now known as jhford-work-away
  596. # [03:21] <RyanVM> akeybl said that the approval rules are pretty lenient, though
  597. # [03:21] <@dolske> Callek: thanks for volunteering to gather that info and do a followup post.
  598. # [03:21] <Callek> dolske: no problem, I'm happy to do it -- I just want to make sure I understand things right first, so I don't spread any MIS-Information
  599. # [03:21] * Quits: bdahl (bdahl@moz-BBE3ABD.mv.mozilla.com) (Client exited)
  600. # [03:21] <Callek> RyanVM: and to be clear, we're going back to open after the uplift?
  601. # [03:21] <RyanVM> yes
  602. # [03:22] * Quits: gkw (Instantbir@moz-104CC309.mv.mozilla.com) (Quit: Instantbird -- http://www.instantbird.com)
  603. # [03:22] * zzzzz also thought it was Fennec only - and the desktop was on hold for 9 days, unless you wanted to use Birch, which no one wants to really mess with .
  604. # [03:22] <Callek> RyanVM: and for additional clarity "why?" is it just because we want to ship Fennec 14 off aurora as its first beta, is it "we think we'll approval required every final week" or some mystical option c I don't know of
  605. # [03:22] <RyanVM> zzzzz: yes, exactly
  606. # [03:22] * joduinn-mtg is now known as joduinn
  607. # [03:22] <RyanVM> Callek: don't get me started
  608. # [03:22] <RyanVM> Callek: at this point, it is what it is.
  609. # [03:23] <Waldo> I believe the intent is that this be a one-time thing
  610. # [03:23] <Callek> RyanVM: I'm asking so I can try and clarify in my followup post, not arguing the point one way or the other
  611. # [03:23] * Quits: jduell (jduell@moz-2D9EDA98.lightspeed.sntcca.sbcglobal.net) (Ping timeout)
  612. # [03:23] * Quits: ewong|afk (chatzilla@moz-3CBEA671.ctinets.com) (Ping timeout)
  613. # [03:23] * Quits: mdas (mdas@93B4174C.6E78B65D.CDBA6951.IP) (Quit: mdas)
  614. # [03:23] <RyanVM> but the assurance is that approval will be granted broadly for patches which don't affect fennec
  615. # [03:23] <Callek> and since I heard zzzzz are we saying that Birch is "m-c for stuff not approved or not bothered to have approval asked, and will be merged back in after uplift"?
  616. # [03:24] <RyanVM> (for the record, I'm not cloning birch - i've already emailed the author of one c-n patch to let him know that it's going to be awhile before it gets checked in)
  617. # [03:24] <RyanVM> Birch is what inbound was prior to the freeze
  618. # [03:24] <RyanVM> anything can land at any time
  619. # [03:25] <Callek> RyanVM: is it being managed like inbound, where its land-and-leave ?
  620. # [03:25] <Callek> or is it land-and-watch-please
  621. # [03:25] <RyanVM> afaik, yes
  622. # [03:25] <zzzzz> only problem, no one but ehsan (sp) is going to be looking at it ... well that may be a stretch - a few may.. but I'm betting not many
  623. # [03:25] <@khuey> roc: ping?
  624. # [03:25] * Quits: damons (gnubeard@moz-BBE3ABD.mv.mozilla.com) (Quit: damons)
  625. # [03:25] <firebot> The dictionary service is not accessible right now, sorry.
  626. # [03:25] * Joins: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net)
  627. # [03:25] <Callek> ehsan|extremely-busy: ^ Birch .... is it "land and watch your patches" or "land and leave, someone will backout if necessary"
  628. # [03:25] <zzzzz> firebot botsnack
  629. # [03:26] * firebot beams
  630. # [03:26] * Joins: masayuki (Daily@moz-911CC660.zaq.ne.jp)
  631. # [03:26] <ehsan|extremely-busy> Callek: the latter
  632. # [03:26] <Callek> ty
  633. # [03:27] <@khuey> anybody know what an nsStyleList is?
  634. # [03:27] * Quits: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net) (Connection reset by peer)
  635. # [03:27] * Quits: kanru` (user@moz-62C093C2.dynamic.hinet.net) (Quit: rcirc on GNU Emacs 24.1.50.1)
  636. # [03:27] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Input/output error)
  637. # [03:27] <@dolske> khuey: someone who does your nsHair?
  638. # [03:27] <@khuey> is it just for Lists?
  639. # [03:27] <@khuey> or is it a list of style things
  640. # [03:28] <Callek> RyanVM, ehsan|extremely-busy: thanks for your help, I'll get that followup post out before 9p PDT
  641. # [03:28] <jlebar|mac> So do I have to watch birch if I land? /me was confused up above.
  642. # [03:28] <RyanVM> you rock
  643. # [03:28] <RyanVM> no
  644. # [03:28] * Joins: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net)
  645. # [03:28] <Waldo> dolske: I thought all the nsStyleLists went away when the dot-com bubble burst
  646. # [03:28] <jlebar|mac> RyanVM: Okay, thanks.
  647. # [03:28] <ehsan|extremely-busy> jlebar|mac: no
  648. # [03:28] * nthomas is now known as nthomas|away
  649. # [03:28] <edmorley> !seen wesj
  650. # [03:28] <firebot> wesj was last seen 3 hours, 4 minutes and 53 seconds ago, saying 'dolske: but i'd be happy to have you look over the provider stuff too: http://mxr.mozilla.org/mozilla-central/source/mobile/android/base/db/PasswordsProvider.java.in' in #mobile.
  651. # [03:28] * Quits: chewey (chewey@moz-2DE2DD47.dip0.t-ipconnect.de) (NickServ (GHOST command used by chewey_))
  652. # [03:29] * Quits: clee (clee@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: clee)
  653. # [03:29] * Quits: zzzzz (chatzilla@moz-107FCDBA.hfc.comcastbusiness.net) (Quit: ChatZilla 0.9.87 [Firefox 11.0/20120312181643])
  654. # [03:29] * Joins: chewey (chewey@moz-C78E6C89.dip0.t-ipconnect.de)
  655. # [03:29] * Quits: Gentlecat (Roman@CA71FA1C.1149AF99.8FB52CB8.IP) (Connection reset by peer)
  656. # [03:30] * Quits: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net) (Connection reset by peer)
  657. # [03:30] * mcote is now known as mcote|afk
  658. # [03:30] * Joins: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net)
  659. # [03:31] * hwine is now known as hwine-afk
  660. # [03:31] * Quits: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net) (Connection reset by peer)
  661. # [03:32] * Joins: marcia_ (chatzilla@moz-E88C0D73.lightspeed.sntcca.sbcglobal.net)
  662. # [03:33] * Quits: Lucas (Lucas@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Input/output error)
  663. # [03:33] * Joins: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net)
  664. # [03:33] * Quits: glob (glob@93B4174C.6E78B65D.CDBA6951.IP) (Quit: Leaving...)
  665. # [03:33] * Quits: jgriffin (jgriffin@93B4174C.6E78B65D.CDBA6951.IP) (Quit: jgriffin)
  666. # [03:34] * Quits: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net) (Connection reset by peer)
  667. # [03:34] * AutomatedTester is now known as AutomatedTester|AFK
  668. # [03:34] * Quits: jhammel (jhammel@moz-B77DEAEB.mozilla.org) (Quit: leaving)
  669. # [03:35] * Quits: lduros (lduros@moz-BED1C6A5.c3-0.rdl-ubr1.trpr-rdl.pa.cable.rcn.com) (Ping timeout)
  670. # [03:35] * Joins: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net)
  671. # [03:36] * Quits: bc (bc@moz-E31CD2CB.mozilla.org) (Ping timeout)
  672. # [03:36] * Quits: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net) (Connection reset by peer)
  673. # [03:36] * Joins: lduros (lduros@moz-BED1C6A5.c3-0.rdl-ubr1.trpr-rdl.pa.cable.rcn.com)
  674. # [03:37] * Joins: mijia (mijia@DC4232F0.766373FB.C3A57E70.IP)
  675. # [03:38] * Joins: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net)
  676. # [03:39] * Quits: WeirdAl (chatzilla@moz-D461843.ask.info) (Quit: ChatZilla 0.9.88.2 [Firefox 11.0/20120312181643])
  677. # [03:39] * Joins: hub (hub@moz-E2FCA694.figuiere.net)
  678. # [03:39] * Joins: surkov (surkov@DD69D9E4.55CAE15D.34044A7F.IP)
  679. # [03:40] <jamesr> bz, i repeated my proposal on the www-style thread. we can discuss there
  680. # [03:40] * Quits: joe_walker (joe_walker@moz-15405DDA.cable.virginmedia.com) (Connection reset by peer)
  681. # [03:40] * Joins: gwagner (idefix2@5AAE35B2.5EFFC0B8.24454B25.IP)
  682. # [03:41] * Quits: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net) (Connection reset by peer)
  683. # [03:41] * Quits: mburst (mburst@C5B03ED4.15EE8362.5379700C.IP) (Ping timeout)
  684. # [03:42] * Joins: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net)
  685. # [03:42] * Quits: ferjm (ferjm@moz-74C07A62.red-176-81-61.dynamicip.rima-tde.net) (No route to host)
  686. # [03:42] * Quits: edmorley (Mibbit@93B4174C.6E78B65D.CDBA6951.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  687. # [03:42] * Joins: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net)
  688. # [03:43] <njn> http://shawnwilsher.com/archives/549
  689. # [03:43] * Quits: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net) (Connection reset by peer)
  690. # [03:44] * Joins: Asa (asa@4C4A4A67.38324963.204CA821.IP)
  691. # [03:44] * Quits: jet (junglecode@moz-AAEFBBD1.gw.connect.com.au) (Quit: jet)
  692. # [03:44] * Joins: jet (junglecode@moz-AAEFBBD1.gw.connect.com.au)
  693. # [03:45] * Joins: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net)
  694. # [03:46] * Quits: jorendorff (jorendorff@moz-91590D94.hsd1.tn.comcast.net) (Quit: jorendorff)
  695. # [03:48] * Quits: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net) (Connection reset by peer)
  696. # [03:49] * Quits: ferongr (ferongr@BFDD10AF.DDEAD33F.F5160715.IP) (Quit: ferongr)
  697. # [03:49] * Quits: dbradley (dbradley@moz-80450F75.fuse.net) (Ping timeout)
  698. # [03:49] * Joins: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net)
  699. # [03:50] * Quits: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net) (Connection reset by peer)
  700. # [03:51] * Joins: ferongr (ferongr@BFDD10AF.DDEAD33F.F5160715.IP)
  701. # [03:51] * Joins: smooney (smooney@moz-3C7A0050.hsd1.ca.comcast.net)
  702. # [03:52] * Joins: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net)
  703. # [03:52] * Joins: ferjm (ferjm@moz-6F601BE7.lightspeed.sntcca.sbcglobal.net)
  704. # [03:53] <Jesse> njn: will compartment-per-global make sharing (e.g. between multiple facebook like buttons) easier or harder?
  705. # [03:54] * Quits: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net) (Connection reset by peer)
  706. # [03:54] * Quits: sewardj (sewardj@moz-63712614.dip.t-dialin.net) (Ping timeout)
  707. # [03:54] * Joins: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net)
  708. # [03:55] * Quits: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com) (Ping timeout)
  709. # [03:55] * Joins: sewardj (sewardj@moz-496AA345.dip.t-dialin.net)
  710. # [03:55] <njn> Kyle Huey has been making good progress on a patch that has the potential to avoid the majority of add-on leaks that cause zombie compartments. Since leaky add-ons are the #1 cause of high memory consumption in Firefox, this is a good thing.
  711. # [03:56] <@khuey> thanks for telling the world
  712. # [03:56] <njn> Kyle Huey can leap tall buildings in a single bound
  713. # [03:56] <mwu> khuey is gonna fix the memory leak
  714. # [03:56] <philor> it reopened after njn fixed it?
  715. # [03:56] * kinetik rushes to register hueyfacts.com
  716. # [03:56] * Quits: mjschranz (mjschranz@moz-6FE6B833.cpe.net.cable.rogers.com) (Client exited)
  717. # [03:57] * njn didn't really fix it
  718. # [03:57] * Quits: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net) (Connection reset by peer)
  719. # [03:57] <philor> yeah, I've done plumbing like that before :)
  720. # [03:57] <@roc> khuey: hi!
  721. # [03:58] <@khuey> roc: unping ;-)
  722. # [03:58] * Quits: Asa (asa@4C4A4A67.38324963.204CA821.IP) (Ping timeout)
  723. # [03:58] * Quits: marcia_ (chatzilla@moz-E88C0D73.lightspeed.sntcca.sbcglobal.net) (Ping timeout)
  724. # [03:58] * Quits: smooney (smooney@moz-3C7A0050.hsd1.ca.comcast.net) (Quit: smooney)
  725. # [03:58] * philor is now known as philor|away
  726. # [03:58] <njn> Jesse: not sure
  727. # [03:58] * Joins: Asa (asa@4C4A4A67.38324963.204CA821.IP)
  728. # [03:59] * khuey is now known as khuey|away
  729. # [03:59] * Joins: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net)
  730. # [03:59] * Joins: bc (bc@moz-E31CD2CB.mozilla.org)
  731. # [04:01] * Quits: ferjm (ferjm@moz-6F601BE7.lightspeed.sntcca.sbcglobal.net) (Quit: Leaving)
  732. # [04:01] * Quits: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net) (Connection reset by peer)
  733. # [04:02] * Quits: Waldo (waldo@moz-BBE3ABD.mv.mozilla.com) (Quit: ChatZilla 0.9.87-4.1450hg.fc15 [XULRunner 11.0/20120313114635])
  734. # [04:02] * RyanVM still remembers khuey wowing a crowd by showing a live video of himself at a summit
  735. # [04:03] * Joins: juanb (jbecerra@moz-F1012875.hsd1.ca.comcast.net)
  736. # [04:03] <RyanVM> hard to believe that was almost 2 years ago already
  737. # [04:04] * Joins: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net)
  738. # [04:04] * Quits: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net) (Connection reset by peer)
  739. # [04:05] * Quits: gwagner (idefix2@5AAE35B2.5EFFC0B8.24454B25.IP) (Ping timeout)
  740. # [04:05] * Joins: rniwa (rniwa@moz-E171DA5.sfba.hfc.comcastbusiness.net)
  741. # [04:06] * Joins: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net)
  742. # [04:09] * Quits: rwaldron (rwaldron@moz-71B3012E.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com) (Quit: Leaving...)
  743. # [04:11] * Joins: rwaldron (rwaldron@moz-71B3012E.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com)
  744. # [04:12] * Quits: Mardak (Mardak@moz-583ADD2C.dsl.pltn13.sbcglobal.net) (Quit: Mardak)
  745. # [04:12] * nthomas|away is now known as nthomas
  746. # [04:13] * Joins: Havvy (Mibbit@moz-58C3546E.ptld.qwest.net)
  747. # [04:14] * Quits: nattokirai (nattokirai@moz-348F61F0.mozilla.or.jp) (Quit: nattokirai)
  748. # [04:14] * Joins: nattokirai (nattokirai@moz-348F61F0.mozilla.or.jp)
  749. # [04:16] * Joins: automata (automata@279F9BEF.953A450B.69539902.IP)
  750. # [04:17] <joe> RyanVM: yeah, hulkhuey
  751. # [04:18] * Joins: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
  752. # [04:18] * Joins: gwagner (idefix2@moz-99690620.hinet-ip.hinet.net)
  753. # [04:19] * Quits: jprmc (jprmc@moz-7F2FF3EB.cpe.net.cable.rogers.com) (Ping timeout)
  754. # [04:19] * Quits: AryehGregor (AryehGrego@moz-2FB4FCB3.red.bezeqint.net) (Ping timeout)
  755. # [04:19] <RyanVM> word on the street is no summit this year?
  756. # [04:19] * Quits: bnicholson (bnicholson@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  757. # [04:20] * Joins: zzzzz (chatzilla@moz-FC5E07A0.dhcp.embarqhsd.net)
  758. # [04:20] <jtcranmer> that is what I hath heard
  759. # [04:20] <RyanVM> rats
  760. # [04:21] * Quits: Jesse (jruderman@moz-BBE3ABD.mv.mozilla.com) (Quit: Jesse)
  761. # [04:21] <jtcranmer> my thoughts exactly
  762. # [04:21] <RyanVM> was looking forward to seeing some people again
  763. # [04:21] <jtcranmer> ditto
  764. # [04:22] * Quits: JonathanS (JonathanS@17EDFC35.8737F162.521902B0.IP) (Quit: Computer has gone to sleep.)
  765. # [04:23] * Joins: jprmc (jprmc@moz-7F2FF3EB.cpe.net.cable.rogers.com)
  766. # [04:24] * Joins: ewong|afk (chatzilla@moz-3CBEA671.ctinets.com)
  767. # [04:25] <RyanVM> maybe next year
  768. # [04:27] * joduinn is now known as joduinn-afk
  769. # [04:28] * Joins: Mossop (mossop@moz-69D0FE2F.dsl.dynamic.sonic.net)
  770. # [04:29] * Quits: Boriss (FlyingToas@DA2C7F43.A84A939A.55B09B25.IP) (Quit: Boriss)
  771. # [04:29] * Joins: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  772. # [04:33] * Quits: Mossop (mossop@moz-69D0FE2F.dsl.dynamic.sonic.net) (Ping timeout)
  773. # [04:33] * Joins: Lucas (Lucas@moz-92C28224.hsd1.ca.comcast.net)
  774. # [04:33] * Quits: gozala (gozala@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: Leaving.)
  775. # [04:34] * Joins: qheaden (qah661@moz-67E02157.nrflva.fios.verizon.net)
  776. # [04:35] * Quits: jmuel (chatzilla@moz-B937C80B.client.mchsi.com) (Quit: ChatZilla 0.9.88.2 [Firefox 11.0/20120312181643])
  777. # [04:35] <qheaden> Unfocused: ping
  778. # [04:37] * Joins: bnicholson (bnicholson@moz-F08A2DE.hsd1.ca.comcast.net)
  779. # [04:37] <Unfocused> qheaden: pong
  780. # [04:38] <qheaden> Unfocused: Hey there! I needed your advice on something. I am working on moving the SearchEngineProvider and SearchEngineAddon objects into a JavaScript module. Would you recommend this?
  781. # [04:38] <qheaden> I think it would be better, since it is separate from the the actual SearchService object, and it uses its functionality.
  782. # [04:39] * Parts: maxli (Max_Li@moz-3CCEBE3.cpe.net.cable.rogers.com)
  783. # [04:39] * Quits: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com) (Quit: Instantbird -- http://www.instantbird.com)
  784. # [04:40] * Quits: rjohnson19 (chatzilla@moz-9148485F.hsd1.ma.comcast.net) (Quit: ChatZilla 0.9.88-rdmsoft [XULRunner 1.9.0.17/2009122204])
  785. # [04:42] * Joins: gozala (gozala@EF408078.10A53EE3.77834EAA.IP)
  786. # [04:43] * Joins: Jesse (jruderman@moz-537BCF9.hsd1.ca.comcast.net)
  787. # [04:43] * Joins: JonathanS (JonathanS@17EDFC35.8737F162.521902B0.IP)
  788. # [04:43] * Quits: Hendikins (wolfox@moz-16899DFF.hhui4.ken.bigpond.net.au) (Ping timeout)
  789. # [04:44] * Joins: Hendikins (wolfox@moz-16899DFF.hhui4.ken.bigpond.net.au)
  790. # [04:45] * Quits: gozala (gozala@EF408078.10A53EE3.77834EAA.IP) (Ping timeout)
  791. # [04:45] * philor|away is now known as philor
  792. # [04:46] <Unfocused> qheaden: hmm, i can't think of a reason *not* to do that
  793. # [04:47] * Joins: mjschranz (mjschranz@moz-6FE6B833.cpe.net.cable.rogers.com)
  794. # [04:47] * Quits: mjschranz (mjschranz@moz-6FE6B833.cpe.net.cable.rogers.com) (Client exited)
  795. # [04:48] * Joins: mjschranz (mjschranz@moz-6FE6B833.cpe.net.cable.rogers.com)
  796. # [04:48] * heycam is now known as heycam|away
  797. # [04:49] <qheaden> Unfocused: I got this idea from looking at both the PluginProvider and the LightweightThemeManager, both of which use JavaScript modules. It seems cleaner.
  798. # [04:49] <qheaden> Unfocused: What kind of copyright notice do I need to place at the top of the module source?
  799. # [04:50] * Quits: mjschranz (mjschranz@moz-6FE6B833.cpe.net.cable.rogers.com) (Ping timeout)
  800. # [04:50] * Joins: bonnie_ (bbsurender@moz-2350E391.dsl.pltn13.pacbell.net)
  801. # [04:50] * Joins: bonnie (bbsurender@moz-2350E391.dsl.pltn13.pacbell.net)
  802. # [04:50] <Unfocused> qheaden: you'll just need to be careful when MOZ_TOOLKIT_SEARCH isn't defined (the search service can be completely removed at build-time)
  803. # [04:50] * Quits: bonnie_ (bbsurender@moz-2350E391.dsl.pltn13.pacbell.net) (Client exited)
  804. # [04:50] <Unfocused> qheaden: use this for new files: https://www.mozilla.org/MPL/headers/
  805. # [04:51] <qheaden> Unfocused: Would you suggest if #ifdef the entire module in case MOZ_TOOLKIT_SEARCH isn't defined?
  806. # [04:51] * Joins: jorendorff (jorendorff@moz-91590D94.hsd1.tn.comcast.net)
  807. # [04:52] * Quits: jorendorff (jorendorff@moz-91590D94.hsd1.tn.comcast.net) (Quit: Eaten by grue.)
  808. # [04:53] * Joins: nli (nli@moz-99690620.hinet-ip.hinet.net)
  809. # [04:53] <Unfocused> you'll need to make sure that file isn't even packaged when MOZ_TOOLKIT_SEARCH isn't defined
  810. # [04:54] <Unfocused> which, if you keep it in toolkit/components/search/, will happen automatically for you
  811. # [04:54] * Quits: eflores (eflores@538BABFE.A073F3E.97BBD552.IP) (Client exited)
  812. # [04:54] <Unfocused> and you just need to figure out when to register the provider or not
  813. # [04:54] * Joins: eflores (eflores@538BABFE.A073F3E.97BBD552.IP)
  814. # [04:54] <qheaden> Oh okay. I have it located there.
  815. # [04:54] * Quits: nrc (nrc@538BABFE.A073F3E.97BBD552.IP) (Quit: ChatZilla 0.9.88.2 [Firefox 12.0/20120403211507])
  816. # [04:54] <qheaden> And I have the provider registered near the end of the source, like the other provider modules do.
  817. # [04:55] <Unfocused> wait, how are you loading the jsm?
  818. # [04:55] <qheaden> I'm importing it into nsSearchService.js
  819. # [04:57] <Unfocused> ah
  820. # [04:57] <Unfocused> i guess that works. not sure what benefit it has in being a jsm then, however
  821. # [04:57] * Quits: pwalton (pcwalton@moz-BBE3ABD.mv.mozilla.com) (Quit: nbvcx)
  822. # [04:58] * Quits: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net) (Client exited)
  823. # [04:59] <qheaden> Well, nothing really changes from the computer's standpoint, but from the developer's standpoint, it looks cleaner and it better represents the separation of the SearchEngineProvider from the actual SearchService.
  824. # [04:59] * Quits: njn (chatzilla@moz-AAEFBBD1.gw.connect.com.au) (Ping timeout)
  825. # [04:59] <qheaden> Plus, it allows you to use it in other areas of code, if you ever have to in the future for whatever reason.
  826. # [04:59] * Joins: nli__ (nli@moz-782C3831.dynamic.hinet.net)
  827. # [05:00] * Quits: nli (nli@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  828. # [05:00] * nli__ is now known as nli
  829. # [05:01] * Quits: jammink (textual@moz-BBE3ABD.mv.mozilla.com) (Quit: Computer has gone to sleep.)
  830. # [05:01] * Joins: lht (elihait@moz-722A94AD.dreamhost.com)
  831. # [05:01] * Quits: jlebar|mac (~jlebarmac@moz-AAEFBBD1.gw.connect.com.au) (Quit: jlebar|mac)
  832. # [05:02] <Unfocused> ok
  833. # [05:02] * khuey|away is now known as khuey
  834. # [05:03] * Joins: njn (chatzilla@moz-AAEFBBD1.gw.connect.com.au)
  835. # [05:04] * Joins: nli__ (nli@moz-99690620.hinet-ip.hinet.net)
  836. # [05:05] * Joins: jlebar|mac (~jlebarmac@moz-AAEFBBD1.gw.connect.com.au)
  837. # [05:05] * Quits: nli (nli@moz-782C3831.dynamic.hinet.net) (Ping timeout)
  838. # [05:05] * nli__ is now known as nli
  839. # [05:07] * Quits: bonnie (bbsurender@moz-2350E391.dsl.pltn13.pacbell.net) (Ping timeout)
  840. # [05:08] * Joins: nrc (nrc@538BABFE.A073F3E.97BBD552.IP)
  841. # [05:08] * Joins: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net)
  842. # [05:11] <@khuey> njn: hi
  843. # [05:13] * Quits: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Ping timeout)
  844. # [05:13] * Quits: rwaldron (rwaldron@moz-71B3012E.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com) (Quit: Leaving...)
  845. # [05:13] * Joins: Poly-C (Poly-C@moz-82BD47B9.dip.t-dialin.net)
  846. # [05:13] * Quits: bc (bc@moz-E31CD2CB.mozilla.org) (Ping timeout)
  847. # [05:13] * Joins: priya (Adium@moz-5843392D.hsd1.ca.comcast.net)
  848. # [05:15] <philor> jlebar|mac: woo, there's your first crash!
  849. # [05:15] * jlebar|mac looks
  850. # [05:15] * Quits: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com) (Input/output error)
  851. # [05:16] * Joins: gozala (gozala@moz-D5BED6F9.dsl.dynamic.sonic.net)
  852. # [05:17] * Joins: jrmuizel (jrmuizel@moz-C607144F.cpe.net.cable.rogers.com)
  853. # [05:17] <jlebar|mac> philor: you mean in my push to birch?
  854. # [05:18] <philor> oh, and is that saying that the existing bug 735572 is coming from that too?
  855. # [05:18] <jlebar|mac> philor: That does not appear ot be my abort.
  856. # [05:18] * Joins: bc (bc@moz-BDD802ED.hfc.comcastbusiness.net)
  857. # [05:18] * Joins: merinui (merinui@moz-61C7235E.osk2.eonet.ne.jp)
  858. # [05:18] <philor> yeah, birch, mozilla::image::DiscardTracker::EnsureMainThread() isn't you?
  859. # [05:18] <jlebar|mac> philor: Yes, but which test?
  860. # [05:18] <jlebar|mac> philor: Not the red Tc?
  861. # [05:18] <philor> https://tbpl.mozilla.org/php/getParsedLog.php?id=10994000&tree=Birch
  862. # [05:19] <philor> I should probably learn that not everybody uses &onlyunstarred=1
  863. # [05:19] <jlebar|mac> philor: Thanks. I guess we can back it out now!
  864. # [05:19] <jlebar|mac> (That was much easier than I expected.)
  865. # [05:19] <philor> which one seemed totally obvious to me, because there's just one test visible in https://tbpl.mozilla.org/?tree=Birch&onlyunstarred=1 so it would have to be that one :)
  866. # [05:19] * Joins: mburst (mburst@C5B03ED4.15EE8362.5379700C.IP)
  867. # [05:20] <philor> even better, that seems to be saying that we know why bug 735572 exists
  868. # [05:20] * Quits: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net) (Client exited)
  869. # [05:21] * Joins: jrmuizel_ (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com)
  870. # [05:21] * heycam|away is now known as heycam
  871. # [05:21] * Quits: jrmuizel (jrmuizel@moz-C607144F.cpe.net.cable.rogers.com) (Ping timeout)
  872. # [05:23] * Joins: Boriss (FlyingToas@DA2C7F43.A84A939A.55B09B25.IP)
  873. # [05:23] * Joins: Mark_Capella (chatzilla@moz-DD0C7E4F.twcny.res.rr.com)
  874. # [05:24] <@khuey> gotta love AV software
  875. # [05:25] <philor> what threat did it take out this time?
  876. # [05:25] <philor> KERNALBASE.DLL?
  877. # [05:25] <philor> which would be better if I could spell
  878. # [05:27] * Joins: twi (Adium@moz-D3D42ABC.cust.dsl.vodafone.it)
  879. # [05:28] * Quits: tchevalier (Instantbir@moz-2E97FBBC.w90-48.abo.wanadoo.fr) (Quit: Instantbird -- http://www.instantbird.com)
  880. # [05:28] * Quits: nattofriends (tsutsumi@moz-A369A791.warosu.org) (Quit: さよなら)
  881. # [05:29] <@khuey> philor: our crashreporter
  882. # [05:29] * Joins: mkaply (Earlybird@moz-92EDDD02.lightspeed.austtx.sbcglobal.net)
  883. # [05:29] <KWierso> which causes a crash, right?
  884. # [05:30] <philor> death of a thousand cuts, it'll probably decide you shouldn't watch <video> next and take out that chunk
  885. # [05:31] <@khuey> https://bugzilla.mozilla.org/show_bug.cgi?id=733892#c56 for contexgt
  886. # [05:31] <@khuey> and also for context
  887. # [05:32] <philor> ah, thought you meant Norton again
  888. # [05:34] * KWierso wonders how browser.sessionstore.restore_pinned_tabs_on_demand snuck past him... and for how long...
  889. # [05:35] * Joins: MauricioC (mauricioc@8AEE83A2.1C6522BD.AA32EE5B.IP)
  890. # [05:36] * Joins: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net)
  891. # [05:38] * Joins: bonnie (bbsurender@moz-2350E391.dsl.pltn13.pacbell.net)
  892. # [05:39] * cjones is now known as cjones-dinner
  893. # [05:42] * Joins: nattofriends (tsutsumi@moz-A369A791.warosu.org)
  894. # [05:44] * Joins: akeybl (akeybl@moz-52D39FF6.hsd1.ca.comcast.net)
  895. # [05:50] * Quits: philipp64|laptop (chatzilla@A6C4D8D3.8A899716.289A8017.IP) (Ping timeout)
  896. # [05:50] * Joins: damons (gnubeard@moz-A41E6911.hsd1.ca.comcast.net)
  897. # [05:51] * Joins: Mardak (Mardak@moz-4FA48382.hsd1.ca.comcast.net)
  898. # [05:52] <MauricioC> Not sure if this is the right place to ask, but... An inline autocomplete feature was added in Firefox 13, but it behaves in a very unexpected manner if I have the "When using the location bar, suggest: History" option activated in Preferences (Privacy section), since it also searches bookmarks.
  899. # [05:52] <MauricioC> So I dug around a little bit and I found out that it queries the moz_hosts table to try and find hosts quickly before querying moz_places (for perf, I assume? that's bug 566489); the moz_hosts table, however, has no information on visit counts.
  900. # [05:52] * Joins: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  901. # [05:52] <MauricioC> What would be an appropriate way to make the inline autocomplete feature respect the privacy perf mentioned above? Is just disabling the moz_hosts optimization depending on the browser.urlbar.default.behavior pref enough?
  902. # [05:52] <MauricioC> s/perf/pref/
  903. # [05:56] * Joins: krit (Adium@moz-3AE657AD.hsd1.ca.comcast.net)
  904. # [05:57] * Quits: Matti (chatzilla@moz-8147F60E.customers.d1-online.com) (Connection reset by peer)
  905. # [05:58] * qheaden wonders why SearchService.getEnginePosition() suddenly isn't a function
  906. # [05:59] * Joins: Matti (chatzilla@moz-8147F60E.customers.d1-online.com)
  907. # [06:02] <MauricioC> Huh, the moz_hosts query is not the only reason why bookmark results get shown. A few lines down nsPlacesAutoComplete.js, params.searchBehavior for the moz_places query gets set to BEHAVIOR_URL, which ignores the Bookmarks/History distinction. Is the urlbar behavior by design then?
  908. # [06:02] <philor> jlebar|mac: unpretty stack, but https://tbpl.mozilla.org/php/getParsedLog.php?id=10994552&tree=Birch could be you, too, it's not one I recognize
  909. # [06:03] <KWierso> MauricioC: I think it's intentional that the autofilling doesn't follow the suggestion prefs in the awesomebar
  910. # [06:03] <jlebar|mac> philor: mozalloc_abort?
  911. # [06:04] * Quits: zuzelvp (zuzelvp@2112147D.C3507A2D.9A8C35B4.IP) (Ping timeout)
  912. # [06:04] <jlebar|mac> philor: that's not OOM?
  913. # [06:04] * Joins: yuan (ywang@moz-6A0DF30E.hsd1.ca.comcast.net)
  914. # [06:05] <philor> dunno, some platforms admit when they're OOM in talos, can't remember if Windows does
  915. # [06:05] * Joins: knelson (Adium@moz-1191D3FA.dsl.pltn13.sbcglobal.net)
  916. # [06:05] * Joins: zuzelvp (zuzelvp@2112147D.C3507A2D.9A8C35B4.IP)
  917. # [06:05] * Quits: knelson (Adium@moz-1191D3FA.dsl.pltn13.sbcglobal.net) (Quit: knelson)
  918. # [06:05] * Quits: Hendikins (wolfox@moz-16899DFF.hhui4.ken.bigpond.net.au) (Ping timeout)
  919. # [06:06] * Quits: aja (chatzilla@44BE1548.AEC64F0A.7880DB15.IP) (Client exited)
  920. # [06:06] * Joins: Hendikins (wolfox@moz-16899DFF.hhui4.ken.bigpond.net.au)
  921. # [06:06] <MauricioC> KWierso: Yeah, I see how not following the awesomebar pref can be useful, but I can also think of a few use cases where not following the pref would be a terrible idea privacy-wise... I guess I'll file a bug to gather enough data/opinions before writing a patch then. Thanks!
  922. # [06:07] * Quits: jimb (user@moz-F4EC06CC.hsd1.or.comcast.net) (Ping timeout)
  923. # [06:08] * Quits: cadecairos (cadecairos@moz-632B4208.cpe.net.cable.rogers.com) (Ping timeout)
  924. # [06:08] * Joins: cadecairos (cadecairos@moz-632B4208.cpe.net.cable.rogers.com)
  925. # [06:09] * Quits: Poly-C (Poly-C@moz-82BD47B9.dip.t-dialin.net) (Ping timeout)
  926. # [06:09] * Joins: Poly-C (Poly-C@moz-C818A940.dip.t-dialin.net)
  927. # [06:09] <philor> jlebar|mac: https://tbpl.mozilla.org/php/getParsedLog.php?id=10994552&full=1&branch=birch and cmd+f and ###!!! ABORT: Must be on main thread!: file e:/builds/moz2_slave/bir-w32/build/image/src/DiscardTracker.cpp, line 156
  928. # [06:10] <jlebar|mac> philor is much better at this than me.
  929. # [06:10] * Joins: anky (anky@C818DB70.4632A0C2.A3D1B221.IP)
  930. # [06:10] * Quits: firebot (firebot@moz-67BF9FE6.carolina.res.rr.com) (Ping timeout)
  931. # [06:10] <philor> I might possibly have looked blankly at one or two logs in my time...
  932. # [06:10] * Quits: Mardak (Mardak@moz-4FA48382.hsd1.ca.comcast.net) (Quit: Mardak)
  933. # [06:10] <Callek> attn explanation of current state posted: https://groups.google.com/group/mozilla.dev.planning/browse_thread/thread/0ad6c71163986628#
  934. # [06:11] * Joins: smontagu (chatzilla@moz-62BEE8DA.red.bezeqint.net)
  935. # [06:11] * Joins: firebot (firebot@moz-67BF9FE6.carolina.res.rr.com)
  936. # [06:13] * Quits: firebot (firebot@moz-67BF9FE6.carolina.res.rr.com) (Ping timeout)
  937. # [06:13] <philor> wouldn't be surprised if that Amazon page is the last in the set, and it's closing a window and updating the jumplist and that's really the same thing, though
  938. # [06:13] * Joins: WeirdAl (chatzilla@moz-5BDC219.hsd1.ca.comcast.net)
  939. # [06:14] <philor> oh, no, it's the first in the set
  940. # [06:14] * Joins: firebot (firebot@moz-67BF9FE6.carolina.res.rr.com)
  941. # [06:14] <philor> or the somethingth
  942. # [06:14] * Quits: bdahl (bdahl@moz-E197F13B.hsd1.ca.comcast.net) (Client exited)
  943. # [06:14] * Quits: heycam (cam@moz-1D84C1DF.mcc.id.au) (Ping timeout)
  944. # [06:15] <@bz> has anyone seen peterv?
  945. # [06:16] * Joins: heycam (cam@moz-1D84C1DF.mcc.id.au)
  946. # [06:16] <WeirdAl> Hey, folks - anyone available to answer some questions about XULRunner?
  947. # [06:16] <WeirdAl> specifically, launching from a downloaded SDK
  948. # [06:16] <WeirdAl> on Mac :)
  949. # [06:17] * Joins: brendan (brendaneic@moz-BBE3ABD.mv.mozilla.com)
  950. # [06:17] * Joins: knelson (Adium@moz-1191D3FA.dsl.pltn13.sbcglobal.net)
  951. # [06:17] * Parts: knelson (Adium@moz-1191D3FA.dsl.pltn13.sbcglobal.net)
  952. # [06:19] * Quits: qheaden (qah661@moz-67E02157.nrflva.fios.verizon.net) (Quit: Leaving)
  953. # [06:19] <WeirdAl> I have an old 13.0a2 framework installed at /Library/Frameworks/XUL.framework/Versions/13.0a2, but my XR app (installed using --install-app correctly this time) is not detecting it
  954. # [06:21] * Quits: Mark_Capella (chatzilla@moz-DD0C7E4F.twcny.res.rr.com) (Quit: ChatZilla 0.9.88.2 [Firefox 13.0a2/20120405042010])
  955. # [06:21] * Joins: pranavrc (pranavrc@9F989A89.E1AAC45C.C28326FD.IP)
  956. # [06:22] * Quits: cadecairos (cadecairos@moz-632B4208.cpe.net.cable.rogers.com) (Connection reset by peer)
  957. # [06:22] <philor> grr, someone copy-pasted over my inbound spidermonkey build link
  958. # [06:24] * Joins: janv (varga@moz-6D58DC19.flarion.as5628.telecom.sk)
  959. # [06:25] * Quits: MauricioC (mauricioc@8AEE83A2.1C6522BD.AA32EE5B.IP) (Quit: Lost terminal)
  960. # [06:25] * Joins: philipp64|laptop (chatzilla@moz-764C1742.hfc.comcastbusiness.net)
  961. # [06:25] * Quits: hub (hub@moz-E2FCA694.figuiere.net) (Ping timeout)
  962. # [06:26] * Quits: bbondy (bbondy@moz-C9962B2.home.cgocable.net) (Ping timeout)
  963. # [06:27] * Quits: firebot (firebot@moz-67BF9FE6.carolina.res.rr.com) (Connection reset by peer)
  964. # [06:27] * cjones-dinner is now known as cjones
  965. # [06:29] * Quits: Matti (chatzilla@moz-8147F60E.customers.d1-online.com) (Connection reset by peer)
  966. # [06:30] * lsblakk is now known as lsblakk|afk
  967. # [06:33] * rnewman is now known as rnewman|afk
  968. # [06:33] * Joins: rwaldron (rwaldron@moz-71B3012E.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com)
  969. # [06:34] * Quits: rwaldron (rwaldron@moz-71B3012E.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com) (NickServ (GHOST command used by rick))
  970. # [06:34] * Joins: rick (rwaldron@moz-71B3012E.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com)
  971. # [06:34] * Quits: ewong (chatzilla@moz-E5D50C2E.static.netvigator.com) (Quit: Reset)
  972. # [06:36] * Quits: bsmith (bsmith@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  973. # [06:37] * Joins: firebot (firebot@moz-67BF9FE6.carolina.res.rr.com)
  974. # [06:37] * Quits: bonnie (bbsurender@moz-2350E391.dsl.pltn13.pacbell.net) (Ping timeout)
  975. # [06:38] * Quits: robarnold (rob@moz-59F6B5.hfc.comcastbusiness.net) (Ping timeout)
  976. # [06:38] * Joins: vikash (vikash@88DD17D3.9B552DFD.5D9ABA9F.IP)
  977. # [06:38] * Joins: robarnold (rob@moz-59F6B5.hfc.comcastbusiness.net)
  978. # [06:39] * Joins: smooney_ (smooney@moz-3C7A0050.hsd1.ca.comcast.net)
  979. # [06:45] * Quits: cilias (cilias@moz-D65C0C74.cpe.net.cable.rogers.com) (Quit: cilias)
  980. # [06:45] * Quits: damons (gnubeard@moz-A41E6911.hsd1.ca.comcast.net) (Quit: damons)
  981. # [06:46] * Joins: damons (gnubeard@moz-A41E6911.hsd1.ca.comcast.net)
  982. # [06:46] * Quits: espindola (espindola@moz-EF46D60.dsl.teksavvy.com) (Quit: Ex-Chat)
  983. # [06:47] <cpearce> hmm, latest flash player update 11.1.102.62 doesn't work for my nightly build...
  984. # [06:48] <cpearce> hmm, doesn't work on release build either...
  985. # [06:48] * Quits: brendan (brendaneic@moz-BBE3ABD.mv.mozilla.com) (Quit: brendan)
  986. # [06:48] * Joins: jamesr_ (jamesr@moz-C40B3BE3.hfc.comcastbusiness.net)
  987. # [06:49] * Quits: mburst (mburst@C5B03ED4.15EE8362.5379700C.IP) (Connection reset by peer)
  988. # [06:50] <markh> hrm - #xul is a little quiet so I'll ask here...
  989. # [06:50] <markh> We're creating an addon using XUL overlays and having a debate about where scripts should be placed. All other things being equal, should we prefer javascript modules (imported using Cu.import) over multiple <script> tags in the XUL? IOW, is there a preference to reduce the number of <script> tags?
  990. # [06:51] <cpearce> hmm, manual flash player install works...
  991. # [06:51] <@khuey> JSMs are probably better
  992. # [06:51] <@khuey> since those are singletons
  993. # [06:52] <markh> great, thanks - that happens to be my position. But all ammo appreciated :)
  994. # [06:52] * Parts: lduros (lduros@moz-BED1C6A5.c3-0.rdl-ubr1.trpr-rdl.pa.cable.rcn.com)
  995. # [06:52] * Quits: zuzelvp (zuzelvp@2112147D.C3507A2D.9A8C35B4.IP) (Ping timeout)
  996. # [06:52] * WeirdAl agrees with khuey - script tags tend to suck these days
  997. # [06:53] * Quits: yuan (ywang@moz-6A0DF30E.hsd1.ca.comcast.net) (Quit: yuan)
  998. # [06:54] * nthomas is now known as nthomas|away
  999. # [06:56] * Quits: jamesr_ (jamesr@moz-C40B3BE3.hfc.comcastbusiness.net) (Quit: jamesr_)
  1000. # [06:57] * Joins: rniwa_ (rniwa@60A74940.D6CCE4AE.77834EAA.IP)
  1001. # [06:57] * Quits: anant (anant@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Ping timeout)
  1002. # [06:58] * Quits: njn (chatzilla@moz-AAEFBBD1.gw.connect.com.au) (Client exited)
  1003. # [06:58] * Quits: rniwa (rniwa@moz-E171DA5.sfba.hfc.comcastbusiness.net) (Ping timeout)
  1004. # [06:58] * rniwa_ is now known as rniwa
  1005. # [06:58] * Joins: ewong (chatzilla@moz-E5D50C2E.static.netvigator.com)
  1006. # [07:00] * Joins: myk (Instantbir@moz-64D96850.dsl.dynamic.sonic.net)
  1007. # [07:04] * Joins: rclick (rclick@moz-3A7383FB.dsl.covlil.sbcglobal.net)
  1008. # [07:07] * Joins: harsh (Mibbit@919CF5CB.4BE2284C.6525FFAA.IP)
  1009. # [07:07] * Quits: harsh (Mibbit@919CF5CB.4BE2284C.6525FFAA.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  1010. # [07:07] * Quits: eflores (eflores@538BABFE.A073F3E.97BBD552.IP) (Connection reset by peer)
  1011. # [07:08] * Joins: eflores (eflores@538BABFE.A073F3E.97BBD552.IP)
  1012. # [07:11] <mbrubeck> JSMs are also better for easy on-demand loading, making it easier to avoid impact on startup time
  1013. # [07:11] * bz is now known as bz_sleep
  1014. # [07:11] * Joins: birtles (chatzilla@moz-348F61F0.mozilla.or.jp)
  1015. # [07:12] * Quits: mkaply (Earlybird@moz-92EDDD02.lightspeed.austtx.sbcglobal.net) (Ping timeout)
  1016. # [07:13] * Joins: jhk (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  1017. # [07:14] * Quits: Hendikins (wolfox@moz-16899DFF.hhui4.ken.bigpond.net.au) (Ping timeout)
  1018. # [07:16] * Joins: Hendikins (wolfox@moz-16899DFF.hhui4.ken.bigpond.net.au)
  1019. # [07:16] * Joins: jimb (user@moz-F4EC06CC.hsd1.or.comcast.net)
  1020. # [07:17] * Joins: bsmith (bsmith@A13161C7.979D6A3B.E017DF26.IP)
  1021. # [07:17] * Quits: jrmuizel_ (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com) (Input/output error)
  1022. # [07:17] * khuey is now known as khuey|away
  1023. # [07:17] * Quits: Ziggy|AWAY (ZiggyMaes@6B780D9D.A4A6DE76.7B12EFB3.IP) (Ping timeout)
  1024. # [07:20] * Joins: gkw (Instantbir@moz-104CC309.mv.mozilla.com)
  1025. # [07:22] * khuey|away is now known as khuey
  1026. # [07:24] * Quits: faramarz (faramarz@moz-CD61C00E.hsd1.ca.comcast.net) (Quit: faramarz)
  1027. # [07:25] <WeirdAl> So how does the contents of xulrunner-13.0a2.en-US.mac-x86_64.sdk.tar.bz2 compare with what the equivalent .dmg installs into /Library/Frameworks/XUL.framework/Versions/13.0a2 ?
  1028. # [07:26] * Quits: JonathanS (JonathanS@17EDFC35.8737F162.521902B0.IP) (Quit: Computer has gone to sleep.)
  1029. # [07:26] * Joins: Ziggy|AWAY (ZiggyMaes@6B780D9D.A4A6DE76.7B12EFB3.IP)
  1030. # [07:26] * Ziggy|AWAY is now known as Ziggy_Maes
  1031. # [07:27] * Quits: squib (squib@moz-B01B5D55.dhcp.mdsn.wi.charter.com) (Quit: Leaving)
  1032. # [07:29] * Quits: dria (dria@moz-86A004D9.dhcp-dynamic.fibreop.nb.bellaliant.net) (Ping timeout)
  1033. # [07:29] <WeirdAl> khuey: also, a question for you re the ftp site: ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/nightly/2012/04/ has builds much more recent than ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/nightly/latest-mozilla-aurora/ for XR 13... why would that be?
  1034. # [07:29] * Quits: rick (rwaldron@moz-71B3012E.c3-0.abr-ubr1.sbo-abr.ma.cable.rcn.com) (Quit: Leaving...)
  1035. # [07:30] * Joins: aja (chatzilla@44BE1548.AEC64F0A.7880DB15.IP)
  1036. # [07:31] * @khuey grumbles
  1037. # [07:31] <@khuey> this mozApps stuff really needs to go somewhere where I don't get bugmail for it
  1038. # [07:32] <@khuey> WeirdAl: no idea, is XR burning on Aurora?
  1039. # [07:33] <WeirdAl> probably not, since builds are showing up in the former location with today's datestamp
  1040. # [07:33] * Quits: akeybl (akeybl@moz-52D39FF6.hsd1.ca.comcast.net) (Quit: Leaving...)
  1041. # [07:33] <WeirdAl> they're just not showing up in the latter
  1042. # [07:35] <WeirdAl> hell, I'm not even sure tbpl has an entry for XULRunner
  1043. # [07:35] * Quits: Boriss (FlyingToas@DA2C7F43.A84A939A.55B09B25.IP) (Quit: Boriss)
  1044. # [07:35] <@khuey> it doesn't afaik
  1045. # [07:35] * Joins: gal (gal@moz-7327DB99.hsd1.ca.comcast.net)
  1046. # [07:35] <@khuey> the tinderbox page for it appears to be gone too
  1047. # [07:35] <@khuey> so I guess you'll have to poke releng
  1048. # [07:36] <WeirdAl> hm, what channel is that? :)
  1049. # [07:36] * Joins: Honza_ (chatzilla@C62E2FAA.23B79DE4.D0083327.IP)
  1050. # [07:36] <KWierso> #build ?
  1051. # [07:36] * Quits: Honza (chatzilla@C62E2FAA.23B79DE4.D0083327.IP) (Ping timeout)
  1052. # [07:36] <WeirdAl> ah, thanks
  1053. # [07:36] * Honza_ is now known as Honza
  1054. # [07:37] * Joins: akeybl (akeybl@moz-52D39FF6.hsd1.ca.comcast.net)
  1055. # [07:39] * Quits: akeybl (akeybl@moz-52D39FF6.hsd1.ca.comcast.net) (Quit: Leaving...)
  1056. # [07:41] * Quits: bnicholson (bnicholson@moz-F08A2DE.hsd1.ca.comcast.net) (Quit: Leaving)
  1057. # [07:41] * Joins: anant (anant@moz-D3725328.dsl.dynamic.sonic.net)
  1058. # [07:42] * Quits: gal (gal@moz-7327DB99.hsd1.ca.comcast.net) (Quit: gal)
  1059. # [07:42] * Joins: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP)
  1060. # [07:43] * Quits: dseif (dseif@moz-7F02C9C3.dsl.teksavvy.com) (Input/output error)
  1061. # [07:44] * Joins: Matti (chatzilla@moz-1EF70AC3.dip.t-dialin.net)
  1062. # [07:47] * Quits: anky (anky@C818DB70.4632A0C2.A3D1B221.IP) (Quit: Leaving...)
  1063. # [07:47] * Joins: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de)
  1064. # [07:48] * KWierso disables updates in his Nightly installation
  1065. # [07:49] * Joins: wolfiR (wolfiR@moz-396830FC.dip0.t-ipconnect.de)
  1066. # [07:50] * Quits: cpearce (chatzilla@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  1067. # [07:51] * Joins: AryehGregor (AryehGrego@7DEC01ED.AFEF24F6.CB858787.IP)
  1068. # [07:52] * Joins: Mossop (mossop@moz-69D0FE2F.dsl.dynamic.sonic.net)
  1069. # [07:55] * jhford-work-away is now known as jhford-work
  1070. # [07:55] * Quits: krit (Adium@moz-3AE657AD.hsd1.ca.comcast.net) (Quit: Leaving.)
  1071. # [07:57] * Quits: automata (automata@279F9BEF.953A450B.69539902.IP) (Ping timeout)
  1072. # [07:58] * Quits: blizzack (dpierre@16D3C936.5378A4C5.1B632967.IP) (Ping timeout)
  1073. # [08:00] * Quits: gozala (gozala@moz-D5BED6F9.dsl.dynamic.sonic.net) (Quit: Leaving.)
  1074. # [08:00] * Joins: stransky (stransky@moz-BA3F7E46.net.upcbroadband.cz)
  1075. # [08:00] * Joins: blizzack (dpierre@16D3C936.5378A4C5.1B632967.IP)
  1076. # [08:01] * Quits: Lucas (Lucas@moz-92C28224.hsd1.ca.comcast.net) (Ping timeout)
  1077. # [08:01] * Joins: brendan (brendaneic@moz-A286C218.hsd1.ca.comcast.net)
  1078. # [08:02] * Quits: smagnin (pike@moz-DEF53BC9.fbx.proxad.net) (Client exited)
  1079. # [08:02] * Quits: juanb (jbecerra@moz-F1012875.hsd1.ca.comcast.net) (Quit: juanb)
  1080. # [08:03] * Quits: anant (anant@moz-D3725328.dsl.dynamic.sonic.net) (Quit: anant)
  1081. # [08:03] * Quits: @roc (chatzilla@538BABFE.A073F3E.97BBD552.IP) (Ping timeout)
  1082. # [08:03] * Joins: smagnin (pike@moz-DEF53BC9.fbx.proxad.net)
  1083. # [08:07] * jhford-work is now known as jhford-work-away
  1084. # [08:08] <AryehGregor> Okay, so the theory is that I can push to birch instead of m-i or m-c, and my changes are guaranteed to make it back to m-c?
  1085. # [08:08] <AryehGregor> At some point?
  1086. # [08:08] * Joins: xakz (XaMaD@moz-4A5DD6F7.w92-135.abo.wanadoo.fr)
  1087. # [08:09] * AryehGregor is quite confused, but thinks that's the gist of it
  1088. # [08:09] <KWierso> birch is the new m-i, but it only does merges after 9 days from now
  1089. # [08:09] * Joins: RemusPop (remuspop@601F3B17.33662590.A5830293.IP)
  1090. # [08:09] <AryehGregor> Hmm.
  1091. # [08:09] <AryehGregor> Okay.
  1092. # [08:09] <AryehGregor> So I have to leave my patches in mq as well for now, if I'm sticking with an m-c checkout for development.
  1093. # [08:10] <AryehGregor> Which I probably want to because birch might be broken . . . sigh.
  1094. # [08:10] <AryehGregor> (it's six days now, no?)
  1095. # [08:10] <hsivonen> Is Firefox 12 already so frozen that we don't put more crash fixes into it?
  1096. # [08:10] <KWierso> or at least, that's how I interpreted callek's post in dev planning
  1097. # [08:10] * Joins: mdas (mdas@moz-E8441CC2.hfc.comcastbusiness.net)
  1098. # [08:11] <Callek> KWierso: huh? birch is the new m-i UNTIL our next merge day
  1099. # [08:11] <KWierso> AryehGregor: yeah, "on or around April 24"
  1100. # [08:11] <hsivonen> leaving patches in mq for a week sounds like #firstworldproblems after the review cycles for the HTML5 parser and then the new View Source
  1101. # [08:11] * Quits: masayuki (Daily@moz-911CC660.zaq.ne.jp) (Quit: masayuki)
  1102. # [08:11] * Joins: masayuki (Daily@moz-911CC660.zaq.ne.jp)
  1103. # [08:12] <KWierso> Callek: I'm not really awake, 9 days sounded right at the time :P
  1104. # [08:12] <Callek> AryehGregor: the approvals are relatively liberal, so you can ask for it, or land on birch (just like you used to land on m-i)
  1105. # [08:12] <philikon> is it possible to postMessage() typed arrays in gecko yet?
  1106. # [08:12] * Joins: squib (squib@moz-B01B5D55.dhcp.mdsn.wi.charter.com)
  1107. # [08:12] <AryehGregor> Callek, does "relatively liberal" include "random new features that could certainly wait a week but aren't unusually likely to break stuff"?
  1108. # [08:12] <AryehGregor> Is there a posted approval policy somewhere?
  1109. # [08:13] <Callek> AryehGregor: if its fennec a random new feature likely won't get approval, if its Firefox "maybe"
  1110. # [08:13] <Callek> I'm not a driver, but thats how I was basically told it by them
  1111. # [08:13] <AryehGregor> What do you mean "if it's fennec"? My patches are in editor/, so they affect both.
  1112. # [08:13] <Callek> so if you want to try for it, request approval, or you can land on birch and it will land for Firefox 15
  1113. # [08:13] <Callek> yea editor/ would affect fennec
  1114. # [08:13] <AryehGregor> If people are going to close trees, is it too much to ask that they clearly write down what the approval policy is somewhere?
  1115. # [08:14] <Callek> AryehGregor: I posted what I know to m.d.planning feel free to followup to my post if the state of things are not clear
  1116. # [08:14] <hsivonen> so I have a crash fix in inbound. should I wait until it has made it into nightlies before requesting branch approval? or is it futile to try to get approval for 12 anyway?
  1117. # [08:15] * Joins: jammink (textual@moz-BBE3ABD.mv.mozilla.com)
  1118. # [08:15] <Callek> hsivonen: there is a *chance* we'll have another Gecko 12 beta, but I don't know
  1119. # [08:15] <AryehGregor> Ah, I didn't see that thread.
  1120. # [08:15] <Callek> I'd request and say something like "I'm not sure if this is in time for Gecko 12, but requesting just in case"
  1121. # [08:15] <hsivonen> Callek: ok
  1122. # [08:17] * Quits: jimb (user@moz-F4EC06CC.hsd1.or.comcast.net) (Ping timeout)
  1123. # [08:18] * philor is now known as philor|away
  1124. # [08:20] * Quits: eflores (eflores@538BABFE.A073F3E.97BBD552.IP) (Client exited)
  1125. # [08:20] * Joins: eflores (eflores@538BABFE.A073F3E.97BBD552.IP)
  1126. # [08:21] * Quits: Mossop (mossop@moz-69D0FE2F.dsl.dynamic.sonic.net) (Ping timeout)
  1127. # [08:22] * Quits: rail_away (rail@moz-E6144DC3.iqchoice.com) (Ping timeout)
  1128. # [08:22] * Joins: TheOne (TheOne@moz-D58488C3.dfki.uni-kl.de)
  1129. # [08:23] * Joins: bholley (bholley@moz-9375A05C.fbx.proxad.net)
  1130. # [08:24] * Quits: eflores (eflores@538BABFE.A073F3E.97BBD552.IP) (Quit: Bye)
  1131. # [08:25] * Joins: rail_away (rail@moz-E6144DC3.iqchoice.com)
  1132. # [08:25] <AryehGregor> Is there a way on Bugzilla to get a list of all approval-mozilla-central- bugs so I can get an idea of what's getting approved or not?
  1133. # [08:26] <AryehGregor> Hmm, maybe advanced search will do it . . . looks like it.
  1134. # [08:26] <AryehGregor> No, maybe not.
  1135. # [08:27] * Joins: Mark_Capella (chatzilla@moz-DD0C7E4F.twcny.res.rr.com)
  1136. # [08:28] <AryehGregor> I guess I'll just request approval and see what happens.
  1137. # [08:29] * Quits: smooney_ (smooney@moz-3C7A0050.hsd1.ca.comcast.net) (Quit: smooney_)
  1138. # [08:29] * Quits: damons (gnubeard@moz-A41E6911.hsd1.ca.comcast.net) (Quit: damons)
  1139. # [08:33] <AryehGregor> Or not. Bleh.
  1140. # [08:34] <KWierso> "Can't use cf_approval-mozilla-central as a field name."
  1141. # [08:34] <KWierso> :\
  1142. # [08:35] * Quits: pranavrc (pranavrc@9F989A89.E1AAC45C.C28326FD.IP) (Ping timeout)
  1143. # [08:35] * Quits: nrc (nrc@538BABFE.A073F3E.97BBD552.IP) (Quit: ChatZilla 0.9.88.2 [Firefox 12.0/20120411064248])
  1144. # [08:36] * Joins: juanb (jbecerra@moz-F1012875.hsd1.ca.comcast.net)
  1145. # [08:39] * Quits: cjones (cjones@moz-45913895.socal.res.rr.com) (Quit: Leaving)
  1146. # [08:40] <KWierso> oh, the flag's on the attachment?
  1147. # [08:40] * Joins: maikmerten (merten@moz-E254386D.cs.uni-dortmund.de)
  1148. # [08:40] * Quits: rniwa (rniwa@60A74940.D6CCE4AE.77834EAA.IP) (Quit: rniwa)
  1149. # [08:40] * Quits: Matti (chatzilla@moz-1EF70AC3.dip.t-dialin.net) (Client exited)
  1150. # [08:41] <Unfocused> isn't it always?
  1151. # [08:42] <KWierso> I've never been in a position where I needed to care about how approval flags worked
  1152. # [08:43] * Parts: priya (Adium@moz-5843392D.hsd1.ca.comcast.net)
  1153. # [08:44] * Quits: bc (bc@moz-BDD802ED.hfc.comcastbusiness.net) (Ping timeout)
  1154. # [08:46] * Joins: clee (clee@moz-E3C0B5D0.hsd1.ca.comcast.net)
  1155. # [08:46] * Joins: pascalc (chatzilla@moz-446F98C8.fbxo.proxad.net)
  1156. # [08:46] * Quits: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP) (Quit: jfkthame)
  1157. # [08:48] * Quits: avih (quassel@moz-12626DE6.red.bezeqint.net) (Ping timeout)
  1158. # [08:49] * Joins: jhorak (jhorak@moz-107AD163.redhat.com)
  1159. # [08:54] * Joins: davehunt (davehunt@moz-369330A1.dab.02.net)
  1160. # [08:57] * Quits: Havvy (Mibbit@moz-58C3546E.ptld.qwest.net) (Quit: http://www.mibbit.com ajax IRC Client)
  1161. # [08:57] <hsivonen> Why don't we set readyState to "interactive" when a parse ends due to the parser getting aborted?
  1162. # [08:58] * khuey is now known as khuey|away
  1163. # [08:58] * Quits: Hendikins (wolfox@moz-16899DFF.hhui4.ken.bigpond.net.au) (Ping timeout)
  1164. # [08:58] * Joins: avih (quassel@moz-1C22B61.red.bezeqint.net)
  1165. # [08:59] * Joins: Hendikins (wolfox@moz-16899DFF.hhui4.ken.bigpond.net.au)
  1166. # [08:59] * Quits: WeirdAl (chatzilla@moz-5BDC219.hsd1.ca.comcast.net) (Ping timeout)
  1167. # [09:03] * khuey|away is now known as khuey
  1168. # [09:05] * Quits: mattwoodrow (mattwoodro@moz-AE9416F2.alliedmods.net) (Ping timeout)
  1169. # [09:05] * Quits: myk (Instantbir@moz-64D96850.dsl.dynamic.sonic.net) (Connection reset by peer)
  1170. # [09:05] * Quits: ewong|sleep (chatzilla@moz-5B0EF77B.static.netvigator.com) (Connection reset by peer)
  1171. # [09:05] * Quits: ewong (chatzilla@moz-E5D50C2E.static.netvigator.com) (Connection reset by peer)
  1172. # [09:05] * Quits: richardus (richardus@moz-A4E2BEA4.com) (Ping timeout)
  1173. # [09:05] * Quits: @dveditz (dveditz@moz-34991AF4.dhcp.cruzio.com) (Ping timeout)
  1174. # [09:05] * Joins: pnemsak (Miranda@moz-BE85878E.citicom.sk)
  1175. # [09:05] * Quits: mkelly (mkelly@moz-99CF8925.members.linode.com) (Ping timeout)
  1176. # [09:05] * Quits: Tobbi (Tobbi@1CA3658A.933EA279.AC7F8427.IP) (Ping timeout)
  1177. # [09:05] * Quits: logbot (logbot@moz-622AFC27.glob.com.au) (Ping timeout)
  1178. # [09:05] * Joins: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP)
  1179. # [09:06] * Quits: nical|away (nical@moz-63925F6.members.linode.com) (Input/output error)
  1180. # [09:06] * Joins: nical|away (nical@moz-63925F6.members.linode.com)
  1181. # [09:06] * Quits: qDot (qDot@moz-4548DE5D.members.linode.com) (Ping timeout)
  1182. # [09:06] * Joins: qDot (qDot@moz-4548DE5D.members.linode.com)
  1183. # [09:06] * Quits: mreid (mreid@moz-5F4A70CA.yipyip.com) (Ping timeout)
  1184. # [09:06] * Joins: mkelly (mkelly@moz-99CF8925.members.linode.com)
  1185. # [09:06] * Joins: ewong|sleep (chatzilla@moz-5B0EF77B.static.netvigator.com)
  1186. # [09:06] * Joins: ewong (chatzilla@moz-E5D50C2E.static.netvigator.com)
  1187. # [09:06] * Joins: myk (Instantbir@moz-64D96850.dsl.dynamic.sonic.net)
  1188. # [09:06] * Joins: Tobbi (Tobbi@1CA3658A.933EA279.AC7F8427.IP)
  1189. # [09:06] * Joins: dveditz (dveditz@moz-34991AF4.dhcp.cruzio.com)
  1190. # [09:06] * ChanServ sets mode: +o dveditz
  1191. # [09:06] * Joins: mattwoodrow (mattwoodro@moz-AE9416F2.alliedmods.net)
  1192. # [09:07] * Tobbi is now known as IRCMonkey49799
  1193. # [09:07] * Joins: logbot (logbot@moz-622AFC27.glob.com.au)
  1194. # [09:07] * Joins: mreid (mreid@moz-5F4A70CA.yipyip.com)
  1195. # [09:07] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/0c7e2911be75 - Myk Melez - bug 746457 - fix bustage in reading extension default prefs (not covered by tests) from changeset ef55c163a23a (bug 725408); r,a=bustage
  1196. # [09:08] * Joins: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1197. # [09:10] * Joins: richardus (richardus@moz-A4E2BEA4.com)
  1198. # [09:12] * Joins: dao (dao@moz-8C7A6ACA.superkabel.de)
  1199. # [09:16] * Quits: davehunt (davehunt@moz-369330A1.dab.02.net) (Ping timeout)
  1200. # [09:18] * Joins: gcp (gpascutto@moz-D0E475EA.access.telenet.be)
  1201. # [09:18] * Joins: davehunt (davehunt@moz-A44F6E2E.dab.02.net)
  1202. # [09:21] * Quits: squib (squib@moz-B01B5D55.dhcp.mdsn.wi.charter.com) (Quit: Leaving)
  1203. # [09:23] * Joins: past (past@moz-EA81DA75.dsl.dyn.forthnet.gr)
  1204. # [09:23] * Quits: brendan (brendaneic@moz-A286C218.hsd1.ca.comcast.net) (Quit: brendan)
  1205. # [09:24] * Joins: martyn (martyn@moz-CABED5F2.range81-154.btcentralplus.com)
  1206. # [09:26] * heycam is now known as heycam|away
  1207. # [09:27] * Quits: mdas (mdas@moz-E8441CC2.hfc.comcastbusiness.net) (Quit: mdas)
  1208. # [09:27] * Joins: Stan (Stan@moz-C55C59C5.dip.t-dialin.net)
  1209. # [09:28] * Quits: Stan_ (Stan@moz-934D3379.dip.t-dialin.net) (Ping timeout)
  1210. # [09:29] * Joins: chrisccoulson (chr1s@CF62D2D6.FC921812.EE27BB8D.IP)
  1211. # [09:29] * Quits: chrisccoulson (chr1s@CF62D2D6.FC921812.EE27BB8D.IP) (Quit: Ex-Chat)
  1212. # [09:29] * Quits: davehunt (davehunt@moz-A44F6E2E.dab.02.net) (Ping timeout)
  1213. # [09:29] * Quits: sandy (sandy@moz-3C8DFC78.lv.lv.cox.net) (Ping timeout)
  1214. # [09:29] * Joins: chrisccoulson (chr1s@CF62D2D6.FC921812.EE27BB8D.IP)
  1215. # [09:31] * Quits: gkw (Instantbir@moz-104CC309.mv.mozilla.com) (Quit: Instantbird -- http://www.instantbird.com)
  1216. # [09:34] * Quits: jhk (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Quit: Leaving.)
  1217. # [09:34] * Joins: jhk (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  1218. # [09:37] * Quits: kennyluck (kennyluck@moz-7B195995.dynamic.hinet.net) (Quit: kennyluck)
  1219. # [09:37] * Quits: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Ping timeout)
  1220. # [09:38] * Joins: kennyluck (kennyluck@moz-7B195995.dynamic.hinet.net)
  1221. # [09:42] * Quits: jammink (textual@moz-BBE3ABD.mv.mozilla.com) (Quit: Computer has gone to sleep.)
  1222. # [09:42] * Joins: Wei_o_o (Wei@212A6CEB.4F4B4250.FAA9ED67.IP)
  1223. # [09:46] * Joins: joe_walker (joe_walker@moz-15405DDA.cable.virginmedia.com)
  1224. # [09:46] * Joins: cpearce (chatzilla@moz-510B10B9.xdsl.xnet.co.nz)
  1225. # [09:47] * Quits: @dveditz (dveditz@moz-34991AF4.dhcp.cruzio.com) (Quit: dveditz)
  1226. # [09:50] * Joins: jens (hauke@moz-C964F46F.pools.arcor-ip.net)
  1227. # [09:50] * Quits: gwagner (idefix2@moz-99690620.hinet-ip.hinet.net) (Ping timeout)
  1228. # [09:51] * Joins: c0smikdebris (c0smikdebr@93EFE709.6E5D865F.274D17D6.IP)
  1229. # [09:51] * Quits: juanb (jbecerra@moz-F1012875.hsd1.ca.comcast.net) (Quit: juanb)
  1230. # [09:52] * Joins: MarcoZ (Daily@moz-3E9F26ED.dip.t-dialin.net)
  1231. # [09:52] * Quits: MarcoZ (Daily@moz-3E9F26ED.dip.t-dialin.net) (Input/output error)
  1232. # [09:52] * Quits: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP) (Quit: jfkthame)
  1233. # [09:53] * Joins: Standard8 (Standard8@B7F1AE36.48015583.54C3481B.IP)
  1234. # [09:54] * Joins: MarcoZ (Daily@moz-3E9F26ED.dip.t-dialin.net)
  1235. # [09:54] * Joins: sandy (sandy@moz-8EB605BD.lv.lv.cox.net)
  1236. # [09:54] * Joins: gwagner (idefix2@moz-99690620.hinet-ip.hinet.net)
  1237. # [09:54] * Joins: graememcc (chatzilla@moz-77A8A989.range86-147.btcentralplus.com)
  1238. # [10:02] * Quits: Wei_o_o (Wei@212A6CEB.4F4B4250.FAA9ED67.IP) (Client exited)
  1239. # [10:04] * Quits: clee (clee@moz-E3C0B5D0.hsd1.ca.comcast.net) (Quit: clee)
  1240. # [10:07] * Quits: bb10 (bb10@moz-C7B05616.org) (Ping timeout)
  1241. # [10:07] * Quits: c0smikdebris (c0smikdebr@93EFE709.6E5D865F.274D17D6.IP) (Ping timeout)
  1242. # [10:08] * Joins: c0smikdebris (c0smikdebr@93EFE709.6E5D865F.274D17D6.IP)
  1243. # [10:09] * Quits: cpearce (chatzilla@moz-510B10B9.xdsl.xnet.co.nz) (Ping timeout)
  1244. # [10:10] * Joins: cpearce (chatzilla@moz-510B10B9.xdsl.xnet.co.nz)
  1245. # [10:13] * Joins: msucan (msucan-@754ABC71.319ADCBF.D7B372F7.IP)
  1246. # [10:13] * Quits: jhk (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  1247. # [10:14] <firebot> Check-in:
  1248. # [10:14] <firebot> http://hg.mozilla.org/mozilla-central/rev/28ebf87f14a9 - Myk Melez - bug 746457 - fix bustage in reading extension default prefs (not covered by tests) from changeset ef55c163a23a (bug 725408); followup patch that completely reverts change to the
  1249. # [10:14] <firebot> previous behavior; r,a=bustage
  1250. # [10:15] * Joins: garnacho (carlos@moz-EA2D0541.dyn.user.ono.com)
  1251. # [10:15] * Joins: c0smikde_ (c0smikdebr@33A03854.83C95F67.EBA8E3F.IP)
  1252. # [10:15] * Joins: harth (harth@moz-C2C235AC.bb.sky.com)
  1253. # [10:16] * Quits: c0smikdebris (c0smikdebr@93EFE709.6E5D865F.274D17D6.IP) (Ping timeout)
  1254. # [10:16] * Quits: nattokirai (nattokirai@moz-348F61F0.mozilla.or.jp) (Quit: nattokirai)
  1255. # [10:21] <myk> dao: i just posted to the bug, but to follow up here as well; indeed, tree rules no longer allow for such bustage fixes; that's my bad for not being up-to-date on the latest tree rules; next time i'll back out the offending patch immediately instead of committing a bustage fix
  1256. # [10:24] * Joins: gandalf (zbraniecki@moz-F66A472.neoplus.adsl.tpnet.pl)
  1257. # [10:25] * Quits: Mark_Capella (chatzilla@moz-DD0C7E4F.twcny.res.rr.com) (Quit: ChatZilla 0.9.88.2 [Firefox 13.0a2/20120405042010])
  1258. # [10:28] * Joins: TheLink (TheLink@moz-C76AC80E.pools.arcor-ip.net)
  1259. # [10:28] * Joins: Mark_Capella (chatzilla@moz-DD0C7E4F.twcny.res.rr.com)
  1260. # [10:30] * Parts: jens (hauke@moz-C964F46F.pools.arcor-ip.net)
  1261. # [10:30] * Joins: edmorley (Mibbit@moz-BDD802ED.hfc.comcastbusiness.net)
  1262. # [10:33] * Joins: davehunt (davehunt@CDFC245.BF1529D9.2A79FB6D.IP)
  1263. # [10:35] <edmorley> \0/ hotel wifi finally works :-)
  1264. # [10:38] * Joins: c0smikdebris (c0smikdebr@65C51157.BB7E0B94.BE90E62C.IP)
  1265. # [10:38] * Quits: c0smikde_ (c0smikdebr@33A03854.83C95F67.EBA8E3F.IP) (Ping timeout)
  1266. # [10:39] * Joins: JPeterso2 (JPeterson@moz-B2998FD7.cust.tele2.se)
  1267. # [10:40] * Quits: JPeterson (JPeterson@moz-B2998FD7.cust.tele2.se) (Ping timeout)
  1268. # [10:40] * Quits: c0smikdebris (c0smikdebr@65C51157.BB7E0B94.BE90E62C.IP) (Ping timeout)
  1269. # [10:41] * Joins: KaiRo (robert@moz-90EEA545.adsl.highway.telekom.at)
  1270. # [10:41] * JPeterso2 is now known as JPeterson
  1271. # [10:42] * Joins: c0smikdebris (c0smikdebr@65C51157.BB7E0B94.BE90E62C.IP)
  1272. # [10:46] * Quits: birtles (chatzilla@moz-348F61F0.mozilla.or.jp) (Quit: ChatZilla 0.9.88-rdmsoft [XULRunner 1.9.0.17/2009122204])
  1273. # [10:47] * Joins: jhk (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  1274. # [10:47] * Quits: dao (dao@moz-8C7A6ACA.superkabel.de) (Quit: Leaving.)
  1275. # [10:48] * Quits: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Quit: WeeChat 0.3.5)
  1276. # [10:50] * Joins: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1277. # [10:52] * Joins: jacek (jacek@moz-5D707D3B.psi.wroc.pl)
  1278. # [10:52] * Joins: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP)
  1279. # [10:52] * Quits: lht (elihait@moz-722A94AD.dreamhost.com) (Ping timeout)
  1280. # [10:54] * Quits: davehunt (davehunt@CDFC245.BF1529D9.2A79FB6D.IP) (Client exited)
  1281. # [10:54] * Joins: Gentlecat (Roman@CA71FA1C.1149AF99.8FB52CB8.IP)
  1282. # [10:54] * Quits: jet (junglecode@moz-AAEFBBD1.gw.connect.com.au) (Quit: jet)
  1283. # [10:54] * khuey is now known as khuey|away
  1284. # [10:54] * Quits: mccr8 (mccr8@moz-AAEFBBD1.gw.connect.com.au) (Quit: mccr8)
  1285. # [10:55] * Joins: lht (elihait@moz-722A94AD.dreamhost.com)
  1286. # [10:56] * Quits: jlebar|mac (~jlebarmac@moz-AAEFBBD1.gw.connect.com.au) (Quit: jlebar|mac)
  1287. # [10:56] * Quits: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  1288. # [10:57] * Joins: gabor (gabor@moz-3B57BCD1.catv.pool.telekom.hu)
  1289. # [10:59] * Quits: aja (chatzilla@44BE1548.AEC64F0A.7880DB15.IP) (Client exited)
  1290. # [11:08] * Fallen|away is now known as Fallen
  1291. # [11:10] * Quits: janv (varga@moz-6D58DC19.flarion.as5628.telecom.sk) (Ping timeout)
  1292. # [11:12] * Joins: smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi)
  1293. # [11:12] * ChanServ sets mode: +o smaug
  1294. # [11:13] * Joins: janv (varga@moz-6D58DC19.flarion.as5628.telecom.sk)
  1295. # [11:16] * Joins: pranavrc (pranavrc@1FB25131.2860C534.C28326FD.IP)
  1296. # [11:19] * Quits: MarcoZ (Daily@moz-3E9F26ED.dip.t-dialin.net) (Quit: Working on Mac side, need braille display.)
  1297. # [11:27] <Cork> is there a known problem with firefox and Virtual C++ 2011 Redistributable?
  1298. # [11:27] <Cork> theres a user in #firefox that crashes each time he starts with "the application was unable to start correctly (0xc000007b) click ok to close the applicatio"
  1299. # [11:28] * Quits: @smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi) (Ping timeout)
  1300. # [11:29] * Joins: smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi)
  1301. # [11:29] * ChanServ sets mode: +o smaug
  1302. # [11:29] * Joins: tH (Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com)
  1303. # [11:31] * Quits: @smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi) (Ping timeout)
  1304. # [11:32] * Joins: smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi)
  1305. # [11:32] * ChanServ sets mode: +o smaug
  1306. # [11:33] * Joins: davehunt (davehunt@CDFC245.BF1529D9.2A79FB6D.IP)
  1307. # [11:33] <AryehGregor> Cork, did you search Bugzilla?
  1308. # [11:34] <Cork> i have zero bugs >_>
  1309. # [11:34] * Joins: mak (chatzilla@moz-84625997.retail.telecomitalia.it)
  1310. # [11:35] <Cork> should i ask him to try to grab a stacktrace?
  1311. # [11:35] * Joins: florian (Instantbir@moz-87C33FDA.kimsufi.com)
  1312. # [11:35] * AryehGregor doesn't know
  1313. # [11:36] * Quits: hurley (hurley@moz-10A8C43E.monkey.org) (Ping timeout)
  1314. # [11:36] <Cork> i'll ask him for the time beeing
  1315. # [11:37] <ewong> Cork file a bug and add the stack trace..
  1316. # [11:37] <ewong> was thinking of trying out the MSVC 2011 beta... but think I'll wait
  1317. # [11:37] <Cork> ewong: done
  1318. # [11:37] <ewong> Cork bug #?
  1319. # [11:38] * Quits: jhk (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Ping timeout)
  1320. # [11:38] * Quits: @smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi) (Ping timeout)
  1321. # [11:38] <Cork> not done yet
  1322. # [11:38] <Cork> but i've asked him :)
  1323. # [11:38] <ewong> oh ok
  1324. # [11:38] <Cork> he's using vc+ 2010 but has the redistributables
  1325. # [11:38] <AryehGregor> What's the difference between NS_IMETHODIMP and nsresult in practice? Is it important to use NS_IMETHODIMP instead of nsresult sometimes? I see it adds __stdcall on Windows . . .
  1326. # [11:39] * Joins: smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi)
  1327. # [11:39] * ChanServ sets mode: +o smaug
  1328. # [11:40] * Quits: mwu (mwu@moz-59435430.hsd1.nj.comcast.net) (Quit: This computer has gone to sleep)
  1329. # [11:41] <Unfocused> AryehGregor: IIRC, that's the only difference, and that difference alone makes it important
  1330. # [11:41] <AryehGregor> Okay.
  1331. # [11:42] * Quits: @smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi) (Ping timeout)
  1332. # [11:42] * Joins: smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi)
  1333. # [11:42] * ChanServ sets mode: +o smaug
  1334. # [11:45] * Joins: jhk (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  1335. # [11:45] * Quits: tn (tn@moz-2E73ACE4.wp.shawcable.net) (Quit: Leaving)
  1336. # [11:45] * ewong is now known as ewong|away
  1337. # [11:47] * Quits: stransky (stransky@moz-BA3F7E46.net.upcbroadband.cz) (Quit: Connection reset by beer)
  1338. # [11:48] * Joins: tn (tn@moz-2E73ACE4.wp.shawcable.net)
  1339. # [11:48] * Quits: pranavrc (pranavrc@1FB25131.2860C534.C28326FD.IP) (Quit: Ping timeout: ∞)
  1340. # [11:51] * Quits: davehunt (davehunt@CDFC245.BF1529D9.2A79FB6D.IP) (Client exited)
  1341. # [11:55] * Joins: JeroenDeDauw (j@moz-2F0EF57A.dip.t-dialin.net)
  1342. # [12:00] * Quits: cpearce (chatzilla@moz-510B10B9.xdsl.xnet.co.nz) (Ping timeout)
  1343. # [12:03] * Quits: bsmith (bsmith@A13161C7.979D6A3B.E017DF26.IP) (Ping timeout)
  1344. # [12:04] * sancus is now known as sancus_
  1345. # [12:04] * sancus_ is now known as sancus
  1346. # [12:06] * Joins: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1347. # [12:07] * Quits: karl (karl@moz-1AFAFAD.jetstream.xtra.co.nz) (Ping timeout)
  1348. # [12:12] * Quits: gwagner (idefix2@moz-99690620.hinet-ip.hinet.net) (Quit: gwagner)
  1349. # [12:12] * Quits: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  1350. # [12:13] * ewong|away is now known as ewong
  1351. # [12:15] * ewong is now known as ewong|away
  1352. # [12:17] * Quits: gcp (gpascutto@moz-D0E475EA.access.telenet.be) (Quit: Make a new plan, Stan!)
  1353. # [12:17] * Quits: mijia (mijia@DC4232F0.766373FB.C3A57E70.IP) (Client exited)
  1354. # [12:24] * Joins: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
  1355. # [12:25] * Quits: avih (quassel@moz-1C22B61.red.bezeqint.net) (Ping timeout)
  1356. # [12:26] * Quits: c0smikdebris (c0smikdebr@65C51157.BB7E0B94.BE90E62C.IP) (Quit: Computer has gone to sleep.)
  1357. # [12:26] * Quits: decoder (quassel@moz-216446B9.own-hero.net) (Ping timeout)
  1358. # [12:28] * Quits: pascalc (chatzilla@moz-446F98C8.fbxo.proxad.net) (Ping timeout)
  1359. # [12:28] * Joins: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1360. # [12:28] * Joins: darktrojan (geoff@moz-30B3CCFD.telstraclear.net)
  1361. # [12:28] * Quits: RyanVM (chatzilla@moz-D04D3C77.phlapa.fios.verizon.net) (Quit: ChatZilla 0.9.88.2 [Firefox 14.0a1/20120414135313])
  1362. # [12:28] * Joins: Archaeopteryx (itsme@moz-756328DB.cust.telecolumbus.net)
  1363. # [12:29] * Joins: gcp (gpascutto@moz-D0E475EA.access.telenet.be)
  1364. # [12:29] * Joins: decoder (quassel@moz-216446B9.own-hero.net)
  1365. # [12:30] * Quits: crussell (colby@4C613230.5A834493.B8E6AC67.IP) (Connection reset by peer)
  1366. # [12:30] * Joins: crussell (colby@4C613230.5A834493.B8E6AC67.IP)
  1367. # [12:31] * Joins: smontagu_ (chatzilla@30C1468B.BAF838BD.CC465D70.IP)
  1368. # [12:31] * Quits: smontagu (chatzilla@moz-62BEE8DA.red.bezeqint.net) (Ping timeout)
  1369. # [12:31] * smontagu_ is now known as smontagu
  1370. # [12:32] * Quits: JesperHansen (JesperHans@moz-AA96EAE3.dhcp.fiberflex.dk) (Ping timeout)
  1371. # [12:33] * Quits: paulproteus (quassel@rose.makesad.us) (Ping timeout)
  1372. # [12:34] * Joins: avih (quassel@9CAEED47.7EA0FE88.CC465D70.IP)
  1373. # [12:35] * Joins: JesperHansen (JesperHans@moz-AA96EAE3.dhcp.fiberflex.dk)
  1374. # [12:36] * Quits: crussell (colby@4C613230.5A834493.B8E6AC67.IP) (Connection reset by peer)
  1375. # [12:36] * Joins: crussell (colby@4C613230.5A834493.B8E6AC67.IP)
  1376. # [12:38] * Joins: gerv (gerv@moz-CF471F07.ip.mcleodusa.net)
  1377. # [12:39] * Joins: paulproteus (quassel@moz-E86A3B42.makesad.us)
  1378. # [12:40] * Joins: gwagner (idefix2@5AAE35B2.5EFFC0B8.24454B25.IP)
  1379. # [12:40] * Quits: crussell (colby@4C613230.5A834493.B8E6AC67.IP) (Connection reset by peer)
  1380. # [12:40] * Quits: nli (nli@moz-99690620.hinet-ip.hinet.net) (Quit: nli)
  1381. # [12:41] * Joins: crussell (colby@4C613230.5A834493.B8E6AC67.IP)
  1382. # [12:45] * Quits: masayuki (Daily@moz-911CC660.zaq.ne.jp) (Quit: masayuki)
  1383. # [12:46] * Joins: hurley (hurley@moz-10A8C43E.monkey.org)
  1384. # [12:46] * Quits: JesperHansen (JesperHans@moz-AA96EAE3.dhcp.fiberflex.dk) (Ping timeout)
  1385. # [12:46] * Joins: JesperHansen (JesperHans@moz-AA96EAE3.dhcp.fiberflex.dk)
  1386. # [12:47] * Joins: robhawkes (robhawkes@moz-33A339B7.dsl.cnl.uk.net)
  1387. # [12:47] * Quits: avih (quassel@9CAEED47.7EA0FE88.CC465D70.IP) (Ping timeout)
  1388. # [12:48] * Quits: hurley (hurley@moz-10A8C43E.monkey.org) (Ping timeout)
  1389. # [12:48] * Joins: MarcoZ (Daily@moz-3E9F26ED.dip.t-dialin.net)
  1390. # [12:49] * Quits: gcp (gpascutto@moz-D0E475EA.access.telenet.be) (Quit: Make a new plan, Stan!)
  1391. # [12:51] * Quits: robhawkes (robhawkes@moz-33A339B7.dsl.cnl.uk.net) (Quit: Linkinus is updating...)
  1392. # [12:51] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/35e13f42ee8a - Ginn Chen - Bug 689916 testing for regexp crash on SPARC r=dmandelin a=test-only
  1393. # [12:51] * Joins: robhawkes (robhawkes@moz-33A339B7.dsl.cnl.uk.net)
  1394. # [12:52] * khuey|away is now known as khuey
  1395. # [12:55] * Joins: avih (quassel@moz-481DAED9.red.bezeqint.net)
  1396. # [12:56] <vingtetun> can i land something that is b2g-only?
  1397. # [12:56] <vingtetun> or do i need a special approval?
  1398. # [12:57] * Joins: gcp (gpascutto@moz-D0E475EA.access.telenet.be)
  1399. # [12:57] <AryehGregor> vingtetun, someone said you don't need approval for stuff that's not part of Fennec, but https://groups.google.com/forum/?fromgroups#!topic/mozilla.dev.planning/CtbHEWOYZig seems not to say that.
  1400. # [12:57] * Quits: crussell (colby@4C613230.5A834493.B8E6AC67.IP) (Connection reset by peer)
  1401. # [12:57] <jfkthame> vingtetun: i'm not entirely sure but i suspect you should get approval (though if it is clear that it affects only b2g, approval ought to be granted easily, i think)
  1402. # [12:58] * Joins: crussell (colby@4C613230.5A834493.B8E6AC67.IP)
  1403. # [12:58] <mounir> vingtetun: you need approval for anything that is part of the build
  1404. # [12:58] * Quits: janv (varga@moz-6D58DC19.flarion.as5628.telecom.sk) (Quit: This computer has gone to sleep)
  1405. # [12:58] <rclick> I would think that something b2g-only would count as NPOTB, but I'm not certain.
  1406. # [12:59] <vingtetun> it affects only b2g/ for sure: bug 746121
  1407. # [12:59] <mounir> vingtetun: I think you could go with a=b2g-only
  1408. # [12:59] <vingtetun> does NPOTB means: part of firefox/fennec build, or everything that is built by our buildbots?
  1409. # [13:00] <mounir> vingtetun: desktop-only has automatic approval AFAIUI
  1410. # [13:00] <mounir> so I guess b2g-only too
  1411. # [13:00] <@smaug> hmm, automatic approval
  1412. # [13:00] * Quits: past (past@moz-EA81DA75.dsl.dyn.forthnet.gr) (Ping timeout)
  1413. # [13:00] <@smaug> I wonder how to know if something is desktop-only
  1414. # [13:01] * Joins: Ms2ger (Ms2ger@moz-8B01CC95.ugent.be)
  1415. # [13:01] * Joins: jet (junglecode@moz-AAEFBBD1.gw.connect.com.au)
  1416. # [13:02] <mounir> smaug: if you change desktop UI I guess
  1417. # [13:02] <jfkthame> i don't see anything about "automatic" approval for desktop-only in the summary
  1418. # [13:02] <@smaug> mounir: well, if I change something under toolkit/
  1419. # [13:02] <@smaug> something which is part of some UI
  1420. # [13:02] <@smaug> but I don't know if Fennec uses it for something
  1421. # [13:03] * Quits: avih (quassel@moz-481DAED9.red.bezeqint.net) (Ping timeout)
  1422. # [13:03] <jfkthame> if in doubt, ask for approval - waiting a day for a? triage is less messy than if people start landing questionable things, then some of them get backed out, etc
  1423. # [13:03] <@smaug> yeah
  1424. # [13:04] <mounir> jfkthame: it's in Johnathan's original email
  1425. # [13:04] <mounir> I would just land that with a=b2g-only personaly
  1426. # [13:04] <mounir> the goal is to protect Fennec from being screwed
  1427. # [13:04] * Joins: Cwiiis (cwiiis@88F51059.F3BBB17D.144F44FA.IP)
  1428. # [13:04] <mounir> if that can't in any way touch fennec, I hope we are clever enough to make the call
  1429. # [13:05] * Joins: hurley (hurley@moz-10A8C43E.monkey.org)
  1430. # [13:05] * Quits: crussell (colby@4C613230.5A834493.B8E6AC67.IP) (Connection reset by peer)
  1431. # [13:05] * Joins: crussell (colby@4C613230.5A834493.B8E6AC67.IP)
  1432. # [13:07] <vingtetun> the patch change only one file that live in b2g/components/, so that can't affect anything else than b2g
  1433. # [13:07] <jfkthame> mounir: johnath's original mail said "I'd propose that desktop-only changes get swift approval" …. i don't believe "swift" was intended to mean "automatic", it just means he expects drivers will be able to approve them promptly
  1434. # [13:08] * Quits: jgilbert (jgilbert@moz-2B3CF81C.hsd1.ca.comcast.net) (Ping timeout)
  1435. # [13:09] * Joins: davehunt (davehunt@CDFC245.BF1529D9.2A79FB6D.IP)
  1436. # [13:09] <vingtetun> hmm, which permissions should i have on bugzilla to ask for a=?
  1437. # [13:09] <jfkthame> editbugs, i'd guess?
  1438. # [13:09] <jfkthame> it'll show up as a flag on the patch, not the bug
  1439. # [13:10] * Quits: TheLink (TheLink@moz-C76AC80E.pools.arcor-ip.net) (Client exited)
  1440. # [13:10] <Unfocused> shouldn't need editbugs to request that on a patch you uploaded
  1441. # [13:10] <Ms2ger> bholley, bz_sleep, thanks a lot (re 743615)
  1442. # [13:10] * Joins: janv (varga@EB4D1F1D.E0C7B606.8633E8B5.IP)
  1443. # [13:10] <vingtetun> i don't see any boxes for that on the bug
  1444. # [13:10] <mounir> jfkthame: I guess my poor non-native english makes me thing "swift" means "no"
  1445. # [13:11] <mounir> and I will try to not remember that
  1446. # [13:11] * Joins: stransky (stransky@moz-107AD163.redhat.com)
  1447. # [13:11] <mounir> s/not//
  1448. # [13:12] <Unfocused> mounir: swift = fast :)
  1449. # [13:12] <Ms2ger> See also: Pokémon move :)
  1450. # [13:13] <mounir> Ms2ger: that tells a lot about your age ;)
  1451. # [13:13] <Ms2ger> :)
  1452. # [13:13] * Ms2ger is now known as Ms2ger`class
  1453. # [13:14] <vingtetun> mounir: that's your age too
  1454. # [13:14] <mounir> not really, sorry
  1455. # [13:14] <vingtetun> so why do you have some on your desk?
  1456. # [13:14] <darktrojan> poké what?
  1457. # [13:14] * Quits: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com) (Ping timeout)
  1458. # [13:15] * Quits: crussell (colby@4C613230.5A834493.B8E6AC67.IP) (Connection reset by peer)
  1459. # [13:15] <Ms2ger`class> vingtetun++
  1460. # [13:15] * Joins: crussell (colby@4C613230.5A834493.B8E6AC67.IP)
  1461. # [13:15] * mak is now known as mak|afk
  1462. # [13:15] * Quits: smontagu (chatzilla@30C1468B.BAF838BD.CC465D70.IP) (Ping timeout)
  1463. # [13:16] * Quits: darktrojan (geoff@moz-30B3CCFD.telstraclear.net) (Quit: darktrojan)
  1464. # [13:16] <edmorley> Ms2ger`class: good morning
  1465. # [13:16] * Joins: avih (quassel@moz-702A84F5.red.bezeqint.net)
  1466. # [13:17] * Joins: past (past@moz-F1965953.dsl.dyn.forthnet.gr)
  1467. # [13:17] <Ms2ger`class> edmorley, morning, and congratulations!
  1468. # [13:18] * Joins: TheLink (TheLink@moz-C76AC80E.pools.arcor-ip.net)
  1469. # [13:18] * Quits: TheLink (TheLink@moz-C76AC80E.pools.arcor-ip.net) (Client exited)
  1470. # [13:19] * Quits: @smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi) (Input/output error)
  1471. # [13:19] * Joins: andreasn (andreasn@moz-8A84C28A.bredband.comhem.se)
  1472. # [13:19] * Joins: smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi)
  1473. # [13:19] * ChanServ sets mode: +o smaug
  1474. # [13:20] * Joins: pedro (Something@moz-E14A0F6A.clients.your-server.de)
  1475. # [13:20] <pedro> hey there - is it just me or latest nightly messed a bit with some of the addons?
  1476. # [13:21] <pedro> dao's ctr-tab lost the settings, firegestures stopped working properly and memory restart doesn't report the correct ammount of memory usage
  1477. # [13:21] * Quits: crussell (colby@4C613230.5A834493.B8E6AC67.IP) (Connection reset by peer)
  1478. # [13:21] * Joins: crussell (colby@4C613230.5A834493.B8E6AC67.IP)
  1479. # [13:22] * Quits: vikash (vikash@88DD17D3.9B552DFD.5D9ABA9F.IP) (Ping timeout)
  1480. # [13:25] <@smaug> sounds strange
  1481. # [13:25] * Quits: Asa (asa@4C4A4A67.38324963.204CA821.IP) (Ping timeout)
  1482. # [13:25] <@smaug> I haven't seen any problems with the addons I use
  1483. # [13:26] * Joins: jwq (chatzilla@moz-12623DCD.cable.telstraclear.net)
  1484. # [13:29] * Quits: avih (quassel@moz-702A84F5.red.bezeqint.net) (Ping timeout)
  1485. # [13:29] * Quits: janv (varga@EB4D1F1D.E0C7B606.8633E8B5.IP) (Ping timeout)
  1486. # [13:29] <zzzzz> pedro: https://bugzilla.mozilla.org/show_bug.cgi?id=746457 there was a followup patch that landed after the nightly was spun, which reverts some behaviour
  1487. # [13:30] * Joins: janv (varga@EB4D1F1D.E0C7B606.8633E8B5.IP)
  1488. # [13:30] * zzzzz suggests a re-spin may be in order
  1489. # [13:31] * Quits: davehunt (davehunt@CDFC245.BF1529D9.2A79FB6D.IP) (Client exited)
  1490. # [13:31] * Quits: crussell (colby@4C613230.5A834493.B8E6AC67.IP) (Connection reset by peer)
  1491. # [13:31] * Joins: crussell (colby@4C613230.5A834493.B8E6AC67.IP)
  1492. # [13:32] * Quits: @smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi) (Ping timeout)
  1493. # [13:32] * Joins: dbradley (dbradley@moz-80450F75.fuse.net)
  1494. # [13:33] <pedro> remind me - how do I check my current build id? something like about:build?
  1495. # [13:33] * Quits: surkov (surkov@DD69D9E4.55CAE15D.34044A7F.IP) (Quit: surkov)
  1496. # [13:33] * Joins: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com)
  1497. # [13:34] * Joins: smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi)
  1498. # [13:34] * ChanServ sets mode: +o smaug
  1499. # [13:34] * Joins: pranavrc (pranavrc@C04A32B.1137763F.C28326FD.IP)
  1500. # [13:34] * Joins: dao (dao@moz-1F0CCD97.superkabel.de)
  1501. # [13:35] <rclick> pedro: about:buildconfig will tell you what changeset it was built from, if that's what you're looking for.
  1502. # [13:35] <pedro> yep, thanks
  1503. # [13:36] * Quits: @smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi) (Ping timeout)
  1504. # [13:36] <pedro> trying to see if zzzzz's bug fix is there already
  1505. # [13:36] * Joins: espindola (espindola@moz-EF46D60.dsl.teksavvy.com)
  1506. # [13:37] * Joins: smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi)
  1507. # [13:37] * ChanServ sets mode: +o smaug
  1508. # [13:37] * mak|afk is now known as mak
  1509. # [13:37] * Fallen is now known as Fallen|away
  1510. # [13:38] <zzzzz> pedro: nightly is cset 0c7e2911be75, fix landed after that, is cset 28ebf87f4a9
  1511. # [13:38] <zzzzz> you could download an hourly with the fix, but that will take you off the nightly channel
  1512. # [13:38] <pedro> about:buildconfig doesn't show me the cset, where can I see it?
  1513. # [13:39] <pedro> or I can't and you just know it?
  1514. # [13:39] * Quits: @smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi) (Ping timeout)
  1515. # [13:39] * Quits: jprmc (jprmc@moz-7F2FF3EB.cpe.net.cable.rogers.com) (Ping timeout)
  1516. # [13:40] * Joins: smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi)
  1517. # [13:40] * ChanServ sets mode: +o smaug
  1518. # [13:41] * Joins: gcp_ (gpascutto@moz-D0E475EA.access.telenet.be)
  1519. # [13:41] <AryehGregor> In file included from /mnt/extra/checkouts/mozilla-central/editor/libeditor/html/nsHTMLEditorStyle.cpp:41:0:
  1520. # [13:41] <AryehGregor> /mnt/extra/checkouts/mozilla-central/editor/libeditor/html/nsHTMLEditor.h:45:31: fatal error: nsPlaintextEditor.h: No such file or directory
  1521. # [13:41] <AryehGregor> compilation terminated.
  1522. # [13:42] <zzzzz> pedro: I am looking at tbpl , about:buildconfig should have a line that says: built from...cset (changeset) is the last part of the link
  1523. # [13:42] <AryehGregor> . . . I didn't touch anything related to header files since my last compile.
  1524. # [13:42] * Quits: @smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi) (Ping timeout)
  1525. # [13:42] * Joins: avih (quassel@moz-CC2B38B9.red.bezeqint.net)
  1526. # [13:43] <pedro> zzzzz: doesn't - but thanks for the info, that bug seems a good fit for this
  1527. # [13:43] * Quits: paulproteus (quassel@rose.makesad.us) (Ping timeout)
  1528. # [13:43] * Joins: paulproteus (quassel@moz-E86A3B42.makesad.us)
  1529. # [13:43] <AryehGregor> And now it works when I try recompiling. Weird.
  1530. # [13:44] * Joins: pascalc (chatzilla@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1531. # [13:45] * Quits: paulproteus (quassel@rose.makesad.us) (Ping timeout)
  1532. # [13:45] * Joins: paulproteus (quassel@moz-E86A3B42.makesad.us)
  1533. # [13:45] * Joins: smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi)
  1534. # [13:45] * ChanServ sets mode: +o smaug
  1535. # [13:45] * Quits: gwagner (idefix2@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: gwagner)
  1536. # [13:46] * Quits: gcp (gpascutto@moz-D0E475EA.access.telenet.be) (Quit: Make a new plan, Stan!)
  1537. # [13:46] * Joins: vikash (vikash@88DD17D3.9B552DFD.5D9ABA9F.IP)
  1538. # [13:47] * Joins: gwagner (idefix2@5AAE35B2.5EFFC0B8.24454B25.IP)
  1539. # [13:48] * Joins: mjschranz (mjschranz@moz-6FE6B833.cpe.net.cable.rogers.com)
  1540. # [13:48] * Quits: gandalf (zbraniecki@moz-F66A472.neoplus.adsl.tpnet.pl) (Quit: Computer has gone to sleep.)
  1541. # [13:48] * Quits: MarcoZ (Daily@moz-3E9F26ED.dip.t-dialin.net) (Ping timeout)
  1542. # [13:49] * Joins: c0smikdebris (c0smikdebr@65C51157.BB7E0B94.BE90E62C.IP)
  1543. # [13:51] * Quits: gerv (gerv@moz-CF471F07.ip.mcleodusa.net) (Quit: Leaving.)
  1544. # [13:51] * Joins: kaie (kaie@moz-2AF8EA1E.dip.t-dialin.net)
  1545. # [13:52] * Quits: c0smikdebris (c0smikdebr@65C51157.BB7E0B94.BE90E62C.IP) (Quit: Computer has gone to sleep.)
  1546. # [13:53] * Quits: paulproteus (quassel@rose.makesad.us) (Ping timeout)
  1547. # [13:53] * Joins: dria (dria@moz-2830A996.dhcp-dynamic.fibreop.nb.bellaliant.net)
  1548. # [13:53] * Joins: paulproteus (quassel@moz-E86A3B42.makesad.us)
  1549. # [13:53] * Quits: mjschranz (mjschranz@moz-6FE6B833.cpe.net.cable.rogers.com) (Client exited)
  1550. # [13:54] * Quits: dria (dria@moz-2830A996.dhcp-dynamic.fibreop.nb.bellaliant.net) (Quit: Linkinus is updating...)
  1551. # [13:54] * Joins: dria (dria@moz-2830A996.dhcp-dynamic.fibreop.nb.bellaliant.net)
  1552. # [13:54] * Joins: surkov (surkov@DD69D9E4.55CAE15D.34044A7F.IP)
  1553. # [13:55] * Joins: gerv (gerv@moz-CF471F07.ip.mcleodusa.net)
  1554. # [13:55] * Quits: gerv (gerv@moz-CF471F07.ip.mcleodusa.net) (Quit: Leaving.)
  1555. # [13:55] * Quits: janv (varga@EB4D1F1D.E0C7B606.8633E8B5.IP) (Quit: This computer has gone to sleep)
  1556. # [13:56] * Joins: robert (robert@moz-6C05035C.dynamic.t-2.net)
  1557. # [13:56] * Quits: jet (junglecode@moz-AAEFBBD1.gw.connect.com.au) (Quit: jet)
  1558. # [13:56] <edmorley> Ms2ger`class: (sorry mibbet in an apptab is useless for pings) thank you :-)
  1559. # [13:56] * Joins: kutsurak (pex@moz-4D02685A.w90-46.abo.wanadoo.fr)
  1560. # [13:56] * Quits: paulproteus (quassel@rose.makesad.us) (Ping timeout)
  1561. # [13:57] <Ms2ger`class> Heh
  1562. # [13:57] * Joins: zuzelvp (zuzelvp@2112147D.C3507A2D.9A8C35B4.IP)
  1563. # [13:57] * Quits: hurley (hurley@moz-10A8C43E.monkey.org) (Ping timeout)
  1564. # [13:58] <Ms2ger`class> They don't let you use chatzilla at your new job? :)
  1565. # [13:59] <@smaug> :p
  1566. # [13:59] * Ms2ger`class focuses on class again
  1567. # [13:59] * @smaug should figure out some reason to visit London
  1568. # [13:59] <@smaug> Gardens
  1569. # [13:59] <@smaug> that is always a good reason. Kew Gardens
  1570. # [14:00] * Joins: jet (junglecode@moz-AAEFBBD1.gw.connect.com.au)
  1571. # [14:01] <Ms2ger`class> smaug, in preparation for your horticulture degree? :)
  1572. # [14:01] <@smaug> exactly
  1573. # [14:03] * Joins: gerv (gerv@moz-CF471F07.ip.mcleodusa.net)
  1574. # [14:05] * Joins: prazuber (prazuber@moz-8FDA4E25.savvy.volia.net)
  1575. # [14:05] * Quits: gerv (gerv@moz-CF471F07.ip.mcleodusa.net) (Quit: Leaving.)
  1576. # [14:06] * hwine-afk is now known as hwine
  1577. # [14:07] * Joins: paulproteus (quassel@moz-E86A3B42.makesad.us)
  1578. # [14:08] * @smaug assumes it takes couple of decades to get the horticulture degree :)
  1579. # [14:08] * bhearsum|afk is now known as bhearsum
  1580. # [14:09] * Joins: Misfit_Geek (MisfitGeek@moz-D14C5FCF.hsd1.nh.comcast.net)
  1581. # [14:10] * Fallen|away is now known as Fallen
  1582. # [14:10] * Joins: gandalf (zbraniecki@76A6886A.12B84787.CACFD8FF.IP)
  1583. # [14:10] * Joins: janv (varga@EB4D1F1D.E0C7B606.8633E8B5.IP)
  1584. # [14:11] * Quits: paulproteus (quassel@rose.makesad.us) (Ping timeout)
  1585. # [14:11] * mattwoodrow is now known as mattwoodrow|away
  1586. # [14:12] * philor|away is now known as philor
  1587. # [14:13] * Joins: paulproteus (quassel@moz-E86A3B42.makesad.us)
  1588. # [14:15] <mak> edmorley: hm, did you mark all the bugs from the last merge? looks like some are missing
  1589. # [14:16] * mattwoodrow|away is now known as mattwoodrow
  1590. # [14:16] * Joins: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com)
  1591. # [14:16] * Joins: mconley (mconley@moz-D640D16C.cable.teksavvy.com)
  1592. # [14:16] * Quits: ehsan|extremely-busy (ehsan@F0B20A8D.8458880F.57F33CED.IP) (Input/output error)
  1593. # [14:16] * Joins: mkaply (Earlybird@moz-92EDDD02.lightspeed.austtx.sbcglobal.net)
  1594. # [14:16] * Quits: jwq (chatzilla@moz-12623DCD.cable.telstraclear.net) (Quit: ChatZilla 0.9.88.2 [SeaMonkey 2.0.14/20110420224852])
  1595. # [14:17] * mak does a pass
  1596. # [14:18] * Quits: janv (varga@EB4D1F1D.E0C7B606.8633E8B5.IP) (Ping timeout)
  1597. # [14:18] * Joins: janv (varga@EB4D1F1D.E0C7B606.8633E8B5.IP)
  1598. # [14:21] <edmorley> mak: yeah have some left to mark, started yesterday but wasn't able to carry on once back at the hotel as the wifi wasn't giving me an IP address :-/
  1599. # [14:21] <mak> ok, going through them now
  1600. # [14:21] <felipe> mak: do you know how to respin nightlies using a new changeset?
  1601. # [14:22] * Joins: hurley (hurley@moz-10A8C43E.monkey.org)
  1602. # [14:22] * Quits: robert (robert@moz-6C05035C.dynamic.t-2.net) (Client exited)
  1603. # [14:22] <edmorley> mak: I'm happy to mark them now :-)
  1604. # [14:23] * Joins: robert (robert@moz-6C05035C.dynamic.t-2.net)
  1605. # [14:23] <felipe> current nightlies have bug 746457 but the fix has pushed
  1606. # [14:23] <felipe> *was
  1607. # [14:24] * Quits: hurley (hurley@moz-10A8C43E.monkey.org) (Ping timeout)
  1608. # [14:24] <mak> felipe: just use self-serve
  1609. # [14:24] <mak> felipe: there is a trigger nightlies at the bottom, just give it a changeset
  1610. # [14:24] <felipe> it'd be nice to get new nightlies from cset 28ebf87f14a9 but I don't think that got PGO builds, so I don't know what to do
  1611. # [14:25] <mak> nightlies are pgo
  1612. # [14:25] <Ms2ger`class> edmorley, so, where are you going to be based?
  1613. # [14:25] * Quits: JesperHansen (JesperHans@moz-AA96EAE3.dhcp.fiberflex.dk) (Quit: time to reboot laptop after 16 days uptime)
  1614. # [14:25] <mak> felipe: if you need further help, just let me know
  1615. # [14:25] <felipe> mak: but is it ok to ask for new nightlies without seeing results from a pgo test run?
  1616. # [14:26] * Joins: jwq (chatzilla@moz-12623DCD.cable.telstraclear.net)
  1617. # [14:26] <edmorley> Ms2ger`class: the London office, I'm just out in SF for the a-team work week (and as you can guess I'm having fun adjusting to the timezone lol)
  1618. # [14:26] <Ms2ger`class> :)
  1619. # [14:26] <Ms2ger`class> Anyway, off
  1620. # [14:26] <Ms2ger`class> See you all later
  1621. # [14:26] <mak> felipe: if the last pgo was green and the additions are unlikely to change that... btw nightlies are automated and can basically start on any changeset even if it didn't get pgo, so you are not making anything worse than the automatic system
  1622. # [14:27] <edmorley> Ms2ger`class: bye
  1623. # [14:27] * Joins: MarcoZ (Daily@moz-64C3EB13.dip.t-dialin.net)
  1624. # [14:27] <mak> felipe: in this case I see the only change is that else if, don't think can make much of a difference
  1625. # [14:28] * Quits: Ms2ger`class (Ms2ger@moz-8B01CC95.ugent.be) (Ping timeout)
  1626. # [14:28] <felipe> mak: ok cool, I've requested it through self-serve
  1627. # [14:29] * Joins: smontagu (chatzilla@moz-C89DD35E.red.bezeqint.net)
  1628. # [14:29] * mak wonders if we can cancel nightlies safely or has the same problems as other builds... philor?
  1629. # [14:30] * Quits: janv (varga@EB4D1F1D.E0C7B606.8633E8B5.IP) (Ping timeout)
  1630. # [14:30] <mounir> edmorley: you got hired?
  1631. # [14:30] <philor> mak: no, because they have a different problem
  1632. # [14:31] * Joins: janv (varga@EB4D1F1D.E0C7B606.8633E8B5.IP)
  1633. # [14:31] <philor> you can't tell whether they've uploaded some bits and not others
  1634. # [14:31] <mak> ah, ok
  1635. # [14:31] <edmorley> mounir: yeah :-)
  1636. # [14:31] <philor> they don't have the objdir problem because they're always clobbers anyway
  1637. # [14:31] * Quits: @smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi) (Ping timeout)
  1638. # [14:31] <mounir> edmorley: congrats ;)
  1639. # [14:32] <mak> edmorley: ah congrats!!!!!!
  1640. # [14:32] * Joins: jprmc (jprmc@300881E1.5BCEC6DB.DA78B690.IP)
  1641. # [14:32] <felipe> edmorley++
  1642. # [14:32] <mak> philor: thanks for explanation
  1643. # [14:32] * Joins: smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi)
  1644. # [14:32] * ChanServ sets mode: +o smaug
  1645. # [14:33] * Quits: mconley (mconley@moz-D640D16C.cable.teksavvy.com) (Input/output error)
  1646. # [14:33] * Quits: Philip (philip@moz-65AD4613.zaynar.co.uk) (Ping timeout)
  1647. # [14:33] * Quits: jwq (chatzilla@moz-12623DCD.cable.telstraclear.net) (Quit: ChatZilla 0.9.88.2 [SeaMonkey 2.0.14/20110420224852])
  1648. # [14:34] <edmorley> mounir, mak, felipe: thanks! :-)
  1649. # [14:34] * Joins: Philip (philip@moz-65AD4613.zaynar.co.uk)
  1650. # [14:35] * ewong|sleep is now known as ewong
  1651. # [14:35] * mattwoodrow is now known as mattwoodrow|away
  1652. # [14:37] <mak> edmorley: ok, all bugs should now be marked
  1653. # [14:38] * tbsaunde is now known as tbsaunde|afk
  1654. # [14:38] <edmorley> mak: thank you
  1655. # [14:39] * Quits: pranavrc (pranavrc@C04A32B.1137763F.C28326FD.IP) (Quit: Ping timeout: ∞)
  1656. # [14:39] * Quits: jprmc (jprmc@300881E1.5BCEC6DB.DA78B690.IP) (Ping timeout)
  1657. # [14:42] * Quits: jrmuizel (jrmuizel@moz-20EF8EAA.cpe.net.cable.rogers.com) (Input/output error)
  1658. # [14:42] * Quits: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP) (Quit: jfkthame)
  1659. # [14:42] * Joins: smya (chatzilla@91BC8839.F442218F.88FACCAA.IP)
  1660. # [14:43] * Joins: davehunt (davehunt@CDFC245.BF1529D9.2A79FB6D.IP)
  1661. # [14:45] * Parts: pedro (Something@moz-E14A0F6A.clients.your-server.de)
  1662. # [14:47] * Joins: jhk1 (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  1663. # [14:47] * Quits: jhk (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  1664. # [14:47] * Joins: joey (chatzilla@moz-EFCB4CBF.princetowncable.com)
  1665. # [14:49] * Joins: c0smikdebris (c0smikdebr@B24EF8BD.DC4492DD.BE90E62C.IP)
  1666. # [14:51] * Joins: tonymec__ (tonymec@22AAE511.96623E14.277517C1.IP)
  1667. # [14:52] * Quits: tonymec__ (tonymec@22AAE511.96623E14.277517C1.IP) (Ping timeout)
  1668. # [14:54] * Joins: bbondy (bbondy@moz-C9962B2.home.cgocable.net)
  1669. # [14:56] * Quits: janv (varga@EB4D1F1D.E0C7B606.8633E8B5.IP) (Ping timeout)
  1670. # [14:58] * hwine is now known as hwine|afk
  1671. # [14:58] * Joins: janv (varga@EB4D1F1D.E0C7B606.8633E8B5.IP)
  1672. # [15:00] * Joins: tonymec__ (tonymec@5CA5794B.516A6E14.277517C1.IP)
  1673. # [15:00] * tonymec__ is now known as tonymec|away
  1674. # [15:01] * Quits: surkov (surkov@DD69D9E4.55CAE15D.34044A7F.IP) (Quit: surkov)
  1675. # [15:01] * Joins: pranavrc (pranavrc@C04A32B.1137763F.C28326FD.IP)
  1676. # [15:01] * Quits: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Quit: WeeChat 0.3.5)
  1677. # [15:02] * Joins: ibarlow (ibarlow@F2D29657.F60B0462.67AC9B1.IP)
  1678. # [15:02] * Joins: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  1679. # [15:05] * Joins: johanc (chatzilla@moz-D8A1AA43.bredband.comhem.se)
  1680. # [15:06] * Joins: shorlander_ (shorlander@moz-853043D6.dhcp.insightbb.com)
  1681. # [15:06] * Joins: jimm (jmathies@moz-7F164CA1.pn.at.cox.net)
  1682. # [15:07] * Quits: shorlander (shorlander@moz-853043D6.dhcp.insightbb.com) (Ping timeout)
  1683. # [15:07] * Quits: johanc (chatzilla@moz-D8A1AA43.bredband.comhem.se) (Ping timeout)
  1684. # [15:08] * Quits: andreasn (andreasn@moz-8A84C28A.bredband.comhem.se) (Connection reset by peer)
  1685. # [15:09] * Joins: catalinb (ethereal@moz-7443FA19.eregie.pub.ro)
  1686. # [15:11] * Quits: jhorak (jhorak@moz-107AD163.redhat.com) (Quit: Leaving)
  1687. # [15:11] * Joins: jhorak (jhorak@moz-107AD163.redhat.com)
  1688. # [15:12] <gabor> is there anyone here from Germany? or anyone knows something about the planned new office in Berlin?
  1689. # [15:12] * Joins: dseif (dseif@C6D96E7A.531FD64C.630E4E47.IP)
  1690. # [15:12] * Joins: Pike (Pike@moz-E31CD2CB.mozilla.org)
  1691. # [15:13] * Joins: andreasn (andreasn@moz-8A84C28A.bredband.comhem.se)
  1692. # [15:13] <bhearsum> gabor: Pike might know
  1693. # [15:13] * Quits: jet (junglecode@moz-AAEFBBD1.gw.connect.com.au) (Quit: jet)
  1694. # [15:13] * Joins: ehsan|extremely-busy (ehsan@F0B20A8D.8458880F.57F33CED.IP)
  1695. # [15:13] <Fallen> I'm from Germany, but I don't know much about the new office
  1696. # [15:13] * catlee-away is now known as catlee-buildduty
  1697. # [15:14] * Joins: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP)
  1698. # [15:14] * Joins: mwu (mwu@moz-59435430.hsd1.nj.comcast.net)
  1699. # [15:15] <gabor> bhearsum: thanks for the hint... Pike: do you know anything about the planned office in Berlin?
  1700. # [15:15] <gabor> Fallen: I guess that means, that it won't open any time soon...
  1701. # [15:15] * Quits: merinui (merinui@moz-61C7235E.osk2.eonet.ne.jp) (Quit: Leaving...)
  1702. # [15:15] <Pike> nope, the little I heard is hard to interpret
  1703. # [15:16] <Fallen> yeah, all I heard is that there is still planning work to do
  1704. # [15:16] * Quits: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de) (Input/output error)
  1705. # [15:17] * Quits: tonymec|away (tonymec@5CA5794B.516A6E14.277517C1.IP) (Quit: Konversation terminated!)
  1706. # [15:17] <bhearsum> glandium: ping
  1707. # [15:17] <Pike> the best source I have is bhueppe, but I usually only meet her on other continents
  1708. # [15:21] <gabor> right... thanks for the update anyway
  1709. # [15:22] * Quits: dao (dao@moz-1F0CCD97.superkabel.de) (Quit: Leaving.)
  1710. # [15:22] <mak> gabor: ttaubert lives in berlin and may know something
  1711. # [15:23] <gabor> mak: thanks
  1712. # [15:23] * Joins: davidb (davidb@F2D29657.F60B0462.67AC9B1.IP)
  1713. # [15:23] * Joins: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de)
  1714. # [15:24] * Quits: catalinb (ethereal@moz-7443FA19.eregie.pub.ro) (Ping timeout)
  1715. # [15:24] * Quits: davidb (davidb@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  1716. # [15:24] * Joins: davidb (davidb@F2D29657.F60B0462.67AC9B1.IP)
  1717. # [15:25] <ttaubert> we haven't picked a place yet afaik
  1718. # [15:26] <ttaubert> I *think* we're in negotiations but gary didn't say which place i's about
  1719. # [15:26] * Quits: jhorak (jhorak@moz-107AD163.redhat.com) (Quit: Leaving)
  1720. # [15:26] * Joins: jhorak (jhorak@moz-107AD163.redhat.com)
  1721. # [15:27] * Joins: tonymec__ (tonymec@8B7AA4D0.9953D32C.277517C1.IP)
  1722. # [15:27] * tonymec__ is now known as tonymec|away
  1723. # [15:27] * Quits: dseif (dseif@C6D96E7A.531FD64C.630E4E47.IP) (Ping timeout)
  1724. # [15:27] * Joins: anky (anky@8B866160.F2659768.A3D1B221.IP)
  1725. # [15:28] * Joins: AaronMT (AaronMT@F2D29657.F60B0462.67AC9B1.IP)
  1726. # [15:28] * Joins: anky_ (anky@96A10C3F.9EB919EA.A3D1B221.IP)
  1727. # [15:29] * Joins: ajuma (ajuma@F2D29657.F60B0462.67AC9B1.IP)
  1728. # [15:29] * Quits: anky (anky@8B866160.F2659768.A3D1B221.IP) (Ping timeout)
  1729. # [15:29] * Quits: ehsan|extremely-busy (ehsan@F0B20A8D.8458880F.57F33CED.IP) (Input/output error)
  1730. # [15:31] * Joins: dseif (dseif@8BE24046.531FD64C.630E4E47.IP)
  1731. # [15:32] * Quits: Pike (Pike@moz-E31CD2CB.mozilla.org) (Quit: ChatZilla 0.9.88.2 [Firefox 11.0/20120312181643])
  1732. # [15:32] * Joins: mconley (mconley@F2D29657.F60B0462.67AC9B1.IP)
  1733. # [15:32] * Quits: janv (varga@EB4D1F1D.E0C7B606.8633E8B5.IP) (Quit: This computer has gone to sleep)
  1734. # [15:34] * rail_away is now known as rail
  1735. # [15:35] * Quits: vikash (vikash@88DD17D3.9B552DFD.5D9ABA9F.IP) (Ping timeout)
  1736. # [15:35] * Quits: anky_ (anky@96A10C3F.9EB919EA.A3D1B221.IP) (Client exited)
  1737. # [15:36] * Joins: rwaldron (rwaldron@moz-BDCCF091.hfc.comcastbusiness.net)
  1738. # [15:36] <AryehGregor> Do you have to declare a method in a header file even if you're only going to use it inside the file it's defined in?
  1739. # [15:37] * Joins: madhava (madhava@F2D29657.F60B0462.67AC9B1.IP)
  1740. # [15:37] * Quits: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP) (Ping timeout)
  1741. # [15:38] * Joins: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP)
  1742. # [15:38] <mounir> bz_sleep: could you ping me when you are available?
  1743. # [15:39] * Joins: Optimizer (Mibbit@6BCF5DE2.2E81CE6D.89AC0F27.IP)
  1744. # [15:39] * Parts: Optimizer (Mibbit@6BCF5DE2.2E81CE6D.89AC0F27.IP)
  1745. # [15:41] * Quits: dseif (dseif@8BE24046.531FD64C.630E4E47.IP) (Ping timeout)
  1746. # [15:42] <AryehGregor> Hmm, maybe then I just shouldn't make it a method at all?
  1747. # [15:42] * Quits: Bas (chatzilla@moz-DF3CA35A.ftth.concepts.nl) (Quit: ChatZilla 0.9.88.2 [Firefox 11.0/20120312181643])
  1748. # [15:42] <AryehGregor> Oh, or it has to be static, probably.
  1749. # [15:42] * Joins: jprmc (jprmc@F2D29657.F60B0462.67AC9B1.IP)
  1750. # [15:42] <AryehGregor> That makes sense.
  1751. # [15:42] <AryehGregor> Or, maybe it doesn't . . .
  1752. # [15:42] * AryehGregor needs to read up on C++
  1753. # [15:44] <mounir> AryehGregor: no
  1754. # [15:44] <mounir> if you want to use a method only in a specific file you can make it static
  1755. # [15:44] <mounir> in the cpp file
  1756. # [15:44] <mounir> but that's more the C way
  1757. # [15:44] <AryehGregor> So if I want to split out part of a method into a helper function, what's the best way to do it?
  1758. # [15:44] <mounir> in C++, you can also use an anonymous namespace
  1759. # [15:44] * Joins: vikash (vikash@88DD17D3.9B552DFD.5D9ABA9F.IP)
  1760. # [15:45] <mounir> AryehGregor: dom/base/nsScreen.cpp look at this file
  1761. # [15:45] <mounir> there is such a method at the beginning
  1762. # [15:45] * Joins: lmandel (lmandel@FE1F74.86ED00A7.971E19F6.IP)
  1763. # [15:45] <AryehGregor> How does that work?
  1764. # [15:45] * Joins: jlebar|mac (~jlebarmac@moz-AAEFBBD1.gw.connect.com.au)
  1765. # [15:45] * rail is now known as rail-brb
  1766. # [15:46] * Joins: krit (Adium@moz-3AE657AD.hsd1.ca.comcast.net)
  1767. # [15:46] * Quits: rwaldron (rwaldron@moz-BDCCF091.hfc.comcastbusiness.net) (Quit: Linkinus is updating...)
  1768. # [15:46] <mounir> namespace without a name are anonymous namespaces
  1769. # [15:46] * Joins: rwaldron (rwaldron@moz-BDCCF091.hfc.comcastbusiness.net)
  1770. # [15:46] <mounir> and are only accessible in the current file
  1771. # [15:47] <AryehGregor> How is that different from a static function?
  1772. # [15:48] * Joins: janv (varga@moz-6D58DC19.flarion.as5628.telecom.sk)
  1773. # [15:48] * Joins: Julian (chatzilla@moz-43E73578.greenbytes.de)
  1774. # [15:48] <mounir> AryehGregor: for me, it's the same
  1775. # [15:48] <mounir> there might be small differences
  1776. # [15:48] <Julian> Q: what would be the right component for a "data: URI" parsing bug?
  1777. # [15:49] <AryehGregor> Can I make a method that's only visible within the current file?
  1778. # [15:49] * Joins: TheLink (TheLink@moz-C76AC80E.pools.arcor-ip.net)
  1779. # [15:49] <AryehGregor> Or do I have to declare it in the header file, and just make it private if I want it private?
  1780. # [15:50] <mounir> AryehGregor: whitin the current file, what I said should be enough
  1781. # [15:50] <mounir> no need to put anything in the header
  1782. # [15:50] * Joins: Bas (chatzilla@moz-DF3CA35A.ftth.concepts.nl)
  1783. # [15:51] <mounir> btw, after a quick look, static keyword and anonymous namespaces are more or less the same thing but C++ specifications recommend using anonymous namespace
  1784. # [15:51] <AryehGregor> /mnt/extra/checkouts/mozilla-central/editor/libeditor/html/nsHTMLEditorStyle.cpp:361:75: error: definition of ‘nsresult nsHTMLEditor::SetInlinePropertyOnNodeImpl(nsIDOMNode*, nsIAtom*, const nsAString_internal*, const nsAString_internal*)’ is not in namespace enclosing ‘nsHTMLEditor’ [-fpermissive]
  1785. # [15:51] <AryehGregor> So that doesn't seem to work for methods.
  1786. # [15:52] <martyn> AryehGregor, there are some interesting points here --> http://stackoverflow.com/questions/4977252/why-unnamed-namespace-is-a-superior-alternative-to-static
  1787. # [15:52] * Quits: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com) (Ping timeout)
  1788. # [15:52] <mounir> AryehGregor: can I see your patch?
  1789. # [15:53] <AryehGregor> Just a sec.
  1790. # [15:54] * Quits: MarcoZ (Daily@moz-64C3EB13.dip.t-dialin.net) (Ping timeout)
  1791. # [15:54] * Quits: Archaeopteryx (itsme@moz-756328DB.cust.telecolumbus.net) (Ping timeout)
  1792. # [15:54] * Quits: Julian (chatzilla@moz-43E73578.greenbytes.de) (Quit: ChatZilla 0.9.88.2 [Firefox 11.0/20120312181643])
  1793. # [15:55] <AryehGregor> mounir, http://paste.ubuntu.com/935461/
  1794. # [15:55] <AryehGregor> That compiles.
  1795. # [15:56] <AryehGregor> If you can tell me a way to get it to work without declaring anything in the header, I'm interested in learning.
  1796. # [15:56] <AryehGregor> (the patch will not apply to m-c, it depends on other patches)
  1797. # [15:56] * Joins: dao (dao@moz-1F0CCD97.superkabel.de)
  1798. # [15:57] * Joins: kumar (kmcmillan@moz-E31CD2CB.mozilla.org)
  1799. # [15:57] * Joins: fs (Elchi3@B9C9103E.56629902.2EC4CA51.IP)
  1800. # [15:57] <mounir> AryehGregor: SetInlinePropertyOnNodeImpl doesn't use any C++ member class?
  1801. # [15:58] <AryehGregor> mounir, what?
  1802. # [15:58] <mounir> any member class
  1803. # [15:58] <AryehGregor> What do you mean?
  1804. # [15:58] <mounir> arf
  1805. # [15:58] <mounir> class member
  1806. # [15:58] * Joins: Goldorak (chatzilla@4F3B0A5C.7BDA2E47.187A1082.IP)
  1807. # [15:59] * Joins: ehsan|extremely-busy (ehsan@F2D29657.F60B0462.67AC9B1.IP)
  1808. # [15:59] <mounir> I think it's okay to keep that method private
  1809. # [15:59] <mounir> it seems to be pretty much linked to the class
  1810. # [16:00] * Joins: brendan (brendaneic@moz-A286C218.hsd1.ca.comcast.net)
  1811. # [16:03] * bear-afk is now known as bear
  1812. # [16:03] * Quits: gwagner (idefix2@5AAE35B2.5EFFC0B8.24454B25.IP) (Quit: gwagner)
  1813. # [16:03] * Quits: nical|away (nical@moz-63925F6.members.linode.com) (Quit: leaving)
  1814. # [16:03] * Joins: nical (nical@moz-63925F6.members.linode.com)
  1815. # [16:04] * Quits: dao (dao@moz-1F0CCD97.superkabel.de) (Connection reset by peer)
  1816. # [16:04] * Joins: dao (dao@moz-1F0CCD97.superkabel.de)
  1817. # [16:05] * Joins: c0smikde_ (c0smikdebr@B24EF8BD.DC4492DD.BE90E62C.IP)
  1818. # [16:06] * Quits: c0smikdebris (c0smikdebr@B24EF8BD.DC4492DD.BE90E62C.IP) (Ping timeout)
  1819. # [16:07] * Quits: lmandel (lmandel@FE1F74.86ED00A7.971E19F6.IP) (Quit: lmandel)
  1820. # [16:07] * Quits: Mnyromyr (MnyroWork@moz-E2E3FF3D.tal.de) (Input/output error)
  1821. # [16:08] * Joins: glob (glob@moz-BDD802ED.hfc.comcastbusiness.net)
  1822. # [16:09] * Joins: tonymec (tonymec@8B7AA4D0.9953D32C.277517C1.IP)
  1823. # [16:09] <gabor> khuey: ping
  1824. # [16:11] * Joins: MarcoZ (Daily@moz-2F952585.dip.t-dialin.net)
  1825. # [16:11] * Joins: dseif (dseif@F2D29657.F60B0462.67AC9B1.IP)
  1826. # [16:13] * Joins: Asa (asa@4C4A4A67.38324963.204CA821.IP)
  1827. # [16:14] * Quits: davehunt (davehunt@CDFC245.BF1529D9.2A79FB6D.IP) (Ping timeout)
  1828. # [16:15] * Joins: surkov (surkov@DD69D9E4.55CAE15D.34044A7F.IP)
  1829. # [16:15] * Quits: ibarlow (ibarlow@F2D29657.F60B0462.67AC9B1.IP) (Quit: ibarlow)
  1830. # [16:15] * Joins: davehunt (davehunt@CDFC245.BF1529D9.2A79FB6D.IP)
  1831. # [16:15] * Quits: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP) (Quit: jfkthame)
  1832. # [16:17] * Quits: bholley (bholley@moz-9375A05C.fbx.proxad.net) (Ping timeout)
  1833. # [16:18] * Joins: bholley (bholley@moz-9375A05C.fbx.proxad.net)
  1834. # [16:19] * Quits: lht (elihait@moz-722A94AD.dreamhost.com) (Quit: Ex-Chat)
  1835. # [16:19] * Mark_Capella is now known as Mark_Capella|away
  1836. # [16:19] * Joins: damons (gnubeard@moz-A41E6911.hsd1.ca.comcast.net)
  1837. # [16:21] * Quits: Goldorak (chatzilla@4F3B0A5C.7BDA2E47.187A1082.IP) (Ping timeout)
  1838. # [16:21] * Joins: Goldorak (chatzilla@4F3B0A5C.7BDA2E47.187A1082.IP)
  1839. # [16:22] * bz_sleep is now known as bz
  1840. # [16:22] * Quits: jlund (jlund@moz-B77DEAEB.mozilla.org) (Quit: leaving)
  1841. # [16:22] * Quits: RemusPop (remuspop@601F3B17.33662590.A5830293.IP) (Client exited)
  1842. # [16:23] * Joins: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com)
  1843. # [16:23] * coop|afk is now known as coop
  1844. # [16:24] * Joins: friedcell (Adium@moz-4B260FCD.dynamic.t-2.net)
  1845. # [16:25] * Joins: jlund (jlund@moz-B77DEAEB.mozilla.org)
  1846. # [16:25] <friedcell> anybody here? :)
  1847. # [16:26] * Quits: rclick (rclick@moz-3A7383FB.dsl.covlil.sbcglobal.net) (Ping timeout)
  1848. # [16:26] <gcp_> sure
  1849. # [16:27] * Quits: Goldorak (chatzilla@4F3B0A5C.7BDA2E47.187A1082.IP) (Ping timeout)
  1850. # [16:27] <friedcell> I was wondering who designed the interactions on datalist enabled inputs
  1851. # [16:27] * Joins: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com)
  1852. # [16:27] * Joins: Goldorak (chatzilla@4F3B0A5C.7BDA2E47.187A1082.IP)
  1853. # [16:28] * Joins: tchevalier (Instantbir@moz-2E97FBBC.w90-48.abo.wanadoo.fr)
  1854. # [16:29] * Joins: anky (anky@8B866160.F2659768.A3D1B221.IP)
  1855. # [16:29] * Quits: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com) (Ping timeout)
  1856. # [16:29] * gregglind_away is now known as gregglind
  1857. # [16:30] <mounir> vingtetun: "
  1858. # [16:30] <mounir> The goal of the tree rule change was to prevent Fennec bustage, so I think a=desktop-only or a=b2g-only would make sense. Any concerns here with adding that to the tree rules?
  1859. # [16:30] <mounir> "
  1860. # [16:31] * Quits: davehunt (davehunt@CDFC245.BF1529D9.2A79FB6D.IP) (Client exited)
  1861. # [16:31] * Quits: anky (anky@8B866160.F2659768.A3D1B221.IP) (Ping timeout)
  1862. # [16:31] * Quits: vikram360 (vikram360@F659E24F.46686E3.2A068A5E.IP) (Ping timeout)
  1863. # [16:32] * Joins: vikram360 (vikram360@CE119424.F93E2519.2A068A5E.IP)
  1864. # [16:32] * Quits: krit (Adium@moz-3AE657AD.hsd1.ca.comcast.net) (Quit: Leaving.)
  1865. # [16:33] * Joins: anky (anky@8B866160.F2659768.A3D1B221.IP)
  1866. # [16:33] * rail-brb is now known as rail
  1867. # [16:33] <robert> https://twitter.com/#!/friedcell/status/192615320341577728
  1868. # [16:33] * robert is now known as sedovsek
  1869. # [16:33] <sedovsek> Ah, sorry. Didn't see friedcell already asked the question.
  1870. # [16:34] <friedcell> sedovsek: already here :)
  1871. # [16:34] * Quits: JPeterson (JPeterson@moz-B2998FD7.cust.tele2.se) (Ping timeout)
  1872. # [16:34] * Joins: JPeterson (JPeterson@moz-B2998FD7.cust.tele2.se)
  1873. # [16:35] <@smaug> sedovsek: did you get the answer already?
  1874. # [16:35] <vingtetun> mounir: <3
  1875. # [16:35] <mounir> vingtetun: FWIW, that was on dev-planning so I think you are more or less good to land with a=b2g-only
  1876. # [16:36] <friedcell> smaug: I didn't
  1877. # [16:36] <vingtetun> mounir: thanks, i missed it
  1878. # [16:36] * Joins: jdm (jdm@moz-15BB5FE6.cable.teksavvy.com)
  1879. # [16:36] <@smaug> friedcell: have you looked at the bug?
  1880. # [16:36] * ewong is now known as ewong|sleep
  1881. # [16:36] * Joins: anky_ (anky@96A10C3F.9EB919EA.A3D1B221.IP)
  1882. # [16:36] <mounir> vingtetun: I'm your faithful PA :)
  1883. # [16:36] * Joins: Cork[home] (Cork@moz-A81BAA1F.cust.tele2.se)
  1884. # [16:37] * Quits: Goldorak (chatzilla@4F3B0A5C.7BDA2E47.187A1082.IP) (Ping timeout)
  1885. # [16:37] * Quits: xakz (XaMaD@moz-4A5DD6F7.w92-135.abo.wanadoo.fr) (Ping timeout)
  1886. # [16:37] <vingtetun> lol :)
  1887. # [16:37] * Quits: anky (anky@8B866160.F2659768.A3D1B221.IP) (Ping timeout)
  1888. # [16:37] <@smaug> friedcell: https://bugzilla.mozilla.org/show_bug.cgi?id=555840
  1889. # [16:37] * Quits: tonymec (tonymec@8B7AA4D0.9953D32C.277517C1.IP) (Input/output error)
  1890. # [16:37] * Joins: Goldorak (chatzilla@4F3B0A5C.7BDA2E47.187A1082.IP)
  1891. # [16:38] * Joins: smooney_ (smooney@moz-3C7A0050.hsd1.ca.comcast.net)
  1892. # [16:38] * rail is now known as rail_away
  1893. # [16:38] * Quits: rail_away (rail@moz-E6144DC3.iqchoice.com) (Quit: Gone fishing...)
  1894. # [16:38] <friedcell> smaug: didn't find that, thanks!
  1895. # [16:40] * Quits: smooney_ (smooney@moz-3C7A0050.hsd1.ca.comcast.net) (Connection reset by peer)
  1896. # [16:40] * Joins: smooney (smooney@moz-3C7A0050.hsd1.ca.comcast.net)
  1897. # [16:41] * Quits: dao (dao@moz-1F0CCD97.superkabel.de) (Quit: Leaving.)
  1898. # [16:41] <friedcell> mounir: here?
  1899. # [16:42] <mounir> friedcell: yes?
  1900. # [16:42] <friedcell> mounir: datalist impl
  1901. # [16:42] <friedcell> wondering who designed the interactions in the UI
  1902. # [16:43] <mounir> friedcell: it's the autocomplete code that is behind the UI
  1903. # [16:43] <friedcell> stuff like left arrow selects the option & puts the cursor at the beginning
  1904. # [16:43] * Joins: jlebar|mac_ (~jlebarmac@moz-AAEFBBD1.gw.connect.com.au)
  1905. # [16:43] * Quits: jlebar|mac (~jlebarmac@moz-AAEFBBD1.gw.connect.com.au) (Connection reset by peer)
  1906. # [16:43] * jlebar|mac_ is now known as jlebar|mac
  1907. # [16:44] <mounir> so you should ask who designed that UI
  1908. # [16:44] <mounir> and I have no idea :)
  1909. # [16:44] <mounir> this is likely very old
  1910. # [16:44] * edransch-away is now known as edransch
  1911. # [16:44] * Joins: mjschranz (mjschranz@F2D29657.F60B0462.67AC9B1.IP)
  1912. # [16:44] <friedcell> how about why if I type "a" it would suggest "Radio"
  1913. # [16:45] * Joins: anuaimi (anuaimi@B65F78B7.1356EECA.2170E5F.IP)
  1914. # [16:45] * Quits: Bas (chatzilla@moz-DF3CA35A.ftth.concepts.nl) (Connection reset by peer)
  1915. # [16:45] * Joins: hub (hub@moz-E2FCA694.figuiere.net)
  1916. # [16:45] * Joins: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP)
  1917. # [16:46] <mounir> same thing, this comes from the autocomplete behavior
  1918. # [16:46] * Joins: mcot (mcot@C4B02.F3C4E8F3.C8444B8.IP)
  1919. # [16:46] <mounir> it might be debatable
  1920. # [16:46] <friedcell> mounir: thanks.
  1921. # [16:47] <friedcell> mounir: how do I figure out who designed the UI? :)
  1922. # [16:47] * Joins: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP)
  1923. # [16:47] * Joins: Bas (chatzilla@moz-DF3CA35A.ftth.concepts.nl)
  1924. # [16:48] <mounir> friedcell: I that point, I think 'who' isn't the question
  1925. # [16:48] <mounir> if you have issues with the UI that apply to both autocomplete and datalist, you should file a bug against the autocomplete UI
  1926. # [16:48] <mounir> and have someone from UX to look at it
  1927. # [16:48] * Joins: davehunt (davehunt@CDFC245.BF1529D9.2A79FB6D.IP)
  1928. # [16:49] <friedcell> mounir: no issues, just wanna talk about it
  1929. # [16:49] * Joins: rail (rail@3F57476C.2BFB0443.4595224C.IP)
  1930. # [16:49] <mounir> friedcell: dev-apps-firefox newsgroup/mailing-list seems an appropriate place
  1931. # [16:50] <mounir> I don't know if there are much UX people around but they should be there at least
  1932. # [16:50] <friedcell> mounir: thanks
  1933. # [16:50] <friedcell> will try
  1934. # [16:50] <mounir> yw
  1935. # [16:53] * Quits: pranavrc (pranavrc@C04A32B.1137763F.C28326FD.IP) (Quit: Ping timeout: ∞)
  1936. # [16:53] * tbsaunde|afk is now known as tbsaunde
  1937. # [16:53] * Quits: anky_ (anky@96A10C3F.9EB919EA.A3D1B221.IP) (Quit: Leaving...)
  1938. # [16:54] * Joins: Ms2ger`class (Ms2ger@CEF8CBD7.3067C44D.37724B0D.IP)
  1939. # [16:54] * Ms2ger`class is now known as Ms2ger
  1940. # [16:55] * Joins: bc (bc@moz-BDD802ED.hfc.comcastbusiness.net)
  1941. # [16:56] * Quits: robarnold (rob@moz-59F6B5.hfc.comcastbusiness.net) (Ping timeout)
  1942. # [16:56] * Joins: robarnold (rob@moz-59F6B5.hfc.comcastbusiness.net)
  1943. # [16:56] * Quits: @smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi) (Ping timeout)
  1944. # [16:56] * Parts: friedcell (Adium@moz-4B260FCD.dynamic.t-2.net)
  1945. # [16:57] * Quits: davehunt (davehunt@CDFC245.BF1529D9.2A79FB6D.IP) (Client exited)
  1946. # [16:57] * Joins: smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi)
  1947. # [16:57] * ChanServ sets mode: +o smaug
  1948. # [16:58] * IRCMonkey49799 is now known as Tobbi
  1949. # [16:58] * Joins: dveditz (dveditz@moz-34991AF4.dhcp.cruzio.com)
  1950. # [16:58] * ChanServ sets mode: +o dveditz
  1951. # [16:59] * Tobbi is now known as IRCMonkey56483
  1952. # [17:00] * Joins: victorporof (victorporo@B394FFAE.6465CCD9.79933D60.IP)
  1953. # [17:01] * Quits: victorporof (victorporo@B394FFAE.6465CCD9.79933D60.IP) (Quit: Leaving...)
  1954. # [17:01] * Quits: vikash (vikash@88DD17D3.9B552DFD.5D9ABA9F.IP) (Quit: Leaving)
  1955. # [17:01] * jlund is now known as jlund|afk
  1956. # [17:01] * Joins: lmandel (lmandel@F2D29657.F60B0462.67AC9B1.IP)
  1957. # [17:02] * Joins: victorporof (victorporo@B394FFAE.6465CCD9.79933D60.IP)
  1958. # [17:03] * Quits: bc (bc@moz-BDD802ED.hfc.comcastbusiness.net) (Ping timeout)
  1959. # [17:03] * Joins: tonymec (tonymec@8B7AA4D0.9953D32C.277517C1.IP)
  1960. # [17:04] * Joins: knelson (Adium@moz-BBE3ABD.mv.mozilla.com)
  1961. # [17:04] * Quits: janv (varga@moz-6D58DC19.flarion.as5628.telecom.sk) (Ping timeout)
  1962. # [17:04] * Quits: MarcoZ (Daily@moz-2F952585.dip.t-dialin.net) (Ping timeout)
  1963. # [17:04] * Parts: knelson (Adium@moz-BBE3ABD.mv.mozilla.com)
  1964. # [17:04] * Joins: janv (varga@moz-6D58DC19.flarion.as5628.telecom.sk)
  1965. # [17:04] * Joins: rclick (rclick@moz-3A7383FB.dsl.covlil.sbcglobal.net)
  1966. # [17:05] * Joins: vikash (vikash@88DD17D3.9B552DFD.5D9ABA9F.IP)
  1967. # [17:05] * Joins: MarcoZ (Daily@moz-3E74830.dip.t-dialin.net)
  1968. # [17:05] * Quits: philipp64|laptop (chatzilla@moz-764C1742.hfc.comcastbusiness.net) (Ping timeout)
  1969. # [17:06] * Quits: smooney (smooney@moz-3C7A0050.hsd1.ca.comcast.net) (Quit: smooney)
  1970. # [17:06] * AaronMT is now known as AaronMT|AFK
  1971. # [17:06] <mconley> !seen gregor
  1972. # [17:06] <firebot> gregor was last seen 2 weeks, 4 days, 17 hours, 23 minutes and 20 seconds ago, saying 'hi, does anybody know if there is anywhere an addon for gpg encrypt/decrypt like the old http://de.getfiregpg.org/s/home ?' in #firefox.
  1973. # [17:07] * edransch is now known as edransch-afk
  1974. # [17:07] <mconley> !seen gwagner
  1975. # [17:07] <firebot> gwagner was last seen 1 hour, 31 minutes and 12 seconds ago, saying 'mrbkap: is it possible to test jsval? I want to change so that the interface only takes jsvals and no typed methods' in #content.
  1976. # [17:07] * Quits: davidb (davidb@F2D29657.F60B0462.67AC9B1.IP) (Quit: blast off!)
  1977. # [17:07] * Joins: bruno (bruno@20C4F0CB.2F9EAEB9.C36097CD.IP)
  1978. # [17:08] * Quits: mfinkle (mfinkle@moz-8CB7201C.hsd1.pa.comcast.net) (Ping timeout)
  1979. # [17:08] * Quits: smya (chatzilla@91BC8839.F442218F.88FACCAA.IP) (Quit: ChatZilla 0.9.88.2 [Firefox 13.0a1/20120303192654])
  1980. # [17:08] * lsblakk|afk is now known as lsblakk
  1981. # [17:08] * Quits: maikmerten (merten@moz-E254386D.cs.uni-dortmund.de) (Client exited)
  1982. # [17:08] * Joins: bc (bc@moz-BDD802ED.hfc.comcastbusiness.net)
  1983. # [17:11] * Joins: mfinkle (mfinkle@moz-8CB7201C.hsd1.pa.comcast.net)
  1984. # [17:12] * bhearsum is now known as bhearsum|lunch
  1985. # [17:12] * Quits: anuaimi (anuaimi@B65F78B7.1356EECA.2170E5F.IP) (Quit: anuaimi)
  1986. # [17:12] * Quits: sedovsek (robert@moz-6C05035C.dynamic.t-2.net) (Quit: sedovsek)
  1987. # [17:13] * IRCMonkey56483 is now known as Tobbi
  1988. # [17:13] * Joins: catalinb (ethereal@moz-7443FA19.eregie.pub.ro)
  1989. # [17:14] * jhford-work-away is now known as jhford-work
  1990. # [17:14] * bear is now known as bear-afk
  1991. # [17:15] * Joins: hurley (hurley@moz-10A8C43E.monkey.org)
  1992. # [17:15] * Quits: kredik (chatzilla@moz-7BF4BFBD.w80-11.abo.wanadoo.fr) (Connection reset by peer)
  1993. # [17:16] * catlee-buildduty is now known as catlee-lunch
  1994. # [17:16] * mak is now known as mak|afk
  1995. # [17:16] * Quits: jhk1 (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  1996. # [17:17] * Joins: jhk (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  1997. # [17:17] * Quits: pascalc (chatzilla@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Input/output error)
  1998. # [17:18] * Quits: bjacob (bjacob@moz-ADCA75DC.cpe.net.cable.rogers.com) (Ping timeout)
  1999. # [17:19] * Joins: kanru` (user@moz-62C093C2.dynamic.hinet.net)
  2000. # [17:20] * Quits: glob (glob@moz-BDD802ED.hfc.comcastbusiness.net) (Quit: Leaving...)
  2001. # [17:20] * Quits: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP) (Quit: jfkthame)
  2002. # [17:21] * coop is now known as coop|afk
  2003. # [17:22] * Quits: catalinb (ethereal@moz-7443FA19.eregie.pub.ro) (Ping timeout)
  2004. # [17:22] * hwine|afk is now known as hwine
  2005. # [17:22] * Quits: edmorley (Mibbit@moz-BDD802ED.hfc.comcastbusiness.net) (Quit: http://www.mibbit.com ajax IRC Client)
  2006. # [17:23] * Joins: pascalc (chatzilla@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net)
  2007. # [17:24] * Quits: jlebar|mac (~jlebarmac@moz-AAEFBBD1.gw.connect.com.au) (Connection reset by peer)
  2008. # [17:24] * Joins: jlebar|mac (~jlebarmac@moz-AAEFBBD1.gw.connect.com.au)
  2009. # [17:25] * Joins: cjones (cjones@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2010. # [17:26] * Quits: chrisccoulson (chr1s@CF62D2D6.FC921812.EE27BB8D.IP) (Quit: Ex-Chat)
  2011. # [17:28] * Quits: Asa (asa@4C4A4A67.38324963.204CA821.IP) (Ping timeout)
  2012. # [17:29] * Joins: catalinb (ethereal@moz-7443FA19.eregie.pub.ro)
  2013. # [17:29] * Joins: ibarlow (ibarlow@F2D29657.F60B0462.67AC9B1.IP)
  2014. # [17:29] * bwinton_away is now known as bwinton
  2015. # [17:30] * Quits: ibarlow (ibarlow@F2D29657.F60B0462.67AC9B1.IP) (Quit: ibarlow)
  2016. # [17:32] * Joins: chrisccoulson (chr1s@moz-692D94C8.cust-3601.ip.static.uno.uk.net)
  2017. # [17:33] * Quits: bc (bc@moz-BDD802ED.hfc.comcastbusiness.net) (Ping timeout)
  2018. # [17:33] * tbsaunde is now known as tbsaunde|afk
  2019. # [17:34] * Joins: robert (robert@moz-6C05035C.dynamic.t-2.net)
  2020. # [17:36] * @bz wonders what the point was of doing a browser grand prix on XP
  2021. # [17:36] <@bz> apart from penalizing IE
  2022. # [17:37] <Ms2ger> Sounds like a good reason to me :)
  2023. # [17:38] * Joins: squib (squib-@moz-3F6F2A9C.ep.wisc.edu)
  2024. # [17:38] * Quits: stransky (stransky@moz-107AD163.redhat.com) (Quit: Connection reset by beer)
  2025. # [17:39] <@bz> meh
  2026. # [17:39] <@bz> as if anyone needed to be told that using IE on XP if you care about modern stuff (incl. perf) is a bad idea
  2027. # [17:40] * Joins: Lucas (Lucas@moz-92C28224.hsd1.ca.comcast.net)
  2028. # [17:40] * Quits: c0smikde_ (c0smikdebr@B24EF8BD.DC4492DD.BE90E62C.IP) (Quit: Computer has gone to sleep.)
  2029. # [17:40] * joduinn-afk is now known as joduinn-mtg
  2030. # [17:41] * Joins: qheaden (qah661@moz-67E02157.nrflva.fios.verizon.net)
  2031. # [17:42] * Joins: wesj (Instantbir@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2032. # [17:42] * Quits: florian (Instantbir@moz-87C33FDA.kimsufi.com) (Quit: Instantbird -- http://www.instantbird.com)
  2033. # [17:43] * Joins: rillian_lime (rillian@moz-DBEBB2B4.bc.hsia.telus.net)
  2034. # [17:43] <rillian_lime> cdiehl: well, that didn't take you long!
  2035. # [17:44] <ferongr> bz: I assume the performance advantage of Chrome in those measurements (when it comes to canvas tests) are due to Skia
  2036. # [17:44] * Joins: bdahl (bdahl@moz-BBE3ABD.mv.mozilla.com)
  2037. # [17:44] * Quits: WG9s (bill@moz-7A06A043.hsd1.ma.comcast.net) (Quit: ChatZilla 0.9.87-4.1450hg.fc16 [XULRunner 11.0/20120313114517])
  2038. # [17:45] * Joins: wg9s (wg9s@moz-7A06A043.hsd1.ma.comcast.net)
  2039. # [17:45] * Quits: jwatt (roslea@jwatt.irc.users.mozilla.org) (Ping timeout)
  2040. # [17:46] * Joins: jwatt (roslea@jwatt.irc.users.mozilla.org)
  2041. # [17:46] * Fallen is now known as Fallen|away
  2042. # [17:46] <Ms2ger> Gah, I seem to get a lot more s-s bugmail since it's censored
  2043. # [17:47] * joduinn-mtg is now known as joduinn-coffee
  2044. # [17:47] * Quits: vikash (vikash@88DD17D3.9B552DFD.5D9ABA9F.IP) (Quit: Leaving)
  2045. # [17:47] * Joins: vikash (vikash@88DD17D3.9B552DFD.5D9ABA9F.IP)
  2046. # [17:50] <qheaden> What is the integer data type in an XPCOM interface?
  2047. # [17:50] <qheaden> Is it int, integer, or something else?
  2048. # [17:51] * Joins: glob (glob@93B4174C.6E78B65D.CDBA6951.IP)
  2049. # [17:52] <@bz> Ms2ger: heh
  2050. # [17:52] <@bz> qheaden: "the integer"?
  2051. # [17:52] <@bz> qheaden: what do you mean?
  2052. # [17:52] <Ms2ger> qheaden, long / unsigned long / ...
  2053. # [17:53] * Joins: mdas (mdas@93B4174C.6E78B65D.CDBA6951.IP)
  2054. # [17:53] <@bz> qheaden: xpidl has short, long, long long data types
  2055. # [17:53] <qheaden> Oh ok. So no int huh?
  2056. # [17:53] <Ms2ger> No
  2057. # [17:53] <@bz> qheaden: which are defined to be uint16_t, uint32_t, uint64_t
  2058. # [17:53] * Joins: philipp64|laptop (chatzilla@A6C4D8D3.8A899716.289A8017.IP)
  2059. # [17:53] <@bz> in the C++ bindings
  2060. # [17:53] <Ms2ger> bz, those with "unsigned" in front, at least
  2061. # [17:53] <@bz> er, yes
  2062. # [17:53] <qheaden> So basically the long data type is the same size as a unsigned int?
  2063. # [17:53] <@bz> no
  2064. # [17:53] <Ms2ger> No
  2065. # [17:53] * Joins: Mossop (mossop@moz-69D0FE2F.dsl.dynamic.sonic.net)
  2066. # [17:54] <@bz> the long data type is a int32_t
  2067. # [17:54] <Ms2ger> short = 16-bit
  2068. # [17:54] <@bz> unsigned int, on the other hand, could be anywhere from 16 to 64 bits
  2069. # [17:54] <@bz> depending on platform
  2070. # [17:54] <qheaden> What would you recommend for returning an array index? long?
  2071. # [17:54] <Ms2ger> Sure
  2072. # [17:54] <qheaden> Ok.
  2073. # [17:54] <@bz> unsigned long
  2074. # [17:54] <Ms2ger> Er, that, yes
  2075. # [17:55] <qheaden> Ok.
  2076. # [17:55] <Ms2ger> bz, you don't happen to know off-hand why nsRange uses longs instead of unsigned longs? :)
  2077. # [17:55] <@bz> ms2ger: you mean nsIDOMRange?
  2078. # [17:56] <Ms2ger> Yeah
  2079. # [17:56] <@smaug> Bas: ping
  2080. # [17:56] <Bas> smaug: pong
  2081. # [17:57] * Quits: Lucas (Lucas@moz-92C28224.hsd1.ca.comcast.net) (Input/output error)
  2082. # [17:57] * Quits: MarcoZ (Daily@moz-3E74830.dip.t-dialin.net) (Ping timeout)
  2083. # [17:57] <@bz> ms2ger: because the DOM WG
  2084. # [17:57] <Ms2ger> Makes sense
  2085. # [17:57] * Ms2ger blames jst
  2086. # [17:58] <@smaug> Bas: a bit silly question, but can you guess what makes activating the tab which has http://support.amd.com/us/Pages/AMDSupportHub.aspx loaded slow.
  2087. # [17:58] <@smaug> Bas: problem seems to occur especially on Windows
  2088. # [17:58] * shorlander_ is now known as shorlander
  2089. # [17:58] <Bas> smaug: Does it disappear when you disable D2D?
  2090. # [17:58] <@smaug> no
  2091. # [17:59] * Quits: victorporof (victorporo@B394FFAE.6465CCD9.79933D60.IP) (Quit: Leaving...)
  2092. # [17:59] <Bas> smaug: The tabs doesn't look special to me nor is it slow :(
  2093. # [17:59] * NeilAway doesn't find browser particularly fast on xp, because graphics acceleration wants newer drivers
  2094. # [18:00] <Ms2ger> "apprppriate"
  2095. # [18:00] <Ms2ger> That has too many p's?
  2096. # [18:01] <hsivonen> Tom's hardware thinks Firefox is still on Gecko 2.0
  2097. # [18:01] * Joins: bc (bc@93B4174C.6E78B65D.CDBA6951.IP)
  2098. # [18:01] * Quits: rhelmer_ (rhelmer@moz-B77DEAEB.mozilla.org) (Ping timeout)
  2099. # [18:01] <hsivonen> and that WebKit 2 is a rendering engine
  2100. # [18:01] * Joins: MarcoZ (Daily@moz-FD153212.dip.t-dialin.net)
  2101. # [18:02] * Joins: gozala (gozala@moz-D5BED6F9.dsl.dynamic.sonic.net)
  2102. # [18:02] * Quits: brambles (brambles@4CBAB088.F3076E90.1822ACA6.IP) (Ping timeout)
  2103. # [18:03] * Joins: rhelmer_ (rhelmer@moz-B77DEAEB.mozilla.org)
  2104. # [18:03] <@smaug> Bas: ah, on linux some what bad profiling shows that quite a bit time is spent in PNG decoder :/
  2105. # [18:04] * Joins: sworkman (sworkman@moz-BBE3ABD.mv.mozilla.com)
  2106. # [18:04] * Joins: sheppy (sheppy@moz-F39D62DA.dhcp.kgpt.tn.charter.com)
  2107. # [18:05] <@bz> smaug: probably the image discarding and then decoding everything thing....
  2108. # [18:05] * Quits: Cwiiis (cwiiis@88F51059.F3BBB17D.144F44FA.IP) (Quit: Ex-Chat)
  2109. # [18:07] * Joins: edmorley (Mibbit@93B4174C.6E78B65D.CDBA6951.IP)
  2110. # [18:07] <@smaug> bz: I thought we don't discard everything immediately
  2111. # [18:07] <@smaug> but perhaps we do
  2112. # [18:07] * Quits: ehsan|extremely-busy (ehsan@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  2113. # [18:07] * Joins: Mardak (Mardak@moz-BBE3ABD.mv.mozilla.com)
  2114. # [18:07] <@bz> smaug: for background tabs, we might
  2115. # [18:07] * AutomatedTester|AFK is now known as AutomatedTester
  2116. # [18:08] * Joins: Asa (asa@moz-7B0110AD.mv.mozilla.com)
  2117. # [18:08] * coop|afk is now known as coop
  2118. # [18:08] * bhearsum|lunch is now known as bhearsum
  2119. # [18:09] * joduinn-coffee is now known as joduinn-mtg
  2120. # [18:09] * Joins: smooney_ (smooney@moz-BBE3ABD.mv.mozilla.com)
  2121. # [18:10] * Quits: dcamp (dave@moz-8EBEC133.hsd1.wa.comcast.net) (Quit: Linkinus - http://linkinus.com)
  2122. # [18:10] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  2123. # [18:11] * @smaug assume gavin will a+ the geo leak ;)
  2124. # [18:12] * Joins: donna (donna@D2B84AF4.C749D475.1139E686.IP)
  2125. # [18:12] <mkaply> Is there any notification on Mac when the browser is hidden or minimized?
  2126. # [18:12] * Parts: donna (donna@D2B84AF4.C749D475.1139E686.IP)
  2127. # [18:12] * Joins: gkw (Instantbir@moz-104CC309.mv.mozilla.com)
  2128. # [18:13] * Joins: Cwiiis (cwiiis@88F51059.F3BBB17D.144F44FA.IP)
  2129. # [18:13] * Joins: bjacob (bjacob@F2D29657.F60B0462.67AC9B1.IP)
  2130. # [18:14] <sheppy> The window or the entire app?
  2131. # [18:15] <mbrubeck> Why won't "hg qimport" download a patch from an http:// URL anymore? Did that go away in hg 2.1 or something?
  2132. # [18:15] * Joins: brambles (brambles@4CBAB088.F3076E90.1822ACA6.IP)
  2133. # [18:16] <mkaply> sheppy: Either would work. Bad things happen to a panel that is left open when Firefox is hidden. So I want to hide the panel. (focus change isn't enough because it happens with Options+H even if the panel is set to autohide)
  2134. # [18:16] <mkaply> plus the blur messages come after the window has been hidden/minimized
  2135. # [18:16] <sheppy> Hm.
  2136. # [18:17] <gregglind> are there other moz-actions in wide usage other than 'switchtab'?
  2137. # [18:17] * Joins: Waldo (waldo@C3A29290.52D01038.50A7E6A6.IP)
  2138. # [18:17] <mkaply> sheppy: And once it's happened, the panel doesn't work right ever again.
  2139. # [18:18] <jhford-work> is it easy to tell if a program was linked with gold instead of bfd by only looking at elf file?
  2140. # [18:19] * Joins: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP)
  2141. # [18:19] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/23a0762a0dd6 - Mounir Lamouri - Bug 647665 - Inform the UI that we do not hover a link anymore if the element is removed from the DOM. r=bz a=gavin
  2142. # [18:19] * Joins: kdcw (kdc@moz-F7413045.pk.shawcable.net)
  2143. # [18:19] * Joins: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl)
  2144. # [18:20] * mcote|afk is now known as mcote
  2145. # [18:20] <Ms2ger> mounir++
  2146. # [18:20] * Joins: johanc (chatzilla@moz-D8A1AA43.bredband.comhem.se)
  2147. # [18:20] <mwu> jhford-work: readelf -n <binary>
  2148. # [18:20] * Quits: andreasn (andreasn@moz-8A84C28A.bredband.comhem.se) (Quit: Ex-Chat)
  2149. # [18:20] <mounir> Ms2ger: you likely are the only person to care about that
  2150. # [18:20] * AaronMT|AFK is now known as AaronMT
  2151. # [18:21] <jhford> thanks mwu
  2152. # [18:21] <Ms2ger> I only care because I had to dupe something to that bug recently :)
  2153. # [18:21] * Joins: akeybl (akeybl@moz-7B0110AD.mv.mozilla.com)
  2154. # [18:21] * Joins: ehsan|extremely-busy (ehsan@F2D29657.F60B0462.67AC9B1.IP)
  2155. # [18:21] <jdm> mbrubeck: I'm seeing the same problem
  2156. # [18:22] <jdm> glad to know I'm not crazy
  2157. # [18:22] * Quits: johanc (chatzilla@moz-D8A1AA43.bredband.comhem.se) (Ping timeout)
  2158. # [18:22] <Ms2ger> Though, a patch to ESM that smaug didn't review...
  2159. # [18:22] * joduinn-mtg is now known as joduinn-commute
  2160. # [18:22] * Quits: gozala (gozala@moz-D5BED6F9.dsl.dynamic.sonic.net) (Quit: Leaving.)
  2161. # [18:22] * Quits: robert (robert@moz-6C05035C.dynamic.t-2.net) (Quit: robert)
  2162. # [18:22] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  2163. # [18:23] <@bz> it happens
  2164. # [18:23] <@bz> dbaron and I and roc have been known to meddle in there too
  2165. # [18:23] <sheppy> mkaply: looking around for an answer for you there… it seems like there should be an event for that...
  2166. # [18:23] <Ms2ger> Well, usually when it happens it's mwu :)
  2167. # [18:23] <@bz> you just have to know about which parts of the ESM are safe and which are not
  2168. # [18:23] <mbrubeck> jdm: Grr, and "hg import" fails with an SSL error
  2169. # [18:23] <mbrubeck> Time for wget
  2170. # [18:24] * Joins: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP)
  2171. # [18:24] <Waldo> bz: the safe parts are the comments, right?
  2172. # [18:24] <Ms2ger> bz, or assume nothing is safe
  2173. # [18:24] <jdm> mbrubeck: can you manually use curl/wget? If not, you probably need to update those and the ca-cert package
  2174. # [18:24] * Quits: surkov (surkov@DD69D9E4.55CAE15D.34044A7F.IP) (Quit: surkov)
  2175. # [18:24] <@bz> waldo: well, some of the stuff that sends out style change notifications is almost safe
  2176. # [18:24] <Ms2ger> Hmm
  2177. # [18:24] * Joins: faramarz (faramarz@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2178. # [18:25] <Ms2ger> I wonder if smaug has already started cleaning up docshell
  2179. # [18:25] * jlund|afk is now known as jlund|lunch
  2180. # [18:25] * Quits: akeybl (akeybl@moz-7B0110AD.mv.mozilla.com) (Quit: Linkinus - http://linkinus.com)
  2181. # [18:25] * Joins: akeybl (akeybl@moz-7B0110AD.mv.mozilla.com)
  2182. # [18:26] <sheppy> mkaply: this is weird, it doesn't look like there's an event sent on minimize and unminimize of windows.
  2183. # [18:26] <mbrubeck> jdm: Yeah, wget works
  2184. # [18:26] <mbrubeck> and curl
  2185. # [18:26] * Joins: johanc (chatzilla@moz-D8A1AA43.bredband.comhem.se)
  2186. # [18:26] * mak|afk is now known as mak
  2187. # [18:26] <@bz> sheppy: there sure should be
  2188. # [18:26] <@bz> sheppy: to chrome
  2189. # [18:26] <jdm> mbrubeck: let me know if you have any ideas about getting qimport to work again; I didn't realize how integrated into my workflow it really was :/
  2190. # [18:26] <sheppy> bz: yeah, there should be, but I sure can't find any sign that there is.
  2191. # [18:27] * Quits: MarcoZ (Daily@moz-FD153212.dip.t-dialin.net) (Quit: l8er)
  2192. # [18:27] <@bz> sheppy: what event are you listening for?
  2193. # [18:27] <sheppy> neither in docs nor in code as I poke through it. can anyone with more Gecko code chops take a look?
  2194. # [18:27] <@smaug> Ms2ger: not yet
  2195. # [18:27] * Joins: jorendorff (jorendorff@moz-91590D94.hsd1.tn.comcast.net)
  2196. # [18:27] <sheppy> bz: I'm not; I'm just looking to see if there is one. I'm trying to help mkaply. :)
  2197. # [18:27] * Joins: Boriss (FlyingToas@moz-4C45E17E.telecom.net.ar)
  2198. # [18:27] <@bz> sheppy: oh
  2199. # [18:27] * Joins: andreasn (andreasn@moz-8A84C28A.bredband.comhem.se)
  2200. # [18:27] <@bz> sheppy: one sec
  2201. # [18:27] <sheppy> bz: it sure seems like there ought to be one, and unlikely there isn't :)
  2202. # [18:28] * Quits: cjones (cjones@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Ping timeout)
  2203. # [18:28] <@bz> sheppy: https://developer.mozilla.org/en/XUL/Events
  2204. # [18:28] <@bz> sheppy: search for "sizemodechange"
  2205. # [18:28] * Quits: brendan (brendaneic@moz-A286C218.hsd1.ca.comcast.net) (Quit: brendan)
  2206. # [18:28] <sheppy> "sizemodechange" - no wonder searching on "minimize" wasn't helpful.
  2207. # [18:29] * Quits: catalinb (ethereal@moz-7443FA19.eregie.pub.ro) (Ping timeout)
  2208. # [18:29] <@bz> well, it fires when you maximize too
  2209. # [18:29] * Joins: brendan (brendaneic@moz-A286C218.hsd1.ca.comcast.net)
  2210. # [18:29] <@bz> or switch to fullscreen
  2211. # [18:29] * Joins: catalinb (ethereal@moz-7443FA19.eregie.pub.ro)
  2212. # [18:29] <mkaply> cool.
  2213. # [18:29] <@bz> or restore to normal sizemode
  2214. # [18:29] * sheppy fiddles to try to improve discoverability.
  2215. # [18:30] <mkaply> I guess the only question (which I'll find out) is hiding on mac considering a sizemodechange (not the same as minimizing)
  2216. # [18:30] <@bz> that's a good question
  2217. # [18:30] <@bz> if it's not, it should be
  2218. # [18:30] * Joins: bonnie (bbsurender@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2219. # [18:30] * zpao|detached is now known as zpao
  2220. # [18:30] * Quits: jhorak (jhorak@moz-107AD163.redhat.com) (Quit: Leaving)
  2221. # [18:30] <@bz> because we want to switch tabs to inactive when it happens
  2222. # [18:30] <@bz> so if that's not the case, please file a bug
  2223. # [18:30] * Joins: Lucas (Lucas@moz-92C28224.hsd1.ca.comcast.net)
  2224. # [18:31] * @bz bets we need a bug anyway, since we only switch to inactive in minimized sizemode
  2225. # [18:31] <bjacob> sewardj: where is exp-ptrcheck? can't find it in V svn
  2226. # [18:31] <avih> does anyone know someone from #mozdev, i posted a question there twice in the last week, but the channel seems deserted, and there could be an issue with mozdev.org...
  2227. # [18:31] * bear-afk is now known as bear
  2228. # [18:31] <bjacob> sewardj: oh, exp-sgcheck
  2229. # [18:32] * Joins: bonnie_ (bbsurender@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2230. # [18:32] * Joins: cpeterson (cpeterson@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2231. # [18:33] <mkaply> sheppy: nope. Doesn't
  2232. # [18:33] * Quits: catalinb (ethereal@moz-7443FA19.eregie.pub.ro) (Ping timeout)
  2233. # [18:33] * Joins: clee (clee@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2234. # [18:33] <mkaply> and bz - no onsizechange when you do Option+H
  2235. # [18:33] * Quits: pnemsak (Miranda@moz-BE85878E.citicom.sk) (Quit: pnemsak)
  2236. # [18:33] * Joins: catalinb (ethereal@moz-7443FA19.eregie.pub.ro)
  2237. # [18:33] <sheppy> mkaply: hm
  2238. # [18:33] * Joins: sfink (chatzilla@moz-BBE3ABD.mv.mozilla.com)
  2239. # [18:33] * Joins: ibarlow (ibarlow@F2D29657.F60B0462.67AC9B1.IP)
  2240. # [18:33] <mkaply> you do get it on the minimize button
  2241. # [18:34] <mkaply> checking activate/deactivate now
  2242. # [18:34] * Joins: bnicholson (bnicholson@moz-BBE3ABD.mv.mozilla.com)
  2243. # [18:34] <sewardj> bjacob: yes
  2244. # [18:35] * Quits: clee (clee@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: clee)
  2245. # [18:35] <mkaply> nope, no deactivate either. Ah well
  2246. # [18:35] * Joins: nhirata (nhirata.bu@moz-585D5EFC.hsd1.ca.comcast.net)
  2247. # [18:35] <mkaply> bz: what component would be right for a bug on that?
  2248. # [18:35] * Quits: tH (Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com) (Ping timeout)
  2249. # [18:35] * Quits: myk (Instantbir@moz-64D96850.dsl.dynamic.sonic.net) (Ping timeout)
  2250. # [18:36] <mkaply> widget: cocoa in toolkit?
  2251. # [18:37] * Joins: priya (Adium@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2252. # [18:37] <@smaug> I can't get this commit message right. first r=gaivn, then r=gevin ..
  2253. # [18:37] * Joins: jgriffin (jgriffin@93B4174C.6E78B65D.CDBA6951.IP)
  2254. # [18:37] * Joins: cjones (cjones@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2255. # [18:37] * ctyler_ is now known as ctyler
  2256. # [18:38] * Quits: gandalf (zbraniecki@76A6886A.12B84787.CACFD8FF.IP) (Quit: Computer has gone to sleep.)
  2257. # [18:39] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  2258. # [18:39] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/218a9ef79151 - Olli Pettay - Bug 745744 - Geolocation doorhanger might cause zombie compartments because it keeps callbacks alive, r=gavin, a=desktop-only
  2259. # [18:39] * Joins: clee (clee@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2260. # [18:40] * Joins: krit (Adium@moz-1FC1932F.adobe.com)
  2261. # [18:40] * Joins: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP)
  2262. # [18:40] * artur is now known as artur-lunch
  2263. # [18:41] * Quits: martyn (martyn@moz-CABED5F2.range81-154.btcentralplus.com) (Client exited)
  2264. # [18:41] * Quits: Boriss (FlyingToas@moz-4C45E17E.telecom.net.ar) (Ping timeout)
  2265. # [18:43] * Joins: myk (Instantbir@moz-64D96850.dsl.dynamic.sonic.net)
  2266. # [18:43] * Joins: cdiehl_ (cdiehl@moz-77F61044.pool.mediaways.net)
  2267. # [18:44] * Quits: cdiehl (cdiehl@moz-5C6E45B0.pool.mediaways.net) (Ping timeout)
  2268. # [18:44] * cdiehl_ is now known as cdiehl
  2269. # [18:44] * Quits: TheOne (TheOne@moz-D58488C3.dfki.uni-kl.de) (Ping timeout)
  2270. # [18:44] * Quits: hub (hub@moz-E2FCA694.figuiere.net) (Ping timeout)
  2271. # [18:44] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  2272. # [18:44] * Quits: @smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi) (Ping timeout)
  2273. # [18:45] * Joins: davidb (davidb@F2D29657.F60B0462.67AC9B1.IP)
  2274. # [18:45] * Joins: smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi)
  2275. # [18:45] * ChanServ sets mode: +o smaug
  2276. # [18:46] * jorendorff is now known as jorendorff-coffee
  2277. # [18:48] * Joins: mayhemer__ (Miranda@B3D46202.F87A741B.F23860FD.IP)
  2278. # [18:48] <mayhemer__> what is the try: option to build only b2g?
  2279. # [18:49] <Ms2ger> -p b2g
  2280. # [18:49] <Ms2ger> I think
  2281. # [18:49] <mayhemer__> Ms2ger: thanks
  2282. # [18:49] * philor is now known as philor|away
  2283. # [18:50] * liuche is now known as liuche|food
  2284. # [18:50] * philor|away is now known as philor
  2285. # [18:52] * Joins: gozala (gozala@moz-D5BED6F9.dsl.dynamic.sonic.net)
  2286. # [18:52] * jimm is now known as jimm-lunch
  2287. # [18:54] <edmorley> ehsan|extremely-busy: I presume you've seen it, but profiling builds are busted on several platforms
  2288. # [18:55] * Quits: mayhemer__ (Miranda@B3D46202.F87A741B.F23860FD.IP) (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
  2289. # [18:56] * Quits: bbondy (bbondy@moz-C9962B2.home.cgocable.net) (Ping timeout)
  2290. # [18:56] * Joins: cadecairos (cadecairos@EDDEAA06.33EE9F8A.1139E686.IP)
  2291. # [18:56] * Joins: billm (billm@moz-3877A8BA.hfc.comcastbusiness.net)
  2292. # [18:57] <ehsan|extremely-busy> edmorley: oh :(
  2293. # [18:57] * Joins: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP)
  2294. # [18:59] <Ms2ger> /nick ehsan|even-more-extremely-busy
  2295. # [18:59] * Joins: taras (chatzilla@9E727688.17C2F9C.163DC5C6.IP)
  2296. # [18:59] * Joins: daoberes (donna@D2B84AF4.C749D475.1139E686.IP)
  2297. # [19:00] <daoberes> hello, everyone! question about mimeTypes.rdf: is it possible to place it anywhere in the appdir so that all instances of firefox will read from that version instead of the one in the profile dir?
  2298. # [19:00] * Quits: cadecairos (cadecairos@EDDEAA06.33EE9F8A.1139E686.IP) (Quit: )
  2299. # [19:02] <mbrubeck> mounir: Looks like you have some orange on m-c.
  2300. # [19:02] * Joins: stevee (Miranda@moz-BEBDF855.cable.virginmedia.com)
  2301. # [19:02] * Joins: Mook_as (mook@moz-1FCC0032.activestate.com)
  2302. # [19:02] * Quits: daoberes (donna@D2B84AF4.C749D475.1139E686.IP) (Ping timeout)
  2303. # [19:03] * mak is now known as mak|afk
  2304. # [19:03] * Joins: daoberes (donna@D2B84AF4.C749D475.1139E686.IP)
  2305. # [19:04] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/fe91ab23b390 - Ehsan Akhgari - Bug 735262 - Fix the compilation error on profiling builds; r=me a=npotb
  2306. # [19:04] * Quits: wg9s (wg9s@moz-7A06A043.hsd1.ma.comcast.net) (Quit: Bye)
  2307. # [19:04] * Joins: bbondy (bbondy@moz-C9962B2.home.cgocable.net)
  2308. # [19:04] <KWierso> daoberes: you could probably stick it in [installationdir]\omni.ja\defaults\profile\, and then every profile created from then on would pick itup
  2309. # [19:05] <mwu> KWierso: not sure if default profile extraction support ever landed for omnijar
  2310. # [19:05] <ehsan|extremely-busy> edmorley: fixed
  2311. # [19:05] <mwu> however, the path without omnijar should work still
  2312. # [19:05] <daoberes> KWierso: thanks, i'll give that a try!
  2313. # [19:06] * Quits: rclick (rclick@moz-3A7383FB.dsl.covlil.sbcglobal.net) (Ping timeout)
  2314. # [19:06] * Joins: dcamp (dave@9E727688.17C2F9C.163DC5C6.IP)
  2315. # [19:06] <KWierso> daoberes: like mwu said, it might be easier to just create the profile folder in the non-omni.ja defaults folder
  2316. # [19:06] <edmorley> ehsan|extremely-busy: :-)
  2317. # [19:06] <KWierso> otherwise you have to extract and re-jar omnijar
  2318. # [19:06] * Joins: azakai (alon@moz-BBE3ABD.mv.mozilla.com)
  2319. # [19:07] * Joins: hub (hub@21B7B9F2.B87E9213.6E712CE2.IP)
  2320. # [19:07] <mounir> mbrubeck: damn :)
  2321. # [19:07] * Joins: WeirdAl (chatzilla@moz-D461843.ask.info)
  2322. # [19:08] <mounir> why does it always happen when you think "oh, dear, it should be safe..."
  2323. # [19:08] * Quits: smooney_ (smooney@moz-BBE3ABD.mv.mozilla.com) (Quit: smooney_)
  2324. # [19:08] * joduinn-commute is now known as joduinn
  2325. # [19:08] * Quits: blizzack (dpierre@16D3C936.5378A4C5.1B632967.IP) (Ping timeout)
  2326. # [19:08] * Joins: smooney_ (smooney@moz-BBE3ABD.mv.mozilla.com)
  2327. # [19:08] <mounir> oh...
  2328. # [19:08] <mounir> I didn't push the correct patch... :-/
  2329. # [19:09] * Quits: daoberes (donna@D2B84AF4.C749D475.1139E686.IP) (Ping timeout)
  2330. # [19:09] * mounir insults himself
  2331. # [19:09] * edmorley passes mounir the sombrero of shame...
  2332. # [19:09] <edmorley> :-)
  2333. # [19:09] * Joins: blizzack (dpierre@16D3C936.5378A4C5.1B632967.IP)
  2334. # [19:09] <mounir> edmorley: i already wear a fedora hat of i don't remember what
  2335. # [19:10] <Ms2ger> French Fedora of Fail
  2336. # [19:10] <WeirdAl> OK, let me try again... for Mac, what does XULRunner's XUL.framework have that the SDK's bin directory doesn't?
  2337. # [19:10] * Joins: daoberes (donna@D2B84AF4.C749D475.1139E686.IP)
  2338. # [19:11] * Joins: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP)
  2339. # [19:11] <firebot> Check-in: http://hg.mozilla.org/mozilla-central/rev/f9fbee492a5c - Mounir Lamouri - Backout 23a0762a0dd6 because of bustage. a=backout
  2340. # [19:11] * Quits: Cwiiis (cwiiis@88F51059.F3BBB17D.144F44FA.IP) (Quit: Ex-Chat)
  2341. # [19:11] * Joins: Cwiiis (cwiiis@88F51059.F3BBB17D.144F44FA.IP)
  2342. # [19:11] * Quits: brambles (brambles@4CBAB088.F3076E90.1822ACA6.IP) (Ping timeout)
  2343. # [19:12] * Joins: jimb (user@moz-F4EC06CC.hsd1.or.comcast.net)
  2344. # [19:12] * Quits: jacek (jacek@moz-5D707D3B.psi.wroc.pl) (Quit: Konversation terminated!)
  2345. # [19:12] * Joins: anant (anant@moz-BBE3ABD.mv.mozilla.com)
  2346. # [19:13] * Quits: smooney_ (smooney@moz-BBE3ABD.mv.mozilla.com) (Quit: smooney_)
  2347. # [19:13] * Quits: janv (varga@moz-6D58DC19.flarion.as5628.telecom.sk) (Ping timeout)
  2348. # [19:13] * Joins: janv (varga@moz-6D58DC19.flarion.as5628.telecom.sk)
  2349. # [19:14] * Joins: terrence (terrence@moz-BBE3ABD.mv.mozilla.com)
  2350. # [19:14] * Joins: bsmith (bsmith@moz-BBE3ABD.mv.mozilla.com)
  2351. # [19:15] * Joins: bbondy_ (bbondy@moz-C9962B2.home.cgocable.net)
  2352. # [19:15] * Joins: smooney (smooney@moz-BBE3ABD.mv.mozilla.com)
  2353. # [19:15] * glob is now known as glob|away
  2354. # [19:15] * glob|away is now known as glob
  2355. # [19:15] <Ms2ger> AryehGregor, some people claim that r= is enforced in commit messages, but that's a lie
  2356. # [19:15] <Ms2ger> It's the bug number that's enforced
  2357. # [19:16] * Joins: yuan (ywang@moz-6A0DF30E.hsd1.ca.comcast.net)
  2358. # [19:17] * Quits: bbondy (bbondy@moz-C9962B2.home.cgocable.net) (Ping timeout)
  2359. # [19:17] * bbondy_ is now known as bbondy
  2360. # [19:17] <cpeterson> why not enforce r= too?
  2361. # [19:19] <ejpbruel> how do i run all the tests in mozilla-central again?
  2362. # [19:19] * Joins: Archaeopteryx (itsme@moz-756328DB.cust.telecolumbus.net)
  2363. # [19:20] <mbrubeck> ejpbruel: locally, or on the buildbot machines?
  2364. # [19:20] <ejpbruel> mbrubeck: locally
  2365. # [19:20] * Joins: brambles (brambles@4CBAB088.F3076E90.1822ACA6.IP)
  2366. # [19:21] <mbrubeck> ejpbruel: https://developer.mozilla.org/en/Running_automated_tests has the run-down
  2367. # [19:21] <ejpbruel> mrbrubeck: thanks!
  2368. # [19:22] <mbrubeck> There's not a single command to run all tests; you'll have to run down the list from that page.
  2369. # [19:22] <ejpbruel> thats not a problem :)
  2370. # [19:22] <ejpbruel> i
  2371. # [19:22] <ejpbruel> i just want to make sure the tests run locally before putting up a patch for r?
  2372. # [19:23] * Joins: jduell (jduell@moz-2D9EDA98.lightspeed.sntcca.sbcglobal.net)
  2373. # [19:23] * Quits: qheaden (qah661@moz-67E02157.nrflva.fios.verizon.net) (Quit: Leaving)
  2374. # [19:24] <myk> ejpbruel: alternately, use the tryserver!
  2375. # [19:24] <jwir3> during reflow, what is the difference between nsHTMLReflowState::availableHeight/availableWidth, and nsHTMLReflowState::ComputedHeight()/ComputedWidth()?
  2376. # [19:25] <myk> ejpbruel: it'll run all the tests for you, and on all platforms in case there's a chance your change affects a platform for which you don't have your own test machine
  2377. # [19:25] * Joins: ekr (ekr@moz-D7997EC8.rtfm.com)
  2378. # [19:25] * Quits: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP) (Quit: jfkthame)
  2379. # [19:26] <ekr> Is there a standard publish/subscribe interface floating around the mozilla codebase somewhere? I'm thinking something like signals/slots
  2380. # [19:26] * Ms2ger wonders what's on khuey's whiteboard
  2381. # [19:26] * liuche|food is now known as liuche
  2382. # [19:26] <Ms2ger> cpeterson, that was out of scope for the bug that implemented the hook
  2383. # [19:27] * edransch-afk is now known as edransch
  2384. # [19:27] <cpeterson> Ms2ger, good point. I was just asking in general.
  2385. # [19:27] <dholbert> jwir3, ComputedHeight/Width is directly from the 'width'/'height' properties on the element (with percentages resolved etc)
  2386. # [19:27] <Ms2ger> Feel free to try to get consensus on .platform :)
  2387. # [19:28] <dholbert> jwir3, whereas availableWidth/Height is the space that the parent has available for us (which could be e.g. unconstrained)
  2388. # [19:28] <@smaug> ekr: nothing like QT signals/slots
  2389. # [19:28] <@smaug> but generic notification mechanism, yes
  2390. # [19:28] * Joins: pcwalton (pcwalton@moz-7B0110AD.mv.mozilla.com)
  2391. # [19:28] <ekr> smaug: ok, can you point me at them? I can take a look and try to see if they make sense for what I need
  2392. # [19:28] <@smaug> ekr: nsIObserverService
  2393. # [19:28] <ekr> Good. Thanks
  2394. # [19:28] <jwir3> dholbert: Hm, so if I want to detect whether or not a frame has width or max-width specified in css, I'd use ComputedWidth()?
  2395. # [19:29] <dholbert> jwir3, ComptuedWidth has max-width already taken into consideration, IIRC
  2396. # [19:29] <dholbert> jwir3, (not that that answers your question)
  2397. # [19:29] * Joins: jamesr_ (jamesr@16B54CE2.D6CCE4AE.77834EAA.IP)
  2398. # [19:29] <ekr> smaug: is the performance on this reasonable enough that I could use it for, e.g., packet delivery/readability?
  2399. # [19:29] <dholbert> jwir3, what do you mean "specified in CSS"? just non-auto?
  2400. # [19:29] <jwir3> dholbert: yes.
  2401. # [19:29] <dholbert> jwir3, you'd want to actually use GetStylePosition()->mWidth or whatever, I think
  2402. # [19:29] * Quits: dcamp (dave@9E727688.17C2F9C.163DC5C6.IP) (Quit: Linkinus - http://linkinus.com)
  2403. # [19:30] <jwir3> mm. ok
  2404. # [19:30] <jwir3> dholbert: cool, thanks.
  2405. # [19:30] <@smaug> ekr: which packet delivery?
  2406. # [19:30] <@smaug> and what readability ?
  2407. # [19:30] <dholbert> that should give you a nsStyleCoord which would have GetUnit() == eStyleUnit_Auto or something like that
  2408. # [19:30] <dholbert> (jwir3, ^)
  2409. # [19:30] <dholbert> jwir3, np!
  2410. # [19:30] * Joins: dcamp (dave@9E727688.17C2F9C.163DC5C6.IP)
  2411. # [19:32] <ekr> smaug: the specific context here is interfacing the media processing engine to the network stack.
  2412. # [19:32] <@bz> jwir3: what are you actually trying to detect?
  2413. # [19:32] <ekr> so by packets I mean RTP.
  2414. # [19:33] * Joins: mayhemer__ (Miranda@B3D46202.F87A741B.F23860FD.IP)
  2415. # [19:33] <@smaug> hmm, necko has all sorts of notifications, I think
  2416. # [19:33] <@smaug> but I doubt they are good for that kind of thing
  2417. # [19:33] <jwir3> bz: In nsColumnSetFrame::ChooseColumnStrategy(), I'm trying to determine if a column set frame has a specified max-width or width AND a specified max-height or height (because then I need to balance columns, regardless of what is specified in column-fill)
  2418. # [19:33] <ekr> ok, I'll dig around
  2419. # [19:33] <jwir3> in order to properly add overflow columns
  2420. # [19:34] <@smaug> ekr: you probably want to ask jduell / mayhemer__ / bz
  2421. # [19:34] <@bz> jwir3: is that stuff based on specified value or computed value?
  2422. # [19:34] <@bz> jwir3: what does the spec actually say?
  2423. # [19:34] <mayhemer__> ekr: yes?
  2424. # [19:35] * Quits: bdahl (bdahl@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2425. # [19:35] <jwir3> bz: it just says "a declaration that constrains the column height (e.g., using ‘height’ or ‘max-height’). In this case, additional column boxes are created in the inline direction "
  2426. # [19:35] <jwir3> bz: so, I think it's based on the specified value
  2427. # [19:35] <@bz> so...
  2428. # [19:35] * Joins: rniwa (rniwa@5CA6DC39.C60FE7DC.4065847B.IP)
  2429. # [19:35] <@bz> if you have "height: 50%"
  2430. # [19:35] * Joins: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP)
  2431. # [19:35] <@bz> but parent has height:auto
  2432. # [19:36] <ekr> mayhemer__: I'm working on the RTCWEB transport subsystem and I'm going to need to thread together the networking stack (DTLS, ICE) and the WebRTC A/V processing stack. This means that naturally lower layers are going to want to notify upper layers that a packet has arrived and that they should process it.
  2433. # [19:36] <@bz> then per spec the computed value is "auto"
  2434. # [19:36] <ekr> I'm wondering if there is some standard set of mechanisms for this sort of thing.
  2435. # [19:36] <@bz> though that may not be what we store in the style struct....
  2436. # [19:36] <@bz> (there's some discussion about what the exact computed value should be)
  2437. # [19:36] <jwir3> oh
  2438. # [19:37] <@bz> in any case, if you have a % height but the parent has height auto, then the % height is certainly ignored when rendering
  2439. # [19:37] <ekr> signals/slots would be an example of such a mechanism
  2440. # [19:37] <@bz> (modulo quirks mode)
  2441. # [19:37] <@bz> this is in reflow?
  2442. # [19:37] <jwir3> bz: yes
  2443. # [19:37] <@bz> it might be best to just check the mComputedHeight on the reflow state
  2444. # [19:37] <@bz> and the mComputedMaxHeight
  2445. # [19:38] <jwir3> ok
  2446. # [19:38] * Quits: jlebar|mac (~jlebarmac@moz-AAEFBBD1.gw.connect.com.au) (Connection reset by peer)
  2447. # [19:38] * Joins: jlebar|mac (~jlebarmac@moz-AAEFBBD1.gw.connect.com.au)
  2448. # [19:39] <jwir3> bz: I was doing that originally, but for some reason, it was giving me a aReflowState.mComputedWidth != NS_INTRINSICSIZE, even when the width wasn't specified in either an element or its parents...
  2449. # [19:39] * Joins: bdahl (bdahl@moz-BBE3ABD.mv.mozilla.com)
  2450. # [19:39] <@bz> well
  2451. # [19:40] <@bz> you can't do that for width
  2452. # [19:40] <@bz> just for height
  2453. # [19:40] <jwir3> ah
  2454. # [19:40] <@bz> for width, you have a problem
  2455. # [19:40] <@bz> because widths are input, recall?
  2456. # [19:40] <@bz> so when you enter reflow you _always_ have a computed width
  2457. # [19:40] * Quits: gozala (gozala@moz-D5BED6F9.dsl.dynamic.sonic.net) (Quit: Leaving.)
  2458. # [19:40] <jwir3> ahh
  2459. # [19:40] <@bz> in terms of mComputedWidth
  2460. # [19:40] * Quits: Asa (asa@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  2461. # [19:40] <@bz> which is really the used width, sorta
  2462. # [19:41] <@bz> you quoted what the spec says about height above
  2463. # [19:41] <@bz> what does it say about width?
  2464. # [19:41] * Quits: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP) (Quit: jfkthame)
  2465. # [19:42] * rail is now known as rail-lunch
  2466. # [19:42] <mayhemer__> ekr: are you getitng my private messages?
  2467. # [19:43] * Joins: cviecco_ (cviecco@A01051A9.6F669779.3D1CA460.IP)
  2468. # [19:44] * Joins: Asa (asa@moz-7B0110AD.mv.mozilla.com)
  2469. # [19:44] * jimm-lunch is now known as jimm
  2470. # [19:44] <jwir3> bz: hm, it doesn't really specify anything about width wrt to overflow.
  2471. # [19:45] <jwir3> bz: but, in order for a multicol element to have overflow, it needs to have constrained width and height.
  2472. # [19:45] * catlee-lunch is now known as catlee-buildduty
  2473. # [19:45] <jwir3> bz: or constrained number of columns and constrained height
  2474. # [19:46] <@bz> well
  2475. # [19:46] <@bz> the width is always "constrained"
  2476. # [19:46] <@bz> in that you determine it before laying out your kids
  2477. # [19:46] * Quits: pascalc (chatzilla@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Ping timeout)
  2478. # [19:46] <@bz> no?
  2479. # [19:46] <nemo> heh. webglstats.com - Android - 93.3% no webgl. Android+Firefox? 1.7% no webgl.
  2480. # [19:47] <@bz> nemo: not surprising
  2481. # [19:47] <nemo> probably I pushed up that 1.7% slightly testing the fact that Firefox nightlies have no webgl on my Acer A500
  2482. # [19:47] * artur-lunch is now known as artur
  2483. # [19:47] * glob is now known as glob|away
  2484. # [19:48] <jwir3> bz: well, maybe I'm misinterpreting. if we have width: auto and a constrained height, is it possible to have overflow?
  2485. # [19:48] <nemo> huh. I wonder why Mac has so many more WebGL users still without access to floating point textures. Linux, could just be people stuck on distro builds. But OSX should be autoupdating
  2486. # [19:49] <nemo> s/WebGL users/WebGL Firefox users/
  2487. # [19:49] <mkaply> This compile error is for DirectX 10, isn't it?
  2488. # [19:49] <mkaply> http://pastebin.mozilla.org/1577197
  2489. # [19:49] <@bz> jwir3: for the columns case specifically, or for a general block?
  2490. # [19:49] <@bz> jwir3: for a general block, if width:auto and height is constrained you will overflow vertically
  2491. # [19:50] <@bz> jwir3: if the text is too long
  2492. # [19:50] <mkaply> actually, no, checking for checking for posix_fallocate
  2493. # [19:51] <jwir3> bz: hm, no I'm thinking specifically for the columns case. In that case, the columns should fill in the inline direction after overflowing in the block direction.
  2494. # [19:51] * Joins: mib_9vo1ar (Mibbit@862F7C01.E9F5178F.1B0D2DF7.IP)
  2495. # [19:51] <@bz> jwir3: and they'll overflow the block horizontally, then
  2496. # [19:52] <jwir3> bz: but if the width isn't specified, won't it just continue to grow?
  2497. # [19:52] * Quits: mib_9vo1ar (Mibbit@862F7C01.E9F5178F.1B0D2DF7.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2498. # [19:52] * philor is now known as philor|away
  2499. # [19:53] <nemo> huh. webglstats.com says I don't have pointerlock
  2500. # [19:53] <nemo> I thought that had been added to firefox nightlies...
  2501. # [19:53] * nemo checks hacks.mozilla.org again
  2502. # [19:53] <@bz> jwir3: no
  2503. # [19:53] <@bz> jwir3: width will be computed to the parent width
  2504. # [19:54] <@bz> jwir3: by default
  2505. # [19:54] * Joins: bb10 (bb10@moz-C7B05616.org)
  2506. # [19:54] <@bz> jwir3: lemme give you a spec link
  2507. # [19:54] <jwir3> bz: ok
  2508. # [19:54] <@bz> http://www.w3.org/TR/CSS21/visudet.html#Computing_widths_and_margins
  2509. # [19:54] <@bz> e.g. 10.3.3
  2510. # [19:54] <@bz> note that the width does not depend on the kids
  2511. # [19:54] * Quits: garnacho (carlos@moz-EA2D0541.dyn.user.ono.com) (Ping timeout)
  2512. # [19:55] * Joins: pranavrc (pranavrc@C04A32B.1137763F.C28326FD.IP)
  2513. # [19:55] <mbrubeck> nemo: Looks like webglstats.com needs to be updated; it is looking for navigator.pointer.lock instead of document.(moz|webkit)RequestPointerLock
  2514. # [19:55] <@bz> Compare to 10.6.3 (height for blocks in normal flow), which does depedn on kids
  2515. # [19:55] <@bz> er, depend
  2516. # [19:55] <nemo> mbrubeck: ahhah
  2517. # [19:55] <jwir3> bz: what does "non-replaced" mean in this context?
  2518. # [19:56] <@bz> jwir3: "renders its kids"
  2519. # [19:56] <jwir3> oh ok
  2520. # [19:56] <@bz> jwir3: a replaced block would be <img style="display: block">
  2521. # [19:56] <bjacob> mbrubeck: reported to the maintainer
  2522. # [19:56] <jwir3> oh ok
  2523. # [19:56] <mbrubeck> thanks, bjacob!
  2524. # [19:57] * Joins: bmoss (bmoss@93B4174C.6E78B65D.CDBA6951.IP)
  2525. # [19:57] <jwir3> bz: ok, I think I understand. thank you.
  2526. # [19:57] <jwir3> bz: I'll read through this and see if I have more questions. ;)
  2527. # [19:57] * Quits: WeirdAl (chatzilla@moz-D461843.ask.info) (Quit: ChatZilla 0.9.88.2 [Firefox 11.0/20120312181643])
  2528. # [19:57] <@bz> jwir3: sounds good
  2529. # [19:58] * Joins: jammink (textual@moz-BBE3ABD.mv.mozilla.com)
  2530. # [19:58] <taras> bz: got time to talk about timeouts and stuff?
  2531. # [19:59] <@bz> taras: ok
  2532. # [19:59] * Quits: brambles (brambles@4CBAB088.F3076E90.1822ACA6.IP) (Ping timeout)
  2533. # [20:00] <taras> bz: so first thing, i think that data shows we need to suspend tabs
  2534. # [20:00] * glob|away is now known as glob
  2535. # [20:00] <taras> slow them down until they are effectively suspended(depending on activity)
  2536. # [20:00] <@bz> when you say "suspend"
  2537. # [20:00] <beltzner> jst, jprmc: if I was looking to connect someone from DropBox to someone on the Gecko team, who'd be best?
  2538. # [20:01] <@bz> what do you mean?
  2539. # [20:01] <@bz> stop firing timeouts in them altogether?
  2540. # [20:01] <taras> bz: i mean unload the page via session-restore.we need this to improve footprint anyway
  2541. # [20:02] * Joins: brambles (brambles@4CBAB088.F3076E90.1822ACA6.IP)
  2542. # [20:02] * Joins: Enn (enn@moz-DB6467E3.cpe.net.cable.rogers.com)
  2543. # [20:02] <@bz> ok
  2544. # [20:02] * Quits: brendan (brendaneic@moz-A286C218.hsd1.ca.comcast.net) (Quit: brendan)
  2545. # [20:02] <taras> but yeah, we'd effectively stop timeouts from firing before we get there
  2546. # [20:02] <jst> beltzner: depends on what the issues are, but I could be a point of contact and funnel them the right way if I'm not it
  2547. # [20:02] <@bz> so this is after a page has been in the background for a while
  2548. # [20:02] <taras> yeah
  2549. # [20:02] <@bz> That seems somewhat reasonable to me
  2550. # [20:03] <taras> before that we need to do some sort of exponential timeout decay
  2551. # [20:03] <@bz> (except insofar as session store is datalossy, of course....)
  2552. # [20:03] * Quits: rniwa (rniwa@5CA6DC39.C60FE7DC.4065847B.IP) (Quit: rniwa)
  2553. # [20:03] <beltzner> jst: mostly they're looking to ensure that they can support whatever data format(s) end up being used by web application developers; happy to connect the guy with you and let him know it might be redirected
  2554. # [20:03] <@bz> exponential timeout decay is harder
  2555. # [20:03] <taras> yeah there are some tricky things there..but lets ignore them
  2556. # [20:03] <beltzner> thanks!
  2557. # [20:03] <@bz> in terms of not breaking the web
  2558. # [20:03] <jst> beltzner: np
  2559. # [20:03] <@bz> though if the decay constant is smaller than the one for refresh driver it might be ok
  2560. # [20:03] <@bz> as in, if it decays slowly enough
  2561. # [20:04] * sheppy is now known as sheppy-afk
  2562. # [20:04] <taras> bz: i'm not sure, it basically models a really overloaded computer
  2563. # [20:04] <@bz> over a course of minutes to tens of minutes, not seconds
  2564. # [20:04] <taras> yeah
  2565. # [20:04] * Quits: DeathWolf (DeathWolf@moz-7EDF16F7.ovh.net) (Ping timeout)
  2566. # [20:04] <@bz> fwiw
  2567. # [20:04] <@bsmedberg> gabor: in https://bugzilla.mozilla.org/attachment.cgi?id=615654&action=edit what is the difference between this new macro and NS_IMPL_QUERY_BODY_AMBIGUOUS?
  2568. # [20:05] <@bz> it doesn't matter what it models
  2569. # [20:05] * Parts: josh (josh@moz-2EE66546.nyc.res.rr.com)
  2570. # [20:05] <@bz> or how reasonable the behavior is
  2571. # [20:05] <@bz> what matters is:
  2572. # [20:05] <@bz> 1) Does it break sites from the user's point of view?
  2573. # [20:05] <@bz> 2) If so, how do we weigh that against the benefits?
  2574. # [20:05] <taras> so in my profile
  2575. # [20:05] <@bz> (obviously sane behaviors or models that minimize #1 are a plus, but sites can break on totally sane behavior)
  2576. # [20:05] <taras> biggest sources of trouble
  2577. # [20:06] <taras> are etherpad(by far), twitter and zimbra
  2578. # [20:06] * Joins: DeathWolf (DeathWolf@moz-7EDF16F7.ovh.net)
  2579. # [20:06] <taras> conceptually they would just poll the network less often
  2580. # [20:06] <taras> (and speed up if the user checks them out)
  2581. # [20:06] <taras> and you'd run whatever was qued up when switching to the tab
  2582. # [20:07] <taras> so it should catch up fairly quickly
  2583. # [20:07] * Quits: cviecco_ (cviecco@A01051A9.6F669779.3D1CA460.IP) (Input/output error)
  2584. # [20:07] * Quits: past (past@moz-F1965953.dsl.dyn.forthnet.gr) (Input/output error)
  2585. # [20:07] <@bz> so the problem are sites that implement some sort of delay timers with setTimeout
  2586. # [20:07] <@bz> for polling, throttling is not a problem
  2587. # [20:07] <Ms2ger> gkw, but I wanted fatal assertions in 1.9.1!
  2588. # [20:07] <@bz> for sites that want to delay for 2 mins by running a timer every 500ms 240 times....
  2589. # [20:07] <@bz> throttling totally changes behavior
  2590. # [20:07] <gkw> Ms2ger: 1.9.1 is... ancient
  2591. # [20:07] * Joins: rniwa (rniwa@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2592. # [20:07] <gkw> and i wanted to clear my request queue anywayz
  2593. # [20:08] * Quits: @smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi) (Ping timeout)
  2594. # [20:08] * Joins: smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi)
  2595. # [20:08] * ChanServ sets mode: +o smaug
  2596. # [20:08] * mak|afk is now known as mak
  2597. # [20:09] <@bz> (yes, those sites are slightly broken anyway because they assume timers fire kinda on time)
  2598. # [20:09] <taras> right
  2599. # [20:09] <taras> anyway, it feels like we are already a timeout scheduler
  2600. # [20:09] <@bz> sure
  2601. # [20:09] * Quits: Asa (asa@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  2602. # [20:10] * rail-lunch is now known as rail
  2603. # [20:10] <taras> we need to act like one :)
  2604. # [20:10] <taras> so the other thing we need
  2605. # [20:10] <prazuber> hi, does anyone know is there a way to simulate a click on non-input elements?
  2606. # [20:10] <taras> is to jump the queue
  2607. # [20:10] <taras> based on chrome/content + tab activity
  2608. # [20:10] * jorendorff-coffee is now known as jorendorff
  2609. # [20:11] * Parts: ibarlow (ibarlow@F2D29657.F60B0462.67AC9B1.IP)
  2610. # [20:11] <taras> ie active tabs or chrome functions should take priority over background tabs..they do not atm
  2611. # [20:11] <taras> (not that i noticed)
  2612. # [20:11] * Joins: jviereck (Adium@moz-26045BE5.dclient.hispeed.ch)
  2613. # [20:11] * Quits: Waldo (waldo@C3A29290.52D01038.50A7E6A6.IP) (Quit: bbl)
  2614. # [20:12] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  2615. # [20:12] * Joins: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP)
  2616. # [20:13] * Quits: JeroenDeDauw (j@moz-2F0EF57A.dip.t-dialin.net) (Ping timeout)
  2617. # [20:13] * tbsaunde|afk is now known as tbsaunde
  2618. # [20:13] <@bz> taras: we don't do global nsITimer scheduling, you mean?
  2619. # [20:13] <Mossop> What kind of preprocessor does Makefile.in go through?
  2620. # [20:13] * Quits: @smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi) (Connection reset by peer)
  2621. # [20:14] <rillian_lime> Mossop: autoconf?
  2622. # [20:14] <@bz> taras: if we actually had sane concepts of per-page event queues
  2623. # [20:14] <@bz> taras: this would not be too bad
  2624. # [20:14] * philor|away is now known as philor
  2625. # [20:14] <@bz> taras: but right now we only have one event loop
  2626. # [20:14] <taras> yeah :)
  2627. # [20:14] <rillian_lime> @VARIABLE@ gets expanded based on the AC_SUBST(VARIABLE) values in configure.in
  2628. # [20:14] <@bz> taras: the right way to fix this is to have per-page event loops, imho
  2629. # [20:14] <taras> bz: that's exactly where we need to get
  2630. # [20:14] <Mossop> rillian_lime: What expands things like #ifdef?
  2631. # [20:14] <taras> well
  2632. # [20:14] <@bz> taras: we need that anyway to implement some parts of html5
  2633. # [20:15] <rillian_lime> Mossop: gnu make
  2634. # [20:15] <taras> bz: per-page event queues
  2635. # [20:15] <taras> not sure about loops
  2636. # [20:15] <@bz> taras: or something that can look like per-page event queues
  2637. # [20:15] <@bz> sure
  2638. # [20:15] <rillian_lime> Mossop: same with the include directives
  2639. # [20:15] <@bz> queues
  2640. # [20:15] * Quits: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  2641. # [20:15] <@bz> in fact we need several queues per page
  2642. # [20:15] <@bz> again, to implement html5 correctly
  2643. # [20:15] <rillian_lime> Mossop: http://www.gnu.org/software/make/manual/make.html#Conditional-Syntax
  2644. # [20:15] <taras> or a priority queue?
  2645. # [20:15] * taras is guessing
  2646. # [20:16] * Quits: taras (chatzilla@9E727688.17C2F9C.163DC5C6.IP) (No route to host)
  2647. # [20:16] <Mossop> rillian_lime: Why do some have # at the start and some don't? That doc suggests they shouldn't
  2648. # [20:16] * Joins: jrmuizel (jrmuizel@F2D29657.F60B0462.67AC9B1.IP)
  2649. # [20:16] * Joins: taras (chatzilla@9E727688.17C2F9C.163DC5C6.IP)
  2650. # [20:17] <taras> bz: ok i'll file a bug on this... i think having event queues is a fundamental building block for this
  2651. # [20:18] <@bz> taras: priority queue is not good enough for html5 spec, really
  2652. # [20:18] <@bz> taras: what that requires is the ability to suspend some, but not all, of the event queues associated to a page
  2653. # [20:18] <gabor> bsmedberg: the NS_GET_IID part... so in the ambigous the same interface might be implemented by more than one other interfaces/subclasses in the new macro, the interface we cast implements isupports by two sub interfaces
  2654. # [20:18] <@bz> taras: again, this can be emulated in all sorts of ways even with a single queue of course
  2655. # [20:18] <@khuey> gabor: pong
  2656. # [20:18] <taras> bz: cool, so is there a bug on this, or should i still file one?
  2657. # [20:19] <taras> bz: out of curiosity which html functionality requires this?
  2658. # [20:19] * Joins: smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi)
  2659. # [20:19] * ChanServ sets mode: +o smaug
  2660. # [20:19] * Joins: dao (dao@moz-94E18553.superkabel.de)
  2661. # [20:19] * Quits: jhk (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Connection reset by peer)
  2662. # [20:19] <gabor> khuey: so I was wondering since you work on windows as well... how do you deal with the problem that in xpconnect stuff like JSObject and JSString are not defined while debugging?
  2663. # [20:20] <@bz> taras: not sure offhand about existing bugs
  2664. # [20:20] <taras> ok, i'll file
  2665. # [20:20] <@bz> taras: alert, confirm, prompt, sync XHR, showModalDialog, etc
  2666. # [20:20] <taras> hmm
  2667. # [20:20] <rillian_lime> Mossop: I assumed your '#' was a typo. that's not make (or autoconf) syntax. It's a comment. example?
  2668. # [20:20] <taras> to do event filtering
  2669. # [20:20] <taras> gotcha
  2670. # [20:20] <@khuey> gabor: very painfully
  2671. # [20:20] <@bz> taras: right
  2672. # [20:20] * Quits: Mossop (mossop@moz-69D0FE2F.dsl.dynamic.sonic.net) (Ping timeout)
  2673. # [20:20] <taras> thanks bz, that helped a lot
  2674. # [20:21] <@bz> no problem
  2675. # [20:21] * glob is now known as glob|away
  2676. # [20:22] * Joins: Asa (asa@moz-BBE3ABD.mv.mozilla.com)
  2677. # [20:22] <gabor> khuey: :))) I was thinking about some solution for windows to ease the pain instead of switching to gdb... one solution could be to hack visual studio, I did it once, for custom std container classes...
  2678. # [20:23] * Joins: JonathanS (JonathanS@17EDFC35.8737F162.521902B0.IP)
  2679. # [20:23] <gabor> gabor: the other is that I simply build things for debugging with including everything and their grandmother...
  2680. # [20:23] * Joins: Mossop (mossop@moz-69D0FE2F.dsl.dynamic.sonic.net)
  2681. # [20:23] <gabor> s/gabor/khuey
  2682. # [20:23] <gabor> khuey: but if you have developped any technique, I would be glad to learn about it
  2683. # [20:23] <rillian_lime> Mossop: in the spot checks I've looked at, '#if*' is a commented-out gnu make conditional
  2684. # [20:24] <@khuey> gabor: I have not, unfortunately
  2685. # [20:24] <@khuey> usually its not too much of a problem for me
  2686. # [20:24] * Joins: bent (chatzilla@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2687. # [20:24] <Ms2ger> dolske, that's exactly the reasoning, afaict
  2688. # [20:25] <Ms2ger> Whether that's fair or helpful, that's up to you
  2689. # [20:25] * Quits: Archaeopteryx (itsme@moz-756328DB.cust.telecolumbus.net) (Quit: Too much information in my brain driving me insane)
  2690. # [20:26] * Quits: Mossop (mossop@moz-69D0FE2F.dsl.dynamic.sonic.net) (Ping timeout)
  2691. # [20:26] * Quits: damons (gnubeard@moz-A41E6911.hsd1.ca.comcast.net) (Quit: damons)
  2692. # [20:26] * Joins: jhk (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  2693. # [20:26] * glob|away is now known as glob
  2694. # [20:27] <taras> janv: ping
  2695. # [20:27] * Quits: tonymec (tonymec@8B7AA4D0.9953D32C.277517C1.IP) (Ping timeout)
  2696. # [20:27] * Quits: yuan (ywang@moz-6A0DF30E.hsd1.ca.comcast.net) (Quit: yuan)
  2697. # [20:27] <janv> taras: pong
  2698. # [20:27] * Joins: Mossop (mossop@moz-347C3D31.dsl.dynamic.sonic.net)
  2699. # [20:28] * Joins: tonymec (tonymec@8B7AA4D0.9953D32C.277517C1.IP)
  2700. # [20:28] <taras> janv: how is 715378 going?
  2701. # [20:28] <janv> ah
  2702. # [20:29] <janv> taras: I was finishing work on the filehandle stuff
  2703. # [20:29] <taras> ok good
  2704. # [20:29] <taras> i think we need to morph that bug a bit
  2705. # [20:29] <taras> the set of bugs
  2706. # [20:29] * Quits: dao (dao@moz-94E18553.superkabel.de) (Quit: Leaving.)
  2707. # [20:29] <janv> taras: I was told to implement some kind of JS accounting
  2708. # [20:29] <taras> janv: see my discussion with bz above
  2709. # [20:30] <janv> ok
  2710. # [20:30] <taras> we need separate event queues
  2711. # [20:30] * Joins: gozala (gozala@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2712. # [20:30] <taras> to do anything useful
  2713. # [20:30] <taras> so might as well start there
  2714. # [20:30] <janv> hmm
  2715. # [20:31] * mburns is now known as mourns
  2716. # [20:31] <janv> taras: reading the discussion above ...
  2717. # [20:31] * Joins: cadecairos (cadecairos@F2D29657.F60B0462.67AC9B1.IP)
  2718. # [20:32] * Quits: jgriffin (jgriffin@93B4174C.6E78B65D.CDBA6951.IP) (Quit: jgriffin)
  2719. # [20:33] * vikash is now known as vikash|away
  2720. # [20:33] * Quits: @smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi) (Ping timeout)
  2721. # [20:34] * Joins: brendan (brendaneic@5F944954.BAC367B2.43362C16.IP)
  2722. # [20:34] * mourns is now known as mburhs
  2723. # [20:35] * Joins: smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi)
  2724. # [20:35] * ChanServ sets mode: +o smaug
  2725. # [20:35] * Quits: davidb (davidb@F2D29657.F60B0462.67AC9B1.IP) (Quit: davidb)
  2726. # [20:35] * Quits: kaze (kaze@moz-A2A3C9E6.vlan402.asr1.cdg3.gblx.net) (Quit: WeeChat 0.3.5)
  2727. # [20:36] * Joins: whimboo (whimboo@93B4174C.6E78B65D.CDBA6951.IP)
  2728. # [20:36] <janv> taras: so we're going to implement OS like features ? :)
  2729. # [20:36] <taras> we are the OS
  2730. # [20:36] <janv> taras: it sounds like a scheduler
  2731. # [20:36] <whimboo> smaug: shall I do a bisect on bug 746644?
  2732. # [20:36] * Quits: mayhemer__ (Miranda@B3D46202.F87A741B.F23860FD.IP) (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
  2733. # [20:36] <janv> ok
  2734. # [20:36] <taras> janv: yeah, we need a block layer for cache, indexeddb too :)
  2735. # [20:37] <taras> got our own memory management, ui ..what else is there in an os :)
  2736. # [20:37] <janv> sure
  2737. # [20:37] <@smaug> whimboo: that would be good. Though, perhaps bz notices something immediately
  2738. # [20:37] * hwine is now known as hwine|afk
  2739. # [20:37] * Joins: c0smikdebris (c0smikdebr@240C836F.5C6350CF.274D17D6.IP)
  2740. # [20:37] <janv> taras: but giving a priority to tabs is something new
  2741. # [20:37] <whimboo> smaug: oh k. so as I have seen it could be something in nsAString_internal
  2742. # [20:37] <janv> well
  2743. # [20:37] <whimboo> smaug: but not sure if i'm on the right track
  2744. # [20:38] <whimboo> smaug: so let me know if you need me
  2745. # [20:38] <taras> janv: there is not much point in cost accounting
  2746. # [20:38] <taras> if we can't do anything useful with that
  2747. # [20:39] <@smaug> whimboo: well, bisect would be good
  2748. # [20:39] <taras> having queues will let us do this better
  2749. # [20:39] * aki is now known as aki|food
  2750. # [20:39] <@smaug> whimboo: someone needs to do that at some point anyway
  2751. # [20:39] <janv> taras: I just wanted to ask
  2752. # [20:39] * Joins: Archaeopteryx (itsme@moz-756328DB.cust.telecolumbus.net)
  2753. # [20:39] * Quits: bbondy (bbondy@moz-C9962B2.home.cgocable.net) (Quit: Going offline, see ya! (www.adiirc.com))
  2754. # [20:39] * Quits: davidillsley (chatzilla@moz-6FDCDDC6.range86-160.btcentralplus.com) (Client exited)
  2755. # [20:39] * Quits: jhk (jiggy@8E6C34C1.A3F9767A.1C37C358.IP) (Ping timeout)
  2756. # [20:39] * Joins: davidillsley (chatzilla@moz-6FDCDDC6.range86-160.btcentralplus.com)
  2757. # [20:39] <whimboo> smaug: k, so i will start with it now
  2758. # [20:39] <taras> janv: anyway, decide among yourselfs who should do this
  2759. # [20:39] * Joins: biesi (cbiesinger@EE9A5AA8.6B10AC3.E2F59BBC.IP)
  2760. # [20:40] <taras> just wanted to give you a headsup
  2761. # [20:40] <janv> ok
  2762. # [20:40] <janv> jst: did you follow the discussion with taras ?
  2763. # [20:40] <taras> janv: jons is on 715376
  2764. # [20:40] <taras> which is kind of the same thing, just poorly specified
  2765. # [20:40] * Joins: jhammel (jhammel@93B4174C.6E78B65D.CDBA6951.IP)
  2766. # [20:41] <janv> jst: he basicaly says, we don't need the JS accounting for now
  2767. # [20:41] * Joins: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP)
  2768. # [20:41] <taras> janv: i'm saying cost accounting is not super useful with a queue, so if we can use development resources to speed that up instead
  2769. # [20:42] <taras> it makes more sense
  2770. # [20:42] <taras> s/with/without/
  2771. # [20:42] * @khuey goes back to sleep
  2772. # [20:42] * khuey is now known as khuey|away
  2773. # [20:42] <janv> taras: ok, I'll discuss it with jst when he is available
  2774. # [20:44] * Quits: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP) (Quit: jfkthame)
  2775. # [20:45] * Quits: prazuber (prazuber@moz-8FDA4E25.savvy.volia.net) (Quit: )
  2776. # [20:45] * rhelmer_ is now known as rhelmer
  2777. # [20:47] <ddahl> dria: is there a link to the project page creation tool on the wiki? search seems to fail me
  2778. # [20:48] <dria> you mean like a feature page?
  2779. # [20:48] <dria> ddahl: https://wiki.mozilla.org/Features/Create_new
  2780. # [20:48] <ddahl> dria: correct, i need to make a new one
  2781. # [20:48] <ddahl> dria: thx!
  2782. # [20:48] * Joins: adev (Instantbir@moz-24EE697D.ictp.it)
  2783. # [20:48] <dria> :)
  2784. # [20:49] * Quits: adev (Instantbir@moz-24EE697D.ictp.it) (Input/output error)
  2785. # [20:49] * Joins: adev (Instantbir@moz-24EE697D.ictp.it)
  2786. # [20:49] * Quits: pranavrc (pranavrc@C04A32B.1137763F.C28326FD.IP) (Quit: Ping timeout: ∞)
  2787. # [20:49] * Joins: wlach_ (wlach@93B4174C.6E78B65D.CDBA6951.IP)
  2788. # [20:50] * Quits: adev (Instantbir@moz-24EE697D.ictp.it) (Quit: Instantbird -- http://www.instantbird.com)
  2789. # [20:50] <paul> Do we know how much cost "ineficient" selectors in web pages? How much they impact the perforance? Do we have any data?
  2790. # [20:50] * wlach_ is now known as wlach
  2791. # [20:50] * Joins: xakz (XaMaD@moz-4A5DD6F7.w92-135.abo.wanadoo.fr)
  2792. # [20:50] <paul> Also, there's this document: https://developer.mozilla.org/en/CSS/Writing_Efficient_CSS - which is 12 years old. Is it still relevant?
  2793. # [20:51] * Joins: damons (gnubeard@moz-BBE3ABD.mv.mozilla.com)
  2794. # [20:51] <Ms2ger> paul, nothing much changed
  2795. # [20:51] * Joins: bbondy (bbondy@moz-C9962B2.home.cgocable.net)
  2796. # [20:51] <Ms2ger> And it was last modified today
  2797. # [20:52] <paul> Ms2ger: look at the history
  2798. # [20:52] <paul> Ms2ger: https://developer.mozilla.org/index.php?title=en/CSS/Writing_Efficient_CSS&action=history
  2799. # [20:53] * Quits: paulproteus (quassel@rose.makesad.us) (Ping timeout)
  2800. # [20:54] <Ms2ger> Not sure why Paul Irish thinks that it's outdated
  2801. # [20:54] <Ms2ger> If he doesn't anything to back up that claim, that's just trolling, imo
  2802. # [20:55] * Quits: chrisccoulson (chr1s@moz-692D94C8.cust-3601.ip.static.uno.uk.net) (Quit: Ex-Chat)
  2803. # [20:55] * Quits: graememcc (chatzilla@moz-77A8A989.range86-147.btcentralplus.com) (Quit: ChatZilla 0.9.88.2 [Firefox 11.0/20120310193349])
  2804. # [20:55] <paul> Ms2ger: no no - he sent me a message - he just wants to understand if the page is still accurate
  2805. # [20:55] * Joins: gretchen (Mibbit@25831715.49876C00.D30E9BEF.IP)
  2806. # [20:55] <Ms2ger> Then he should review it and point out if anything is wrong
  2807. # [20:56] <paul> Ms2ger: he's asking if there are ways to profile the performance of selectors
  2808. # [20:56] <jduell> do we have any standard way in JS of converting an nsresult from an int into a human-readable string like 'NS_ERROR_UNEXPECTED'?
  2809. # [20:57] <biesi> jduell, does Components.results[yourint] work?
  2810. # [20:57] <Ms2ger> paul, sure, "ask dbaron"
  2811. # [20:57] * @bsmedberg doubts is
  2812. # [20:57] <@bsmedberg> it
  2813. # [20:57] * Joins: chrisccoulson (chr1s@moz-692D94C8.cust-3601.ip.static.uno.uk.net)
  2814. # [20:57] <paul> Ms2ger: I will
  2815. # [20:57] * Quits: dcamp (dave@9E727688.17C2F9C.163DC5C6.IP) (Quit: Leaving...)
  2816. # [20:58] * Joins: dcamp (dave@9E727688.17C2F9C.163DC5C6.IP)
  2817. # [20:58] <jduell> biesi: nope
  2818. # [20:59] <Mook_as> jduell: [s for (s in Components.results) if (Components.results[s] == Components.results.NS_ERROR_UNEXPECTED)][0] ? (obviously, use your actual number...)
  2819. # [20:59] * Joins: JeroenDeDauw (j@moz-2F0EF57A.dip.t-dialin.net)
  2820. # [20:59] * Quits: brambles (brambles@4CBAB088.F3076E90.1822ACA6.IP) (Ping timeout)
  2821. # [21:00] * Quits: gretchen (Mibbit@25831715.49876C00.D30E9BEF.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2822. # [21:00] * Joins: paulproteus (quassel@moz-E86A3B42.makesad.us)
  2823. # [21:00] * aki|food is now known as aki
  2824. # [21:01] * Quits: tonymec (tonymec@8B7AA4D0.9953D32C.277517C1.IP) (Ping timeout)
  2825. # [21:02] * Joins: tonymec (tonymec@8B7AA4D0.9953D32C.277517C1.IP)
  2826. # [21:02] * Quits: brendan (brendaneic@5F944954.BAC367B2.43362C16.IP) (Quit: brendan)
  2827. # [21:03] * Quits: Goldorak (chatzilla@4F3B0A5C.7BDA2E47.187A1082.IP) (Ping timeout)
  2828. # [21:03] * Joins: brambles (brambles@4CBAB088.F3076E90.1822ACA6.IP)
  2829. # [21:03] * Joins: Goldorak (chatzilla@4F3B0A5C.7BDA2E47.187A1082.IP)
  2830. # [21:03] * Quits: taras (chatzilla@9E727688.17C2F9C.163DC5C6.IP) (Ping timeout)
  2831. # [21:06] * AutomatedTester is now known as AutomatedTester|AFK
  2832. # [21:07] * Quits: Goldorak (chatzilla@4F3B0A5C.7BDA2E47.187A1082.IP) (Ping timeout)
  2833. # [21:07] * Joins: Goldorak (chatzilla@4F3B0A5C.7BDA2E47.187A1082.IP)
  2834. # [21:07] * Quits: Sander (chatzilla@moz-B871F4D3.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
  2835. # [21:08] * hwine|afk is now known as hwine
  2836. # [21:08] * Quits: kdcw (kdc@moz-F7413045.pk.shawcable.net) (Quit: HydraIRC -> http://www.hydrairc.com <- In tests, 0x09 out of 0x0A l33t h4x0rz prefer it :))
  2837. # [21:08] * Joins: florian (Instantbir@moz-87C33FDA.kimsufi.com)
  2838. # [21:09] * Quits: johanc (chatzilla@moz-D8A1AA43.bredband.comhem.se) (Ping timeout)
  2839. # [21:10] * Quits: janv (varga@moz-6D58DC19.flarion.as5628.telecom.sk) (Quit: This computer has gone to sleep)
  2840. # [21:10] * Joins: mccr8 (mccr8@moz-AAEFBBD1.gw.connect.com.au)
  2841. # [21:11] * joduinn is now known as joduinn-mtg
  2842. # [21:11] * merike|away is now known as merike
  2843. # [21:13] * mburhs is now known as mburns
  2844. # [21:14] * AutomatedTester|AFK is now known as AutomatedTester
  2845. # [21:15] * Quits: Goldorak (chatzilla@4F3B0A5C.7BDA2E47.187A1082.IP) (Ping timeout)
  2846. # [21:15] * Quits: brambles (brambles@4CBAB088.F3076E90.1822ACA6.IP) (Client exited)
  2847. # [21:15] * Joins: Goldorak (chatzilla@4F3B0A5C.7BDA2E47.187A1082.IP)
  2848. # [21:16] * Joins: yuan (ywang@moz-ABE49454.dsl.snfc21.pacbell.net)
  2849. # [21:18] * merike is now known as merike|away
  2850. # [21:18] * jhammel is now known as jhammel|lunch
  2851. # [21:19] * Joins: jhk (jiggy@8E6C34C1.A3F9767A.1C37C358.IP)
  2852. # [21:20] * jlund|lunch is now known as jlund
  2853. # [21:20] * Quits: cjones (cjones@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Ping timeout)
  2854. # [21:21] * Quits: Lucas (Lucas@moz-92C28224.hsd1.ca.comcast.net) (Ping timeout)
  2855. # [21:22] * Quits: wlach (wlach@93B4174C.6E78B65D.CDBA6951.IP) (Ping timeout)
  2856. # [21:23] * Quits: Goldorak (chatzilla@4F3B0A5C.7BDA2E47.187A1082.IP) (Ping timeout)
  2857. # [21:23] * Joins: wlach (wlach@93B4174C.6E78B65D.CDBA6951.IP)
  2858. # [21:23] * Quits: terrence (terrence@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2859. # [21:23] * Joins: Goldorak (chatzilla@4F3B0A5C.7BDA2E47.187A1082.IP)
  2860. # [21:24] * glob is now known as glob|away
  2861. # [21:24] * Quits: bmoss (bmoss@93B4174C.6E78B65D.CDBA6951.IP) (Ping timeout)
  2862. # [21:24] * Quits: gkw (Instantbir@moz-104CC309.mv.mozilla.com) (Quit: Instantbird -- http://www.instantbird.com)
  2863. # [21:24] * Quits: mdas (mdas@93B4174C.6E78B65D.CDBA6951.IP) (Quit: mdas)
  2864. # [21:25] * Quits: glob|away (glob@93B4174C.6E78B65D.CDBA6951.IP) (Quit: Leaving...)
  2865. # [21:25] * Joins: cjones (cjones@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2866. # [21:25] * Quits: whimboo (whimboo@93B4174C.6E78B65D.CDBA6951.IP) (Input/output error)
  2867. # [21:26] * AutomatedTester is now known as AutomatedTester|AFK
  2868. # [21:26] * Quits: wlach (wlach@93B4174C.6E78B65D.CDBA6951.IP) (Ping timeout)
  2869. # [21:27] * Quits: florian (Instantbir@moz-87C33FDA.kimsufi.com) (Ping timeout)
  2870. # [21:27] * Joins: davidb (davidb@471D72E.2257F909.F30C9E9E.IP)
  2871. # [21:27] * sheppy-afk is now known as sheppy
  2872. # [21:27] * Quits: bc (bc@93B4174C.6E78B65D.CDBA6951.IP) (Ping timeout)
  2873. # [21:27] * Joins: brambles (brambles@4CBAB088.F3076E90.1822ACA6.IP)
  2874. # [21:28] * Quits: edmorley (Mibbit@93B4174C.6E78B65D.CDBA6951.IP) (Quit: http://www.mibbit.com ajax IRC Client)
  2875. # [21:30] * jaws is now known as jaws|lunch
  2876. # [21:32] * Joins: Mnyromyr (Mnyromyr@B2521176.7B0892CB.771966F7.IP)
  2877. # [21:33] * rnewman|afk is now known as rnewman
  2878. # [21:34] * Joins: florian (Instantbir@moz-87C33FDA.kimsufi.com)
  2879. # [21:35] <nemo> ugh. now that hide http is failing even if I do ctrl-z to restore the original URL. besides. I'd only deleted the anchor portion
  2880. # [21:35] * nemo sobs
  2881. # [21:35] * Quits: Asa (asa@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2882. # [21:35] * Parts: daoberes (donna@D2B84AF4.C749D475.1139E686.IP)
  2883. # [21:36] * Joins: Asa (asa@moz-BBE3ABD.mv.mozilla.com)
  2884. # [21:38] * Joins: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP)
  2885. # [21:42] * Joins: pnemsak (Miranda@80CFE454.10D9684B.4F33160D.IP)
  2886. # [21:43] * Quits: Goldorak (chatzilla@4F3B0A5C.7BDA2E47.187A1082.IP) (Ping timeout)
  2887. # [21:43] * Joins: Goldorak (chatzilla@4F3B0A5C.7BDA2E47.187A1082.IP)
  2888. # [21:44] * Quits: Goldorak (chatzilla@4F3B0A5C.7BDA2E47.187A1082.IP) (Quit: ChatZilla 0.9.88-rdmsoft [XULRunner 1.9.0.17/2009122204])
  2889. # [21:45] <Mossop> bhearsum: ping
  2890. # [21:46] * Quits: JeroenDeDauw (j@moz-2F0EF57A.dip.t-dialin.net) (Quit: Leaving.)
  2891. # [21:47] <philor> hmm, click-to-play and a leak, that sounds awfully familiar
  2892. # [21:49] * Joins: bmoss (bmoss@93B4174C.6E78B65D.CDBA6951.IP)
  2893. # [21:50] * Quits: andreasn (andreasn@moz-8A84C28A.bredband.comhem.se) (Quit: Leaving.)
  2894. # [21:51] * AutomatedTester|AFK is now known as AutomatedTester
  2895. # [21:51] * Quits: jlebar|mac (~jlebarmac@moz-AAEFBBD1.gw.connect.com.au) (Connection reset by peer)
  2896. # [21:51] * Joins: jlebar|mac (~jlebarmac@moz-AAEFBBD1.gw.connect.com.au)
  2897. # [21:51] * rnewman is now known as rnewman|afk
  2898. # [21:52] * Quits: jlebar|mac (~jlebarmac@moz-AAEFBBD1.gw.connect.com.au) (Connection reset by peer)
  2899. # [21:52] * Joins: jlebar|mac (~jlebarmac@moz-AAEFBBD1.gw.connect.com.au)
  2900. # [21:53] * Quits: c0smikdebris (c0smikdebr@240C836F.5C6350CF.274D17D6.IP) (Quit: Computer has gone to sleep.)
  2901. # [21:53] * Joins: c0smikdebris (c0smikdebr@240C836F.5C6350CF.274D17D6.IP)
  2902. # [21:54] * Joins: dao (dao@moz-94E18553.superkabel.de)
  2903. # [21:55] * Quits: Cwiiis (cwiiis@88F51059.F3BBB17D.144F44FA.IP) (Quit: Ex-Chat)
  2904. # [21:55] * Quits: fs (Elchi3@B9C9103E.56629902.2EC4CA51.IP) (Quit: Leaving)
  2905. # [21:56] * Quits: clee (clee@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: clee)
  2906. # [21:56] * Joins: wg9s (wg9s@moz-7A06A043.hsd1.ma.comcast.net)
  2907. # [21:56] * Quits: jhammel|lunch (jhammel@93B4174C.6E78B65D.CDBA6951.IP) (Quit: meeting)
  2908. # [21:57] * Quits: Asa (asa@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2909. # [21:58] * Joins: glob (glob@93B4174C.6E78B65D.CDBA6951.IP)
  2910. # [22:00] * jlund is now known as jlund|mtg
  2911. # [22:00] * Joins: gkw (Instantbir@moz-104CC309.mv.mozilla.com)
  2912. # [22:01] <mcot> qq
  2913. # [22:01] <Ms2ger> rr
  2914. # [22:01] <mcot> what would be the EventTarget for the window load event
  2915. # [22:02] <mcot> nsCOMPtr<nsPIDOMWindow> doc(do_QueryInterface(eventTarget)); seems to fail
  2916. # [22:02] * jaws|lunch is now known as jaws
  2917. # [22:02] * Joins: taras (chatzilla@9E727688.17C2F9C.163DC5C6.IP)
  2918. # [22:02] * Joins: adev (Instantbir@moz-24EE697D.ictp.it)
  2919. # [22:03] * Quits: cjones (cjones@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Ping timeout)
  2920. # [22:03] * Joins: brendan (brendaneic@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2921. # [22:03] * Joins: jgriffin (jgriffin@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2922. # [22:03] * Quits: adev (Instantbir@moz-24EE697D.ictp.it) (Input/output error)
  2923. # [22:03] <gavin> "doc" is a weird name for an nsPIDOMWindow :)
  2924. # [22:04] * merike|away is now known as merike
  2925. # [22:04] <mcot> haha
  2926. # [22:04] <Ms2ger> That must be it!
  2927. # [22:04] <mcot> I changed the code to nsIDocument
  2928. # [22:04] <mcot> that seems to work
  2929. # [22:05] <Ms2ger> Then eventTarget is a document, and not a window, I guess
  2930. # [22:05] * Quits: joe_walker (joe_walker@moz-15405DDA.cable.virginmedia.com) (Quit: Leaving)
  2931. # [22:05] <mcot> yah that seems odd since the call is something like window.addEventListener("load"....
  2932. # [22:05] <@smaug> mcot: load event is dispatched to window, but target is document
  2933. # [22:05] <@smaug> blame history
  2934. # [22:05] <mcot> cool cool
  2935. # [22:05] <mcot> thanks
  2936. # [22:06] * Joins: Optimizer (Mibbit@6BCF5DE2.2E81CE6D.89AC0F27.IP)
  2937. # [22:06] * Joins: Asa (asa@moz-BBE3ABD.mv.mozilla.com)
  2938. # [22:08] * Joins: joe_walker (joe_walker@moz-15405DDA.cable.virginmedia.com)
  2939. # [22:09] * Joins: fabrice1 (fabrice@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2940. # [22:09] * Quits: tchevalier (Instantbir@moz-2E97FBBC.w90-48.abo.wanadoo.fr) (Quit: Instantbird -- http://www.instantbird.com)
  2941. # [22:09] * Quits: peterv (peterv@moz-85A72D66.access.telenet.be) (Ping timeout)
  2942. # [22:09] * Joins: tchevalier (Instantbir@moz-2E97FBBC.w90-48.abo.wanadoo.fr)
  2943. # [22:09] * Joins: clee (clee@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2944. # [22:09] * merike is now known as merike|away
  2945. # [22:10] * Joins: peterv (peterv@moz-85A72D66.access.telenet.be)
  2946. # [22:10] * Joins: adev (Instantbir@moz-24EE697D.ictp.it)
  2947. # [22:11] * nthomas|away is now known as nthomas
  2948. # [22:11] * Quits: adev (Instantbir@moz-24EE697D.ictp.it) (Quit: Instantbird -- http://www.instantbird.com)
  2949. # [22:11] * jwir3 is now known as jwir3|lunch
  2950. # [22:11] * Quits: bmoss (bmoss@93B4174C.6E78B65D.CDBA6951.IP) (Ping timeout)
  2951. # [22:11] <@bz> yeah
  2952. # [22:12] <@bz> target vs currenTarget, fwiw
  2953. # [22:12] * Parts: Optimizer (Mibbit@6BCF5DE2.2E81CE6D.89AC0F27.IP)
  2954. # [22:12] * Quits: jviereck (Adium@moz-26045BE5.dclient.hispeed.ch) (Quit: Leaving.)
  2955. # [22:12] * Joins: adev (Instantbir@moz-24EE697D.ictp.it)
  2956. # [22:12] * Joins: edmorley (Mibbit@93B4174C.6E78B65D.CDBA6951.IP)
  2957. # [22:12] * Joins: bmoss (bmoss@93B4174C.6E78B65D.CDBA6951.IP)
  2958. # [22:12] * Joins: cjones (cjones@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2959. # [22:12] * Quits: peterv (peterv@moz-85A72D66.access.telenet.be) (Connection reset by peer)
  2960. # [22:13] * Quits: Asa (asa@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  2961. # [22:13] * coop is now known as coop|mtg
  2962. # [22:13] * Quits: adev (Instantbir@moz-24EE697D.ictp.it) (Quit: Instantbird -- http://www.instantbird.com)
  2963. # [22:15] * Joins: mdas (mdas@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2964. # [22:16] * Joins: peterv (peterv@moz-85A72D66.access.telenet.be)
  2965. # [22:17] * Quits: peterv (peterv@moz-85A72D66.access.telenet.be) (Connection reset by peer)
  2966. # [22:18] * Joins: peterv (peterv@moz-85A72D66.access.telenet.be)
  2967. # [22:18] * Joins: adev (Instantbir@moz-24EE697D.ictp.it)
  2968. # [22:18] * Joins: automata (automata@8D23278A.C27CA109.16867D26.IP)
  2969. # [22:19] * Quits: adev (Instantbir@moz-24EE697D.ictp.it) (Quit: Instantbird -- http://www.instantbird.com)
  2970. # [22:19] * Joins: adev (Instantbir@moz-24EE697D.ictp.it)
  2971. # [22:19] * Quits: adev (Instantbir@moz-24EE697D.ictp.it) (Input/output error)
  2972. # [22:19] <bonnie_> helloo anyone
  2973. # [22:20] <bonnie_> i managed to mess up my local mercurial repository
  2974. # [22:20] <bonnie_> and well need some help
  2975. # [22:20] * Joins: Asa (asa@moz-BBE3ABD.mv.mozilla.com)
  2976. # [22:20] * Joins: adev (Instantbir@moz-24EE697D.ictp.it)
  2977. # [22:21] * Quits: ekr (ekr@moz-D7997EC8.rtfm.com) (Ping timeout)
  2978. # [22:22] <@smaug> bonnie_: in which way did you mess it up?
  2979. # [22:22] * Quits: dao (dao@moz-94E18553.superkabel.de) (Quit: Leaving.)
  2980. # [22:22] <bonnie_> ahhaha
  2981. # [22:22] <bonnie_> ok so i managed to create changesets that i didnt merge with the copy of mercurial central
  2982. # [22:22] <@smaug> if you tell the problem, someone might be able to help ;)
  2983. # [22:22] <bonnie_> did a partial merge
  2984. # [22:22] <bonnie_> hunks failed
  2985. # [22:22] <bonnie_> did a rollback
  2986. # [22:22] * Quits: adev (Instantbir@moz-24EE697D.ictp.it) (Quit: Instantbird -- http://www.instantbird.com)
  2987. # [22:23] <bonnie_> for the last transaction
  2988. # [22:23] <bonnie_> but still said i have local changes
  2989. # [22:23] * Joins: wlach (wlach@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  2990. # [22:23] <bonnie_> then hg added two files
  2991. # [22:23] <bonnie_> and well hg commit those files
  2992. # [22:23] * Joins: adev (Instantbir@moz-24EE697D.ictp.it)
  2993. # [22:23] <bonnie_> so now i have a tip changeset that includes the broken merge
  2994. # [22:24] <bonnie_> i want to do a diff between my first changeset which i have and my 3rd last changeset that includes the two files that i added which are at the tip
  2995. # [22:24] <bonnie_> smaug: does this make sense
  2996. # [22:25] <bonnie_> oh sorry the 3rd last changeset does not include the added files which are at the tip
  2997. # [22:25] <@smaug> so for the diff, couldn't you just do hg diff -r oldchangset -r newerchangeset
  2998. # [22:26] <bonnie_> well the problem is that the i need a diff between changeset lets say 0 to changeset 11 and the tip which has the files added
  2999. # [22:26] <bonnie_> but the problem is that the tip also has the committed broken merge
  3000. # [22:26] <bonnie_> i had my doubts when i was hitting commit!
  3001. # [22:27] * Joins: bc (bc@93B4174C.6E78B65D.CDBA6951.IP)
  3002. # [22:27] <bonnie_> the tip has the broken merge + the files added
  3003. # [22:27] <bonnie_> i just want the files added , i do not want the broken merge
  3004. # [22:27] * Joins: fredw (fredw@moz-B9C110E2.fbx.proxad.net)
  3005. # [22:27] <sfink> can you keep your added files on the side, update to back before the merge, blow away everything that happened, and re-add the files?
  3006. # [22:28] * Joins: kaze (kaze@moz-7048EEC1.w82-123.abo.wanadoo.fr)
  3007. # [22:28] <bonnie_> sfink that sort of sounds ok but how do i keep my added files on the side?
  3008. # [22:28] * Parts: fredw (fredw@moz-B9C110E2.fbx.proxad.net)
  3009. # [22:28] <sfink> copy them somewhere safe?
  3010. # [22:28] <bonnie_> ah ok
  3011. # [22:28] <bonnie_> i thought it was something special with mercurial
  3012. # [22:28] <bonnie_> i can do that
  3013. # [22:29] * Joins: dao (dao@moz-94E18553.superkabel.de)
  3014. # [22:29] <bonnie_> sfink and then do i just do some sort of a revert to the last changeset that i want?
  3015. # [22:29] * Joins: gandalf (zbraniecki@moz-F66A472.neoplus.adsl.tpnet.pl)
  3016. # [22:29] <sfink> so cp, then hg update -r (premerge) -C, hg strip 'roots(outgoing())', cp back, hg add, ...
  3017. # [22:29] <sfink> are you using mq, btw?
  3018. # [22:30] <bonnie_> sfink yes i am
  3019. # [22:30] <sfink> any patches applied?
  3020. # [22:30] * Joins: fryn|cloud (u3935@moz-160C58C6.com)
  3021. # [22:31] <bonnie_> sfink nope no patches applied
  3022. # [22:31] <sfink> ok, then I think you should be ok. You might want to copy your whole checkout as a backup first, though
  3023. # [22:32] <bonnie_> alrighty will do
  3024. # [22:32] <bonnie_> smaug sfink thanks will try this out
  3025. # [22:32] * Quits: bmoss (bmoss@93B4174C.6E78B65D.CDBA6951.IP) (Ping timeout)
  3026. # [22:32] * Quits: sfink (chatzilla@moz-BBE3ABD.mv.mozilla.com) (Quit: ChatZilla 0.9.86-rdmsoft [XULRunner 1.9.2.24/20111108102743])
  3027. # [22:32] * Joins: sfink (chatzilla@moz-BBE3ABD.mv.mozilla.com)
  3028. # [22:33] * Quits: smooney (smooney@moz-BBE3ABD.mv.mozilla.com) (Quit: smooney)
  3029. # [22:33] <bonnie_> smaug sfink will let you know how i go
  3030. # [22:33] <sfink> ok
  3031. # [22:33] <sfink> good luck
  3032. # [22:34] * Parts: adev (Instantbir@moz-24EE697D.ictp.it)
  3033. # [22:34] <bonnie_> thanks
  3034. # [22:35] <bonnie_> smaug: your html serialisation is going to have to wait a little, i'm just trying to create a diff for a review and get my mercurial fixed up.
  3035. # [22:35] * Quits: smontagu (chatzilla@moz-C89DD35E.red.bezeqint.net) (Ping timeout)
  3036. # [22:35] * Joins: jhammel (jhammel@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  3037. # [22:35] <@bsmedberg> cjones: ping
  3038. # [22:36] <sfink> actually, if you don't have any committed changes, you care about and you're making a backup anyway, why not just re-clone? Or clone -r (premerge) (corrupted-repo)?
  3039. # [22:36] * Quits: msucan (msucan-@754ABC71.319ADCBF.D7B372F7.IP) (Quit: .)
  3040. # [22:36] <edmorley> ehsan|extremely-busy: ah, you beat me to the merge :-)
  3041. # [22:36] <ehsan|extremely-busy> :)
  3042. # [22:37] <edmorley> ehsan|extremely-busy: want me to mark the bugs?
  3043. # [22:37] * Quits: rniwa (rniwa@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: rniwa)
  3044. # [22:37] * Quits: xakz (XaMaD@moz-4A5DD6F7.w92-135.abo.wanadoo.fr) (Ping timeout)
  3045. # [22:37] <@smaug> bonnie_: looks like someone else started to look at it
  3046. # [22:37] <ehsan|extremely-busy> edmorley: already done
  3047. # [22:37] <@smaug> jdm I think
  3048. # [22:37] <bonnie_> alrighty no worries then
  3049. # [22:38] <edmorley> ehsan|extremely-busy: cool, back to starring (mounir) :-)
  3050. # [22:38] * Joins: smooney (smooney@moz-BBE3ABD.mv.mozilla.com)
  3051. # [22:40] * Joins: rniwa (rniwa@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  3052. # [22:40] <Ms2ger> edmorley, slacker ;)
  3053. # [22:40] <ehsan|extremely-busy> edmorley: I'd appreciate if you can keep an eye on birch until next week (if you get a chance)
  3054. # [22:41] <bonnie_> sfink: i think the clone -r (premerge) of the corrupted repo does sound good. esp if i'm just going to add the new files again
  3055. # [22:41] <bonnie_> sfink: i'll try that out first.
  3056. # [22:42] * joduinn-mtg is now known as joduinn
  3057. # [22:42] * Quits: jdm (jdm@moz-15BB5FE6.cable.teksavvy.com) (Ping timeout)
  3058. # [22:43] <edmorley> ehsan|extremely-busy: sure, I've had it open this morning, will leave it in an app tab for the next week
  3059. # [22:43] * Quits: TheLink (TheLink@moz-C76AC80E.pools.arcor-ip.net) (Client exited)
  3060. # [22:45] * Quits: rniwa (rniwa@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Ping timeout)
  3061. # [22:46] <Ms2ger> "15-Year-Old Arrested For Hacking 259 Companies"
  3062. # [22:46] * Quits: wg9s (wg9s@moz-7A06A043.hsd1.ma.comcast.net) (Quit: Bye)
  3063. # [22:46] <Ms2ger> Alex was younger than that, right?
  3064. # [22:47] * Joins: Lucas (Lucas@moz-92C28224.hsd1.ca.comcast.net)
  3065. # [22:48] * Joins: terrence (terrence@moz-BBE3ABD.mv.mozilla.com)
  3066. # [22:49] * Quits: florian (Instantbir@moz-87C33FDA.kimsufi.com) (Ping timeout)
  3067. # [22:49] <ehsan|extremely-busy> edmorley: thanks
  3068. # [22:49] * Joins: pascalc (chatzilla@moz-446F98C8.fbxo.proxad.net)
  3069. # [22:50] * vikash|away is now known as vikash
  3070. # [22:50] * Joins: davehunt (davehunt@222DAD5A.15DA589D.7D0FCE04.IP)
  3071. # [22:50] * Quits: Misfit_Geek (MisfitGeek@moz-D14C5FCF.hsd1.nh.comcast.net) (Quit: Leaving)
  3072. # [22:51] * Joins: Misfit_Geek (MisfitGeek@moz-D14C5FCF.hsd1.nh.comcast.net)
  3073. # [22:51] <taras> Ms2ger: guess he got busted when he overflowed
  3074. # [22:51] * Quits: gozala (gozala@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: Leaving.)
  3075. # [22:51] * Quits: sheppy (sheppy@moz-F39D62DA.dhcp.kgpt.tn.charter.com) (Quit: sheppy)
  3076. # [22:52] * Joins: WG9s (bill@moz-7A06A043.hsd1.ma.comcast.net)
  3077. # [22:52] * Quits: c0smikdebris (c0smikdebr@240C836F.5C6350CF.274D17D6.IP) (Quit: Computer has gone to sleep.)
  3078. # [22:52] <Ms2ger> taras, of course, /. pointed out he had to be a script kiddie, because a real hacker would've gone for 256
  3079. # [22:52] <edmorley> heh
  3080. # [22:54] * Joins: pwalton (pcwalton@moz-BBE3ABD.mv.mozilla.com)
  3081. # [22:54] * Joins: rniwa (rniwa@5CA6DC39.C60FE7DC.4065847B.IP)
  3082. # [22:54] * Quits: Mnyromyr (Mnyromyr@B2521176.7B0892CB.771966F7.IP) (Quit: ChatZilla 0.9.86 [SeaMonkey 1.1.19/2010030105])
  3083. # [22:54] <gavin> this "The character encoding of the HTML document was not declared" error is pretty obnoxious
  3084. # [22:54] * joduinn is now known as joduinn-brb
  3085. # [22:55] <Ms2ger> gavin, you're doing it wrong :)
  3086. # [22:55] * Quits: pcwalton (pcwalton@moz-7B0110AD.mv.mozilla.com) (Ping timeout)
  3087. # [22:55] * pwalton is now known as pcwalton
  3088. # [22:55] <mbrubeck> I was 15 years old when http://community.seattletimes.nwsource.com/archive/?date=19960221&slug=2315184 happened
  3089. # [22:55] <gavin> Ms2ger: I'm not going to fix my tests's use of data:text/html,<body> just to work around it
  3090. # [22:56] <Ms2ger> mbrubeck, you admit?
  3091. # [22:56] * Quits: @bz (bzbarsky@moz-69B5879F.bstnma.fios.verizon.net) (Quit: Leaving)
  3092. # [22:56] <mbrubeck> umm... no comment. :)
  3093. # [22:56] <WG9s> mbrubeck: so I guess the news that Dick Clark died means more to me than to you?
  3094. # [22:56] * Joins: bz (bzbarsky@moz-69B5879F.bstnma.fios.verizon.net)
  3095. # [22:56] * ChanServ sets mode: +o bz
  3096. # [22:57] * Quits: pcwalton (pcwalton@moz-BBE3ABD.mv.mozilla.com) (Quit: pcwalton)
  3097. # [22:57] * Joins: pcwalton (pcwalton@moz-BBE3ABD.mv.mozilla.com)
  3098. # [22:57] * khuey|away is now known as khuey
  3099. # [22:58] <gavin> Ms2ger: also given that my document _does_ contain only ASCII, there's really nothing wrong with it
  3100. # [22:58] * khuey is now known as khuey|away
  3101. # [22:58] * Quits: stevee (Miranda@moz-BEBDF855.cable.virginmedia.com) (Quit: Miranda IM - Multi protocol instant messenger @ www.miranda-im.org)
  3102. # [22:58] <Ms2ger> It is when you add non-ASCII
  3103. # [22:58] <gavin> specualtive spammy warnings are bad
  3104. # [22:58] * Joins: rjohnson19 (chatzilla@moz-9148485F.hsd1.ma.comcast.net)
  3105. # [22:59] <@smaug> gavin: Bug 672453
  3106. # [22:59] * Joins: josh (josh@moz-2EE66546.nyc.res.rr.com)
  3107. # [22:59] * @smaug notes that his r+ had "We can try this, but I'm not sure whether this will stick."
  3108. # [23:00] * Quits: pcwalton (pcwalton@moz-BBE3ABD.mv.mozilla.com) (Quit: pcwalton)
  3109. # [23:02] * Joins: pcwalton (pcwalton@moz-BBE3ABD.mv.mozilla.com)
  3110. # [23:02] * Joins: bmoss (bmoss@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  3111. # [23:02] * Quits: Asa (asa@moz-BBE3ABD.mv.mozilla.com) (Ping timeout)
  3112. # [23:03] * Quits: bdahl (bdahl@moz-BBE3ABD.mv.mozilla.com) (Client exited)
  3113. # [23:03] * Joins: florian (Instantbir@moz-87C33FDA.kimsufi.com)
  3114. # [23:04] * Joins: bdahl (bdahl@moz-BBE3ABD.mv.mozilla.com)
  3115. # [23:04] * Joins: anky (anky@96A10C3F.9EB919EA.A3D1B221.IP)
  3116. # [23:05] * Quits: florian (Instantbir@moz-87C33FDA.kimsufi.com) (Quit: Instantbird -- http://www.instantbird.com)
  3117. # [23:05] * Joins: florian (Instantbir@moz-87C33FDA.kimsufi.com)
  3118. # [23:06] * Joins: Asa (asa@moz-BBE3ABD.mv.mozilla.com)
  3119. # [23:07] * Quits: jamesr_ (jamesr@16B54CE2.D6CCE4AE.77834EAA.IP) (Quit: jamesr_)
  3120. # [23:07] * Joins: robert (robert@moz-6C05035C.dynamic.t-2.net)
  3121. # [23:07] * Quits: dao (dao@moz-94E18553.superkabel.de) (Quit: Leaving.)
  3122. # [23:07] * Quits: robert (robert@moz-6C05035C.dynamic.t-2.net) (Quit: robert)
  3123. # [23:08] <edmorley> ehsan|extremely-busy: backout needed on birch - I'm cloning the repo now, but may be a little bit (even with the cloning local repos trick)
  3124. # [23:08] * Quits: davehunt (davehunt@222DAD5A.15DA589D.7D0FCE04.IP) (Ping timeout)
  3125. # [23:08] * Joins: jet (junglecode@moz-AAEFBBD1.gw.connect.com.au)
  3126. # [23:09] <sewardj> hurley: you've been hacking around the disk cache recently?
  3127. # [23:09] * Joins: davehunt (davehunt@222DAD5A.15DA589D.7D0FCE04.IP)
  3128. # [23:09] * coop|mtg is now known as coop|afk
  3129. # [23:10] * Quits: jlebar|mac (~jlebarmac@moz-AAEFBBD1.gw.connect.com.au) (Quit: jlebar|mac)
  3130. # [23:10] <ehsan|extremely-busy> edmorley: I'll take care of it
  3131. # [23:10] * Quits: bbondy (bbondy@moz-C9962B2.home.cgocable.net) (Ping timeout)
  3132. # [23:10] * joduinn-brb is now known as joduinn-mtg
  3133. # [23:10] * Ms2ger steps back
  3134. # [23:12] * bhearsum is now known as bhearsum|afk
  3135. # [23:13] * vikash is now known as vikash|away
  3136. # [23:13] * Quits: joe_walker (joe_walker@moz-15405DDA.cable.virginmedia.com) (Input/output error)
  3137. # [23:13] * Quits: davehunt (davehunt@222DAD5A.15DA589D.7D0FCE04.IP) (Client exited)
  3138. # [23:14] * philor puts his jokes about burning birch back on the shelf for next time
  3139. # [23:14] * Quits: vikash|away (vikash@88DD17D3.9B552DFD.5D9ABA9F.IP) (Quit: Leaving)
  3140. # [23:14] <@bz> philor: make them about "incinerating" too
  3141. # [23:14] * Quits: Misfit_Geek (MisfitGeek@moz-D14C5FCF.hsd1.nh.comcast.net) (Quit: Leaving)
  3142. # [23:15] * Joins: cilias (cilias@moz-D65C0C74.cpe.net.cable.rogers.com)
  3143. # [23:15] * Quits: espindola (espindola@moz-EF46D60.dsl.teksavvy.com) (Ping timeout)
  3144. # [23:15] <sewardj> !seen mcmanus
  3145. # [23:15] <firebot> mcmanus was last seen 4 weeks, 1 day, 58 minutes and 33 seconds ago, saying 'mbrubeck unless the mochi's still download the safe browsing stuff in the background.. do they do that? (from google)' in #developers.
  3146. # [23:15] * WG9s wonders if these birch issues are political (John Birch Society)?
  3147. # [23:17] * Quits: robhawkes (robhawkes@moz-33A339B7.dsl.cnl.uk.net) (Quit: Linkinus - http://linkinus.com)
  3148. # [23:18] * Quits: @smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi) (Input/output error)
  3149. # [23:18] * Joins: espindola (espindola@moz-3C57DB7.dsl.teksavvy.com)
  3150. # [23:18] * Joins: smaug (chatzilla@moz-B57CDC12.gprs.sl-laajakaista.fi)
  3151. # [23:18] * ChanServ sets mode: +o smaug
  3152. # [23:19] * Quits: bruno (bruno@20C4F0CB.2F9EAEB9.C36097CD.IP) (Quit: bruno)
  3153. # [23:19] * Quits: jhammel (jhammel@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: leaving)
  3154. # [23:20] * Quits: zuzelvp (zuzelvp@2112147D.C3507A2D.9A8C35B4.IP) (Ping timeout)
  3155. # [23:21] * Joins: zuzelvp (zuzelvp@2112147D.C3507A2D.9A8C35B4.IP)
  3156. # [23:22] * Quits: Ms2ger (Ms2ger@CEF8CBD7.3067C44D.37724B0D.IP) (Ping timeout)
  3157. # [23:22] <gps> is there any kind of standard place where test-only JS components/modules can be installed to? I have a bunch of mock types that are useful by common modules and am finding including them as "head" files in xpcshell.ini to be quite annoying
  3158. # [23:23] * Joins: Ms2ger (Ms2ger@CEF8CBD7.3067C44D.37724B0D.IP)
  3159. # [23:23] * Joins: roc (chatzilla@538BABFE.A073F3E.97BBD552.IP)
  3160. # [23:23] * ChanServ sets mode: +o roc
  3161. # [23:23] <gps> I'd like to just Cu.import("resource://testing/foo.js") or something
  3162. # [23:24] <gps> without having to worry about hooking up all the resource:// registration plumbing in every project that needs them
  3163. # [23:25] <hurley> sewardj: here and there, yes. been spending more of my recent time on other networking stuff, tho. w hy?
  3164. # [23:25] * Joins: nrc (nrc@538BABFE.A073F3E.97BBD552.IP)
  3165. # [23:26] <@smaug> oh, we have some new downloads button
  3166. # [23:26] <@smaug> which opens ugly looking popup :(
  3167. # [23:26] * Quits: wolfiR (wolfiR@moz-396830FC.dip0.t-ipconnect.de) (Quit: Leaving)
  3168. # [23:26] * Quits: mconley (mconley@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  3169. # [23:26] <sewardj> hurley: mistake, i got you mixed up with nsHttpConnection so to speak
  3170. # [23:27] <hurley> sewardj: ah, no worries. we do look quite a lot alike :)
  3171. # [23:27] <sewardj> hurley: bug 746731 if it helps
  3172. # [23:27] <@bz> bjacob: ping
  3173. # [23:27] * Quits: Ms2ger (Ms2ger@CEF8CBD7.3067C44D.37724B0D.IP) (Quit: nn)
  3174. # [23:28] <bjacob> bz: pong
  3175. # [23:28] <@bz> bjacob: GetShaderParameter
  3176. # [23:28] <@bz> 4789 default:
  3177. # [23:28] <@bz> 4790 return NS_ERROR_NOT_IMPLEMENTED;
  3178. # [23:28] <@bz> bjacob: I assume that should be an ErrorInvalidEnumInfo ?
  3179. # [23:29] <bjacob> bz: that's a bug indeed. yes, should be that instead
  3180. # [23:29] <@bz> bjacob: and return null to JS, I assume?
  3181. # [23:29] * @bz can't think of anything else it could do
  3182. # [23:30] <bjacob> bz: that i absolutely dont know. null or undefined?
  3183. # [23:30] <bjacob> i dont know how we'd return undefined though, null seems easier
  3184. # [23:30] * Joins: gozala (gozala@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  3185. # [23:30] <bjacob> and we do that elsewhere
  3186. # [23:30] <@bz> bjacob: returning undefined is easy
  3187. # [23:31] <@bz> bjacob: but yes, null would be consistent with other code
  3188. # [23:31] <bjacob> let's do that
  3189. # [23:31] * Quits: rniwa (rniwa@5CA6DC39.C60FE7DC.4065847B.IP) (Quit: rniwa)
  3190. # [23:31] <bjacob> bz: we need the spec to be tightened to say that getters return null on error cases
  3191. # [23:31] * Joins: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
  3192. # [23:32] * Quits: yuan (ywang@moz-ABE49454.dsl.snfc21.pacbell.net) (Quit: yuan)
  3193. # [23:33] * Quits: jgriffin (jgriffin@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: jgriffin)
  3194. # [23:33] * Quits: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com) (Quit: Instantbird -- http://www.instantbird.com)
  3195. # [23:33] * Joins: clokep (Instantbir@moz-69FB3955.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com)
  3196. # [23:33] <@bz> bjacob: yeah
  3197. # [23:34] * Joins: dao (dao@moz-94E18553.superkabel.de)
  3198. # [23:34] * Quits: kutsurak (pex@moz-4D02685A.w90-46.abo.wanadoo.fr) (Quit: Leaving)
  3199. # [23:34] <@bz> bjacob: another question, while you're here
  3200. # [23:34] <@bz> bjacob: GetProgramInfoLog
  3201. # [23:34] <@bz> 2684 GLint k = -1;
  3202. # [23:34] <@bz> 2685 gl->fGetProgramiv(progname, LOCAL_GL_INFO_LOG_LENGTH, &k);
  3203. # [23:34] <@bz> 2686 if (k == -1)
  3204. # [23:34] <@bz> 2687 return NS_ERROR_FAILURE; // XXX GL error? shouldn't happen!
  3205. # [23:34] <bjacob> bz: that is stupid indeed
  3206. # [23:35] <@bz> I can keep that behavior
  3207. # [23:35] * Quits: jfkthame (jfkthame@483F82A8.90783722.9542EC20.IP) (Quit: jfkthame)
  3208. # [23:35] <@bz> or do something else.
  3209. # [23:35] <@bz> let me know. ;)
  3210. # [23:35] <@bz> This is like the first GL function legitimately throwing. ;)
  3211. # [23:35] * Quits: lmandel (lmandel@F2D29657.F60B0462.67AC9B1.IP) (Quit: lmandel)
  3212. # [23:35] <bjacob> bz: keep it that way, it's not an important function anyway (not really used in production code)
  3213. # [23:35] <@bz> ok
  3214. # [23:35] <bjacob> we can fix that later
  3215. # [23:36] <bjacob> bz: if you want, file a bug
  3216. # [23:36] * Quits: wlach (wlach@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Ping timeout)
  3217. # [23:36] <@bz> ok
  3218. # [23:36] <bjacob> it's not clear what to do in this case, as indeed that should never happen
  3219. # [23:36] * Quits: JonathanS (JonathanS@17EDFC35.8737F162.521902B0.IP) (Quit: Computer has gone to sleep.)
  3220. # [23:36] <bjacob> maybe the exception is not that stupid after all
  3221. # [23:37] <bjacob> we should specify in webgl spec that this function may generate OUT_OF_MEMORY and do that in this case, i think
  3222. # [23:37] <@bz> bug filed
  3223. # [23:37] <bjacob> hm
  3224. # [23:38] * Quits: mdas (mdas@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: mdas)
  3225. # [23:38] <bjacob> thanks
  3226. # [23:38] * @bz goes back to sorting through the array goop
  3227. # [23:38] <@bz> no problem
  3228. # [23:39] * coop|afk is now known as coop
  3229. # [23:39] * Joins: kutsurak (pex@moz-4D02685A.w90-46.abo.wanadoo.fr)
  3230. # [23:39] * Quits: catalinb (ethereal@moz-7443FA19.eregie.pub.ro) (Ping timeout)
  3231. # [23:39] <@smaug> um, so when did this new download thing land?
  3232. # [23:39] <gavin> yesterday, I think
  3233. # [23:40] <@smaug> quite late in the cycle
  3234. # [23:40] <@smaug> plenty of bugs to fix
  3235. # [23:40] * Joins: yuan (ywang@moz-ABE49454.dsl.snfc21.pacbell.net)
  3236. # [23:40] <gavin> that's what the cycles are for!
  3237. # [23:40] * Quits: AaronMT (AaronMT@F2D29657.F60B0462.67AC9B1.IP) (Quit: Computer has gone to sleep.)
  3238. # [23:40] * bz is now known as bz_away
  3239. # [23:40] <@bz_away> dinnertime
  3240. # [23:40] <@smaug> usually you want major things to land early in the cycle
  3241. # [23:43] * Quits: clee (clee@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Quit: clee)
  3242. # [23:43] * Joins: clee (clee@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net)
  3243. # [23:43] * Quits: taras (chatzilla@9E727688.17C2F9C.163DC5C6.IP) (Ping timeout)
  3244. # [23:43] * jlund|mtg is now known as jlund
  3245. # [23:44] * Quits: AryehGregor (AryehGrego@7DEC01ED.AFEF24F6.CB858787.IP) (Ping timeout)
  3246. # [23:44] * Quits: avih (quassel@moz-CC2B38B9.red.bezeqint.net) (Ping timeout)
  3247. # [23:44] * Joins: hipokrit (hipokrit@81016825.8DB70AE8.839F6EC0.IP)
  3248. # [23:44] * Joins: AryehGregor (AryehGrego@7DEC01ED.AFEF24F6.CB858787.IP)
  3249. # [23:45] * Quits: dao (dao@moz-94E18553.superkabel.de) (Quit: Leaving.)
  3250. # [23:45] <mak> smaug: it won't be enabled in aurora.
  3251. # [23:45] <@smaug> ah
  3252. # [23:45] * Joins: avih (quassel@moz-CC2B38B9.red.bezeqint.net)
  3253. # [23:45] <@smaug> mak: then it makes sense
  3254. # [23:45] <mak> smaug: and it's enabled in nightly cause we need people to file bugs, people not ready to use half-done stuff should likely not be using nightly :)
  3255. # [23:45] <Callek> mak: new download thing?
  3256. # [23:45] <Callek> whatd I miss
  3257. # [23:46] <mak> Callek: the new panel interface
  3258. # [23:46] <Callek> mak: planning wiki page?
  3259. # [23:46] <@smaug> I like it, it is just a bit buggy and ugly still
  3260. # [23:46] <Callek> or blog post or design doc
  3261. # [23:46] <mak> Callek: https://wiki.mozilla.org/Firefox/Features/Panel_based_download_window
  3262. # [23:47] <mak> smaug: yes it is, but it's a large change, so delaying it was just delaying bug fixes
  3263. # [23:47] * Joins: taras (chatzilla@9E727688.17C2F9C.163DC5C6.IP)
  3264. # [23:47] * Quits: Ziggy_Maes (ZiggyMaes@6B780D9D.A4A6DE76.7B12EFB3.IP) (Ping timeout)
  3265. # [23:47] <mak> smaug: btw, you can disable it and use the old ui, by flipping a pref
  3266. # [23:47] <@smaug> mak: I think I'll try to use it for some time to find bugs
  3267. # [23:48] <mak> we have a work week next week and we'll try to go through bugs and prioritize
  3268. # [23:48] * Quits: Poly-C (Poly-C@moz-C818A940.dip.t-dialin.net) (Quit: GNU/Linux, because I'd rather own a free OS than steal one that's not worth paying for.)
  3269. # [23:48] * jlund is now known as jlund|afk
  3270. # [23:48] <WG9s> Ah so if it has a lot of issues the pref can be flipped back to the old UI for Aurora.
  3271. # [23:49] <mak> smaug: sure, just mark filed bugs as blocking bug 564934 (otherwise I'll do when I see bugmail incoming)
  3272. # [23:49] * Joins: Optimizer (Mibbit@6BCF5DE2.2E81CE6D.89AC0F27.IP)
  3273. # [23:49] * Parts: Optimizer (Mibbit@6BCF5DE2.2E81CE6D.89AC0F27.IP)
  3274. # [23:49] <mak> WG9s: Aurora will already have the pref flipped back and use the old UI.
  3275. # [23:49] <mak> that was the plan from the beginning
  3276. # [23:50] <mak> and part of the rapid release process
  3277. # [23:50] <WG9s> OK I think that is what smaug was concerned about
  3278. # [23:50] <mak> features are disabled till they meet our quality standard
  3279. # [23:50] * catlee-buildduty is now known as catlee
  3280. # [23:50] * Quits: gandalf (zbraniecki@moz-F66A472.neoplus.adsl.tpnet.pl) (Ping timeout)
  3281. # [23:50] * Quits: pnemsak (Miranda@80CFE454.10D9684B.4F33160D.IP) (Quit: pnemsak)
  3282. # [23:50] <mak> no worries, I'm happy to answer questions :)
  3283. # [23:50] * Joins: rniwa (rniwa@5CA6DC39.C60FE7DC.4065847B.IP)
  3284. # [23:51] * Joins: bjacob_ (bjacob@F2D29657.F60B0462.67AC9B1.IP)
  3285. # [23:51] * Quits: davidb (davidb@471D72E.2257F909.F30C9E9E.IP) (Quit: davidb)
  3286. # [23:51] <timeless> mak: fwiw, i really like the new downloads thing
  3287. # [23:51] <gaston> aaargh 12.àb5 build with systemwide cairo fails
  3288. # [23:52] <timeless> mak: one problem i have is that when I click, it takes too long to open
  3289. # [23:52] <timeless> ideally you'd cache the top 3 items
  3290. # [23:52] <timeless> and show me them while you're grabbing the rest
  3291. # [23:52] <mak> timeless: thanks, you should send kudos to paolo for most of that :) feel free to file the bug
  3292. # [23:52] <Mossop> mak: Odd. The first time I ran the new nightly the downloads toolbar icon appeared after a few seconds. Subsequent times it just doesn't appear at all
  3293. # [23:53] <mak> Mossop: could be the upgrade process was detected as an unclean restart...
  3294. # [23:53] <gaston> clusterfuck gfx/cairo/expose-snapshot.patch #~@~#
  3295. # [23:53] * Quits: kaze (kaze@moz-7048EEC1.w82-123.abo.wanadoo.fr) (Ping timeout)
  3296. # [23:54] <Mossop> mak: Meaning what?
  3297. # [23:54] * Joins: gandalf (zbraniecki@moz-7D3E7CEB.neoplus.adsl.tpnet.pl)
  3298. # [23:55] <timeless> grr, when was gBrowser removed?
  3299. # [23:55] <mak> Mossop: there is quite complicated behavior on start, where it checks if the previous session was closed cleanly and eventually restores some downloads (cause you may have crashed and not noticed a download finished or so). it may wrongly detect upgrade
  3300. # [23:55] <timeless> it broke parts of spdyindicator and noscript
  3301. # [23:55] <mak> Mossop: feel free to file a bug
  3302. # [23:55] * Quits: bjacob_ (bjacob@F2D29657.F60B0462.67AC9B1.IP) (Input/output error)
  3303. # [23:55] * Joins: Ziggy_Maes (ZiggyMaes@6B780D9D.A4A6DE76.7B12EFB3.IP)
  3304. # [23:55] <Mossop> timeless: gBrowser hasn't been removed
  3305. # [23:55] <Mossop> We'd break 95% of extensions if we did that
  3306. # [23:55] <timeless> Mossop: then why am i seeing "ReferenceError: gBrowser is not defined"
  3307. # [23:55] <gavin> also we'd have to rewrite the world
  3308. # [23:55] <Mossop> I don't know
  3309. # [23:56] <timeless> or TypeError: gBrowser.getBrowserForDocument is not a function
  3310. # [23:56] <gavin> timeless: because you're using sync and it does dumb things with observers?
  3311. # [23:56] <timeless> gavin: "sync"?
  3312. # [23:56] * timeless wonders what that is
  3313. # [23:56] <gavin> firefox sync
  3314. # [23:56] <gavin> alternatively, you're doing dumv things with observers
  3315. # [23:56] <timeless> did someone automatically opt me into that?
  3316. # [23:56] * Quits: bmoss (bmoss@moz-C03D0C61.vlan426.asr1.sfo1.gblx.net) (Ping timeout)
  3317. # [23:56] <timeless> this is spdyindicator + noscript
  3318. # [23:56] <timeless> (both are suffering)
  3319. # [23:57] <gavin> no, you need to explicitly enable sync
  3320. # [23:57] * Quits: mjschranz (mjschranz@F2D29657.F60B0462.67AC9B1.IP) (Client exited)
  3321. # [23:57] * Quits: jet (junglecode@moz-AAEFBBD1.gw.connect.com.au) (Quit: jet)
  3322. # [23:58] * Joins: mdas (mdas@93B4174C.6E78B65D.CDBA6951.IP)
  3323. # [23:58] * Joins: jgriffin (jgriffin@93B4174C.6E78B65D.CDBA6951.IP)
  3324. # [23:58] * Quits: ehoogeveen (emanuel.ho@moz-B95F3766.chello.nl) (Quit: )
  3325. # [23:58] <WG9s> and make sure you are using a build that does not include changeset ef55c163a23a
  3326. # [23:58] <WG9s> becuase it messes up extensions that define prefs in a packages xpi file
  3327. # [23:59] <WG9s> it sepcifically has been said to mess up adblock and noscript
  3328. # [23:59] <WG9s> current mozilla-central should be fine
  3329. # [23:59] * Joins: gerv (gerv@moz-CF471F07.ip.mcleodusa.net)
  3330. # Session Close: Thu Apr 19 00:00:00 2012

The end :)