Options:
- # Session Start: Thu Sep 23 00:00:00 2010
- # Session Ident: #whatwg
- # [00:02] <AryehGregor> Hmm, I see.
- # [00:02] <AryehGregor> I wonder if the meaning of this is specced if you look closely: data:text/html,<!doctype html><form><input required oninvalid="this.setCustomValidity(''); if (!this.validity.valid) this.setCustomValidity('abcd')"><input type=submit></form>?
- # [00:02] <AryehGregor> It seems to work as I expect in Opera but not Firefox.
- # [00:02] <AryehGregor> If you try submitting, then enter something in the first field, then submitting, it should submit, right?
- # [00:03] <AryehGregor> Because it will have no errors left.
- # [00:03] <zcorpan_> did you include name=foo when testing opera?
- # [00:03] <AryehGregor> Yes.
- # [00:04] <AryehGregor> data:text/html,<!doctype html><form><input name=x required oninvalid="this.setCustomValidity(''); if (!this.validity.valid) this.setCustomValidity('abcd')"> <input type=submit></form>
- # [00:06] <zcorpan_> i've never learned the forms api properly. what does setCustomValidity do?
- # [00:06] * Quits: aroben (~aroben@unaffiliated/aroben) (Read error: Connection reset by peer)
- # [00:06] * Joins: estes_ (~aestes@17.246.17.157)
- # [00:07] <AryehGregor> It sets a custom validity message. An element with a nonempty custom validity message is invalid, and should display the given message.
- # [00:08] <AryehGregor> In some undefined fashion.
- # [00:08] <AryehGregor> I think Firefox displays it much better than Opera.
- # [00:08] * Quits: estes (~aestes@17.246.19.31) (Ping timeout: 272 seconds)
- # [00:08] * estes_ is now known as estes
- # [00:10] * Quits: taf2 (~taf2@173-13-232-33-WashingtonDC.hfc.comcastbusiness.net) (Quit: taf2)
- # [00:11] <zcorpan_> so when it's submitted the first time, the script sets setCustomValidity to 'abcd'. then if you type in the field, is setCustomValidity reset?
- # [00:12] <AryehGregor> The custom validity thing is totally custom, only setCustomValidity() ever changes it.
- # [00:12] <AryehGregor> So my idea was that when you try submitting, first it clears the custom invalidity, then if it's invalid, it sets the message to override the UA default message.
- # [00:13] <AryehGregor> With tweaks so that it actually works in Firefox, it works really well, because Firefox just replaces the whole error message with the provided one.
- # [00:13] <AryehGregor> In Opera it's kind of terrible, but then so is everything about Opera's form validation UI.
- # [00:14] <AryehGregor> I submitted a bug months ago that pointed out that <input type=password pattern=....*> to require passwords at least 3 characters long will print out the password in cleartext if there's an error.
- # [00:14] * Quits: jgornick (~joe@199.199.212.242) (Quit: jgornick)
- # [00:14] <AryehGregor> Seemingly still not fixed in 10.60.
- # [00:14] <AryehGregor> DSK-262266.
- # [00:14] <AryehGregor> I reported it in 10.00.
- # [00:16] <AryehGregor> I guess if Firefox 4's UI works well, we can enable it somehow for everyone except WebKit and Opera. But that will be a pain, and require JavaScript. Oh well.
- # [00:17] * Quits: estes (~aestes@17.246.17.157) (Quit: estes)
- # [00:18] <miketaylr> so only for FF4?
- # [00:19] * Quits: ZombieLoffe (~e@unaffiliated/zombieloffe)
- # [00:19] <AryehGregor> Well, we could blacklist only specific WebKit versions.
- # [00:19] <AryehGregor> Then future WebKit or IE could Just Work.
- # [00:19] <AryehGregor> Or Unknown Browser X, whatever.
- # [00:22] <zcorpan_> MikeSmith: the es5 doc is awesome. one annoyance though is that the text moves when you hover a heading -- maybe use position:absolute or something on the annotation links?
- # [00:23] <MikeSmith> zcorpan_: yeah, I need to fix that somehow
- # [00:23] <MikeSmith> but note that it only happens in Opera
- # [00:23] * Quits: mdelaney (~mdelaney@2620:0:1b00:1191:d69a:20ff:febf:89a0) (Ping timeout: 276 seconds)
- # [00:23] <MikeSmith> I think I need to adjust the line-height of the headings
- # [00:24] <zcorpan_> the text jumps in firefox too
- # [00:24] <MikeSmith> the x height of those circled letters is apparently bigger than normal glyphs or something
- # [00:24] <MikeSmith> ah, OK
- # [00:24] <MikeSmith> hmm, doesn't jump in minefield at least
- # [00:24] <MikeSmith> but anyway I will fix it one way or the other
- # [00:25] <MikeSmith> more serious problem I am having right now is that I can't get text into those anno boxes in Gecko, because readystate on my XHR never changes away from 1
- # [00:25] <MikeSmith> can't figure out why
- # [00:26] * Joins: jamesr (~jamesr@nat/google/x-biyhgwonxiczyjog)
- # [00:27] <jamesr> was 'clear' supported at one point for canvas 2d's globalCompositeOperation?
- # [00:27] <jamesr> it appears that gecko and webkit currently accept it as a valid value
- # [00:34] <Philip`> jamesr: Not in the spec
- # [00:34] <jamesr> Philip`: was there any particular reason not to add it?
- # [00:34] <Philip`> http://lists.whatwg.org/pipermail/whatwg-whatwg.org/2007-June/012063.html has the information I'm aware of
- # [00:34] <Philip`> jamesr: The default state for features is to not add them, and there wasn't any particular reason to add it
- # [00:35] <jamesr> but it's observable
- # [00:35] <jamesr> i.e. if bullet point 2 is true, then they should be added
- # [00:35] <Philip`> It's an observable spec-compliance bug in browsers that implement it :-)
- # [00:36] <Philip`> Is bullet point 2 true?
- # [00:36] <jamesr> dunno
- # [00:36] <Philip`> As far as I'm aware, Opera hasn't had to add it for compatibility
- # [00:36] <Philip`> which suggests it's not used much on the web
- # [00:36] <zcorpan_> MikeSmith: seems to wfm
- # [00:37] <MikeSmith> zcorpan_: really? in Firefox or in Minefield?
- # [00:37] <MikeSmith> it doesn't stay stuck at "loading..."?
- # [00:37] <zcorpan_> MikeSmith: minefield... although only when i have the web console open...
- # [00:37] * Joins: Twisol (~Twisol@cpe-76-166-195-41.socal.res.rr.com)
- # [00:37] * Quits: Twisol (~Twisol@cpe-76-166-195-41.socal.res.rr.com) (Changing host)
- # [00:37] * Joins: Twisol (~Twisol@wikia/Oddlyoko)
- # [00:37] <zcorpan_> which is helpful for debugging it...
- # [00:37] <MikeSmith> heh
- # [00:38] <MikeSmith> I'm testing in Minefield with console open but not seeing what I expect to see
- # [00:38] * MikeSmith tries FF4 beta
- # [00:38] * Quits: boaz (~boaz@64.119.159.231) (Quit: boaz)
- # [00:39] * Parts: Twisol (~Twisol@wikia/Oddlyoko)
- # [00:40] <jgraham> (usually you get "only works with console open" because you left a console.log in. Which you probably know already
- # [00:40] <jgraham> )
- # [00:41] <zcorpan_> we need to standardize console.log
- # [00:42] <miketaylr> a standardized console API would be great
- # [00:44] <MikeSmith> I think Web Inspector already supports the Firebug console API
- # [00:44] <MikeSmith> Dragonfly does too?
- # [00:45] <miketaylr> possibly, but the webkit has added some newer stuff that firebug doesn't support
- # [00:46] <zcorpan_> http://software.hixie.ch/utilities/js/live-dom-viewer/saved/644
- # [00:47] <zcorpan_> in particular i think browsers should expose console even when the console isn't open, and we need to agree on which members to have on console
- # [00:48] <zcorpan_> otherwise scripts around the web will break in some browsers because the author left in a console.something
- # [00:48] <zcorpan_> s/will//
- # [00:48] * miketaylr has done that before >_>
- # [00:50] <zcorpan_> can someone file a bug on html5? i really need to go to bed now :)
- # [00:50] <zcorpan_> nn
- # [00:52] * Quits: zcorpan_ (~zcorpan@c-ec9fe355.410-6-64736c14.cust.bredbandsbolaget.se) (Quit: zcorpan_)
- # [00:53] <othermaciej> MikeSmith: does w3c bugzilla use Bcc for Cc'd bugs?
- # [00:53] <MikeSmith> othermaciej: no, it uses a normal Cc afaict
- # [00:54] <othermaciej> MikeSmith: I'm getting new bugmail for all HTML5 bugs but I don't see public-html in the recipient list on the email and I don't think I am on the other lists, so I am unsure of what is happening
- # [00:55] <MikeSmith> othermaciej: because you're subscribed to the issue-tracking list, I think
- # [00:55] <MikeSmith> I'll turn off those
- # [00:55] * Joins: mdelaney (~mdelaney@2620:0:1b00:1191:d69a:20ff:febf:89a0)
- # [00:55] <othermaciej> ah, I guess I just forgot about subscribing and have been bitbucketing the emails
- # [00:56] <othermaciej> I do want to be getting them, though via public-html so my mail filter catches them
- # [00:56] <MikeSmith> you aren't manually subscribed to that list -- its subscriber list is populated out of the user DB
- # [00:56] <othermaciej> I see
- # [00:57] <othermaciej> so everyone in the WG is on the public-html-issue-tracking list?
- # [00:57] <othermaciej> er, public-html-wg-issue-tracking
- # [00:58] <MikeSmith> othermaciej: no, just some people.. I can't remember when we set up the group in the DB for that, but you are in it
- # [00:58] <MikeSmith> we have maybe 20 people or so in that group
- # [00:58] <othermaciej> I see
- # [00:58] <MikeSmith> othermaciej: so, I can change right now to having notifications for new bugs go to public-html, as you proposed. Do you want me to do that now?
- # [00:58] <othermaciej> looking at the archives it looks like it gets about the same set of mail that I suggested public-html should be getting
- # [00:58] <othermaciej> MikeSmith: I would appreciate it - I think the other chairs agree that we should at least try it out that way
- # [00:58] <MikeSmith> PhilipJ seemed to be OK with new bugs notifications going to public-html
- # [00:59] <MikeSmith> OK
- # [00:59] <MikeSmith> I will flip the switch on it now
- # [00:59] <othermaciej> thanks!
- # [00:59] <othermaciej> I guess we can probably obsolete the separate issue tracking list then
- # [00:59] <othermaciej> I'm off to a meeting, ttyl
- # [00:59] * Quits: othermaciej (~mjs@17.246.19.45) (Quit: othermaciej)
- # [01:01] <jamesr> Philip`: there are a _lot_ of failures in this suite in WebKit and Gecko ToT :(
- # [01:05] * Quits: KaOSoFt (~maxzagato@unaffiliated/kaosoft)
- # [01:05] <jamesr> Philip`: where is the rounding/wrapping behavior for canvaspixelarray defined? it's tested by 2d.imageData.object.round/wrap
- # [01:06] * Joins: davidwalsh (~davidwals@75-134-27-91.dhcp.mdsn.wi.charter.com)
- # [01:06] * Quits: davidwalsh (~davidwals@75-134-27-91.dhcp.mdsn.wi.charter.com) (Client Quit)
- # [01:09] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 276 seconds)
- # [01:11] * Joins: MikeSmith_ (~MikeSmith@EM114-48-66-246.pool.e-mobile.ne.jp)
- # [01:14] * Quits: MikeSmith (~MikeSmith@EM114-48-0-62.pool.e-mobile.ne.jp) (Ping timeout: 252 seconds)
- # [01:14] * MikeSmith_ is now known as MikeSmith
- # [01:19] * Quits: miketaylr (~miketaylr@adsl-068-016-237-066.sip.asm.bellsouth.net) (Remote host closed the connection)
- # [01:20] * Joins: agektmr (~Adium@p3242-ipbf7807marunouchi.tokyo.ocn.ne.jp)
- # [01:22] * temp01 is now known as perm01
- # [01:25] <Philip`> jamesr: It's defined by WebIDL
- # [01:25] <Philip`> Hopefully the tests match that behaviour
- # [01:27] <jamesr> ah, since they are defined as octet
- # [01:27] <jamesr> looks like only opera currently implements that part of WebIDL
- # [01:28] <jamesr> Philip`: 2d.text.draw.baseline.bottom is failing on ffx/opera/gecko - is that expected?
- # [01:29] <jamesr> ah, has it been updated?
- # [01:29] * Quits: Anti-X (~duckmysic@77.19.226.254.tmi.telenormobil.no) (Ping timeout: 276 seconds)
- # [01:30] <Philip`> Apparently it passed for me in Firefox 3.7 on Linux some time ago
- # [01:30] <Philip`> Some browsers do get it wrong
- # [01:31] <Philip`> I don't remember updating it
- # [01:31] <jamesr> yeah, i was doing something wrong. bottom.html passes in minefield
- # [01:31] <jamesr> but ideographic and hanging fail everywhere
- # [01:32] <Philip`> As far as I'm aware, the test font is set up correctly for those and they're just not implemented
- # [01:33] <jamesr> ok
- # [01:34] <Philip`> (I assume nobody really cares about them - they're just in the canvas spec to match some CSS spec, I think)
- # [01:35] <jamesr> sucks to have it in the spec if nobody's doing it
- # [01:36] * Joins: estes (~aestes@17.246.17.157)
- # [01:36] * Quits: slightlyoff (~slightlyo@nat/google/x-opaltklxsxxehsle) (Read error: Operation timed out)
- # [01:37] * perm01 is now known as temp01
- # [01:38] <Philip`> jamesr: I guess that applies to a lot of CSS3
- # [01:41] * Joins: taf2 (~taf2@pool-98-117-223-231.bltmmd.fios.verizon.net)
- # [01:41] * Quits: taf2 (~taf2@pool-98-117-223-231.bltmmd.fios.verizon.net) (Remote host closed the connection)
- # [01:42] * karlcow is reading about the evercookie nightmare http://samy.pl/evercookie/
- # [01:42] * Joins: welly (~welly@unaffiliated/welly)
- # [01:43] <Dashiva> It was pretty nightmare from the point flash added SharedObjects
- # [01:46] <karlcow> Dashiva: yep definitely. I think there will be new-adds on popping up.
- # [01:51] * Joins: miketaylr (~miketaylr@adsl-068-016-237-066.sip.asm.bellsouth.net)
- # [01:52] * Quits: agektmr (~Adium@p3242-ipbf7807marunouchi.tokyo.ocn.ne.jp) (Quit: Leaving.)
- # [01:56] * Quits: FireFly (~firefly@unaffiliated/firefly) (Quit: swatted to death)
- # [01:58] * Quits: tndH (~Rob@cpc6-seac20-2-0-cust102.7-2.cable.virginmedia.com) (Ping timeout: 252 seconds)
- # [01:58] * Joins: Cricket (~gallo@shellium/member/titan)
- # [02:02] * Quits: miketaylr (~miketaylr@adsl-068-016-237-066.sip.asm.bellsouth.net) (Remote host closed the connection)
- # [02:03] * Quits: Cricket (~gallo@shellium/member/titan) (Quit: Leaving)
- # [02:04] * Quits: cying (~cying@173-228-29-224.dsl.static.sonic.net) (Quit: cying)
- # [02:24] * Joins: othermaciej (~mjs@17.246.19.45)
- # [02:30] * Quits: othermaciej (~mjs@17.246.19.45) (Quit: othermaciej)
- # [02:30] * Quits: cardona507 (~cardona50@c-67-180-160-250.hsd1.ca.comcast.net) (Quit: zzzzz)
- # [02:51] * Joins: roc (~roc@203-97-204-82.dsl.clear.net.nz)
- # [02:54] * Quits: dbaron (~dbaron@nat/mozilla/x-tzanwemuyouubkeg) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [03:08] * Quits: welly (~welly@unaffiliated/welly) (Remote host closed the connection)
- # [03:10] * Quits: ap (~ap@17.246.17.176) (Quit: ap)
- # [03:14] * Quits: mdelaney (~mdelaney@2620:0:1b00:1191:d69a:20ff:febf:89a0) (Ping timeout: 276 seconds)
- # [03:17] * Quits: ttepasse (~ttepasse@ip-109-90-161-169.unitymediagroup.de) (Quit: Now time for the weather. Tiffany?)
- # [03:24] * Joins: mdelaney (~mdelaney@66.109.104.141)
- # [03:27] * Joins: jacobolus (~jacobolus@c-24-128-189-152.hsd1.ma.comcast.net)
- # [03:27] * Joins: cying (~cying@c-24-4-120-70.hsd1.ca.comcast.net)
- # [03:28] * Quits: sicking (~chatzilla@nat/mozilla/x-rhtujlkshahmaynd) (Ping timeout: 276 seconds)
- # [03:29] <variable> Dashiva, karlcow that attack is nothing new
- # [03:29] <variable> I recall reading something like that involving storing unique data in a .png file and reading it back from the cache to restore cookies some years ago
- # [03:34] * Joins: slightlyoff (~slightlyo@204.14.154.200)
- # [03:34] * Joins: slightlyoff_ (~slightlyo@216.239.45.130)
- # [03:35] * Quits: cying (~cying@c-24-4-120-70.hsd1.ca.comcast.net) (Quit: cying)
- # [03:37] * Quits: tonyg-cr (~Adium@nat/google/x-lcdisjqxirjjqjcd) (Ping timeout: 276 seconds)
- # [03:38] * Quits: slightlyoff (~slightlyo@204.14.154.200) (Ping timeout: 252 seconds)
- # [03:38] * slightlyoff_ is now known as slightlyoff
- # [03:42] * Quits: gavin_ (~gavin@firefox/developer/gavin) (Ping timeout: 265 seconds)
- # [03:48] * Joins: gavin_ (~gavin@firefox/developer/gavin)
- # [03:56] * Joins: weinig (~weinig@17.246.19.110)
- # [03:59] * Quits: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley) (Ping timeout: 264 seconds)
- # [04:05] * Quits: jamesr (~jamesr@nat/google/x-biyhgwonxiczyjog) (Quit: jamesr)
- # [04:18] * Joins: aho (~nya@fuld-4d00d1ae.pool.mediaWays.net)
- # [04:28] * Quits: mdelaney (~mdelaney@66.109.104.141) (Quit: mdelaney)
- # [04:30] * Joins: shepazu (~schepers@208.52.153.64)
- # [04:42] * Quits: shepazu (~schepers@208.52.153.64) (Quit: shepazu)
- # [04:44] <karlcow> variable: do you have a pointer? that would be cool.
- # [04:45] <variable> karlcow, I read it *years* ago
- # [04:47] <variable> I wish I had some method of saving bookmarks and searching thru them
- # [04:48] <variable> karlcow, what makes the attack so "amazing" now is 1) its all put together in a nice package 2) the public is starting to care ;-)
- # [04:57] * Quits: gavin_ (~gavin@firefox/developer/gavin) (Ping timeout: 240 seconds)
- # [04:58] * Joins: gavin_ (~gavin@firefox/developer/gavin)
- # [04:59] * Joins: GPHemsley (~GPHemsley@pdpc/supporter/student/GPHemsley)
- # [05:07] * Quits: abarth (~abarth@c-67-169-42-39.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [05:07] * Joins: abarth (~abarth@c-67-169-42-39.hsd1.ca.comcast.net)
- # [05:09] * Joins: agektmr (~Adium@p3242-ipbf7807marunouchi.tokyo.ocn.ne.jp)
- # [05:10] * Quits: agektmr (~Adium@p3242-ipbf7807marunouchi.tokyo.ocn.ne.jp) (Client Quit)
- # [05:12] * Joins: agektmr (~Adium@p3242-ipbf7807marunouchi.tokyo.ocn.ne.jp)
- # [05:13] * Joins: mdelaney (~mdelaney@c-69-181-26-199.hsd1.ca.comcast.net)
- # [05:17] * Joins: ako (~nya@fuld-4d00d526.pool.mediaWays.net)
- # [05:20] * Quits: aho (~nya@fuld-4d00d1ae.pool.mediaWays.net) (Ping timeout: 245 seconds)
- # [05:20] * Joins: welly (~welly@unaffiliated/welly)
- # [05:22] * Quits: weinig (~weinig@17.246.19.110) (Quit: weinig)
- # [05:29] * Joins: miketaylr (~miketaylr@adsl-068-016-237-066.sip.asm.bellsouth.net)
- # [05:38] * Quits: baba (~sallabanc@unaffiliated/cypha) (Ping timeout: 276 seconds)
- # [05:41] * Joins: cying (~cying@c-24-4-120-70.hsd1.ca.comcast.net)
- # [05:46] * Quits: cying (~cying@c-24-4-120-70.hsd1.ca.comcast.net) (Client Quit)
- # [05:50] * Joins: cardona507 (~cardona50@c-67-180-160-250.hsd1.ca.comcast.net)
- # [05:57] * Quits: miketaylr (~miketaylr@adsl-068-016-237-066.sip.asm.bellsouth.net) (Remote host closed the connection)
- # [06:08] * Joins: weinig (~weinig@c-76-102-3-160.hsd1.ca.comcast.net)
- # [06:13] * Quits: macpherson (~macpherso@nat/google/x-fszycbvtyryyhkyl) (Quit: macpherson)
- # [06:14] * Quits: dpranke (~Adium@nat/google/x-dyosmxkeatffduxs) (Quit: Leaving.)
- # [06:38] <ivan`> what happens if a worker can't be started because of process limits? an Error thrown of some sort? (I don't see in the spec)
- # [06:38] * Quits: weinig (~weinig@c-76-102-3-160.hsd1.ca.comcast.net) (Quit: weinig)
- # [06:38] * Joins: weinig (~weinig@c-76-102-3-160.hsd1.ca.comcast.net)
- # [06:43] * Quits: weinig (~weinig@c-76-102-3-160.hsd1.ca.comcast.net) (Ping timeout: 272 seconds)
- # [06:57] * Quits: estes (~aestes@17.246.17.157) (Quit: estes)
- # [07:04] * Joins: shepazu (~schepers@208.52.153.223)
- # [07:11] * Joins: MikeSmith_ (~MikeSmith@EM114-48-187-70.pool.e-mobile.ne.jp)
- # [07:14] * Quits: MikeSmith (~MikeSmith@EM114-48-66-246.pool.e-mobile.ne.jp) (Ping timeout: 245 seconds)
- # [07:14] * MikeSmith_ is now known as MikeSmith
- # [07:18] * Quits: cardona507 (~cardona50@c-67-180-160-250.hsd1.ca.comcast.net) (Quit: zzzzz)
- # [07:24] * Joins: weinig (~weinig@c-76-102-3-160.hsd1.ca.comcast.net)
- # [07:26] * Joins: macpherson (~macpherso@nat/google/x-rdlsiyqgpofmgocy)
- # [07:34] * Joins: Ankheg (~Miranda@fs91-201-3-30.dubna-net.ru)
- # [07:40] * Joins: rimantas (~rimliu@lan-84-240-20-219.vln.skynet.lt)
- # [07:41] * Quits: agektmr (~Adium@p3242-ipbf7807marunouchi.tokyo.ocn.ne.jp) (Quit: Leaving.)
- # [07:43] * Joins: agektmr (~Adium@p3242-ipbf7807marunouchi.tokyo.ocn.ne.jp)
- # [07:44] * Joins: FireFly (~firefly@unaffiliated/firefly)
- # [07:51] * Quits: dave_levin (~dave_levi@74.125.59.73) (Quit: dave_levin)
- # [07:51] * Quits: kennyluck (~kennyluck@2001:200:1c0:3602:225:ff:fe4d:f8c7) (Quit: kennyluck)
- # [07:51] * Joins: kennyluck (~kennyluck@2001:200:1c0:3602:225:ff:fe4d:f8c7)
- # [07:51] * Quits: kennyluck (~kennyluck@2001:200:1c0:3602:225:ff:fe4d:f8c7) (Excess Flood)
- # [07:51] * Joins: kennyluck (~kennyluck@2001:200:1c0:3602:225:ff:fe4d:f8c7)
- # [07:56] * Joins: reni__home (~reni@sedkit.inf.u-szeged.hu)
- # [07:57] * Quits: welly (~welly@unaffiliated/welly) (Remote host closed the connection)
- # [08:02] * Quits: boogyman (~boogy@unaffiliated/boogyman) (Quit: ChatZilla 0.9.86 [Firefox 3.6.8/20100722155716])
- # [08:06] * Joins: othermaciej (~mjs@c-69-181-196-33.hsd1.ca.comcast.net)
- # [08:06] * Quits: weinig (~weinig@c-76-102-3-160.hsd1.ca.comcast.net) (Quit: weinig)
- # [08:10] * Quits: roc (~roc@203-97-204-82.dsl.clear.net.nz) (Quit: roc)
- # [08:20] * Parts: macpherson (~macpherso@nat/google/x-rdlsiyqgpofmgocy)
- # [08:22] * Quits: Lachy (~Lachlan@cm-84.215.59.50.getinternet.no) (Quit: This computer has gone to sleep)
- # [08:32] * Quits: mike][inq (~mike@2001:858:5:303:224:81ff:fe12:b5c4) (Remote host closed the connection)
- # [08:41] * Joins: macpherson (~macpherso@nat/google/x-vwnucldwkrqcxwxh)
- # [08:42] * Joins: Anti-X (~duckmysic@109.179.4.247.tmi.telenormobil.no)
- # [08:45] * Quits: agektmr (~Adium@p3242-ipbf7807marunouchi.tokyo.ocn.ne.jp) (Quit: Leaving.)
- # [08:51] * Joins: maikmerten (~merten@dhcp-11-239.it.uu.se)
- # [08:52] * Joins: Maurice (~ano@a80-101-46-164.adsl.xs4all.nl)
- # [08:52] * Joins: virtuelv (~virtuelv_@pat-tdc.opera.com)
- # [08:59] * Quits: gavin_ (~gavin@firefox/developer/gavin) (Disconnected by services)
- # [08:59] * Joins: gavin__ (~gavin@CPE001346f5db49-CM0018c0db9a8a.cpe.net.cable.rogers.com)
- # [09:00] * Quits: ukai (~ukai@nat/google/x-fnmoyqqbagltusyv) (Ping timeout: 240 seconds)
- # [09:01] * Joins: ukai (~ukai@nat/google/x-chfzypkenqeqhyzq)
- # [09:02] <MikeSmith> Cache-Control: max-age=0 means "no caching", right?
- # [09:05] <abarth> think so :)
- # [09:05] <abarth> max-age=-10000
- # [09:05] * Quits: ukai (~ukai@nat/google/x-chfzypkenqeqhyzq) (Ping timeout: 240 seconds)
- # [09:06] <abarth> dont' cache it! not even in the past!
- # [09:06] <MikeSmith> heh
- # [09:07] * Joins: estes (~aestes@76-220-34-58.lightspeed.sntcca.sbcglobal.net)
- # [09:07] * Joins: cying (~cying@c-24-4-120-70.hsd1.ca.comcast.net)
- # [09:10] * Joins: smaug____ (~chatzilla@vallila-gw.hupnet.helsinki.fi)
- # [09:12] * Joins: henrikbjorn (~henrik@80.199.116.190.static.peytz.dk)
- # [09:13] * Quits: Anti-X (~duckmysic@109.179.4.247.tmi.telenormobil.no) (Ping timeout: 272 seconds)
- # [09:14] * Quits: smaug____ (~chatzilla@vallila-gw.hupnet.helsinki.fi) (Client Quit)
- # [09:18] * Quits: Amorphous (jan@unaffiliated/amorphous) (Ping timeout: 240 seconds)
- # [09:18] * Quits: cying (~cying@c-24-4-120-70.hsd1.ca.comcast.net) (Quit: cying)
- # [09:20] * Joins: zcorpan_ (~zcorpan@c-ec9fe355.410-6-64736c14.cust.bredbandsbolaget.se)
- # [09:21] * Joins: workmad3 (~workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com)
- # [09:28] * zcorpan_ is now known as zcorpan
- # [09:33] * Quits: henrikbjorn (~henrik@80.199.116.190.static.peytz.dk) (Remote host closed the connection)
- # [09:34] * Joins: Amorphous (jan@unaffiliated/amorphous)
- # [09:34] * Joins: mhausenblas (~mhausenbl@wlan-nat.fwgal01.deri.ie)
- # [09:35] * Joins: annevk (~annevk@5355737B.cable.casema.nl)
- # [09:38] * temp01 is now known as away0
- # [09:38] * away0 is now known as away01
- # [09:39] * Joins: henrikbjorn (~henrik@80.199.116.190.static.peytz.dk)
- # [09:41] * Quits: FireFly (~firefly@unaffiliated/firefly) (Quit: swatted to death)
- # [09:43] <annevk> XBL5!
- # [09:49] <abarth> :)
- # [09:50] <zcorpan> annevk: the coersion rules break a lot more than html[xmlns] in css -- a browser would never use the coersion rules for web content
- # [09:51] <zcorpan> annevk: besides the bug was about xmlns:foo if i understood it correctly :)
- # [09:54] * Quits: workmad3 (~workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com) (Remote host closed the connection)
- # [09:56] <hsivonen> validator.nu is going down for kernel update
- # [09:57] <hsivonen> annevk: browsers don't apply the infoset coercion rules anyway
- # [09:57] <annevk> he was talking about DOM
- # [09:58] * Quits: reni__home (~reni@sedkit.inf.u-szeged.hu) (Ping timeout: 240 seconds)
- # [09:58] <hsivonen> I understand that part of what we are doing is fixing stuff that the XHTML2 WG did in the HTML4 era, but it's really annoying that they've created new problems recently that we are now supposed to fix
- # [10:01] <hsivonen> validator.nu is back up. html5.validator.nu going down
- # [10:02] <annevk> it depends in how far you consider RDFa an actual problem I suppose
- # [10:06] <hsivonen> sigh. Jaunty's security updates end next month. I have to upgrade my servers soon.
- # [10:08] * Joins: ayo (~nya@fuld-4d00d15f.pool.mediaWays.net)
- # [10:10] <zcorpan> didn't rdfa's prefixes="" solve the problem anyway?
- # [10:10] <MikeSmith> zcorpan: fwiw, I think I fixed the jumpy-headings problem -
- # [10:10] <MikeSmith> http://sideshowbarker.github.com/es5-spec/
- # [10:11] * Quits: ako (~nya@fuld-4d00d526.pool.mediaWays.net) (Ping timeout: 245 seconds)
- # [10:11] <zcorpan> MikeSmith: nice
- # [10:11] <MikeSmith> if you notice other problems or have suggestions, definitely let me know
- # [10:12] <hsivonen> zcorpan: maybe ask the question on the bug?
- # [10:12] * Joins: smaug____ (~chatzilla@vallila-gw.hupnet.helsinki.fi)
- # [10:13] <hsivonen> and html5.validator.nu is back up
- # [10:14] * Quits: estes (~aestes@76-220-34-58.lightspeed.sntcca.sbcglobal.net) (Quit: estes)
- # [10:17] <hsivonen> http://lists.w3.org/Archives/Public/public-rdfa-wg/2010Sep/0090.html
- # [10:18] <hsivonen> hasn't Hixie proposed Microdata?
- # [10:19] <zcorpan> maybe the implication is that microdata doesn't deliver what they need
- # [10:19] <hsivonen> might be
- # [10:20] <annevk> othermaciej, yeah, I'm hoping the person to write the counter-proposal is not going to be me
- # [10:20] <othermaciej> annevk: I'm just shaking the tree in the hope that a volunteer will fall out
- # [10:21] <annevk> in fact, I'm pretty sure it won't be as there are lots of other things to take care of
- # [10:21] <annevk> heh
- # [10:21] * Joins: Steve_B (~chatzilla@gatek.mh.bbc.co.uk)
- # [10:22] <annevk> so hybi is missing its self-impossed deadline of 4 weeks by a month?
- # [10:22] <othermaciej> it doesn't require a high degree of expertise to do it, someone would just need to carefully go over the discussion and make a specific proposal such as using the microformats.org wiki, plus a particular description of how registration goes, etc
- # [10:22] <othermaciej> what was the 4 week deadline?
- # [10:23] <annevk> there was this idea to define the base protocol in 4 weeks
- # [10:23] <annevk> and flush out extensions and other things in the next 6 months
- # [10:23] <othermaciej> I remember when Hixie suggested that
- # [10:23] <annevk> instead Hixie left and it went dead
- # [10:23] <othermaciej> I think the change of editors has rendered all previous plans inoperative and thrown open the gates to more features in the base protocol
- # [10:23] <annevk> and now everyone has implemented the framing of -76, including Firefox 4
- # [10:24] <annevk> and we'll likely be stuck with that for a long time
- # [10:24] <othermaciej> does -76 have the halfway-secure handshake?
- # [10:24] <othermaciej> I can't remember
- # [10:25] <annevk> -76 has the handshake with the 8 random bytes that were not part of the messaged
- # [10:25] <annevk> -d
- # [10:25] <othermaciej> ok
- # [10:25] <othermaciej> I guess the main thing that sucks about it is that the 8 bytes could break otherwise-working proxies without actually triggering a fast detectable failure
- # [10:25] <annevk> better than what Safari shipped (iirc), but still has the "incorrect" framing
- # [10:26] <othermaciej> I think we have -76 in WebKit trunk so we'll likely ship it in due course
- # [10:27] * Joins: Lachy (~Lachlan@pat-tdc.opera.com)
- # [10:30] <hsivonen> othermaciej: will you be prefixing the API?
- # [10:30] <othermaciej> hsivonen: for WebSocket? unlikely...
- # [10:31] <hsivonen> othermaciej: ok
- # [10:31] <othermaciej> the API seems pretty stable, and we don't usually vendor-prefix things with a draft spec unless there is a lot of reason to expect they will change
- # [10:32] <othermaciej> and I am not sure prefixing the API would protect against future protocol changes
- # [10:33] <othermaciej> I did at one point suggest prefixing the protocol scheme, so you could use different URLs for different protocol versions, but that suggestion was not met with enthusiasm by WebKit developers
- # [10:33] <annevk> I emailed my concern to the hybi list
- # [10:34] * Quits: Ankheg (~Miranda@fs91-201-3-30.dubna-net.ru) (Ping timeout: 252 seconds)
- # [10:34] <annevk> Opera will be shipping -76 relatively soonish by the way, but we can change the moment one of WebKit/Gecko changes relatively easily
- # [10:34] <MikeSmith> how do I completely clear my browser cache in Opera?
- # [10:34] <zcorpan> format c:
- # [10:35] <annevk> Tools -> Delete Private Data
- # [10:35] * ayo is now known as aho
- # [10:38] <MikeSmith> annevk: thanks
- # [10:41] <MikeSmith> annevk: hmm, in spite of checking Delete entire cache there and hitting the Delete button, when I go to opera:cache it still shows that it has files cached for multiple domains
- # [10:43] * MikeSmith tries restarting his Opera
- # [10:43] <MikeSmith> ok, restarting Opera seems to clear it
- # [10:46] * Quits: gavin__ (~gavin@CPE001346f5db49-CM0018c0db9a8a.cpe.net.cable.rogers.com) (Ping timeout: 240 seconds)
- # [10:47] * Joins: gavin_ (~gavin@firefox/developer/gavin)
- # [10:50] <annevk> You could file a bug. I have no idea how any of that is supposed to work.
- # [10:50] <MikeSmith> ok
- # [10:51] * Joins: jeremyselier (~Jeremy@pro75-4-82-238-200-10.fbx.proxad.net)
- # [10:52] * Joins: akamike (~akamike@94-193-106-14.zone7.bethere.co.uk)
- # [10:53] * Joins: david_carlisle (~davidc@62.231.145.254)
- # [10:59] * Quits: smaug____ (~chatzilla@vallila-gw.hupnet.helsinki.fi) (Ping timeout: 265 seconds)
- # [11:01] * Joins: ROBOd (~robod@89.123.180.234)
- # [11:04] * Joins: reni__home (~reni@sedkit.inf.u-szeged.hu)
- # [11:05] * Joins: mokush (~quassel@79.116.73.58)
- # [11:09] <MikeSmith> ok, I continue to have some behavior in Firefox and Minefield that I can't figure out
- # [11:09] <MikeSmith> if somebody can please try this and see if you can reproduce it, I'd appreciate it
- # [11:09] * Joins: workmad3 (~workmad3@cspool86.cs.man.ac.uk)
- # [11:09] <MikeSmith> 1. go to http://sideshowbarker.github.com/es5-spec/#x7.1
- # [11:09] <MikeSmith> 2. hover anywhere over the "7.1 Unicode Format-Control Characters" text
- # [11:09] <MikeSmith> 3. click the Ⓔ
- # [11:09] <MikeSmith> … pop-up displays a "Table 1 — Format-Control Character Usage" table
- # [11:09] <MikeSmith> 4. click the up-arrow at the top right (next to the "x")
- # [11:09] <MikeSmith> … a new tab opens, showing an empty page
- # [11:09] <MikeSmith> 5. open Firebug on that page and observe that despite not
- # [11:09] <MikeSmith> displaying anything, there is content in the DOM…
- # [11:11] * Joins: mat_t (~mattomasz@91.189.88.12)
- # [11:11] <hsivonen> ooh <center>!
- # [11:14] <hsivonen> MikeSmith: how is that document created?
- # [11:14] <hsivonen> the one that doesn't show up?
- # [11:16] <MikeSmith> hsivonen: abbreviate version is this:
- # [11:16] * Joins: mpt (~mpt@91.189.88.12)
- # [11:16] * Quits: mpt (~mpt@91.189.88.12) (Changing host)
- # [11:16] * Joins: mpt (~mpt@canonical/mpt)
- # [11:16] <MikeSmith> var win = window.open();
- # [11:16] <MikeSmith> ...
- # [11:16] <MikeSmith> var annoBody = win.document.importNode(document.getElementById("annotation"),true);
- # [11:16] <MikeSmith> win.document.body.appendChild(annoBody);
- # [11:16] <MikeSmith> win.document.close();
- # [11:16] <jgraham> gsnedders: yt?
- # [11:17] <hsivonen> MikeSmith: ok. that should work.
- # [11:18] <hsivonen> MikeSmith: I tested that it's not a frame constructor integration bug of the usual kind
- # [11:18] <MikeSmith> fwiw, the full source of the script is here - http://github.com/sideshowbarker/es5-spec/blob/gh-pages/anno.js
- # [11:18] <hsivonen> that is, setting body to display:none and back to block didn't make content show up
- # [11:18] <MikeSmith> OK
- # [11:18] <MikeSmith> I wonder if there's some other best-practice way I should be using instead
- # [11:18] <MikeSmith> for writing to a new window
- # [11:18] <hsivonen> MikeSmith: I think this one needs a bugzilla entry. Probably in the DOM component.
- # [11:19] <MikeSmith> hsivonen: OK
- # [11:19] <MikeSmith> will file it now
- # [11:19] <hsivonen> MikeSmith: thanks
- # [11:19] <MikeSmith> thanks for checking it
- # [11:20] <MikeSmith> btw, the <center> is from Open Office output from the MS Word source I generated that doc from
- # [11:21] <MikeSmith> I cleaned up a lot, but there's some other junk still in there that I probably should still move to CSS
- # [11:21] <hsivonen> MikeSmith: as a workaround, you could try calling .write("<!DOCTYPE html>"); .close(); on the newly-opened document before importing the nodes
- # [11:21] <annevk> can someone explain to me how upload events work for forms?
- # [11:21] <annevk> i mean, the page will be replaced by some other page right?
- # [11:21] <annevk> or is this mainly for encouraging people to submit to <iframe> instead?
- # [11:21] <MikeSmith> hsivonen: ah yeah, I will try that
- # [11:21] <MikeSmith> (after I file this bug)
- # [11:23] <hsivonen> now I have a guess
- # [11:23] <hsivonen> there might be a bug that if you don't .write(), layout never gets started
- # [11:24] <MikeSmith> oh
- # [11:24] <MikeSmith> lemme try now
- # [11:24] <hsivonen> the life cycle of the document and parser is sad in Gecko in the .open() case
- # [11:25] <hsivonen> a bunch of initialization happens on the first .write() instead of .open()
- # [11:25] <hsivonen> mainly because I was trying to conform to a legacy API instead of fixing the API
- # [11:25] * Quits: mpt (~mpt@canonical/mpt) (Read error: Operation timed out)
- # [11:26] <hsivonen> MikeSmith: oops. I misread your code
- # [11:27] <hsivonen> MikeSmith: your .open() call is on window instead of win.document
- # [11:27] <MikeSmith> aha
- # [11:28] <hsivonen> MikeSmith: my scientific wild-ass guess is that you are importing stuff into a synthetic about:blank document that hasn't had layout started for it
- # [11:28] <hsivonen> MikeSmith: try calling win.document.open(); win.document.write("<!DOCTYPE html>"); win.document.close(); before you import
- # [11:29] <hsivonen> and then removing the later win.document.close(); you have now
- # [11:30] <MikeSmith> OK
- # [11:30] <MikeSmith> will try it now
- # [11:31] <MikeSmith> hmm, first thing is, if I call window.document.open() it replaces the current window instead of opening a new window
- # [11:31] <hsivonen> MikeSmith: I meant calling it on the win variable you assigned the return value of window.open() into
- # [11:31] <MikeSmith> d'oh
- # [11:32] <MikeSmith> OK
- # [11:32] <hsivonen> if this still doesn't work, I suggest attaching a "load" event handler to win and running the rest of your method from that handler
- # [11:32] <hsivonen> MikeSmith: but clearly, there's a Gecko-side bug to fix here
- # [11:33] <MikeSmith> yeah, I will get the bug filed too
- # [11:34] * Quits: aho (~nya@fuld-4d00d15f.pool.mediaWays.net) (Ping timeout: 245 seconds)
- # [11:35] <david_carlisle> Hi, is there a version of opera that does inline svg in html5? I tried http://www.nag.co.uk/blog_files/d02agf.html in 10.62, and it just shows the text of <desc> FF4 and IE9 work fine
- # [11:36] <jgraham> david_carlisle: Not yet
- # [11:37] <david_carlisle> ah, that's why it didn't work then:-)
- # [11:39] <MikeSmith> hsivonen: thanks much
- # [11:39] <MikeSmith> just changing the order of the .write seems to fix it
- # [11:43] * Joins: mpt (~mpt@91.189.88.12)
- # [11:43] * Quits: mpt (~mpt@91.189.88.12) (Changing host)
- # [11:43] * Joins: mpt (~mpt@canonical/mpt)
- # [11:45] <hsivonen> MikeSmith: good. must be something to do with starting layout then
- # [11:45] <MikeSmith> yeah, seems like
- # [11:48] * Quits: ojan (~ojan@nat/google/x-rwugpppsqvizqekg) (Ping timeout: 276 seconds)
- # [11:53] * Joins: ojan (~ojan@nat/google/x-icubayeziuggqxgt)
- # [11:55] <annevk> http://www.w3.org/Bugs/Public/show_bug.cgi?id=10694 o_O
- # [12:00] * Quits: virtuelv (~virtuelv_@pat-tdc.opera.com) (Quit: Ex-Chat)
- # [12:01] * Joins: virtuelv (~virtuelv_@pat-tdc.opera.com)
- # [12:02] <zcorpan> annevk: what?
- # [12:03] <annevk> forgot to leave my logic behind
- # [12:04] <zcorpan> heh
- # [12:06] * Joins: davidhund (~davidhund@78-27-27-74.dsl.alice.nl)
- # [12:15] * Joins: ZombieLoffe (~e@unaffiliated/zombieloffe)
- # [12:19] * Joins: Phae (~Phae@gatekeeper.macmillan.co.uk)
- # [12:20] <jgraham> Does anyone remember why <div><object>a</div> doesn't close the <object>? We have the HTML5 behaviour in current Opera and have a slight site compat. issue from it which Gecko+WebKit have just gained from implementing HTML5
- # [12:21] <annevk> presumably because IE/Opera made <object> scoping?
- # [12:21] <annevk> I suspect there might be issues either way
- # [12:21] <annevk> going from a single broken page with parsing is really tricky
- # [12:22] <MikeSmith> hsivonen: https://bugzilla.mozilla.org/show_bug.cgi?id=598895 (new bug for the issue you helped me with)
- # [12:22] <MikeSmith> hsivonen: thanks again for the help
- # [12:23] <jgraham> annevk: I know
- # [12:23] <jgraham> annevk: I was hoping I could say something in the bug other than "well changing parsing is hard and we can't make everything work"
- # [12:23] <jgraham> Which is true but kind of weak
- # [12:26] * Joins: zalan (~zalan@catv-89-135-140-7.catv.broadband.hu)
- # [12:26] * Quits: othermaciej (~mjs@c-69-181-196-33.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [12:26] * Joins: oal (~oal@5.79-160-122.customer.lyse.net)
- # [12:26] <zcorpan> jgraham: the question is whether there's another way with better site compat (e.g. maybe it should only be scoping for <p> and </p> but not for </div>)
- # [12:27] <jgraham> zcorpan: Indeed. But it is hard to tell from insignificant breakage on one site if that is a net win or not
- # [12:27] <zcorpan> yeah
- # [12:27] <annevk> I'm starting to lean towards abarth "stop tweaking it" pov
- # [12:28] <jgraham> I guess it might be closer to legacy gecko/webkit
- # [12:28] <abarth> :)
- # [12:28] <zcorpan> tweaking is the fun part :)
- # [12:28] <jgraham> Well me too, but it sucks to be the person trying to explain that we just have to live with it
- # [12:29] <abarth> welcome to the web
- # [12:29] <abarth> my name is adam
- # [12:29] <abarth> i'll be your host
- # [12:29] <zcorpan> GET /tagsoup HTTP/1.1
- # [12:30] <zcorpan> Host: adam
- # [12:30] * zcorpan awaits response
- # [12:31] <annevk> 402 PAYMENT REQUIRED
- # [12:31] <abarth> 200 OK
- # [12:31] <annevk> aah
- # [12:31] <abarth> Content-Length: 27
- # [12:31] <abarth> Content-Length: 2394
- # [12:32] <zcorpan> crap, now i don't know when to stop reading :(
- # [12:32] <abarth> Good news: you're now just supposed to stop immediately and close the socket
- # [12:33] * Parts: zcorpan (~zcorpan@c-ec9fe355.410-6-64736c14.cust.bredbandsbolaget.se)
- # [12:34] <abarth> :)
- # [12:34] <hsivonen> jgraham: I've filed a spec bug about that
- # [12:34] * Joins: zcorpan (~zcorpan@c-ec9fe355.410-6-64736c14.cust.bredbandsbolaget.se)
- # [12:34] <hsivonen> jgraham: my guess is that Hixie's reverse engineering of existing browsers hasn't been perfect
- # [12:35] <abarth> zcorpan: :)
- # [12:35] <hsivonen> jgraham: http://www.w3.org/Bugs/Public/show_bug.cgi?id=10427
- # [12:38] <zcorpan> hsivonen: iirc this is a case where i decided that opera should follow ie for compat with some site, so Hixie changed the spec to match
- # [12:39] <hsivonen> zcorpan: IE isn't as scoping as HTML5, either, IIRC
- # [12:39] <abarth> hsivonen: how come Firefox fails so many of the HTML5lib tests?
- # [12:39] <abarth> is that spec skew?
- # [12:40] <zcorpan> hsivonen: i think ie6 and ie7 (and maybe ie8) parsing of object depends on whether the plugin was used or not
- # [12:40] <hsivonen> abarth: the summary/figcaption stuff I haven't fixed, because there's the outstanding spec bug on <figure>
- # [12:40] <hsivonen> abarth: though I was planning on writing patches today anyway
- # [12:40] <abarth> ic
- # [12:40] <hsivonen> abarth: other than that, I have fixes in my queue
- # [12:40] <hsivonen> abarth: and they have review
- # [12:40] <abarth> i should sync the tests again
- # [12:41] <abarth> when should we change the "-- >" thing in html5lib
- # [12:41] <hsivonen> abarth: but only beta7 blockers are allowed to land
- # [12:41] <hsivonen> abarth: already changed
- # [12:41] <abarth> oh, good
- # [12:41] <abarth> beta7 gets cut from trunk?
- # [12:41] <zcorpan> hsivonen: in fact, <object> is sort of a cdata element in ie, iirc
- # [12:42] <hsivonen> abarth: I think we might branch first and bake beta7 on the branch for a few days, but for practical purposes, yes
- # [12:42] <hsivonen> zcorpan: oh
- # [12:42] <abarth> there have been some pretty major things landing between betas
- # [12:43] <abarth> like a new JavaScript engine
- # [12:43] <abarth> :)
- # [12:43] <zcorpan> i read ie9 changed parsing of <object>, i wonder if they now match html5 there
- # [12:44] <hsivonen> abarth: AFAICT, Firefox "beta" is what gets offered to a larger audience
- # [12:44] <hsivonen> abarth: can't really infer feature-completeness from "beta"
- # [12:44] <abarth> how does that differ from the nightly builds?
- # [12:44] <abarth> i guess they're more stable
- # [12:45] <hsivonen> abarth: stability and publicity
- # [12:46] <abarth> strange
- # [12:46] <abarth> why did html5lib remove test cases?
- # [12:46] <hsivonen> abarth: I moved some tests to new files
- # [12:47] <hsivonen> abarth: either because the tests were text editor-unsafe
- # [12:47] <hsivonen> abarth: or because the test changed ahead of spec
- # [12:47] <hsivonen> abarth: IIRC, I didn't remove any tests
- # [12:47] <abarth> i see the new files
- # [12:47] <abarth> l don't really have a good way of merging the files
- # [12:47] <abarth> i do it by hand
- # [12:49] <hsivonen> abarth: fwiw, I landed my queue of fixes to the htmlparser repo today and deployed them on validator.nu (but not livedom.validator.nu yet)
- # [12:49] <hsivonen> (I need to work around GWT UA sniffing bogosity to redeploy livedom)
- # [12:50] <hsivonen> I really wish GWT feature sniffed and loaded a bit more code
- # [12:51] <hsivonen> I can sympathise with wanting to load different code for IE6, but loading different code for WebKit, Gecko < 1.8, Gecko >=1.8 and Opera is BAD
- # [12:51] <hsivonen> and what's the deal with supporting Gecko < 1.8 anyway?
- # [12:52] <hsivonen> we should start calling window.console "HTML5 console" once it's in the spec :-)
- # [12:58] * Joins: tndH (~Rob@cpc6-seac20-2-0-cust102.7-2.cable.virginmedia.com)
- # [13:03] * Quits: Maurice (~ano@a80-101-46-164.adsl.xs4all.nl) (Ping timeout: 240 seconds)
- # [13:06] * Quits: annevk (~annevk@5355737B.cable.casema.nl) (Quit: annevk)
- # [13:07] * Quits: mhausenblas (~mhausenbl@wlan-nat.fwgal01.deri.ie) (Quit: mhausenblas)
- # [13:09] * Joins: Maurice (~ano@a80-101-46-164.adsl.xs4all.nl)
- # [13:09] <abarth> tests pushed
- # [13:09] <abarth> not that much exciting
- # [13:15] * Quits: MikeSmith (~MikeSmith@EM114-48-187-70.pool.e-mobile.ne.jp) (Ping timeout: 276 seconds)
- # [13:19] * away01 is now known as temp01
- # [13:27] * abarth is now known as abarth|zZz
- # [13:27] * Joins: Ankheg (~Miranda@fs91-201-3-30.dubna-net.ru)
- # [13:28] <hsivonen> abarth|zZz: umm. It seems to me you pushed back bits that I had specifically moved to different files
- # [13:29] <hsivonen> abarth|zZz: specifically, in comments01.dat and entities01.dat
- # [13:31] <abarth|zZz> ah, sorry about that
- # [13:31] <abarth|zZz> feel free to fix it
- # [13:31] <abarth|zZz> we need a better process to merge changes
- # [13:32] * Joins: mhausenblas (~mhausenbl@wlan-nat.fwgal01.deri.ie)
- # [13:32] <hsivonen> abarth|zZz: ok. I'll fix it at some point unless someone else beats me to it.
- # [13:33] * Quits: Ankheg (~Miranda@fs91-201-3-30.dubna-net.ru) (Ping timeout: 240 seconds)
- # [13:35] * Joins: smaug____ (~chatzilla@cs181063178.pp.htv.fi)
- # [13:36] * Joins: Ankheg (~Miranda@fs91-201-3-30.dubna-net.ru)
- # [13:37] * Joins: miketaylr (~miketaylr@208.52.152.2)
- # [13:43] * Quits: Lachy (~Lachlan@pat-tdc.opera.com) (Quit: Leaving)
- # [13:47] * Joins: Lachy (~Lachlan@pat-tdc.opera.com)
- # [13:54] * Joins: adactio (~adactio@host213-123-197-180.in-addr.btopenworld.com)
- # [13:59] * Joins: ttepasse (~ttepasse@ip-109-90-161-169.unitymediagroup.de)
- # [14:04] * Quits: ttepasse (~ttepasse@ip-109-90-161-169.unitymediagroup.de) (Read error: Connection reset by peer)
- # [14:05] * Joins: ttepasse (~ttepasse@ip-109-90-161-169.unitymediagroup.de)
- # [14:06] * Quits: miketaylr (~miketaylr@208.52.152.2) (Quit: miketaylr)
- # [14:06] * Joins: miketaylr (~miketaylr@208.52.152.2)
- # [14:11] * Quits: reni__home (~reni@sedkit.inf.u-szeged.hu) (Remote host closed the connection)
- # [14:12] * Joins: gonemad3 (~workmad3@cspool86.cs.man.ac.uk)
- # [14:12] * Quits: workmad3 (~workmad3@cspool86.cs.man.ac.uk) (Read error: Connection reset by peer)
- # [14:14] * Joins: KaOSoFt (~maxzagato@unaffiliated/kaosoft)
- # [14:20] * Quits: zalan (~zalan@catv-89-135-140-7.catv.broadband.hu) (Ping timeout: 245 seconds)
- # [14:25] * Quits: Ankheg (~Miranda@fs91-201-3-30.dubna-net.ru) (Ping timeout: 245 seconds)
- # [14:25] * Joins: atwak (~Miranda@fs91-201-3-30.dubna-net.ru)
- # [14:29] * Quits: miketaylr (~miketaylr@208.52.152.2) (Remote host closed the connection)
- # [14:36] * Joins: MikeSmith (~MikeSmith@EM114-49-138-139.pool.e-mobile.ne.jp)
- # [14:41] * Quits: virtuelv (~virtuelv_@pat-tdc.opera.com) (Quit: Ex-Chat)
- # [14:46] * Joins: riven (~riven@53518387.cable.casema.nl)
- # [14:48] * Joins: reni__home (~reni@sedkit.inf.u-szeged.hu)
- # [14:49] * Quits: smaug____ (~chatzilla@cs181063178.pp.htv.fi) (Ping timeout: 240 seconds)
- # [14:54] * Joins: agektmr (~Adium@p3242-ipbf7807marunouchi.tokyo.ocn.ne.jp)
- # [14:59] * Quits: mokush (~quassel@79.116.73.58) (Remote host closed the connection)
- # [15:01] * Joins: Edogaa (~Animeking@adsl-233-212-41.mia.bellsouth.net)
- # [15:02] * Quits: peterhil (~peterhil@a91-153-127-82.elisa-laajakaista.fi) (Ping timeout: 245 seconds)
- # [15:03] * Quits: shepazu (~schepers@208.52.153.223) (Quit: shepazu)
- # [15:05] * Joins: aroben (~aroben@c-71-58-77-15.hsd1.pa.comcast.net)
- # [15:05] * Quits: aroben (~aroben@c-71-58-77-15.hsd1.pa.comcast.net) (Changing host)
- # [15:05] * Joins: aroben (~aroben@unaffiliated/aroben)
- # [15:06] * Quits: lhnz (~lhnz@188-223-83-48.zone14.bethere.co.uk) (Ping timeout: 272 seconds)
- # [15:13] * Quits: riven (~riven@53518387.cable.casema.nl) (Quit: Hi, I'm a quit message virus. Please replace your old line with this line and help me take over the world of IRC.)
- # [15:16] * Joins: miketaylr (~miketaylr@208.52.152.2)
- # [15:16] * GPHemsley unsubscribed from the WHATWG mailing list
- # [15:16] * Joins: BlurstOfTimes (~blurstoft@168.203.117.112)
- # [15:17] <GPHemsley> (signal-noise ratio too high for me, personally)
- # [15:17] * Quits: tndH (~Rob@cpc6-seac20-2-0-cust102.7-2.cable.virginmedia.com) (Ping timeout: 245 seconds)
- # [15:17] <GPHemsley> (or is it low? anyway, too much I didn't care to read...)
- # [15:18] <jgraham> I guess you mean low
- # [15:18] <jgraham> Unless you are complaining that there is too mcuh technical discussion that is hard to have an opinion on
- # [15:19] <jgraham> and not enough useless bikeshedding that is fun for all the family
- # [15:21] * Joins: tndH (~Rob@cpc6-seac20-2-0-cust102.7-2.cable.virginmedia.com)
- # [15:21] <hsivonen> GPHemsley: what's been noise lately?
- # [15:21] * hsivonen tuned the poster='' thread out
- # [15:25] * Quits: miketaylr (~miketaylr@208.52.152.2) (Quit: miketaylr)
- # [15:30] * Joins: miketaylr (~miketaylr@208.52.152.2)
- # [15:30] * Joins: lhnz (~lhnz@188-223-83-48.zone14.bethere.co.uk)
- # [15:36] * Joins: eric_carlson (~ericc@2620:0:1b00:1191:223:32ff:feb1:5d30)
- # [15:38] <Hixie> sorry, been on vacation so haven't been able to tone noise down
- # [15:38] <Hixie> do i need to do anything on the poster thread?
- # [15:39] <Hixie> (i'm mostly back now btw, just going through massive mail backlog)
- # [15:41] <hsivonen> Hixie: I don't know. before I tuned out, the content of the thread was appropriate for the list. There were just an unusual number of messages.
- # [15:42] <Hixie> ah ok
- # [15:42] <Hixie> i'll take a look when i get to figuring out which folder it should go to shortly then
- # [15:42] <Hixie> and will see if anything needs doing
- # [15:43] * Quits: tndH (~Rob@cpc6-seac20-2-0-cust102.7-2.cable.virginmedia.com) (Quit: ChatZilla 0.9.86-rdmsoft [XULRunner 1.9.0.1/2008072406])
- # [15:46] <MikeSmith> jgraham: for the content of the actual annotations in the annotated ES5 doc, I'm wondering if the audience should be implementors and authors, or just implementors
- # [15:48] <MikeSmith> jgraham: example I thought of today was the fact that, e.g., parseInt("08") returns 0 and parseInt("010") returns 8
- # [15:48] <MikeSmith> etc.
- # [15:48] <MikeSmith> (because the leading zero causes parseInt to assume octal)
- # [15:49] <MikeSmith> and the spec doesn't state that explicitly
- # [15:49] <MikeSmith> so, I added an annotation for authors
- # [15:49] <MikeSmith> just saying, always supply the radix param
- # [15:51] <MikeSmith> but… I don't know if the annotations should end up being addressed both to implementors and authors, or if it should be just one or the other
- # [15:52] <MikeSmith> I guess the intended-for-author annotations could be marked up to indicate they are for authors -- class=author or whatever
- # [15:53] <jgraham> MikeSmith: Yeah, t would be helpful to annotate the spec with what is actually required for implementors too
- # [15:53] <jgraham> Work around the refusal of ECMAScript committee to fix bugs in the parts that they hope will go away in the future
- # [15:53] <jgraham> (bugs in the spec relative to reality I mean)
- # [16:01] <MikeSmith> ok
- # [16:04] * Joins: riven (~riven@53518387.cable.casema.nl)
- # [16:04] * Quits: ttepasse (~ttepasse@ip-109-90-161-169.unitymediagroup.de) (Read error: Connection reset by peer)
- # [16:05] * Quits: henrikbjorn (~henrik@80.199.116.190.static.peytz.dk) (Remote host closed the connection)
- # [16:08] * Joins: ttepasse (~ttepasse@ip-109-90-161-169.unitymediagroup.de)
- # [16:09] * Quits: Martijnc (~Martijnc@91.176.75.32) (Read error: Connection reset by peer)
- # [16:10] * Quits: atwak (~Miranda@fs91-201-3-30.dubna-net.ru) (Quit: atwak)
- # [16:11] * Quits: nessy (~Adium@124-168-60-18.dyn.iinet.net.au) (Quit: Leaving.)
- # [16:11] * gonemad3 is now known as workmad3
- # [16:12] * Joins: FireyFly (~firefly@unaffiliated/firefly)
- # [16:13] * Quits: miketaylr (~miketaylr@208.52.152.2) (Quit: miketaylr)
- # [16:16] * Quits: mhausenblas (~mhausenbl@wlan-nat.fwgal01.deri.ie) (Read error: Connection reset by peer)
- # [16:17] * Joins: Martijnc (~Martijnc@91.176.128.34)
- # [16:18] * FireyFly is now known as FireFly
- # [16:20] * Joins: mokush (~quassel@79.116.73.58)
- # [16:22] * Quits: Steve_B (~chatzilla@gatek.mh.bbc.co.uk) (Remote host closed the connection)
- # [16:33] * Quits: rimantas (~rimliu@lan-84-240-20-219.vln.skynet.lt) (Quit: Leaving)
- # [16:38] * Joins: davidhund_ (~davidhund@78-27-27-74.dsl.alice.nl)
- # [16:40] * Joins: cardona507 (~cardona50@c-67-180-160-250.hsd1.ca.comcast.net)
- # [16:40] * Quits: davidhund (~davidhund@78-27-27-74.dsl.alice.nl) (Ping timeout: 264 seconds)
- # [16:40] * davidhund_ is now known as davidhund
- # [16:47] * Quits: zcorpan (~zcorpan@c-ec9fe355.410-6-64736c14.cust.bredbandsbolaget.se) (Remote host closed the connection)
- # [16:47] * Quits: maikmerten (~merten@dhcp-11-239.it.uu.se) (Remote host closed the connection)
- # [16:48] * Joins: zcorpan (~zcorpan@c-ec9fe355.410-6-64736c14.cust.bredbandsbolaget.se)
- # [16:49] * Quits: Maurice (~ano@a80-101-46-164.adsl.xs4all.nl) (Quit: Disconnected...)
- # [16:50] * Joins: Anti-X (~duckmysic@c4470BF51.dhcp.bluecom.no)
- # [16:51] * Joins: davidwalsh (~davidwals@75-134-27-91.dhcp.mdsn.wi.charter.com)
- # [16:58] * Joins: shepazu (~schepers@208.52.152.2)
- # [17:04] * Joins: mhausenblas (~mhausenbl@wg1-nat.fwgal01.deri.ie)
- # [17:06] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 265 seconds)
- # [17:08] * Joins: Amadiro (~whoppix@ti0021a380-dhcp1747.bb.online.no)
- # [17:08] * Parts: Amadiro (~whoppix@ti0021a380-dhcp1747.bb.online.no) ("Creationists make it sound as though a 'theory' is something you dreamt up after being drunk all night.")
- # [17:10] * Joins: tonyg-cr (~Adium@nat/google/x-tzzutddybricoyzm)
- # [17:11] * Quits: yutak_home (~kee@U017209.ppp.dion.ne.jp) (Quit: Ex-Chat)
- # [17:14] * Joins: maikmerten (~merten@m83-185-20-145.cust.tele2.se)
- # [17:16] * Joins: plainhao (~plainhao@mail.xbiotica.com)
- # [17:17] * Quits: shepazu (~schepers@208.52.152.2) (Read error: Connection reset by peer)
- # [17:17] * Joins: weinig (~weinig@c-76-102-3-160.hsd1.ca.comcast.net)
- # [17:17] * Joins: shepazu (~schepers@208.52.152.2)
- # [17:26] * Joins: erlehmann (~erlehmann@89.204.153.69)
- # [17:30] * Joins: mpt (~mpt@canonical/mpt)
- # [17:32] * Quits: ZombieLoffe (~e@unaffiliated/zombieloffe)
- # [17:34] * Quits: reni__home (~reni@sedkit.inf.u-szeged.hu) (Ping timeout: 265 seconds)
- # [17:39] * Joins: mlpug (~mlpug@a88-115-171-217.elisa-laajakaista.fi)
- # [17:43] * Quits: yusukes (~yusukes@2401:fa00:4:1000:224:81ff:fec1:6444) (Remote host closed the connection)
- # [17:43] * Quits: shepazu (~schepers@208.52.152.2) (Quit: shepazu)
- # [17:49] * Quits: weinig (~weinig@c-76-102-3-160.hsd1.ca.comcast.net) (Quit: weinig)
- # [17:52] * Quits: slightlyoff (~slightlyo@216.239.45.130) (Ping timeout: 276 seconds)
- # [17:56] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [17:56] * Joins: boaz_ (~boaz@64.119.159.231)
- # [17:57] * Quits: boaz_ (~boaz@64.119.159.231) (Client Quit)
- # [17:57] * Joins: boaz_ (~boaz@64.119.159.231)
- # [18:00] * Joins: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [18:00] * Joins: slightlyoff (~slightlyo@216.239.45.130)
- # [18:01] * Joins: othermaciej (~mjs@c-69-181-196-33.hsd1.ca.comcast.net)
- # [18:05] * Quits: davidhund (~davidhund@78-27-27-74.dsl.alice.nl) (Quit: …</work><life>… :-))
- # [18:12] * Quits: erlehmann (~erlehmann@89.204.153.69) (Quit: Die demokratieerhaltende Whistleblower-Organistation Krautchan freut sich immer über Spenden.)
- # [18:23] * Joins: reni__home (~reni@5403079D.catv.pool.telekom.hu)
- # [18:26] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 255 seconds)
- # [18:27] * Quits: jeremyselier (~Jeremy@pro75-4-82-238-200-10.fbx.proxad.net) (Ping timeout: 265 seconds)
- # [18:27] * Joins: bl4ckcomb_ (~bl4ckcomb@91.181.242.92)
- # [18:31] * Quits: bl4ckcomb (~bl4ckcomb@91.181.155.100) (Ping timeout: 272 seconds)
- # [18:32] * Quits: cardona507 (~cardona50@c-67-180-160-250.hsd1.ca.comcast.net) (Quit: zzzzz)
- # [18:38] * Joins: mpt (~mpt@canonical/mpt)
- # [18:39] * Quits: akamike (~akamike@94-193-106-14.zone7.bethere.co.uk) (Quit: akamike)
- # [18:40] * Quits: mdelaney (~mdelaney@c-69-181-26-199.hsd1.ca.comcast.net) (Quit: mdelaney)
- # [18:46] * Quits: Lachy (~Lachlan@pat-tdc.opera.com) (Quit: This computer has gone to sleep)
- # [18:52] * Parts: david_carlisle (~davidc@62.231.145.254)
- # [18:54] * Quits: workmad3 (~workmad3@cspool86.cs.man.ac.uk) (Remote host closed the connection)
- # [18:54] * Joins: jgornick (~joe@199.199.212.242)
- # [18:57] * Joins: mdelaney (~mdelaney@66.109.106.115)
- # [18:58] * Quits: reni__home (~reni@5403079D.catv.pool.telekom.hu) (Quit: Leaving)
- # [18:58] * Joins: ap (~ap@17.246.17.176)
- # [19:02] * Joins: smaug____ (~chatzilla@cs181063178.pp.htv.fi)
- # [19:10] * Joins: cardona507 (~cardona50@c-24-130-129-16.hsd1.ca.comcast.net)
- # [19:11] * Joins: dglazkov (~dglazkov@nat/google/x-fsivblnkclevjxyw)
- # [19:12] <jgraham> Oh, hybi how I missed you
- # [19:13] <Hixie> what's up there?
- # [19:14] * Quits: mat_t (~mattomasz@91.189.88.12) (Quit: This computer has gone to sleep)
- # [19:15] * Quits: slightlyoff (~slightlyo@216.239.45.130) (Ping timeout: 252 seconds)
- # [19:15] * Joins: JoePeck (~JoePeck@2620:0:1b00:1f08:fa1e:dfff:fed9:b9a)
- # [19:16] * Quits: othermaciej (~mjs@c-69-181-196-33.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [19:19] * Joins: hamcore (rhythm@unaffiliated/hamcore)
- # [19:19] * Quits: MikeSmith (~MikeSmith@EM114-49-138-139.pool.e-mobile.ne.jp) (Ping timeout: 245 seconds)
- # [19:21] * Quits: riven (~riven@53518387.cable.casema.nl) (Read error: Connection reset by peer)
- # [19:22] * Joins: riven (~riven@53518387.cable.casema.nl)
- # [19:23] <mokush> hey, can anybody expand on the "label" for <track>?
- # [19:23] <mokush> http://www.whatwg.org/specs/web-apps/current-work/multipage/video.html#attr-track-charset
- # [19:24] <Hixie> expand how?
- # [19:24] * Quits: cardona507 (~cardona50@c-24-130-129-16.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
- # [19:24] <mokush> the definition in the spec is very very fague
- # [19:24] <mokush> at least to me
- # [19:25] * Joins: MikeSmith (~MikeSmith@EM114-48-39-7.pool.e-mobile.ne.jp)
- # [19:26] <mokush> is it a sort-of invisible title attr?
- # [19:27] * Quits: jacobolus (~jacobolus@c-24-128-189-152.hsd1.ma.comcast.net) (Ping timeout: 245 seconds)
- # [19:27] * Joins: cardona507 (~cardona50@c-24-130-129-16.hsd1.ca.comcast.net)
- # [19:28] * Joins: slightlyoff (~slightlyo@nat/google/x-wbmheawtscrlvats)
- # [19:29] * Joins: jacobolus (~jacobolus@c-24-128-189-152.hsd1.ma.comcast.net)
- # [19:31] <Hixie> mokush: oh you mean "what does it do?"?
- # [19:32] * Joins: cying (~cying@173-13-176-101-sfba.hfc.comcastbusiness.net)
- # [19:33] * Quits: jacobolus (~jacobolus@c-24-128-189-152.hsd1.ma.comcast.net) (Ping timeout: 245 seconds)
- # [19:35] * Joins: jacobolus (~jacobolus@c-24-128-189-152.hsd1.ma.comcast.net)
- # [19:36] * Joins: dave_levin (~dave_levi@74.125.59.65)
- # [19:36] * Quits: boaz_ (~boaz@64.119.159.231) (Ping timeout: 272 seconds)
- # [19:39] * Quits: mpt (~mpt@canonical/mpt) (Quit: Ex-Chat)
- # [19:40] * Parts: adactio (~adactio@host213-123-197-180.in-addr.btopenworld.com)
- # [19:40] * Quits: Phae (~Phae@gatekeeper.macmillan.co.uk) (Quit: Leaving.)
- # [19:44] * Quits: slightlyoff (~slightlyo@nat/google/x-wbmheawtscrlvats) (Quit: slightlyoff)
- # [19:46] <Hixie> mokush: it basically decides what the browser's name for the track will be
- # [19:46] <Hixie> mokush: in its menus and stuff
- # [19:46] <Hixie> (sorry for the delay, i'm in and out here)
- # [19:48] <jgraham> Hixie: """I think the reluctance to fix it has mostly been due to partisan
- # [19:48] <jgraham> politics - either defending the origins and/or a reluctance to causeoffence by it's replacement with another solution."""
- # [19:48] <Hixie> o_O
- # [19:48] <jgraham> "it" being the handshake in this case
- # [19:48] <Hixie> so glad i got out of that wg
- # [19:49] * Quits: agektmr (~Adium@p3242-ipbf7807marunouchi.tokyo.ocn.ne.jp) (Quit: Leaving.)
- # [19:49] <mokush> Hixie: no prob, I was out too. So it's actualy a short name like "English"?
- # [19:54] * Joins: agektmr (~Adium@p3242-ipbf7807marunouchi.tokyo.ocn.ne.jp)
- # [19:55] <Hixie> mokush: yeah
- # [19:55] <mokush> does track have even minimal support in any browser?
- # [19:55] <Hixie> not yet
- # [19:56] <Hixie> it's only just been added
- # [19:56] <Hixie> afk, bbl
- # [19:56] <mokush> js to the rescue
- # [19:56] * Quits: mdelaney (~mdelaney@66.109.106.115) (Quit: mdelaney)
- # [19:57] * Joins: dbaron (~dbaron@nat/mozilla/x-nzbavyhrjxqyzdmj)
- # [19:58] <mokush> I read somewhere that Safari has some support for captions.
- # [20:00] * Quits: cardona507 (~cardona50@c-24-130-129-16.hsd1.ca.comcast.net) (Read error: Operation timed out)
- # [20:01] * Joins: mdelaney (~mdelaney@2620:0:1b00:1191:d69a:20ff:febf:89a0)
- # [20:01] * Joins: beverloo (~peter@5ED75878.cm-7-8b.dynamic.ziggo.nl)
- # [20:01] * abarth|zZz is now known as abarth
- # [20:02] * Joins: cardona507 (~cardona50@c-24-130-129-16.hsd1.ca.comcast.net)
- # [20:02] * aroben is now known as aroben|lunch
- # [20:06] * Quits: abarth (~abarth@c-67-169-42-39.hsd1.ca.comcast.net) (Quit: abarth)
- # [20:13] * Joins: jeremyselier (~Jeremy@seg75-1-81-57-242-198.fbx.proxad.net)
- # [20:18] * Quits: mhausenblas (~mhausenbl@wg1-nat.fwgal01.deri.ie) (Quit: mhausenblas)
- # [20:19] * Quits: JoePeck (~JoePeck@2620:0:1b00:1f08:fa1e:dfff:fed9:b9a) (Quit: -)
- # [20:19] * Quits: jeremyselier (~Jeremy@seg75-1-81-57-242-198.fbx.proxad.net) (Ping timeout: 240 seconds)
- # [20:21] * Joins: weinig (~weinig@17.203.15.167)
- # [20:25] * Joins: othermaciej (~mjs@17.246.17.157)
- # [20:27] * Quits: BlurstOfTimes (~blurstoft@168.203.117.112) (Remote host closed the connection)
- # [20:29] * Joins: boaz_ (~boaz@64.119.159.231)
- # [20:34] * Quits: boaz_ (~boaz@64.119.159.231) (Ping timeout: 240 seconds)
- # [20:36] * Quits: ojan_UUUUUUUUCK (~ojan@nat/google/x-lzcmsiezzvjsdskk) (Quit: ojan_UUUUUUUUCK)
- # [20:37] * Joins: boaz_ (~boaz@64.119.159.231)
- # [20:45] * Quits: mokush (~quassel@79.116.73.58) (Remote host closed the connection)
- # [20:46] * Quits: agektmr (~Adium@p3242-ipbf7807marunouchi.tokyo.ocn.ne.jp) (Quit: Leaving.)
- # [20:47] * aroben|lunch is now known as aroben
- # [20:51] * Joins: Lachy (~Lachlan@cm-84.215.59.50.getinternet.no)
- # [20:51] * Quits: Lachy (~Lachlan@cm-84.215.59.50.getinternet.no) (Client Quit)
- # [20:51] * Joins: Lachy (~Lachlan@cm-84.215.59.50.getinternet.no)
- # [20:51] * Quits: davidwalsh (~davidwals@75-134-27-91.dhcp.mdsn.wi.charter.com) (Quit: Reading http://davidwalsh.name)
- # [21:03] * Quits: boaz_ (~boaz@64.119.159.231) (Ping timeout: 252 seconds)
- # [21:05] * Quits: tonyg-cr (~Adium@nat/google/x-tzzutddybricoyzm) (Quit: Leaving.)
- # [21:10] <othermaciej> MikeSmith: public-html seems to be getting bugmail other than new bugs...
- # [21:11] <othermaciej> I see a few today that are keyword changes or resolutions (though it seems just plain comments are not getting through)
- # [21:11] * Quits: KrooniX (~KrooniX@irc.tellnes.com) (Ping timeout: 276 seconds)
- # [21:17] * Joins: KrooniX (~KrooniX@irc.tellnes.com)
- # [21:25] * Quits: peol (~andree@unaffiliated/peol) (Remote host closed the connection)
- # [21:25] <jgraham> othermaciej: In case you are not paying attention, Hybi seems to be discussing the handshake again
- # [21:26] <othermaciej> jgraham: is it worth my time to pay attention?
- # [21:27] * Joins: sicking (~chatzilla@nat/mozilla/x-cfdpcchlusbcaytx)
- # [21:30] * Quits: plainhao (~plainhao@mail.xbiotica.com) (Quit: plainhao)
- # [21:31] <jgraham> othermaciej: I think it is would be a net win if you pay attention. I'm not sure if you personally will benefit from it
- # [21:36] * Joins: boaz_ (~boaz@64.119.153.2)
- # [21:38] * Joins: tonyg-cr (~Adium@nat/google/x-htbbolmkacktcgee)
- # [21:58] * Joins: BlurstOfTimes (~blurstoft@168.203.117.112)
- # [22:01] * Joins: weinig_ (~weinig@17.246.16.36)
- # [22:02] * Quits: weinig_ (~weinig@17.246.16.36) (Read error: Connection reset by peer)
- # [22:02] * Joins: weinig_ (~weinig@17.246.16.36)
- # [22:02] * Quits: sicking (~chatzilla@nat/mozilla/x-cfdpcchlusbcaytx) (Ping timeout: 265 seconds)
- # [22:02] * Quits: cardona507 (~cardona50@c-24-130-129-16.hsd1.ca.comcast.net) (*.net *.split)
- # [22:02] * Quits: lhnz (~lhnz@188-223-83-48.zone14.bethere.co.uk) (*.net *.split)
- # [22:02] * Quits: salavas (~salavas@c83-248-102-83.bredband.comhem.se) (*.net *.split)
- # [22:02] * Quits: jarib (jarib@unaffiliated/jarib) (*.net *.split)
- # [22:02] * Joins: jarib (jarib@tttt.mine.nu)
- # [22:03] * Joins: salavas (~salavas@c83-248-102-83.bredband.comhem.se)
- # [22:03] * Joins: lhnz (~lhnz@188-223-83-48.zone14.bethere.co.uk)
- # [22:05] * Joins: miketaylr (~miketaylr@208.52.152.2)
- # [22:05] * Quits: weinig (~weinig@17.203.15.167) (Ping timeout: 264 seconds)
- # [22:05] * weinig_ is now known as weinig
- # [22:06] * Quits: weinig (~weinig@17.246.16.36) (Client Quit)
- # [22:08] * Joins: weinig (~weinig@17.246.16.36)
- # [22:11] * Quits: boaz_ (~boaz@64.119.153.2) (Ping timeout: 240 seconds)
- # [22:12] * Quits: mlpug (~mlpug@a88-115-171-217.elisa-laajakaista.fi) (Remote host closed the connection)
- # [22:13] * Quits: weinig (~weinig@17.246.16.36) (Quit: weinig)
- # [22:18] * Quits: maikmerten (~merten@m83-185-20-145.cust.tele2.se) (Ping timeout: 265 seconds)
- # [22:25] * Joins: dpranke (~Adium@nat/google/x-kfejuupczchfllyg)
- # [22:29] * Joins: workmad3 (~workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com)
- # [22:38] * Joins: ZombieLoffe (~e@unaffiliated/zombieloffe)
- # [22:39] * Joins: nessy (~Adium@124-168-60-18.dyn.iinet.net.au)
- # [22:41] * Joins: estes (~aestes@17.246.17.182)
- # [22:51] * Joins: tndH (~Rob@cpc6-seac20-2-0-cust102.7-2.cable.virginmedia.com)
- # [22:53] * Joins: sicking (~chatzilla@nat/mozilla/x-aephykjcogwfvhci)
- # [22:54] * Joins: expilicious (~zAyghip8@cpc2-ely02-0-0-cust338.5-1.cable.virginmedia.com)
- # [22:55] * Quits: oal (~oal@5.79-160-122.customer.lyse.net) (Remote host closed the connection)
- # [22:56] * Quits: hamcore (rhythm@unaffiliated/hamcore) (Quit: Fall seven times, stand up eight. -Japanese Proverb)
- # [22:57] * Joins: weinig (~weinig@17.246.16.36)
- # [23:01] * Quits: workmad3 (~workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com) (Remote host closed the connection)
- # [23:03] * Joins: boaz_ (~boaz@64.119.153.2)
- # [23:11] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [23:12] * Quits: miketaylr (~miketaylr@208.52.152.2) (Quit: miketaylr)
- # [23:14] * Quits: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [23:14] * Quits: weinig (~weinig@17.246.16.36) (Quit: weinig)
- # [23:20] * Quits: ROBOd (~robod@89.123.180.234) (Quit: .)
- # [23:26] * Quits: boaz_ (~boaz@64.119.153.2) (Remote host closed the connection)
- # [23:26] * Joins: boaz_ (~boaz@64.119.153.2)
- # [23:29] * Quits: Lachy (~Lachlan@cm-84.215.59.50.getinternet.no) (Quit: Leaving)
- # [23:30] * Joins: Lachy (~Lachlan@cm-84.215.59.50.getinternet.no)
- # [23:32] * Quits: ap (~ap@17.246.17.176) (Remote host closed the connection)
- # [23:32] * Joins: ap (~ap@17.246.17.176)
- # [23:36] * Quits: smaug____ (~chatzilla@cs181063178.pp.htv.fi) (Quit: ChatZilla 0.9.86 [Firefox 4.0b7pre/20100918160041])
- # [23:45] * Quits: dglazkov (~dglazkov@nat/google/x-fsivblnkclevjxyw) (Remote host closed the connection)
- # [23:45] * Joins: dglazkov (~dglazkov@nat/google/x-lyalfursrmjllvvm)
- # [23:47] * Joins: miketaylr (~miketaylr@208.52.152.2)
- # [23:51] * Quits: BlurstOfTimes (~blurstoft@168.203.117.112) (Remote host closed the connection)
- # [23:52] * Joins: cardona507 (~cardona50@c-24-130-129-16.hsd1.ca.comcast.net)
- # [23:54] * Quits: eric_carlson (~ericc@2620:0:1b00:1191:223:32ff:feb1:5d30) (Quit: eric_carlson)
- # Session Close: Fri Sep 24 00:00:00 2010
The end :)