Options:
- # Session Start: Mon Jun 30 00:00:00 2008
- # Session Ident: #whatwg
- # [00:00] <Philip`> let rec f = function 0 -> 1 | n -> n * f (n-1)
- # [00:00] <Philip`> That doesn't take long, and then you can move onto something more exciting :-)
- # [00:02] * Philip` discovers the "import __hello__" feature in Python
- # [00:03] <gsnedders> I should just try and use functional programming to generate the answers to the maths I'm currently doing at school
- # [00:03] <gsnedders> Seeming that means I have to understand the maths to decently implement it :P
- # [00:09] * Joins: jruderman_ (n=jruderma@ip68-5-179-249.oc.oc.cox.net)
- # [00:10] <Philip`> let tt n = String.concat "; " (let rec f = function 0 -> [] | m -> (string_of_int n ^ " x " ^ string_of_int m ^ " = " ^ string_of_int (n*m)) :: (f (m-1)) in List.rev (f n))
- # [00:10] <Philip`> gsnedders: That should help with your maths homework
- # [00:10] <gsnedders> Philip`: What does that do?
- # [00:11] <Philip`> It'd be cheating if I just told you :-p
- # [00:11] * gsnedders slaps Philip`
- # [00:12] <Hixie> HTTP says taht leading zeros must be ignored in the HTTP/1.1 version thing
- # [00:12] <gsnedders> Philip`: <interactive>:1:54: parse error on input `->'
- # [00:12] <Philip`> gsnedders: Wrong language, probably
- # [00:13] <Philip`> (I'm using OCaml)
- # [00:13] <Hixie> i wonder how many implementations handle HTTP/01.01 correctly
- # [00:13] <gsnedders> Hixie: everything.
- # [00:13] <Hixie> gsnedders: and HTTP/01.02?
- # [00:13] <gsnedders> Hixie: That too
- # [00:13] <gsnedders> (HTTP/1.x is just treated as HTTP/1.1 by servers, HTTP/x.x is just treated as HTTP/1.1 by clients)
- # [00:14] <gsnedders> Philip`: I have no OCaml interpreter/compiler here
- # [00:14] * jgraham considers creating an HTTP implementation that does it wrong to annoy gsnedders
- # [00:14] <Hixie> oh so they all just ignore it?
- # [00:14] <gsnedders> jgraham: You're breaking my spec!
- # [00:14] <Philip`> gsnedders: You just need to learn to read the code :-)
- # [00:15] <gsnedders> Hixie: Well, servers must parse it somewhat, and clients just check that there are numbers there
- # [00:15] <gsnedders> Hixie: a client would treat the response as HTTP/0.9 if it were "HTTP/a.b"
- # [00:15] <gsnedders> Hixie: (actually, some clients wouldn't, that behaviour is rather weird)
- # [00:15] * Quits: heycam (n=cam@210-84-41-18.dyn.iinet.net.au) ("bye")
- # [00:15] <Hixie> gsnedders: so what's the difference between the versions, for implementations?
- # [00:16] <gsnedders> Hixie: Theoretically there's a small number of differences, de-facto more or less nothing
- # [00:16] * Hixie is doing a crash course in HTTP so he can make sure the WebSockets stuff is specced right
- # [00:16] <gsnedders> Hixie: (that's HTTP/1.0 and HTTP/1.1, HTTP/0.9 is totally different)
- # [00:16] <jgraham> Philip`: Does that print times tables or something?
- # [00:17] <gsnedders> Hixie: http://twitter.com/gsnedders/statuses/846440682 :)
- # [00:17] * Joins: annevk (n=annevk@77.163.243.203)
- # [00:17] <gsnedders> annevk: You were asking what happened in GTA4 if you killed Dwanye, were you not? Want to know?
- # [00:18] <gsnedders> Hixie: I'll point out what you do wrong in the WebSockets stuff :P
- # [00:18] <Hixie> i hope so :-)
- # [00:18] <annevk> I'm sort of over GTA4
- # [00:19] <annevk> have been playing MGS4 this weekend with a friend
- # [00:19] <annevk> really nice
- # [00:19] <gsnedders> annevk: I just finished playing through the story for a second time: partly to get the achievement for completing it in under 30 hours, and also to make all the choices I didn't make before :P
- # [00:19] <Hixie> gsnedders: so what do clients and servers do different in 0.9 vs 1.0?
- # [00:19] <gsnedders> (I actually completed it in under 20 hours, too, slightly to my amazement)
- # [00:19] <gsnedders> Hixie: Everything :)
- # [00:19] <Hixie> gsnedders: elaborate? :-)
- # [00:20] <gsnedders> Hixie: HTTP/0.9 request: GET /index.html CR LF
- # [00:20] <Hixie> i mean how do they react differently
- # [00:20] <gsnedders> Hixie: HTTP/0.9 response: US-ASCII HTML
- # [00:20] <Hixie> i know that the initial request is different :-)
- # [00:20] <gsnedders> Hixie: That's all there is to HTTP.
- # [00:21] <gsnedders> (0.9)
- # [00:21] <gsnedders> I haven't done that much reverse engineering of it though
- # [00:21] <Hixie> oh so if the request is HTTP/0.9, servers just omit the headers?
- # [00:21] <annevk> I guess that's why we got <plaintext>
- # [00:22] <gsnedders> Hixie: yeah, basically
- # [00:22] <gsnedders> Hixie: there's no such thing as headers :P
- # [00:22] <Hixie> ok so 0.9 is basically uninteresting
- # [00:22] <Hixie> ok
- # [00:22] <gsnedders> Yeah, 0.9 is simple.
- # [00:22] <Hixie> and everyone who supports 1.1 just treats everything as 1.1, regardless of the version information?
- # [00:22] <gsnedders> pretty much, I think
- # [00:22] <Hixie> well
- # [00:23] <Hixie> i'm sure glad that http has versioning then
- # [00:23] <Hixie> </sarcasm>
- # [00:23] <gsnedders> it seems that servers do ignore the requirement that HTTP/0.9 responses are US-ASCII HTML, and they do just send no headers
- # [00:24] <gsnedders> http://www.w3.org/Protocols/HTTP/AsImplemented.html — the closest thing to an HTTP/0.9 spec
- # [00:25] * Quits: jruderman (n=jruderma@ip68-5-179-249.oc.oc.cox.net) (Read error: 110 (Connection timed out))
- # [00:25] * Quits: svl (n=me@60-234-138-177.bitstream.orcon.net.nz) ("And back he spurred like a madman, shrieking a curse to the sky.")
- # [00:26] <annevk> In other news, both my parents use Ubuntu now
- # [00:26] <annevk> driver for wireless was a major pita
- # [00:28] <Lachy> My interview on boagworld will finally be released in this wednesday's show
- # [00:28] <gsnedders> Anyhow, let me go sleep
- # [00:29] <Hixie> nn
- # [00:29] <Hixie> Lachy: cool
- # [00:29] <Hixie> Lachy: i've been listening to the boagworld show but apart from the WCAG2 episode their audio is so bad that i can't actually listen for more than about 2 minutes at a time
- # [00:29] <Lachy> I didn't listen to the WCAG 2 one yet
- # [00:31] <Hixie> it's not very exciting, but it does have actually listenable audio
- # [00:33] <Hixie> woah, you can send headers after the content if you use the chunked encoding?!
- # [00:33] <Lachy> hopefully mine won't be too bad. But I can't listen to my own voice, I think I sound terrible :-)
- # [00:34] <annevk> we need some proper microphones for standardssuck.org too it seems, Hixie is not the only one complaining :)
- # [00:35] <Hixie> the funny thing with the standardssuck podcasts is that because you just have the one camera, if you watch the person not talking, they're just fidgeting the whole time :-)
- # [00:35] <Hixie> you really want to have a camera per person and then a wider angle for the establishing shot
- # [00:35] <Hixie> :-)
- # [00:36] <annevk> yeah, or some nice editing software that lets you zoom in on the talking person
- # [00:36] <Lachy> donations for purchasing HD cameras and sound equipment would be very welcome
- # [00:36] <Lachy> annevk, I have final cut studio now
- # [00:36] <Lachy> I think marcos is getting a copy of it too
- # [00:37] <annevk> cool
- # [00:38] <Lachy> I'm also getting Final Cut Express, which is a simpler version aimed at consumers rather than professionals, but is slightly more advanced than iMovie
- # [00:41] <annevk> reading http://diveintomark.org/archives/2008/06/29/microformats-accessibility I wonder if it's just about microformats
- # [00:49] * Joins: jruderman (n=jruderma@ip68-5-179-249.oc.oc.cox.net)
- # [00:54] * Quits: tndH (i=Rob@87.102.5.204) ("ChatZilla 0.9.83-rdmsoft [XULRunner 1.9/2008061013]")
- # [00:58] <Hixie> so sweet to see people think that it is shocking that a spec can't compel browser vendors to do what we want them to do
- # [00:58] <Hixie> http://www.internetschoon.nl/viewSingleItem/3117
- # [01:07] * Quits: jruderman_ (n=jruderma@ip68-5-179-249.oc.oc.cox.net) (Read error: 110 (Connection timed out))
- # [01:07] <Dashiva> Hixie: That one _almost_ realized the group was founded by the very implementors he decries
- # [01:08] <Hixie> heh
- # [01:08] * annevk booked a hotel for tomorrow...
- # [01:08] * annevk arrives in Seattle at 2PM
- # [01:08] <Dashiva> "Basically all the heavy lifting for HTML5 had already been done by the WHAT-WG, which wasn\'t bound by vendors as much."
- # [01:08] <Hixie> tomorrow?
- # [01:08] <Hixie> oh, right
- # [01:08] <Hixie> Dashiva: missed that
- # [01:09] <annevk> I'm staying at HomeStead which should be pretty close to Microsoft and was the cheapest I could fine (145 USD...)
- # [01:09] * Joins: jruderman_ (n=jruderma@ip68-5-179-249.oc.oc.cox.net)
- # [01:10] <annevk> and now I'm checked in too
- # [01:10] <Hixie> i arrive on tuesday around noon
- # [01:10] * Joins: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [01:11] <annevk> k
- # [01:13] * Joins: jgraham__ (n=jgraham@web22.webfaction.com)
- # [01:13] * Quits: jgraham__ (n=jgraham@web22.webfaction.com) (Client Quit)
- # [01:14] <Hixie> http is so much more complicated than necessary
- # [01:14] <tantek> Hixie - 1.0 or 1.1?
- # [01:14] <Hixie> 1.1
- # [01:14] <Hixie> comments in header fields
- # [01:14] <Hixie> q-values in the TE: header
- # [01:15] <Hixie> i mean sheesh
- # [01:16] <Dashiva> Sensible specs would take all the fun out of implementing them
- # [01:17] * Joins: weinig_ (n=weinig@c-71-198-176-23.hsd1.ca.comcast.net)
- # [01:17] * Quits: weinig (n=weinig@c-71-198-176-23.hsd1.ca.comcast.net) (Read error: 104 (Connection reset by peer))
- # [01:17] <Hixie> also, the way the spec is organised is a mess
- # [01:17] <Hixie> it really should split request and response headers into two sections
- # [01:18] <annevk> they're splitting the spec up in seven specs it seems with httpbis
- # [01:18] <Hixie> and far too many thigns are SHOULDs that should be MUSTs
- # [01:18] <Hixie> really?
- # [01:18] <Hixie> seven?
- # [01:18] <Hixie> that'll be exciting
- # [01:18] <annevk> http://lists.w3.org/Archives/Public/ietf-http-wg/2008AprJun/0595.html
- # [01:18] <annevk> for instance
- # [01:20] <annevk> it seems rather confusing to me, but this is what it seems they're doing
- # [01:23] <Hixie> actually that organisation does make sense
- # [01:24] <annevk> oh yeah, i'd imagine it makes sense, as one the authors of HTTP made it up, it's just confusing to have to browse through all those separate documents rather than just one
- # [01:24] * Quits: jruderman (n=jruderma@ip68-5-179-249.oc.oc.cox.net) (Read error: 110 (Connection timed out))
- # [01:25] <Hixie> i need to make little stickers that say "Warning: 110" and stick them on food that i throw away
- # [01:25] <Hixie> or maybe stick it on bread that i give back to waiters at restaurants when the bread is stale
- # [01:26] * Quits: tantek_ (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net) (Read error: 110 (Connection timed out))
- # [01:27] <Philip`> Hixie: Do you have many HTTP experts eating your trash?
- # [01:27] <Hixie> i live in the bay area, so quite possibly
- # [01:33] <Hixie> section 4.4 of http 1.1 says, in part:
- # [01:33] <Hixie> "This media type UST NOT be used unless the sender knows that the recipient can arse it"
- # [01:39] * Joins: heycam (n=cam@clm-laptop.infotech.monash.edu.au)
- # [01:43] * Quits: epeus (n=KevinMar@c-98-207-134-151.hsd1.ca.comcast.net) ("The computer fell asleep")
- # [01:43] * Joins: epeus (n=KevinMar@c-98-207-134-151.hsd1.ca.comcast.net)
- # [01:57] * Quits: jacobolus (n=jacobolu@c-67-188-23-59.hsd1.ca.comcast.net)
- # [02:04] * Quits: epeus (n=KevinMar@c-98-207-134-151.hsd1.ca.comcast.net) (Read error: 110 (Connection timed out))
- # [02:04] * Quits: webben_ (n=benh@dip5-fw.corp.ukl.yahoo.com)
- # [02:10] * Joins: jruderman (n=jruderma@ip68-5-179-249.oc.oc.cox.net)
- # [02:24] * Joins: csarven (n=csarven@modemcable144.140-202-24.mc.videotron.ca)
- # [02:28] * Quits: jruderman_ (n=jruderma@ip68-5-179-249.oc.oc.cox.net) (Read error: 110 (Connection timed out))
- # [02:39] * Quits: tusho (n=tusho@91.105.117.61)
- # [02:40] * Quits: qwert666_ (n=qwert666@etp225.neoplus.adsl.tpnet.pl) ("Leaving")
- # [02:46] * weinig_ is now known as weinig|aways
- # [02:57] * Joins: eseidel (n=eseidel@c-24-118-134-245.hsd1.mn.comcast.net)
- # [03:00] * Quits: eseidel (n=eseidel@c-24-118-134-245.hsd1.mn.comcast.net) (Read error: 104 (Connection reset by peer))
- # [03:01] * Joins: eseidel (n=eseidel@c-24-118-134-245.hsd1.mn.comcast.net)
- # [03:07] * bradee-ultimate is now known as bradee-oh
- # [03:12] * Joins: jruderman_ (n=jruderma@ip68-5-179-249.oc.oc.cox.net)
- # [03:13] * Joins: jacobolus (n=jacobolu@c-67-188-23-59.hsd1.ca.comcast.net)
- # [03:29] * Quits: jruderman (n=jruderma@ip68-5-179-249.oc.oc.cox.net) (Read error: 110 (Connection timed out))
- # [03:30] * Quits: eseidel (n=eseidel@c-24-118-134-245.hsd1.mn.comcast.net)
- # [04:00] <Hixie> man i wish the http rfc didn't keep talking about what servers did wrong
- # [04:00] <Hixie> it's quite distracting
- # [04:02] <Hixie> as far as i can tell, an HTTP server that just immediately closes the connection before reading a single byte from the client is "conditionally conforming"
- # [04:12] <bradee-oh> lol
- # [04:20] * Quits: MikeSmith (n=MikeSmit@58.157.21.205) ("Less talk, more pimp walk.")
- # [04:48] * Joins: eseidel (n=eseidel@c-24-118-134-245.hsd1.mn.comcast.net)
- # [04:58] * Quits: jacobolus (n=jacobolu@c-67-188-23-59.hsd1.ca.comcast.net)
- # [05:23] * Quits: hdh (n=hdh@118.71.126.84) (Read error: 110 (Connection timed out))
- # [05:32] * Quits: eseidel (n=eseidel@c-24-118-134-245.hsd1.mn.comcast.net)
- # [05:36] * Joins: eseidel (n=eseidel@c-24-118-134-245.hsd1.mn.comcast.net)
- # [05:43] * Quits: annevk (n=annevk@77.163.243.203) (Read error: 110 (Connection timed out))
- # [05:58] * Joins: hdh (n=hdh@118.71.124.232)
- # [05:58] * Quits: eseidel (n=eseidel@c-24-118-134-245.hsd1.mn.comcast.net)
- # [06:23] * Joins: MikeSmith (n=MikeSmit@EM60-254-241-213.pool.e-mobile.ne.jp)
- # [06:34] * Joins: jruderman (n=jruderma@ip68-5-179-249.oc.oc.cox.net)
- # [06:51] * Quits: jruderman_ (n=jruderma@ip68-5-179-249.oc.oc.cox.net) (Read error: 110 (Connection timed out))
- # [07:00] <Hixie> another example of the silly overcomplexness of http:
- # [07:00] <Hixie> Comparison of expectation values is case-insensitive for unquoted
- # [07:00] <Hixie> tokens (including the 100-continue token), and is case-sensitive for
- # [07:00] <Hixie> quoted-string expectation-extensions.
- # [07:05] * Quits: MikeSmith (n=MikeSmit@EM60-254-241-213.pool.e-mobile.ne.jp) (Excess Flood)
- # [07:05] * Joins: MikeSmith (n=MikeSmit@EM60-254-241-213.pool.e-mobile.ne.jp)
- # [07:06] * Quits: JohnResig (n=jresig@c-76-118-158-44.hsd1.ma.comcast.net)
- # [07:13] * Joins: philipj (n=philipj@118.71.116.231)
- # [07:15] * Joins: jruderman_ (n=jruderma@ip68-5-179-249.oc.oc.cox.net)
- # [07:18] <gsnedders> Hixie: yeah, it's fun :)
- # [07:22] * Joins: billyjack (n=MikeSmit@EM60-254-246-116.pool.e-mobile.ne.jp)
- # [07:24] * Quits: MikeSmith (n=MikeSmit@EM60-254-241-213.pool.e-mobile.ne.jp) (Read error: 104 (Connection reset by peer))
- # [07:32] * Quits: jruderman (n=jruderma@ip68-5-179-249.oc.oc.cox.net) (Read error: 110 (Connection timed out))
- # [07:43] * Quits: csarven (n=csarven@modemcable144.140-202-24.mc.videotron.ca) (Read error: 60 (Operation timed out))
- # [07:43] * Joins: jacobolus (n=jacobolu@ip-12-22-56-126.hqglobal.net)
- # [07:44] * Quits: roc (n=roc@202.0.36.64)
- # [07:47] * Quits: heycam (n=cam@clm-laptop.infotech.monash.edu.au) ("bye")
- # [07:52] <philipj> by default simple events in HTML 5 are cancelable, but does anybody have an idea about what canceli
- # [07:52] <philipj> cancelling an event like timeupdate (HTMLMediaElement) might mean?
- # [07:54] <philipj> would cancelling a volumechange event mean setting the volume back to the old value?
- # [07:59] * Joins: shepazutoo (n=schepers@cpe-069-134-123-228.nc.res.rr.com)
- # [07:59] * jruderman_ is now known as jruderman
- # [08:00] <Hixie> philipj: canceling an event that has no default action has no effect
- # [08:08] <philipj> ok, so that they are cancelable is not practically relevant, still I assume that they should be made cancelable to comply with the spec
- # [08:10] <hsivonen> the Web in violation of Web Architecture again, film at 11
- # [08:10] <Hixie> hsivonen: haha
- # [08:11] <Hixie> philipj: yeah. at some point the spec may be made more sensible about what's cancelable and what isn't
- # [08:11] <gsnedders> How can the web be in breach with its own arch.? Oh, wait, this is what happens if you try and spec an overall arch.
- # [08:12] <hsivonen> gsnedders: I don't think it is a necessary consequence of trying to spec it
- # [08:12] <gsnedders> hsivonen: It contradicts itself too much I think to be spec'd, then whenever you try and spec anything more you'll just find more contradictions
- # [08:12] <Hixie> the web doesn't have a coherent architecture
- # [08:12] <Hixie> anyone who's tried working on a web browser can see that
- # [08:13] <gsnedders> I haven't, but I can see that :P
- # [08:13] <Hixie> it is best to just swallow that and move on, imho :-)
- # [08:13] <Hixie> man can you imagine if the html5 spec was full of paragraphs like:
- # [08:13] <Hixie> Many older HTTP/1.0 and HTTP/1.1 applications do not understand the
- # [08:13] <Hixie> Expect header.
- # [08:14] <gsnedders> "Um, so?"
- # [08:14] <Hixie> (given that this spec is nearly 10 years old, these paragraphs are really getting annoying)
- # [08:14] <gsnedders> There seem to be a few servers that still send HTTP/0.9 responses to any request
- # [08:15] <gsnedders> Which is kinda odd
- # [08:15] <gsnedders> XHR is bizarre in that case
- # [08:15] <philipj> speaking of web legacy, does anybody know where the default 300x150 box for misc elements comes from? was that the size it happened to be in old netscape or something?
- # [08:16] <hsivonen> gsnedders: what servers send 0.9 responses?
- # [08:16] <hsivonen> gsnedders: are those servers full of security holes, too
- # [08:16] * Quits: shepazu (n=schepers@cpe-069-134-123-228.nc.res.rr.com) (Read error: 110 (Connection timed out))
- # [08:16] <gsnedders> hsivonen: I dunno. Philip` gave a list of pages that did.
- # [08:16] * hsivonen wonders who profides security updates for the Netscape Enterprise Server
- # [08:17] <gsnedders> hsivonen: http://krijnhoetmer.nl/irc-logs/whatwg/20080606#l-818
- # [08:17] <Hixie> philipj: yeah, i think netscape used that for iframes or ilayers or something, and that's where it comes from
- # [08:17] <hsivonen> a friend of mine inhereted the admin duties of a site that has been in existence for quite a while, and some of the content had <plaintext> in the file system assuming 0.9 serving
- # [08:17] <gsnedders> hsivonen: Oddly enough using cURL I don't get that
- # [08:17] <hsivonen> but the server software had long since been updated
- # [08:17] * Quits: billyjack (n=MikeSmit@EM60-254-246-116.pool.e-mobile.ne.jp) ("Less talk, more pimp walk.")
- # [08:18] <gsnedders> http://www.guadeloupe-fr.com/ doesn't work at all in cURL
- # [08:19] <hsivonen> gsnedders: interesting
- # [08:19] <hsivonen> gsnedders: I wonder if these server really date from the 0.9 era
- # [08:19] <gsnedders> the rest seem to be Apache/1.3 with mod_layout
- # [08:19] <gsnedders> And work in cURL, yet not in the HTTP client in Java Philip` used
- # [08:19] <hsivonen> gsnedders: or if there's just an incompetently written script copying stuff to stdout that goes straight to a socket
- # [08:20] * hsivonen hasn't encountered mod_layout
- # [08:20] * gsnedders opens up telnet
- # [08:20] <hsivonen> gsnedders: www.guadeloupe-fr.com doesn't work with telnet for me
- # [08:20] <gsnedders> Nor me
- # [08:21] <gsnedders> How bizarre.
- # [08:21] <gsnedders> Works fine in Safari
- # [08:21] <hsivonen> gsnedders: the drmarin.galeon.com server is not a 0.9 server
- # [08:21] <gsnedders> yeah, the rest aren't
- # [08:21] <hsivonen> gsnedders: I sent a request with a bogus Host header, and I didn't get the same content back
- # [08:22] <hsivonen> gsnedders: so the request dispatcher is virtual host-aware
- # [08:22] <hsivonen> it's just the output part that sucks
- # [08:22] <gsnedders> and that's HTTP/1.1
- # [08:22] <gsnedders> The rest are sucky output
- # [08:22] <gsnedders> But it shows that support is still needed (yay)
- # [08:31] * Joins: maikmerten (n=merten@ls5laptop14.cs.uni-dortmund.de)
- # [08:34] * Joins: heycam (n=cam@210-84-41-18.dyn.iinet.net.au)
- # [08:51] <gsnedders> Hixie: How are we meant to get the computer to breath for the sarcasm end tag?
- # [09:00] <hsivonen> gsnedders: it's not black box testable
- # [09:13] * weinig|aways is now known as weinig
- # [09:14] <othermaciej> Hixie: HTML URL does have an amusing acronym
- # [09:14] <othermaciej> given the details, calling it a HURL might not be so bad
- # [09:17] * Joins: zcorpan (n=zcorpan@pat.se.opera.com)
- # [09:23] * weinig is now known as weinig|zZz
- # [09:34] <gDashiva> At one point I tried to backronym ORLI but I never got anything good
- # [09:40] * Quits: sverrej (n=sverrej@89.10.27.86) (Read error: 110 (Connection timed out))
- # [09:41] * Joins: annevk (n=annevk@77.163.243.203)
- # [09:55] * Parts: annevk (n=annevk@77.163.243.203)
- # [10:01] * Joins: Maurice (i=copyman@cc90688-a.emmen1.dr.home.nl)
- # [10:03] * Joins: roc (n=roc@121-72-180-68.dsl.telstraclear.net)
- # [10:07] * Joins: aaronlev (n=chatzill@g228012094.adsl.alicedsl.de)
- # [10:22] * Joins: sverrej (n=sverrej@pat-tdc.opera.com)
- # [10:22] * Joins: ROBOd (n=robod@89.122.216.38)
- # [10:29] <Hixie> so this idea of mcarter's is great but the cookie idea is only going to fly if the same port is used and if we ignore the scheme change
- # [10:29] <Hixie> and the authorisation thing isn't going to work unless we massively complicate the handshake to also include a 401 step
- # [10:32] <othermaciej> naturally, it has to be same-port (barring a mechanism like access-control)
- # [10:34] * Quits: sverrej (n=sverrej@pat-tdc.opera.com) ("Ex-Chat")
- # [10:37] * Joins: sverrej (n=sverrej@pat-tdc.opera.com)
- # [10:38] * Joins: webben (n=benh@nat/yahoo/x-c528be8edcd61e69)
- # [10:38] * Joins: mcarter (n=mcarter@ip-12-22-56-126.hqglobal.net)
- # [10:42] * Quits: roc (n=roc@121-72-180-68.dsl.telstraclear.net)
- # [10:47] * Joins: roc (n=roc@121-72-180-68.dsl.telstraclear.net)
- # [10:47] * othermaciej is now known as om_sleep
- # [10:53] <Hixie> http://www.w3.org/mid/g4a63l$tkg$1@ger.gmane.org
- # [10:53] <Hixie> some people are surprisingly rude on mailing lists
- # [10:53] <Hixie> (probably including me)
- # [11:04] * Joins: Windstoss (n=wind@mnhm-4d016fdc.pool.mediaWays.net)
- # [11:04] * Joins: qwert666 (n=qwert666@etp225.neoplus.adsl.tpnet.pl)
- # [11:07] <Windstoss> I have a question concerning sessionStorage and localStorage… it is said, that a storage event is fired whenever data is changed to all HTMLDocuments that can access the data. How can a sessionStorage have multiple instances that affect each other? Whenever a new window is opened, the session storage area is copied but will no longer affect the original.
- # [11:08] <Hixie> Windstoss: generally, it can't
- # [11:08] <Hixie> Windstoss: hoever
- # [11:08] <Hixie> Windstoss: say you were on page A in a window
- # [11:08] <Hixie> Windstoss: and you go to page B at the same domain in the same window, and the browser keeps page A around, just in case you go back
- # [11:08] <Hixie> Windstoss: now when you hit back, the page A is shown back on the screen without being reloaded
- # [11:09] * Quits: Lachy (n=Lachlan@85.196.122.246) ("This computer has gone to sleep")
- # [11:09] <Hixie> Windstoss: so now, if you changed anything in the sessionStorage while B was showing, the event will be fired on A when you return to it
- # [11:10] * Hixie wonders if any browsers implement RFC2817
- # [11:11] <Windstoss> Hixie: I see, thanks!
- # [11:11] <Hixie> np
- # [11:11] <Windstoss> Hixie: Maybe a note would help to clear this up?
- # [11:12] <Hixie> eventually there'll be a whole introduction section for the storage apis
- # [11:12] <Hixie> actually i guess there already is. but it will probably be longer.
- # [11:13] <Windstoss> One more question: when an HTMLDocument is affected, but not active yet, are those events kind of held back until the HTMLDocument is active?
- # [11:22] <Hixie> yeah
- # [11:22] <Hixie> it should say that somewhere
- # [11:22] <Hixie> can't see where right now
- # [11:22] <Hixie> but it's there somewhere, unless i removed it accidentally at some point
- # [11:23] * Joins: aaronlev_ (n=chatzill@e180244106.adsl.alicedsl.de)
- # [11:26] <Hixie> so what HTTP method should we pretend to use for web sockets
- # [11:26] <Hixie> GET?
- # [11:30] <hsivonen> SOCKET?
- # [11:30] * hsivonen has no idea what he is talking about
- # [11:30] <Hixie> heh
- # [11:33] <hsivonen> ooh. the WHATWG blog dashboard has a new appearance
- # [11:33] <hsivonen> "there are 107 comments in your spam queue right now"
- # [11:34] * Joins: Lachy (n=Lachlan@pat-tdc.opera.com)
- # [11:35] <hsivonen> all real spam
- # [11:35] <hsivonen> deleted
- # [11:38] * jgraham deleted the 7 articles apparently advertising holidays in Spain
- # [11:38] <hsivonen> jgraham: I though I just deleted them
- # [11:38] <hsivonen> thought
- # [11:39] <jgraham> hsivonen: Maybe we both did :)
- # [11:42] <Lachy> did you delete the offending users as well?
- # [11:42] * Joins: tndH (i=Rob@87.102.5.204)
- # [11:43] * Quits: aaronlev (n=chatzill@g228012094.adsl.alicedsl.de) (Connection timed out)
- # [11:44] <hsivonen> Lachy: in the article case, yes. In the comment cases, no.
- # [11:55] <Hixie> notes on web sockets: http://www.whatwg.org/specs/web-apps/current-work/notes
- # [11:55] <Hixie> mcarter: see ^
- # [11:56] <Hixie> i used GET instead of OPTIONS, to surprise unsuspecting servers less
- # [11:59] <Hixie> the cookies and authentication headers are going to be difficult to use in practice unless the same port is used (i'll throw in some stuff to make them be sent even though the scheme differs)
- # [12:00] <Hixie> i intend to drop the rfc 2817 ideas, since regular TLS is good enough i think
- # [12:00] <Hixie> and nobody seems to do 2817 anyway
- # [12:00] <Hixie> i want to have the server echo the origin and the socket uri as part of the handshake
- # [12:01] <Hixie> to (a) check for cross-site access being ok and (b) check that the host header is correctly interpreted
- # [12:01] <Hixie> (if the server just echoes them without checking them, then too bad)
- # [12:02] <Hixie> anyway, if anyone has comments, drop them here, i'll read them in the morning
- # [12:02] <Hixie> bed time now
- # [12:02] * Quits: maikmerten (n=merten@ls5laptop14.cs.uni-dortmund.de) (Remote closed the connection)
- # [12:06] * Joins: webben_ (n=benh@nat/yahoo/x-528eeb760ac9e4fe)
- # [12:19] * Quits: webben (n=benh@nat/yahoo/x-c528be8edcd61e69) (Read error: 110 (Connection timed out))
- # [12:36] * Quits: jacobolus (n=jacobolu@ip-12-22-56-126.hqglobal.net)
- # [12:39] * Quits: jgraham_ (n=jgraham@xpc9.ast.cam.ac.uk) ("leaving")
- # [12:54] * Joins: webben (n=benh@nat/yahoo/x-ca352e635804e1f8)
- # [13:11] * Quits: webben_ (n=benh@nat/yahoo/x-528eeb760ac9e4fe) (No route to host)
- # [13:20] <takkaria> half the problem with the old guard is that they seem to believe that defining error recovery for something is tantamount to defining a new standard
- # [13:22] <Lachy> takkaria, in many cases, it is defining a new standard :-)
- # [13:22] * Joins: maikmerten (n=merten@ls5laptop14.cs.uni-dortmund.de)
- # [13:22] <hsivonen> undefined error handling is where vendor lock-in is
- # [13:23] <takkaria> Lachy: yes, but in that case all implementations also define a new standard
- # [13:24] <hsivonen> aside: it seems that Gecko and WebKit run scripts differently when it comes to dynamic DOM insertions
- # [13:24] <hsivonen> the code I announced on the blog has the right nested document.write semantics in WebKit, but apparently not in Gecko
- # [13:27] <gDashiva> takkaria: Also, defining error recovery is encouraging errors
- # [13:27] <takkaria> gDashiva: yes, that's the one
- # [13:27] <takkaria> because if you don't define it, then no-one's interoperable, so no-one will come to rely on any errorr-handling behaviour because it varies so wildly
- # [13:29] * Joins: myakura (n=myakura@p1216-ipbf601marunouchi.tokyo.ocn.ne.jp)
- # [13:29] * Parts: myakura (n=myakura@p1216-ipbf601marunouchi.tokyo.ocn.ne.jp) ("Leaving...")
- # [13:29] * Joins: myakura (n=myakura@p1216-ipbf601marunouchi.tokyo.ocn.ne.jp)
- # [13:34] <hsivonen> takkaria: cunning plan :-)
- # [13:34] * Quits: webben (n=benh@nat/yahoo/x-ca352e635804e1f8)
- # [13:35] <takkaria> I suspect it might actually work somewhat if the marketplace was more varied
- # [13:35] <Lachy> takkaria, that sounds surprisingly like the mentality of some other working groups I know
- # [13:36] <takkaria> e.g. if, say, no one vendor had more than 10% market share
- # [13:37] <Lachy> (I'm pretty sure there's a few mails on www-html or www-html-editor from an XHTML2WG members saying roughly the same thing.)
- # [13:42] <takkaria> I guess the mentality is a left-over from physical engineering standards
- # [13:43] <takkaria> there's not really any such thing as specified error recovery from getting the wrong track width for railways or different-sized screwheads
- # [13:45] * Quits: shepazutoo (n=schepers@cpe-069-134-123-228.nc.res.rr.com)
- # [13:47] <Lachy> takkaria, but there does need to be error recovery when some idiot uses the wrong size screw for the job, even if the screw itself was really good quality.
- # [13:48] <takkaria> yeah, but the error recovery is specified by the laws of material science and those laws are fairly unchangeable. :)
- # [13:49] <takkaria> as least AIUI
- # [13:52] * Joins: qwert666_ (n=qwert666@etp225.neoplus.adsl.tpnet.pl)
- # [14:11] * Quits: qwert666 (n=qwert666@etp225.neoplus.adsl.tpnet.pl) (Connection timed out)
- # [14:25] <roc> error handling would still be a problem even if no vendor had more than 10% market share
- # [14:25] <roc> because you can be sure that *some* error situations would be handled the same way by the majority of engines, just by luck
- # [14:26] * Quits: Windstoss (n=wind@mnhm-4d016fdc.pool.mediaWays.net) ("*plonk*")
- # [14:26] <roc> so they would become the de facto standard
- # [14:26] <roc> and so it goes
- # [14:28] * Quits: roc (n=roc@121-72-180-68.dsl.telstraclear.net)
- # [14:33] * Joins: webben (n=benh@nat/yahoo/x-c4219553f59ef307)
- # [14:36] * Quits: tndH (i=Rob@87.102.5.204) ("ChatZilla 0.9.83-rdmsoft [XULRunner 1.9/2008061013]")
- # [14:38] * Joins: aaronlev__ (n=chatzill@e180244106.adsl.alicedsl.de)
- # [14:38] * aaronlev__ is now known as aaronlev
- # [14:47] * Quits: aaronlev (n=chatzill@e180244106.adsl.alicedsl.de) ("ChatZilla 0.9.83 [Firefox 3.0/2008052906]")
- # [14:47] * Joins: webben_ (n=benh@nat/yahoo/x-d69cb74b297e31fc)
- # [14:47] * Quits: webben (n=benh@nat/yahoo/x-c4219553f59ef307) (Read error: 104 (Connection reset by peer))
- # [14:53] * Quits: aaronlev_ (n=chatzill@e180244106.adsl.alicedsl.de) (Read error: 110 (Connection timed out))
- # [17:15] * Disconnected
- # [17:15] * Attempting to rejoin channel #whatwg
- # [17:15] * Rejoined channel #whatwg
- # [17:15] * Topic is 'WHATWG (HTML5) -- http://www.whatwg.org/ -- Logs: http://krijnhoetmer.nl/irc-logs/ -- Please leave your sense of logic at the door, thanks!'
- # [17:15] * Set by gsnedders on Tue Dec 18 21:41:19
- # [17:15] * Quits: qwert666_ (n=qwert666@etp225.neoplus.adsl.tpnet.pl) ("Leaving")
- # [17:18] * Joins: tusho (n=tusho@91.105.117.61)
- # [17:19] <hdh> hsivonen: I host a V.nu at home; the --stylesheet argument's first letter is cut off, it becomes '<link href="ttp://hdh.dyn-o-saur.com/style/v.nu.css" rel="stylesheet">'
- # [17:24] * Joins: hober (n=ted@unaffiliated/hober)
- # [17:25] * Joins: webben (n=benh@nat/yahoo/x-c52b91a6bf9df24c)
- # [17:26] * Quits: webben_ (n=benh@nat/yahoo/x-d69cb74b297e31fc) (Read error: 104 (Connection reset by peer))
- # [17:27] <hdh> line 596 should have been stylesheet = arg[13:]
- # [17:44] * Joins: qwert666 (n=qwert666@acar196.neoplus.adsl.tpnet.pl)
- # [18:00] * Quits: epeus (n=KevinMar@c-98-207-134-151.hsd1.ca.comcast.net) ("The computer fell asleep")
- # [18:02] * Joins: epeus (n=KevinMar@c-98-207-134-151.hsd1.ca.comcast.net)
- # [18:02] * Quits: bzed (n=bzed@devel.recluse.de) (Remote closed the connection)
- # [18:04] * Quits: aaronlev (n=chatzill@e180244106.adsl.alicedsl.de) (card.freenode.net irc.freenode.net)
- # [18:04] * Quits: billmason (n=billmaso@ip192.unival.com) (card.freenode.net irc.freenode.net)
- # [18:04] * Quits: sverrej (n=sverrej@pat-tdc.opera.com) (card.freenode.net irc.freenode.net)
- # [18:04] * Quits: Maurice (i=copyman@cc90688-a.emmen1.dr.home.nl) (card.freenode.net irc.freenode.net)
- # [18:04] * Quits: ianloic (i=yakk@glub.dreamhostps.com) (card.freenode.net irc.freenode.net)
- # [18:04] * Quits: csarven (n=csarven@on-irc.csarven.ca) (card.freenode.net irc.freenode.net)
- # [18:04] * Quits: zcorpan (n=zcorpan@pat.se.opera.com) (card.freenode.net irc.freenode.net)
- # [18:04] * Quits: weinig|zZz (n=weinig@c-71-198-176-23.hsd1.ca.comcast.net) (card.freenode.net irc.freenode.net)
- # [18:04] * Quits: gDashiva (n=noone@195.18.164.170) (card.freenode.net irc.freenode.net)
- # [18:04] * Quits: hendry (n=hendry@nox.vm.bytemark.co.uk) (card.freenode.net irc.freenode.net)
- # [18:04] * Quits: psa2 (n=yomode@71.93.19.66) (card.freenode.net irc.freenode.net)
- # [18:05] * Quits: tusho (n=tusho@91.105.117.61) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: aroben (n=aroben@unaffiliated/aroben) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: jruderman (n=jruderma@ip68-5-179-249.oc.oc.cox.net) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: hdh (n=hdh@118.71.124.232) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: timelyx (n=timeless@a88-115-13-211.elisa-laajakaista.fi) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: tomg (n=nntom@unable.to.resolve.host.name) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: doublec (n=chris@li5-223.members.linode.com) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: jmb (n=jmb@login.ecs.soton.ac.uk) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: toolskyn (n=toolskyn@apher.xlshosting.com) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: hsivonen (n=hsivonen@kekkonen.cs.hut.fi) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: bradee-oh (n=bradeeoh@web7.webfaction.com) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: mpt (n=mpt@canonical/launchpad/mpt) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: jgraham (n=jgraham@81-86-212-29.dsl.pipex.com) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: mitsuhiko (n=nnnnmits@ubuntu/member/mitsuhiko) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: inimino (n=inimino@atekomi.inimino.org) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: tndH (i=Rob@adsl-87-102-85-115.karoo.KCOM.COM) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: scotfl (n=scotfl@S0106001b114f914a.ss.shawcable.net) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: Yudai (n=Yudai@p9258c3.kngwnt01.ap.so-net.ne.jp) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: jcranmer (n=jcranmer@ltsp1.csl.tjhsst.edu) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: Kuruma (n=Kuruman@h123-176-107-050.catv01.catv-yokohama.ne.jp) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: mcarter (n=mcarter@ip-12-22-56-126.hqglobal.net) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: Hixie (i=ianh@trivini.no) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: hober (n=ted@unaffiliated/hober) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: heycam (n=cam@210-84-41-18.dyn.iinet.net.au) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: om_sleep (n=mjs@c-24-5-43-151.hsd1.ca.comcast.net) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: Dashiva (i=Dashiva@wikia/Dashiva) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: Lachy (n=Lachlan@85.196.122.246) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: ROBOd (n=robod@89.122.216.38) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: Philip` (n=philip@zaynar.demon.co.uk) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: tankldee (i=rje@chef.nerp.net) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: takkaria (n=takkaria@isparp.co.uk) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: qwert666 (n=qwert666@acar196.neoplus.adsl.tpnet.pl) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: webben (n=benh@nat/yahoo/x-c52b91a6bf9df24c) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: gavin (n=gavin@firefox/developer/gavin) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: gavin_ (n=gavin@firefox/developer/gavin) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: mrbkap (n=mrbkap@people.mozilla.com) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: wakaba (n=w@64.162.210.220.dy.bbexcite.jp) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: deltab (n=deltab@82-36-30-34.cable.ubr02.smal.blueyonder.co.uk) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: syp__ (n=syp@lasigpc9.epfl.ch) (card.freenode.net irc.freenode.net)
- # [18:10] * Quits: YaaL (i=yaal@hell.pl) (Connection reset by peer)
- # [18:12] * Joins: Kuruma (n=Kuruman@h123-176-107-050.catv01.catv-yokohama.ne.jp)
- # [18:12] * Joins: bzed (n=bzed@devel.recluse.de)
- # [18:12] * Joins: qwert666 (n=qwert666@acar196.neoplus.adsl.tpnet.pl)
- # [18:12] * Joins: webben (n=benh@nat/yahoo/x-c52b91a6bf9df24c)
- # [18:12] * Joins: hober (n=ted@unaffiliated/hober)
- # [18:12] * Joins: tusho (n=tusho@91.105.117.61)
- # [18:12] * Joins: tndH (i=Rob@adsl-87-102-85-115.karoo.KCOM.COM)
- # [18:12] * Joins: aaronlev (n=chatzill@e180244106.adsl.alicedsl.de)
- # [18:12] * Joins: csarven (n=csarven@on-irc.csarven.ca)
- # [18:12] * Joins: billmason (n=billmaso@ip192.unival.com)
- # [18:12] * Joins: Lachy (n=Lachlan@85.196.122.246)
- # [18:12] * Joins: aroben (n=aroben@unaffiliated/aroben)
- # [18:12] * Joins: mcarter (n=mcarter@ip-12-22-56-126.hqglobal.net)
- # [18:12] * Joins: sverrej (n=sverrej@pat-tdc.opera.com)
- # [18:12] * Joins: ROBOd (n=robod@89.122.216.38)
- # [18:12] * Joins: Maurice (i=copyman@cc90688-a.emmen1.dr.home.nl)
- # [18:12] * Joins: zcorpan (n=zcorpan@pat.se.opera.com)
- # [18:12] * Joins: heycam (n=cam@210-84-41-18.dyn.iinet.net.au)
- # [18:12] * Joins: jruderman (n=jruderma@ip68-5-179-249.oc.oc.cox.net)
- # [18:12] * Joins: hdh (n=hdh@118.71.124.232)
- # [18:12] * Joins: weinig|zZz (n=weinig@c-71-198-176-23.hsd1.ca.comcast.net)
- # [18:12] * Joins: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [18:12] * Joins: scotfl (n=scotfl@S0106001b114f914a.ss.shawcable.net)
- # [18:12] * Joins: om_sleep (n=mjs@c-24-5-43-151.hsd1.ca.comcast.net)
- # [18:12] * Joins: Philip` (n=philip@zaynar.demon.co.uk)
- # [18:12] * Joins: gavin (n=gavin@firefox/developer/gavin)
- # [18:12] * Joins: timelyx (n=timeless@a88-115-13-211.elisa-laajakaista.fi)
- # [18:12] * Joins: bradee-oh (n=bradeeoh@web7.webfaction.com)
- # [18:12] * Joins: jgraham (n=jgraham@81-86-212-29.dsl.pipex.com)
- # [18:12] * Joins: jmb (n=jmb@login.ecs.soton.ac.uk)
- # [18:12] * Joins: gDashiva (n=noone@195.18.164.170)
- # [18:12] * Joins: toolskyn (n=toolskyn@apher.xlshosting.com)
- # [18:12] * Joins: psa2 (n=yomode@71.93.19.66)
- # [18:12] * Joins: tomg (n=nntom@unable.to.resolve.host.name)
- # [18:12] * Joins: doublec (n=chris@li5-223.members.linode.com)
- # [18:12] * Joins: ianloic (i=yakk@glub.dreamhostps.com)
- # [18:12] * Joins: hsivonen (n=hsivonen@kekkonen.cs.hut.fi)
- # [18:12] * Joins: mpt (n=mpt@canonical/launchpad/mpt)
- # [18:12] * Joins: inimino (n=inimino@atekomi.inimino.org)
- # [18:12] * Joins: mitsuhiko (n=nnnnmits@ubuntu/member/mitsuhiko)
- # [18:12] * Joins: mrbkap (n=mrbkap@people.mozilla.com)
- # [18:12] * Joins: Yudai (n=Yudai@p9258c3.kngwnt01.ap.so-net.ne.jp)
- # [18:12] * Joins: jcranmer (n=jcranmer@ltsp1.csl.tjhsst.edu)
- # [18:12] * Joins: Hixie (i=ianh@trivini.no)
- # [18:12] * Joins: hendry (n=hendry@nox.vm.bytemark.co.uk)
- # [18:12] * Joins: syp__ (n=syp@lasigpc9.epfl.ch)
- # [18:12] * Joins: deltab (n=deltab@82-36-30-34.cable.ubr02.smal.blueyonder.co.uk)
- # [18:12] * Joins: takkaria (n=takkaria@isparp.co.uk)
- # [18:12] * Joins: wakaba (n=w@64.162.210.220.dy.bbexcite.jp)
- # [18:12] * Joins: tankldee (i=rje@chef.nerp.net)
- # [18:12] * Joins: gavin_ (n=gavin@firefox/developer/gavin)
- # [18:12] * Joins: Dashiva (i=Dashiva@wikia/Dashiva)
- # [18:13] * Joins: YaaL (i=yaal@hell.pl)
- # [18:13] * Joins: deane (n=dean@121-72-163-229.dsl.telstraclear.net)
- # [18:26] * Quits: epeus (n=KevinMar@c-98-207-134-151.hsd1.ca.comcast.net) (Connection timed out)
- # [18:37] * Quits: deane (n=dean@121-72-163-229.dsl.telstraclear.net) (Read error: 110 (Connection timed out))
- # [18:42] * Joins: epeus (n=KevinMar@nat/google/x-c83eac9d1f0d2ea1)
- # [18:47] * Quits: weinig|zZz (n=weinig@c-71-198-176-23.hsd1.ca.comcast.net)
- # [19:08] * Quits: sverrej (n=sverrej@pat-tdc.opera.com) (Read error: 110 (Connection timed out))
- # [19:10] * Joins: maikmerten (n=maikmert@L9d02.l.pppool.de)
- # [19:28] * Joins: qwert666_ (n=qwert666@acar196.neoplus.adsl.tpnet.pl)
- # [19:29] * Joins: dbaron (n=dbaron@corp-241.mountainview.mozilla.com)
- # [19:33] * Quits: om_sleep (n=mjs@c-24-5-43-151.hsd1.ca.comcast.net) (Read error: 104 (Connection reset by peer))
- # [19:33] * Joins: csarven- (n=csarven@on-irc.csarven.ca)
- # [19:33] * Joins: othermaciej (n=mjs@c-24-5-43-151.hsd1.ca.comcast.net)
- # [19:40] * Quits: epeus (n=KevinMar@nat/google/x-c83eac9d1f0d2ea1) ("The computer fell asleep")
- # [19:41] * Joins: epeus (n=KevinMar@nat/google/x-2c5f4f3970636b70)
- # [19:42] * Joins: weinig (n=weinig@17.255.111.221)
- # [19:43] * Quits: csarven (n=csarven@on-irc.csarven.ca) (Read error: 110 (Connection timed out))
- # [19:45] * Joins: weinig_ (n=weinig@nat/apple/x-b617227c69ffb21d)
- # [19:45] * Quits: qwert666 (n=qwert666@acar196.neoplus.adsl.tpnet.pl) (Connection timed out)
- # [19:52] * Joins: hasather (n=hasather@ti0034a380-2730.bb.online.no)
- # [19:57] * Quits: epeus (n=KevinMar@nat/google/x-2c5f4f3970636b70) (Connection timed out)
- # [19:59] * Joins: othermaciej_ (n=mjs@c-24-5-43-151.hsd1.ca.comcast.net)
- # [19:59] * Quits: othermaciej (n=mjs@c-24-5-43-151.hsd1.ca.comcast.net) (Read error: 104 (Connection reset by peer))
- # [20:01] * othermaciej_ is now known as othermaciej
- # [20:01] * Quits: weinig (n=weinig@17.255.111.221) (Read error: 110 (Connection timed out))
- # [20:10] * Joins: epeus (n=KevinMar@nat/google/x-2c0b58fbf856e9d2)
- # [20:34] * Joins: eseidel (n=eseidel@c-24-118-134-245.hsd1.mn.comcast.net)
- # [20:36] * Joins: kingryan (n=ryan@c-24-5-77-167.hsd1.ca.comcast.net)
- # [20:36] * Quits: epeus (n=KevinMar@nat/google/x-2c0b58fbf856e9d2) ("The computer fell asleep")
- # [20:37] * Joins: epeus (n=KevinMar@nat/google/x-77fb1384fef690df)
- # [20:37] * weinig_ is now known as weinig
- # [20:49] * Quits: weinig (n=weinig@nat/apple/x-b617227c69ffb21d)
- # [20:53] * Quits: epeus (n=KevinMar@nat/google/x-77fb1384fef690df) (Connection timed out)
- # [20:54] * Joins: weinig (n=weinig@nat/apple/x-53324e19125d85ff)
- # [21:00] * Joins: MikeSmith (n=MikeSmit@c-24-16-159-208.hsd1.mn.comcast.net)
- # [21:04] * Quits: weinig (n=weinig@nat/apple/x-53324e19125d85ff)
- # [21:12] * Joins: epeus (n=KevinMar@nat/google/x-cc3caf06f1a59de3)
- # [21:22] <hsivonen> hdh: fixed thanks. (the numbers for stylesheet and microsyntaxes were reversed)
- # [21:32] * Quits: epeus (n=KevinMar@nat/google/x-cc3caf06f1a59de3) ("The computer fell asleep")
- # [21:33] * Joins: epeus (n=KevinMar@nat/google/x-4f82fc71deca9623)
- # [21:39] * Quits: csarven- (n=csarven@on-irc.csarven.ca) (Read error: 110 (Connection timed out))
- # [21:48] * Quits: maikmerten (n=maikmert@L9d02.l.pppool.de) ("Leaving")
- # [21:51] * Quits: epeus (n=KevinMar@nat/google/x-4f82fc71deca9623) (Connection timed out)
- # [21:53] * Joins: epeus (n=KevinMar@nat/google/x-9533766bc6a5152e)
- # [21:53] * Quits: epeus (n=KevinMar@nat/google/x-9533766bc6a5152e) (Client Quit)
- # [21:53] * Joins: epeus (n=KevinMar@nat/google/x-17827aa5ad4bd1e1)
- # [21:54] <Hixie> mcarter: yt?
- # [22:03] * Joins: sverrej (n=sverrej@89.10.27.86)
- # [22:03] * Quits: ROBOd (n=robod@89.122.216.38) ("http://www.robodesign.ro")
- # [22:09] * Quits: epeus (n=KevinMar@nat/google/x-17827aa5ad4bd1e1) (Connection timed out)
- # [22:09] * Joins: epeus (n=KevinMar@nat/google/x-831ffab1b767aad8)
- # [22:10] * Quits: aroben (n=aroben@unaffiliated/aroben) ("Leaving")
- # [22:11] <hsivonen> http://tech.slashdot.org/tech/08/06/30/1845201.shtml
- # [22:11] * Joins: csarven (i=csarven@on-irc.csarven.ca)
- # [22:11] * Joins: aroben (n=aroben@c-71-58-56-76.hsd1.pa.comcast.net)
- # [22:11] * Quits: dbaron (n=dbaron@corp-241.mountainview.mozilla.com) (Read error: 110 (Connection timed out))
- # [22:12] * hsivonen wonders if commenters are up to speed about canvas and svg
- # [22:21] * Joins: dbaron (n=dbaron@corp-241.mountainview.mozilla.com)
- # [22:21] <othermaciej> 2D vector graphics, we'll get right on that, sir
- # [22:24] <othermaciej> looks like openajax.org is down, too bad, I was curious what the list is
- # [22:24] <Hixie> the list isn't too bad, but it aligns pretty closely with what we've already got in the works, and things we know we should have in the works but don't have editors for
- # [22:24] <Dashiva> How about anti-slashdotting support in browsers? :)
- # [22:24] <Hixie> some good ideas, though
- # [22:24] <Philip`> http://google.com/search?q=cache:http://www.openajax.org/runtime/wiki/Feature_Requests_Summary_Page&strip=1
- # [22:24] <Hixie> i spend more time crafting the checkin comments than making the edits when i'm doing editorial work
- # [22:24] <Hixie> that's just silly
- # [22:26] <Philip`> http://azarask.in/blog/post/contextfreejs-algorithm-ink-making-art-with-javascript/ wants canvas getTransform()
- # [22:27] <othermaciej> a lot of the things they list are things that are already in browsers afaik
- # [22:27] <othermaciej> well, some of them anyway
- # [22:28] * Philip` notices that DNS is already being widely abused to form words, disregarding the whole hierarchy idea, so it seems sensible to allow arbitrary words without forcing a weird dot in them
- # [22:28] * Quits: epeus (n=KevinMar@nat/google/x-831ffab1b767aad8) ("The computer fell asleep")
- # [22:29] * Joins: epeus (n=KevinMar@nat/google/x-bf3e27744d058f51)
- # [22:37] * Quits: hdh (n=hdh@118.71.124.232) (Remote closed the connection)
- # [22:39] * Joins: Grok (n=Jonathan@c-71-203-202-139.hsd1.tn.comcast.net)
- # [22:41] * Quits: dbaron (n=dbaron@corp-241.mountainview.mozilla.com) ("8403864 bytes have been tenured, next gc will be global.")
- # [22:43] * Joins: jacobolus (n=jacobolu@adsl-69-228-190-230.dsl.snfc21.pacbell.net)
- # [22:46] * Grok is now known as Loughes
- # [22:52] * Joins: weinig (n=weinig@17.203.15.244)
- # [22:53] * Joins: myakura (n=myakura@p1216-ipbf601marunouchi.tokyo.ocn.ne.jp)
- # [22:59] <csarven> Hixie Would you be able to verify the accuracy of this: The purpose of the <object> element is to allow the browser to run an external application for a non-native data type (e.g., Java applet).
- # [22:59] <hsivonen> precise terminology and defined error handling isn't exactly what RSS 2.0 is known for
- # [23:00] <csarven> or hsivonen :)
- # [23:01] * Quits: weinig (n=weinig@17.203.15.244)
- # [23:04] * Joins: dbaron (n=dbaron@corp-241.mountainview.mozilla.com)
- # [23:06] * Joins: heycam` (n=cam@124-168-29-248.dyn.iinet.net.au)
- # [23:07] <mcarter> Hixie, whats up
- # [23:09] * Joins: weinig (n=weinig@17.255.109.139)
- # [23:10] * Quits: myakura (n=myakura@p1216-ipbf601marunouchi.tokyo.ocn.ne.jp) ("Leaving...")
- # [23:10] * Quits: weinig (n=weinig@17.255.109.139) (Client Quit)
- # [23:14] * Quits: heycam (n=cam@210-84-41-18.dyn.iinet.net.au) (Read error: 101 (Network is unreachable))
- # [23:16] * Quits: csarven (i=csarven@on-irc.csarven.ca) ("http://www.csarven.ca")
- # [23:20] * Parts: hasather (n=hasather@ti0034a380-2730.bb.online.no)
- # [23:21] * Quits: epeus (n=KevinMar@nat/google/x-bf3e27744d058f51) ("The computer fell asleep")
- # [23:21] * Joins: epeus (n=KevinMar@nat/google/x-0aa36feffd51ca1d)
- # [23:25] * Joins: roc (n=roc@202.0.36.64)
- # [23:26] * Quits: Maurice (i=copyman@cc90688-a.emmen1.dr.home.nl) ("Disconnected...")
- # [23:41] * Joins: weinig (n=weinig@17.255.109.139)
- # [23:44] * Joins: weinig_ (n=weinig@nat/apple/x-74bb561a6a0cb60a)
- # [23:46] * Quits: othermaciej (n=mjs@c-24-5-43-151.hsd1.ca.comcast.net)
- # [23:46] * Quits: jgraham (n=jgraham@81-86-212-29.dsl.pipex.com) ("Ex-Chat")
- # [23:46] * Joins: jgraham (n=jgraham@web22.webfaction.com)
- # [23:51] * Quits: weinig_ (n=weinig@nat/apple/x-74bb561a6a0cb60a)
- # [23:58] <Hixie> mcarter: http://krijnhoetmer.nl/irc-logs/whatwg/20080630#l-326
- # Session Close: Tue Jul 01 00:00:00 2008
The end :)