Options:
- # Session Start: Tue Oct 06 00:00:00 2009
- # Session Ident: #whatwg
- # [00:02] <TabAtkins> jgraham: That link doesn't show a failure mode of Haskell as a functional language, but rather a failure mode from it being a *lazy* language.
- # [00:03] <jgraham> TabAtkins: Fair enough
- # [00:03] * jgraham -> sleep
- # [00:03] <TabAtkins> jgraham is also a lazy language.
- # [00:03] <TabAtkins> Always sleeping...
- # [00:07] * Quits: hobertoAtWork (n=hobertoa@gw1.mcgraw-hill.com) ("Nettalk6 - www.ntalk.de")
- # [00:11] * Joins: mitnavn (n=mitnavn@unaffiliated/mitnavn)
- # [00:13] * Joins: erlehmann (n=erlehman@tmo-109-179.customers.d1-online.com)
- # [00:14] * Quits: shepazu (n=schepers@129.33.192.107)
- # [00:14] * Parts: marvin- (n=a@skinner.eecg.toronto.edu) ("Leaving")
- # [00:18] * Quits: paul_irish (n=paul_iri@12.33.239.250)
- # [00:19] <TabAtkins> Also, jgraham: http://donsbot.wordpress.com/2008/06/
- # [00:19] <TabAtkins> Same author, a month later, explaining how the issue *can* be optimized away by the compiler, but GHC's current compiler is biased in a particular way that makes it difficult.
- # [00:20] <TabAtkins> He then pulls out a library that augments the compiler (easy to do in GHC) that fixes the bias and optimizes it properly, while using very high-level concepts the whole time.
- # [00:26] * Quits: heycam (n=cam@nat/mozilla/x-znnednwoyakburku) ("bye")
- # [00:31] * Parts: cohitre (n=cohitre@c-24-18-158-106.hsd1.wa.comcast.net)
- # [00:34] * Quits: jennb (n=jennb@74.125.59.65)
- # [00:35] * Joins: jennb (n=jennb@74.125.59.73)
- # [00:37] * Quits: Rik` (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net) (Read error: 113 (No route to host))
- # [00:39] * Quits: borismus (n=borismus@CMU-348674.WV.CC.CMU.EDU)
- # [00:41] <Philip`> TabAtkins: Libraries that augment GHC compiler optimisations are very high-level concepts?
- # [00:41] <TabAtkins> Philip`, huh? No, the library makes the compiler smarter.
- # [00:41] <TabAtkins> Anything to do with compilers is by necessity probably not high-level.
- # [00:42] <TabAtkins> The point, though, is that then he can continue using proper high-level primitives in his code, secure in the knowledge that the compiler is smart enough to optimize it properly.
- # [00:43] * Joins: doublec (n=doublec@203-97-204-82.dsl.clear.net.nz)
- # [00:46] <Dashiva> TabAtkins: He wasn't secure before, and he isn't secure now. It's just a matter of time before he hits the next compiler weirdness.
- # [00:46] <Philip`> TabAtkins: He can only be secure in that knowledge because he's looked at compiler details and disassembly output to work out that the compiler will be smart enough in this particular case
- # [00:49] <TabAtkins> Dashiva, Philip`, well duh. There will always be places where the compiler fails. What was shown is that you *can* achieve that super-tight assembly in pure Haskell, which means the rest of your code (which is *not* performance-critical) can also be in Haskell. The person writing pure C has to do the entire thing in C, which is a punishment all by itself.
- # [00:50] <TabAtkins> And those compiler-failures are pretty much only relevant on tight inner loops, which you can find via profiling and spend the effort necessary to rewrite into a more efficient form.
- # [00:51] <TabAtkins> As opposed to writing in a low-level language, where you have to deal with that sort of thing *all the time*, because you simply don't *have* higher-level primitives to work with.
- # [00:52] * Quits: webben (n=Adium@dip5-fw.corp.ukl.yahoo.com) (Read error: 110 (Connection timed out))
- # [00:52] <Philip`> At least the person writing C did the whole inner loop in a single line of pretty straightforward code, and got performance equivalent to a whole series of blog posts on writing the same thing in Haskell :-p
- # [00:52] <Dashiva> And it's amazing how something as simple as summing a list becomes a degenerate case :)
- # [00:53] <TabAtkins> Dashiva: Summing a list of 1e9 doubles is a degenerate case in *any* language.
- # [00:54] <TabAtkins> Philip`, the trivial transformation for Haskell (done in the first post linked by jgraham) is basically equivalent to the C code.
- # [00:55] <TabAtkins> Except that it still gets to use the wonderful abstraction of a list of 1e9 doubles elsewhere, while C can *never* do so - it has to manually implement laziness at the point of necessity.
- # [00:56] * Philip` remembers reading a vaguely interesting thing about a game that was developed in a custom dialect of Lisp, including a whole sub-language for writing PS2 assembly code for performance-critical bits
- # [00:57] <TabAtkins> That'd be one of the Crash Bandicoot games.
- # [00:57] <TabAtkins> One of the things it did was optimize the placement of resources on the disk, allowing for data-streaming at a level that would have been impossible by hand.
- # [00:57] <TabAtkins> It was in GamaSutra originally.
- # [00:59] <TabAtkins> http://c2.com/cgi/wiki?LispInJakAndDaxter
- # [00:59] <Philip`> (But then they got bought by EA and had to standardise on C++)
- # [01:00] <daedb> Sony owns Naughty Dog
- # [01:00] <Philip`> Oh, okay, I guessed wrong :-)
- # [01:01] * Philip` notes that he can count the number of times he's wished for a list of 1e9 doubles on the fingers of one elbow
- # [01:03] <TabAtkins> Philip`, so you won't have to worry about the compiler failing when you use a naive strategy in Haskell, will you?
- # [01:04] <TabAtkins> And yeah, part of the problem with ND was they overevolved their dialect, so that when enough engineers left they no longer had the knowledge necessary to maintain it.
- # [01:09] * Quits: jcranmer (n=jcranmer@ltsp2.csl.tjhsst.edu) ("Lost terminal")
- # [01:09] * Joins: jcranmer (n=jcranmer@ltsp2.csl.tjhsst.edu)
- # [01:12] <Hixie> should i add document.head?
- # [01:13] <Hixie> i think it makes sense on the long run; would it be bad to add it now?
- # [01:13] * Quits: jcranmer (n=jcranmer@ltsp2.csl.tjhsst.edu) (Remote closed the connection)
- # [01:13] <TabAtkins> I think it's probably fine. I doubt many people add .head to document, unless they're specifically emulating what we're trying to do.
- # [01:14] <TabAtkins> (Though my opinion doesn't count for much, since I'm not an implementor.)
- # [01:16] * Quits: explicit_ (i=bill@cpc1-ely05-2-0-cust456.5-1.cable.virginmedia.com)
- # [01:17] * Joins: jcranmer (n=jcranmer@ltsp2.csl.tjhsst.edu)
- # [01:18] * Joins: Hish_ (n=chatzill@m1b0436d0.tmodns.net)
- # [01:21] <Hixie> jgraham: pimpmyspec.net is hanging doing w3c annotations
- # [01:21] * Quits: taf2 (n=taf2@38.99.201.242)
- # [01:22] <Hixie> oh nevermind, it unblocked
- # [01:42] * Quits: jorlow (n=jorlow@nat/google/x-vvjbqdgxzhxdwicy)
- # [01:42] * jorlow_ is now known as jorlow
- # [01:46] * Joins: nessy (n=nessy@124-170-205-120.dyn.iinet.net.au)
- # [01:55] * Quits: dglazkov (n=dglazkov@nat/google/x-dcpxwhhjiubvvnpm) (Read error: 110 (Connection timed out))
- # [01:57] * Joins: dglazkov (n=dglazkov@c-67-188-0-62.hsd1.ca.comcast.net)
- # [02:03] * Joins: borismus (n=borismus@c-98-219-161-78.hsd1.pa.comcast.net)
- # [02:06] * Quits: gavin_ (n=gavin@firefox/developer/gavin) (Read error: 110 (Connection timed out))
- # [02:06] * Joins: gavin_ (n=gavin@firefox/developer/gavin)
- # [02:09] * Joins: yutak_home (n=kee@M006079.ppp.dion.ne.jp)
- # [02:12] * Joins: slightlyoff (n=slightly@72.14.229.81)
- # [02:13] * Quits: dpranke (n=Adium@nat/google/x-jewzzfbqabjvwvhc) ("Leaving.")
- # [02:15] * Quits: benward (n=benward@nat/yahoo/x-sahcpdofwzejuqop) ("Sleep")
- # [02:22] * Quits: KevinMarks (n=KevinMar@157.22.22.46) ("The computer fell asleep")
- # [02:30] * Quits: Hish_ (n=chatzill@m1b0436d0.tmodns.net) (Read error: 110 (Connection timed out))
- # [02:34] * Quits: svl (n=me@ip565744a7.direct-adsl.nl) ("And back he spurred like a madman, shrieking a curse to the sky.")
- # [02:34] * Joins: cohitre (n=cohitre@c-24-18-158-106.hsd1.wa.comcast.net)
- # [02:36] * Joins: wakaba_ (n=wakaba_@122x221x184x68.ap122.ftth.ucom.ne.jp)
- # [02:36] * Quits: ap (n=ap@17.246.19.174)
- # [02:37] * Quits: sicking (n=chatzill@nat/mozilla/x-vsdzfqxsjjeucshh) (Read error: 145 (Connection timed out))
- # [02:37] * Joins: Hish_ (n=chatzill@m130436d0.tmodns.net)
- # [02:40] * Joins: cying_ (n=cying@70.90.171.153)
- # [02:43] * Quits: tantek (n=tantek@adsl-69-106-229-240.dsl.pltn13.pacbell.net)
- # [02:46] * Joins: shepazu (n=schepers@64.168.229.50)
- # [02:48] * Quits: Hish_ (n=chatzill@m130436d0.tmodns.net) (Read error: 60 (Operation timed out))
- # [02:48] * Quits: dglazkov (n=dglazkov@c-67-188-0-62.hsd1.ca.comcast.net)
- # [02:53] * Joins: boblet (n=boblet@p1254-ipbf304osakakita.osaka.ocn.ne.jp)
- # [02:54] * Quits: yutak_home (n=kee@M006079.ppp.dion.ne.jp) ("Ex-Chat")
- # [02:55] * Joins: paul_irish (n=paul_iri@c-71-192-163-128.hsd1.nh.comcast.net)
- # [02:57] * Quits: dave_levin (n=dave_lev@74.125.59.73)
- # [03:00] * Joins: cpharmston (n=cpharmst@68.48.43.198)
- # [03:04] * Joins: kristallpirat (n=kristall@c-base/crew/kristall)
- # [03:05] * Joins: auk (n=scott@cpe-75-83-19-98.socal.res.rr.com)
- # [03:08] * Quits: cpharmston (n=cpharmst@68.48.43.198) (Read error: 104 (Connection reset by peer))
- # [03:08] * Joins: cpharmston (n=cpharmst@68.48.43.198)
- # [03:09] * Joins: taf2 (n=taf2@216-15-54-105.c3-0.grg-ubr3.lnh-grg.md.cable.rcn.com)
- # [03:10] * Quits: archtech (n=sv@83.228.56.37)
- # [03:13] * Quits: mpt_ (n=mpt@canonical/mpt) (Read error: 60 (Operation timed out))
- # [03:17] * Quits: cpharmston (n=cpharmst@68.48.43.198) (Read error: 104 (Connection reset by peer))
- # [03:17] * Joins: cpharmston (n=cpharmst@68.48.43.198)
- # [03:20] * Quits: slightlyoff (n=slightly@72.14.229.81)
- # [03:24] * Quits: taf2 (n=taf2@216-15-54-105.c3-0.grg-ubr3.lnh-grg.md.cable.rcn.com)
- # [03:25] * Joins: dglazkov (n=dglazkov@c-67-188-0-62.hsd1.ca.comcast.net)
- # [03:28] * Quits: cohitre (n=cohitre@c-24-18-158-106.hsd1.wa.comcast.net)
- # [03:32] * Joins: onar_ (n=onar@c-67-180-87-66.hsd1.ca.comcast.net)
- # [03:32] <roc> TabAtkins: "And those compiler-failures are pretty much only relevant on tight inner loops, which you can find via profiling and spend the effort necessary to rewrite into a more efficient form." --- that is very much not true
- # [03:33] * Quits: cpharmston (n=cpharmst@68.48.43.198) (Read error: 110 (Connection timed out))
- # [03:34] * Quits: dbaron (n=dbaron@nat/mozilla/x-kncirrxklaagizuz) ("8403864 bytes have been tenured, next gc will be global.")
- # [03:41] * Quits: dglazkov (n=dglazkov@c-67-188-0-62.hsd1.ca.comcast.net)
- # [03:46] * Quits: ttepass- (n=ttepas--@p5B015F68.dip.t-dialin.net) ("?Q")
- # [03:47] * Joins: cohitre (n=cohitre@64-40-56-46-dsl.itltd.net)
- # [03:47] * Quits: cying_ (n=cying@70.90.171.153)
- # [03:57] * Quits: kristallpirat (n=kristall@c-base/crew/kristall) (Read error: 145 (Connection timed out))
- # [03:57] * Joins: sicking (n=chatzill@c-69-181-197-163.hsd1.ca.comcast.net)
- # [03:59] * Quits: Amorphous (i=jan@unaffiliated/amorphous) (Read error: 110 (Connection timed out))
- # [04:01] * Joins: kristallpirat (n=kristall@c-base/crew/kristall)
- # [04:01] * Joins: Amorphous (i=jan@unaffiliated/amorphous)
- # [04:07] * Joins: miketaylr (n=miketayl@user-0cdf5gs.cable.mindspring.com)
- # [04:10] * Quits: shepazu (n=schepers@64.168.229.50)
- # [04:13] * Quits: jwalden (n=waldo@nat/mozilla/x-dwmwqkgnilqtuyxw) ("out")
- # [04:14] * Quits: cohitre (n=cohitre@64-40-56-46-dsl.itltd.net)
- # [04:15] * Quits: auk (n=scott@cpe-75-83-19-98.socal.res.rr.com) ("Ex-Chat")
- # [04:18] * Quits: hober (n=ted@unaffiliated/hober) (Remote closed the connection)
- # [04:20] * Joins: hober (n=ted@unaffiliated/hober)
- # [04:21] * Joins: dglazkov (n=dglazkov@c-67-188-0-62.hsd1.ca.comcast.net)
- # [04:26] * Quits: kristallpirat (n=kristall@c-base/crew/kristall) (Read error: 145 (Connection timed out))
- # [04:30] * Joins: lazni (n=lazni@123.16.136.116)
- # [04:35] * Joins: kristallpirat (n=kristall@c-base/crew/kristall)
- # [04:40] * Quits: weinig (n=weinig@17.246.16.128)
- # [04:54] * Joins: ddelrio1986 (n=ddelrio1@cpe-24-160-69-90.tampabay.res.rr.com)
- # [05:13] * Quits: kristallpirat (n=kristall@c-base/crew/kristall) (Read error: 145 (Connection timed out))
- # [05:17] * Quits: othermaciej (n=mjs@17.246.19.26) (Remote closed the connection)
- # [05:17] * Joins: othermaciej (n=mjs@nat/apple/x-hvfuwoyybzrodfhk)
- # [05:25] <GPHemsley> You can always tell when Hixie gets bored
- # [05:30] * Joins: lazni1 (n=lazni@123.16.136.116)
- # [05:31] <GPHemsley> ;)
- # [05:51] * Quits: lazni (n=lazni@123.16.136.116) (Read error: 110 (Connection timed out))
- # [06:02] <Hixie> bored?
- # [06:05] * Joins: MikeSmith (n=MikeSmit@tea12.w3.mag.keio.ac.jp)
- # [06:22] * Quits: roc (n=roc@203-97-204-82.dsl.clear.net.nz)
- # [06:22] * Joins: Super-Dot (n=Super-Do@adsl-75-61-85-191.dsl.pltn13.sbcglobal.net)
- # [06:23] * Joins: dimich_ (n=dimich@c-98-203-252-208.hsd1.wa.comcast.net)
- # [06:30] * Quits: Super-Dot (n=Super-Do@adsl-75-61-85-191.dsl.pltn13.sbcglobal.net)
- # [06:31] * Joins: weinig (n=weinig@c-67-180-35-124.hsd1.ca.comcast.net)
- # [06:31] * Joins: Super-Dot (n=Super-Do@adsl-75-61-85-191.dsl.pltn13.sbcglobal.net)
- # [06:34] * Quits: miketaylr (n=miketayl@user-0cdf5gs.cable.mindspring.com)
- # [06:46] * Quits: dglazkov (n=dglazkov@c-67-188-0-62.hsd1.ca.comcast.net)
- # [06:46] <GPHemsley> Hixie: Yeah, when you're bored my inbox fills up. ;)
- # [06:46] <Hixie> that's not when i get bored
- # [06:46] <Hixie> that's when i do my job
- # [06:47] <Hixie> quite the opposite of when i get bored in fact
- # [06:48] <GPHemsley> same difference :P
- # [06:52] <Hixie> for you maybe :-P
- # [07:02] * lmorchard is now known as lmorchard|away
- # [07:04] * Quits: ddelrio1986 (n=ddelrio1@cpe-24-160-69-90.tampabay.res.rr.com)
- # [07:05] * Quits: erlehmann (n=erlehman@tmo-109-179.customers.d1-online.com) ("Ex-Chat")
- # [07:07] * Joins: jwalden (n=waldo@98.248.40.206)
- # [07:11] * Joins: zdobersek (n=zan@cpe-92-37-68-29.dynamic.amis.net)
- # [07:15] * Quits: borismus (n=borismus@c-98-219-161-78.hsd1.pa.comcast.net)
- # [07:16] * Joins: borismus (n=borismus@c-98-219-161-78.hsd1.pa.comcast.net)
- # [07:17] * Parts: zdobersek (n=zan@cpe-92-37-68-29.dynamic.amis.net)
- # [07:18] <Dashiva> <div clas=ohlson>
- # [07:19] * Quits: doublec (n=doublec@203-97-204-82.dsl.clear.net.nz) ("Leaving")
- # [07:39] * Quits: borismus (n=borismus@c-98-219-161-78.hsd1.pa.comcast.net)
- # [07:49] * weinig is now known as weinig|zZz
- # [08:02] * Joins: benward (n=benward@98.210.154.133)
- # [08:03] * Joins: lazni (n=lazni@113.22.26.124)
- # [08:09] * Quits: cying (n=cying@adsl-75-18-216-158.dsl.pltn13.sbcglobal.net)
- # [08:10] * Quits: lazni1 (n=lazni@123.16.136.116) (Read error: 145 (Connection timed out))
- # [08:11] * Quits: othermaciej (n=mjs@nat/apple/x-hvfuwoyybzrodfhk)
- # [08:25] * Quits: dimich_ (n=dimich@c-98-203-252-208.hsd1.wa.comcast.net)
- # [08:30] <boblet> does anyone know if it’s possible to change a W3 bugtracker registered user email? can’t seem to see this option…
- # [08:31] * Quits: sicking (n=chatzill@c-69-181-197-163.hsd1.ca.comcast.net) (Remote closed the connection)
- # [08:32] <Hixie> boblet: i think so, but i don't recall how
- # [08:32] <Hixie> i know i've changed my e-mail address in the past
- # [08:33] <boblet> Hixie: thanks. will keep looking. you’d think “email preferences”, but nooo…
- # [08:35] * Joins: hsivonen (n=hsivonen@kekkonen.cs.hut.fi)
- # [08:38] * boblet gives up
- # [08:43] * Quits: GPHemsley (n=GPHemsle@pdpc/supporter/student/GPHemsley) ("This computer has gone to sleep")
- # [08:52] * Joins: Maurice (n=ano@80.101.46.164)
- # [08:57] * Joins: dimich_ (n=dimich@c-98-203-252-208.hsd1.wa.comcast.net)
- # [09:01] <cedricv> hey guys! is the webgl draft spec available somewhere? i cannot find it
- # [09:02] * Joins: othermaciej (n=mjs@c-69-181-42-237.hsd1.ca.comcast.net)
- # [09:03] <hsivonen> cedricv: I couldn't find I last I checked.
- # [09:05] <cedricv> hmm weird
- # [09:06] <hsivonen> cedricv: the Khronos mailing lists are secret, too
- # [09:08] <cedricv> hmm i guess that's why some people say that the only docs available for now are the idl files in webkit / mozilla sources...
- # [09:20] * Joins: dave_levin (n=dave_lev@72.14.224.1)
- # [09:27] * Quits: dimich_ (n=dimich@c-98-203-252-208.hsd1.wa.comcast.net)
- # [09:38] <MikeSmith> cedricv: we're told that efforts are being made to add more public transparency to the WebGL group but so far nothing tangible seems to have happened
- # [09:38] * Quits: gavin_ (n=gavin@firefox/developer/gavin) (Read error: 110 (Connection timed out))
- # [09:38] <Hixie> annevk2: yt?
- # [09:39] <Hixie> MikeSmith: "more"?
- # [09:39] <MikeSmith> cedricv: it would at least help to have some kind of statement from the group about when they estimate the spec will be made available for public review, and what the public-review process is
- # [09:39] <MikeSmith> Hixie: I'm trying to be generous
- # [09:39] <Hixie> hah
- # [09:40] <MikeSmith> I have faith that they're eventually going to get around to doing the right thing
- # [09:40] * Quits: ThunderSchunked_ (i=43f00ab4@gateway/web/freenode/x-ucgenvvmhuydjmfq) (Ping timeout: 180 seconds)
- # [09:41] <Hixie> before or after they're done? </cynic>
- # [09:41] <cedricv> hmm yeah that would be nice indeed...
- # [09:41] * Quits: onar_ (n=onar@c-67-180-87-66.hsd1.ca.comcast.net)
- # [09:42] * Joins: tndH (n=Rob@cpc2-leed18-0-0-cust427.leed.cable.ntl.com)
- # [09:42] * Joins: jacobolus (n=jacobolu@dhcp-0059871802-99-6d.client.student.harvard.edu)
- # [09:42] * Hixie tries to work out how to register HTTP headers
- # [09:42] <hsivonen> Hixie: what header are you registering?
- # [09:44] * Joins: pesla (n=retep@procurios.xs4all.nl)
- # [09:45] <Hixie> Last-Event-ID, Ping-From, Ping-To, WebSocket-Origin, WebSocket-Protocol, WebSocket-Location
- # [09:46] * Joins: mpt (n=mpt@canonical/mpt)
- # [09:48] <hsivonen> Hixie: is Last-Event-ID a new thing that Opera's impl didn't have?
- # [09:55] * Joins: gavin_ (n=gavin@firefox/developer/gavin)
- # [10:03] <gsnedders|work> Anyone know if there's any reason why calling DOMImplementation.createDocument with a doctype created by a different implementation doesn't throw in any browser?
- # [10:03] <hsivonen> gsnedders|work: not even in IE6 if you create the doctype using the XHR ActiveX thingy?
- # [10:04] <hsivonen> gsnedders|work: and offer it to the broweser DOM
- # [10:04] <gsnedders|work> hsivonen: I don't actually have IE6 here
- # [10:04] <hsivonen> gsnedders|work: how do you obtain different DOMImplementations?
- # [10:04] <gsnedders|work> hsivonen: Different documents have different DOMImplementations
- # [10:04] <hsivonen> really?
- # [10:05] <hsivonen> for security reasons?
- # [10:05] <hsivonen> they wrap the same implementation, though, right?
- # [10:05] <gsnedders|work> Hmnm, maybe that's just Web DOM Core that says that
- # [10:08] <gsnedders|work> According to zcorpan's copy of Web DOM Core, createDocument with, as the third argument, function(){ var bar = document.implementation.createDocument(null, null, null); return bar.implementation.createDocumentType("bar", "", ""); }() should throw
- # [10:08] <gsnedders|work> I guess I should just ask zcorpan.
- # [10:08] <hsivonen> Isn't the purpose of DOMImplementation that you can use Xerces and Crimson DOMs in the same app
- # [10:08] <hsivonen> but you can't mix their objects without explicit import
- # [10:08] <gsnedders|work> Yeah, I think
- # [10:12] <gsnedders|work> "WRONG_DOCUMENT_ERR: Raised if doctype has already been used with a different document or was created from a different implementation." — DOM 3 Core
- # [10:12] <gsnedders|work> It doesn't what it means by a "different implementation" though
- # [10:13] <gsnedders|work> How I've always read it is the same as you, and I can't see any way to test a web browser does that.
- # [10:14] <gsnedders|work> http://www.w3.org/TR/DOM-Level-3-Core/core.html#Embedded-DOM
- # [10:14] <gsnedders|work> hmm, does that mean HTMLDocument should give a different implementation to SVGDocument, for example?
- # [10:16] <gsnedders|work> hsivonen: You wouildn't happen to know why Gecko, against spec, throws NAMESPACE_ERR for createElementNS when namespaceURI is not empty and qname is?
- # [10:17] <hsivonen> gsnedders|work: no idea. sorry
- # [10:20] <Hixie> hsivonen: probably
- # [10:23] * Joins: Rik` (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net)
- # [10:26] * Quits: ivan` (n=ivan@unaffiliated/ivan/x-000001) ("Coyote finally caught me")
- # [10:26] * Quits: benward (n=benward@98.210.154.133) ("Sleep")
- # [10:27] * Joins: ivan` (n=ivan@li14-39.members.linode.com)
- # [10:29] * Quits: ivan` (n=ivan@unaffiliated/ivan/x-000001) (Client Quit)
- # [10:29] * Joins: benward (n=benward@98.210.154.133)
- # [10:30] * Joins: ivan` (n=ivan@li14-39.members.linode.com)
- # [10:30] * Quits: benward (n=benward@98.210.154.133) (Remote closed the connection)
- # [10:32] * Quits: dave_levin (n=dave_lev@72.14.224.1)
- # [10:32] * Quits: Super-Dot (n=Super-Do@adsl-75-61-85-191.dsl.pltn13.sbcglobal.net)
- # [10:34] * Joins: webben (n=Adium@dip5-fw.corp.ukl.yahoo.com)
- # [10:34] <hsivonen> where can I find a Web page that tris to install Chrome Frame but that doesn't require a Wave invite?
- # [10:35] * Joins: ROBOd (n=robod@89.122.216.38)
- # [10:36] * Joins: mat_t (n=mattomas@91.189.88.12)
- # [10:40] <hsivonen> how do I see which process is causing excessive network traffic on Mac?
- # [10:42] <Philip`> hsivonen: http://code.google.com/chrome/chromeframe/developers_guide.html#Detecting_Google_Chrome_Frame
- # [10:42] <Philip`> Sounds like that's how to do the prompting
- # [10:43] <Rik`> hsivonen: lsof -n I think
- # [10:44] <hsivonen> Rik`: it seems to show all local pipes, too
- # [10:44] <hsivonen> should I sort them by offset and assume that the process with a huge offset is the problem?
- # [10:45] <hsivonen> Philip`: Thanks. I was being lazy so I didn't have to put that on my own site for testing.
- # [10:46] <Rik`> looking man lsof, it might be lsof -i
- # [10:47] <Philip`> hsivonen: Would http://software.hixie.ch/utilities/js/live-dom-viewer/saved/260 satisfy your laziness? :-)
- # [10:47] <Philip`> Oh, that doesn't work so well due to XSS
- # [10:52] * Joins: gunderwonder (n=gunderwo@garage.upstruct.com)
- # [10:52] * Joins: Rik`_ (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net)
- # [10:52] * Quits: Rik` (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net) (Remote closed the connection)
- # [10:53] * Rik`_ is now known as Rik`
- # [10:54] * Quits: jwalden (n=waldo@98.248.40.206) ("ChatZilla 0.9.85-rdmsoft [XULRunner 1.9.1.3/20090909051541]")
- # [10:56] <annevk2> Hixie, am now
- # [10:56] <Hixie> dude
- # [10:56] <Hixie> i'm reading 3864
- # [10:56] <Hixie> but tl;dr
- # [10:57] <annevk2> wait, what?
- # [10:57] <annevk2> ah, registering headers
- # [10:58] <Hixie> there's really no reason the instructions for registering http headers should be longer than 40 or so lines of text
- # [10:58] <Hixie> but the table of contents is about 40 lines!
- # [10:58] <annevk2> heh
- # [10:58] <annevk2> I skipped to the template myself
- # [10:59] <Hixie> seems wise
- # [10:59] <Hixie> that's what i'm looking at now
- # [11:01] <annevk2> hsivonen, Last-ID is new
- # [11:02] * Joins: michaelforrest (n=michaelf@91.189.88.12)
- # [11:03] * Quits: mitnavn (n=mitnavn@unaffiliated/mitnavn) (Remote closed the connection)
- # [11:04] <hsivonen> annevk2: ok
- # [11:11] * Quits: hsivonen (n=hsivonen@kekkonen.cs.hut.fi) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: hober (n=ted@unaffiliated/hober) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: boblet (n=boblet@p1254-ipbf304osakakita.osaka.ocn.ne.jp) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: Maurice (n=ano@80.101.46.164) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: wakaba_ (n=wakaba_@122x221x184x68.ap122.ftth.ucom.ne.jp) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: smaug (n=chatzill@cs181150024.pp.htv.fi) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: franksalim (n=frank@75.61.80.108) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: Rik|work (n=Rik|work@193.93.127.141) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: annevk2 (n=annevk@213.236.208.22) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: Phae (n=phaeness@132.185.240.11) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: riven (n=colin@pdpc/supporter/professional/riven) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: cedricv (n=cedric@112.199.138.194) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: ukai (n=ukai@220.109.219.244) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: syp (n=syp@lasigpc9.epfl.ch) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: ray (i=ray@drong.notacat.org) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: bzed (n=bzed@devel.recluse.de) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: tkent (n=tkent@220.109.219.244) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: Hixie (i=ianh@trivini.no) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: wildcard (i=ard@arson.matnia.net) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: JohnResig (n=JohnResi@ejohn.org) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: eighty4 (n=eighty4@eighty4.se) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: jmb (n=jmb@login.ecs.soton.ac.uk) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: gavin_ (n=gavin@firefox/developer/gavin) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: mpt (n=mpt@canonical/mpt) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: yusukes (n=yusukes@220.109.219.244) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: drry (n=drry@ct91.opt2.point.ne.jp) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: fupp (n=User@mg038a.studby.ntnu.no) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: Kuruma (n=Kuruman@p3160-ipbf2309hodogaya.kanagawa.ocn.ne.jp) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: barklund (i=barklund@rapwap.razor.dk) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: hamaji (n=hamaji@220.109.219.244) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: michaelforrest (n=michaelf@91.189.88.12) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: ivan` (n=ivan@unaffiliated/ivan/x-000001) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: pesla (n=retep@procurios.xs4all.nl) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: tndH (n=Rob@cpc2-leed18-0-0-cust427.leed.cable.ntl.com) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: weinig|zZz (n=weinig@c-67-180-35-124.hsd1.ca.comcast.net) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: murr4y (n=murray@103.84-49-64.nextgentel.com) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: deltab (n=deltab@82-36-30-34.cable.ubr02.smal.blueyonder.co.uk) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: wakaba (n=wakaba@98.225.100.220.dy.bbexcite.jp) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: Rik` (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: jcranmer (n=jcranmer@ltsp2.csl.tjhsst.edu) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: jennb (n=jennb@74.125.59.73) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: Dashiva (i=Dashiva@wikia/Dashiva) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: tyoshino (n=tyoshino@220.109.219.244) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: peritus_ (n=peritus@ircbridge.mahner.org) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: othree (n=othree@admin39.ct.ntust.edu.tw) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: vs-hs_ (n=vs-hs@91.90.24.186) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: omii (i=programz@verizon-gni.com) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: kinetik (n=kinetik@121.98.132.55) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: mookid (i=mookid@ROFL.name) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: jgraham (n=jgraham@web22.webfaction.com) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: lazni (n=lazni@113.22.26.124) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: karlushi (n=karlushi@fw.vdl2.ca) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: inimino (n=inimino@atekomi.inimino.org) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: hendry (n=hendry@webvm.net) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: and` (n=and@apo29.girton.cam.ac.uk) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: lmorchard|away (n=lmorchar@66.103.254.157.static.a2webhosting.com) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: scherkus (n=scherkus@74.125.59.65) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: ato (i=ato@orgelet.e-tjenesten.org) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: mat_t (n=mattomas@91.189.88.12) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: jacobolus (n=jacobolu@dhcp-0059871802-99-6d.client.student.harvard.edu) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: MikeSmith (n=MikeSmit@tea12.w3.mag.keio.ac.jp) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: nessy (n=nessy@124-170-205-120.dyn.iinet.net.au) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: erikvold (n=erikvvol@S01060024012860e9.gv.shawcable.net) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: dimich (n=dimich@74.125.59.73) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Quits: AryehGregor (n=Simetric@mediawiki/simetrical) (hubbard.freenode.net irc.freenode.net)
- # [11:11] * Joins: michaelforrest (n=michaelf@91.189.88.12)
- # [11:11] * Joins: Rik` (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net)
- # [11:11] * Joins: mat_t (n=mattomas@91.189.88.12)
- # [11:11] * Joins: ivan` (n=ivan@unaffiliated/ivan/x-000001)
- # [11:11] * Joins: gavin_ (n=gavin@firefox/developer/gavin)
- # [11:11] * Joins: mpt (n=mpt@canonical/mpt)
- # [11:11] * Joins: pesla (n=retep@procurios.xs4all.nl)
- # [11:11] * Joins: jacobolus (n=jacobolu@dhcp-0059871802-99-6d.client.student.harvard.edu)
- # [11:11] * Joins: tndH (n=Rob@cpc2-leed18-0-0-cust427.leed.cable.ntl.com)
- # [11:11] * Joins: Maurice (n=ano@80.101.46.164)
- # [11:11] * Joins: hsivonen (n=hsivonen@kekkonen.cs.hut.fi)
- # [11:11] * Joins: lazni (n=lazni@113.22.26.124)
- # [11:11] * Joins: weinig|zZz (n=weinig@c-67-180-35-124.hsd1.ca.comcast.net)
- # [11:11] * Joins: MikeSmith (n=MikeSmit@tea12.w3.mag.keio.ac.jp)
- # [11:11] * Joins: hober (n=ted@unaffiliated/hober)
- # [11:11] * Joins: boblet (n=boblet@p1254-ipbf304osakakita.osaka.ocn.ne.jp)
- # [11:11] * Joins: wakaba_ (n=wakaba_@122x221x184x68.ap122.ftth.ucom.ne.jp)
- # [11:11] * Joins: nessy (n=nessy@124-170-205-120.dyn.iinet.net.au)
- # [11:11] * Joins: jcranmer (n=jcranmer@ltsp2.csl.tjhsst.edu)
- # [11:11] * Joins: jennb (n=jennb@74.125.59.73)
- # [11:11] * Joins: smaug (n=chatzill@cs181150024.pp.htv.fi)
- # [11:11] * Joins: franksalim (n=frank@75.61.80.108)
- # [11:11] * Joins: erikvold (n=erikvvol@S01060024012860e9.gv.shawcable.net)
- # [11:11] * Joins: Rik|work (n=Rik|work@193.93.127.141)
- # [11:11] * Joins: annevk2 (n=annevk@213.236.208.22)
- # [11:11] * Joins: Phae (n=phaeness@132.185.240.11)
- # [11:11] * Joins: tkent (n=tkent@220.109.219.244)
- # [11:11] * Joins: yusukes (n=yusukes@220.109.219.244)
- # [11:11] * Joins: riven (n=colin@pdpc/supporter/professional/riven)
- # [11:11] * Joins: cedricv (n=cedric@112.199.138.194)
- # [11:11] * Joins: ukai (n=ukai@220.109.219.244)
- # [11:11] * Joins: Hixie (i=ianh@trivini.no)
- # [11:11] * Joins: murr4y (n=murray@103.84-49-64.nextgentel.com)
- # [11:11] * Joins: fupp (n=User@mg038a.studby.ntnu.no)
- # [11:11] * Joins: bzed (n=bzed@devel.recluse.de)
- # [11:11] * Joins: deltab (n=deltab@82-36-30-34.cable.ubr02.smal.blueyonder.co.uk)
- # [11:11] * Joins: wildcard (i=ard@arson.matnia.net)
- # [11:11] * Joins: Dashiva (i=Dashiva@wikia/Dashiva)
- # [11:11] * Joins: drry (n=drry@ct91.opt2.point.ne.jp)
- # [11:11] * Joins: tyoshino (n=tyoshino@220.109.219.244)
- # [11:11] * Joins: peritus_ (n=peritus@ircbridge.mahner.org)
- # [11:11] * Joins: JohnResig (n=JohnResi@ejohn.org)
- # [11:11] * Joins: karlushi (n=karlushi@fw.vdl2.ca)
- # [11:11] * Joins: inimino (n=inimino@atekomi.inimino.org)
- # [11:11] * Joins: ray (i=ray@drong.notacat.org)
- # [11:11] * Joins: hendry (n=hendry@webvm.net)
- # [11:11] * Joins: kinetik (n=kinetik@121.98.132.55)
- # [11:11] * Joins: vs-hs_ (n=vs-hs@91.90.24.186)
- # [11:11] * Joins: barklund (i=barklund@rapwap.razor.dk)
- # [11:11] * Joins: ato (i=ato@orgelet.e-tjenesten.org)
- # [11:11] * Joins: jgraham (n=jgraham@web22.webfaction.com)
- # [11:11] * Joins: omii (i=programz@verizon-gni.com)
- # [11:11] * Joins: eighty4 (n=eighty4@eighty4.se)
- # [11:11] * Joins: jmb (n=jmb@login.ecs.soton.ac.uk)
- # [11:11] * Joins: and` (n=and@apo29.girton.cam.ac.uk)
- # [11:11] * Joins: scherkus (n=scherkus@74.125.59.65)
- # [11:11] * Joins: syp (n=syp@lasigpc9.epfl.ch)
- # [11:11] * Joins: AryehGregor (n=Simetric@mediawiki/simetrical)
- # [11:11] * Joins: lmorchard|away (n=lmorchar@66.103.254.157.static.a2webhosting.com)
- # [11:11] * Joins: hamaji (n=hamaji@220.109.219.244)
- # [11:11] * Joins: mookid (i=mookid@ROFL.name)
- # [11:11] * Joins: Kuruma (n=Kuruman@p3160-ipbf2309hodogaya.kanagawa.ocn.ne.jp)
- # [11:11] * Joins: wakaba (n=wakaba@98.225.100.220.dy.bbexcite.jp)
- # [11:11] * Joins: dimich (n=dimich@74.125.59.73)
- # [11:11] * Joins: othree (n=othree@admin39.ct.ntust.edu.tw)
- # [11:15] <hsivonen> http://www.w3.org/2001/tag/2009/10/01-minutes.html is interesting
- # [11:15] <hsivonen> removal of document.write() is considered an item up for debate
- # [11:17] <othermaciej> hsivonen: well, it wouldn't be impossible to remove it from the spec, just foolish
- # [11:18] <othermaciej> it would be impossible to remove it from implementations - unclear if that was requested
- # [11:21] <MikeSmith> we should have a hall of fame for really bad Web platform (mis)features that we are now stuck with forever
- # [11:21] <othermaciej> man that would just be depressing
- # [11:21] <MikeSmith> heh
- # [11:22] <Hixie> isn't that called "HTML5"?
- # [11:22] <MikeSmith> lol
- # [11:22] <MikeSmith> Hixie: color-coding, man, I'm telling you
- # [11:23] <MikeSmith> misfeatures in pink
- # [11:23] <othermaciej> why would we want to color the whole spec pink?
- # [11:23] <othermaciej> that would be hard to read
- # [11:23] <Hixie> i'd be hard pressed to find anything that's widely implemented that i couldn't point out fundamental problems with
- # [11:23] <Hixie> even the new stuff like canvas
- # [11:23] <othermaciej> DanC is so sensible in those TAG minutes
- # [11:23] <othermaciej> I enjoy reading his lines in the minutes
- # [11:24] <MikeSmith> or maybe misfeatures in <blink> would be better
- # [11:25] <othermaciej> how about we paint misfeatures in the blood of whoever first implemented them
- # [11:25] * othermaciej wonders how many pints he'd have to donate
- # [11:28] <gsnedders|work> Sorry, I'm not allowed to give blood at home.
- # [11:30] * Joins: Rik`_ (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net)
- # [11:33] <othermaciej> Noah is very sensible too
- # [11:45] * Quits: lazni (n=lazni@113.22.26.124) (Read error: 110 (Connection timed out))
- # [11:46] <Hixie> Philip`: btw, i asked the rdfa guys at work and they said that the preview page is the same code as we use internally for snippet generation.
- # [11:47] * Quits: Rik` (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net) (Read error: 113 (No route to host))
- # [11:47] * Rik`_ is now known as Rik`
- # [11:52] <Hixie> ok, iana consideration sections for the http headers are all written up
- # [11:52] <Hixie> bed time now
- # [11:52] <Hixie> nn
- # [11:55] <Philip`> Hixie: Okay, good to know
- # [11:59] * annevk2 wonders why the TAG spends so much time discussing matters such as document.write(); it's like a decade too late to have an architecture discussion on that
- # [12:06] <MikeSmith> annevk2: from the minutes, it seems like what they were discussing it in the context of whether it would be worthwhile to have a separate spec that documented HTML processing minus the bad stuff
- # [12:07] <Philip`> You mean an empty document?
- # [12:08] <annevk2> MikeSmith, could publish an empty document
- # [12:08] <MikeSmith> heh
- # [12:08] * Joins: roc (n=roc@121.72.169.197)
- # [12:08] <MikeSmith> I think in a better world it would be a great thing
- # [12:09] <annevk2> I wonder why they waste so much time trying to understand HTML5 by brainstorming with each other while a few questions to the HTML WG list would work as well
- # [12:14] * Quits: jacobolus (n=jacobolu@dhcp-0059871802-99-6d.client.student.harvard.edu) (Remote closed the connection)
- # [12:15] <othermaciej> indeed, they seem to think it may be valuable to suggest making a separate spec that is a "clean subset", or perhaps just a description in the main spec itself of what such a subset could be
- # [12:15] <othermaciej> timbl thought it was as simple as not using document.write() and avoiding implicit <tbody>
- # [12:15] <othermaciej> it would be interesting to document the intersection of HTML and XML that results in identical processing, but quite challenging
- # [12:16] <annevk2> you fail at <html xmlns
- # [12:16] <annevk2> as someone pointed out recently
- # [12:17] <jgraham> That does seem to be an unusually subtle issue to trap the unwary indeed
- # [12:17] <jgraham> I guess there is some value in documenting the intersection that gives the minimum achievable difference between HTML and XML processing
- # [12:20] * Joins: csarven (n=csarven@92.67.90.249)
- # [12:22] * Joins: Peter- (n=peter@92.254.21.251)
- # [12:23] <othermaciej> annevk2: fair enough - it couldn't be identical, it would have to be some definition of "close enough" processing
- # [12:23] <othermaciej> annevk2: which would be hard to define in itself
- # [12:23] <othermaciej> you'd also have to rule out all use of script if you want the subset to be statically checkable
- # [12:25] <annevk2> and CSS
- # [12:25] <annevk2> e.g. html[xmlns] { background:papayawhip }
- # [12:26] * Joins: jacobolus (n=jacobolu@dhcp-0059871802-99-6d.client.student.harvard.edu)
- # [12:27] <csarven> Is or was there anything in the talks of doing something along the line of <input type="rememberme">? It would be a checkbox, but it would work similar to type="password" where the default behaviour of the UA will fill in i.e., remember me in login forms by default or not
- # [12:28] <hsivonen> did the Super Friends ever follow up with Sam on the polyglot stuff?
- # [12:28] <jgraham> annevk2: That seems like it is about observability not static checkability
- # [12:28] <MikeSmith> csarven: autocomplete?
- # [12:29] <jgraham> hsivonen: I don't recall anything from them except the individual emails sent bu Jeremy Keith and tantek
- # [12:29] <hsivonen> jgraham: I don't recall emails on polyglottal issues
- # [12:30] <hsivonen> jgraham: I do recall adactio sending other email
- # [12:30] <jgraham> hsivonen: Yes that was what I meant
- # [12:30] <jgraham> (sorry for being unclear)
- # [12:31] <csarven> MikeSmith I guess that'd be it. <input type="checkbox" autocomplete="on">. But autocomplete doesn't appear to apply checkbox. Would this be a good case to do so? The only problem is that, the UA doesn't know it is about 'rememberme'
- # [12:31] <hsivonen> I guess I'll proceed to zapping the new menu from V.nu if the Super Friends aren't going to follow up with Sam
- # [12:32] <MikeSmith> csarven: it might be worth proposing in a e-mail to one of the mailing lists or through W3C bugzilla
- # [12:32] <gsnedders|work> http: doesn't match URI-reference, right?
- # [12:33] * Quits: Peter` (n=peter@92.254.21.251) (Read error: 110 (Connection timed out))
- # [12:33] <csarven> MikeSmith Thanks, I could do that, but, I wanted some quick feedback on it before going ahead. There may have been discussions around that already.
- # [12:34] <annevk2> remembering is a UI feature
- # [12:34] <annevk2> autocomplete can be used to turn things off, on is not really a meaningful value
- # [12:37] <csarven> annevk2 So, what you are saying is that <input type="checkbox" autocomplete="on"> would be sufficient?
- # [12:39] * Joins: myakura (n=myakura@p4112-ipbf5102marunouchi.tokyo.ocn.ne.jp)
- # [12:45] * Joins: jmb^ (n=jmb@login.ecs.soton.ac.uk)
- # [12:50] * Quits: Rik` (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net) (Read error: 113 (No route to host))
- # [12:57] * Quits: jmb (n=jmb@login.ecs.soton.ac.uk) (Read error: 110 (Connection timed out))
- # [12:58] * jmb^ is now known as jmb
- # [12:58] * Quits: MikeSmith (n=MikeSmit@tea12.w3.mag.keio.ac.jp) ("Tomorrow to fresh woods, and pastures new.")
- # [13:05] <annevk2> no
- # [13:06] <annevk2> Hixie, the title attribute for the set-cookie header is wrong, you made it http-setcookie2
- # [13:06] <annevk2> Hixie, not sure if it affects anythings
- # [13:27] * Quits: jacobolus (n=jacobolu@dhcp-0059871802-99-6d.client.student.harvard.edu) ("Leaving...")
- # [13:37] * Joins: csarven1 (n=csarven@ip5451caad.direct-adsl.nl)
- # [13:41] <gsnedders|work> Hixie: You got any idea why I'm not getting any whatwg email to gsnedders@op?
- # [13:45] <Philip`> gsnedders|work: Maybe you're not subscribed
- # [13:45] <gsnedders|work> Philip`: I was before, but I tried filling out the form… didn't even get confirmatioin email
- # [13:54] * Quits: csarven (n=csarven@92.67.90.249) (Read error: 110 (Connection timed out))
- # [13:56] <mpt> Argh
- # [13:57] <hsivonen> mpt: ?
- # [13:58] <mpt> I've wandered into one of those places where people still think draconian error handling for a markup language targeted primarily at humans is a good idea
- # [13:58] <hsivonen> what place is that?
- # [13:58] <mpt> http://mail.gnome.org/archives/gnome-doc-list/2009-October/msg00014.html
- # [14:00] * mpt wonders about the most productive way to reply
- # [14:01] <annevk2> mu
- # [14:01] * Joins: zdobersek (n=zan@cpe-92-37-76-191.dynamic.amis.net)
- # [14:01] <hsivonen> mpt: is Gnome practicing decentralized extensibility and minting stuff like <demo>?
- # [14:01] <mpt> haha
- # [14:02] <mpt> Hm, now you're making me think what it would be in non-extensible HTML
- # [14:03] <mpt> Probably something like <a href="demo:%20awkwardly-escaped%20script%20goes%20here">
- # [14:04] <mpt> with the demo: protocol restricted to access only from ghelp: URLs
- # [14:08] * csarven1 is now known as csarven
- # [14:09] <othermaciej> generally when you find yourself making a new markup language, you're probably doing it wrong
- # [14:09] <gsnedders|work> Blatantly we should just use triple stores, SPARQL, and transform everything to HTML.
- # [14:10] <othermaciej> mpt: is it true that feed readers ignore well-formedness for Atom? (I knew that was true for RSS)
- # [14:10] <gsnedders|work> othermaciej: They use the same parser
- # [14:11] <gsnedders|work> othermaciej: It's not that they ignore well-formedness completely, normally, though
- # [14:11] * Joins: zcorpan (n=zcorpan@pat.se.opera.com)
- # [14:11] <othermaciej> I'm wondering if maybe Safari's (well, PubSub's) Atom implementation might use real XML parsing
- # [14:11] <othermaciej> I know the RSS implementation is very... generous
- # [14:12] <gsnedders|work> othermaciej: You still need to ignore invalid byte sequences, but otherwise you get away with it fine in Atom
- # [14:12] <othermaciej> of course, real standalone feed readers completely ignore the MIME type so they'd have to use a single parser
- # [14:12] <othermaciej> (even if that parser just does some sniffing and then switches)
- # [14:12] <gsnedders|work> zcorpan: http://krijnhoetmer.nl/irc-logs/whatwg/20091006#l-217
- # [14:12] <othermaciej> (and people bitch about the sniffing browsers do...)
- # [14:13] <gsnedders|work> othermaciej: SimplePie at least just uses a real XML parser for everything
- # [14:14] <hsivonen> othermaciej: my recollection of hearsay is that Safari doesn't treat encoding errors as fatal
- # [14:14] <mpt> othermaciej, I see that the Universal Feed Parser accepts non-well-formed XML <http://www.feedparser.org/docs/bozo.html>, but I haven't done an actual survey
- # [14:14] <othermaciej> I remember doing some experiments once where I got Apache to serve an RSS feed with the Atom mime type and the Atom feed with an RSS MIME type
- # [14:14] <mpt> othermaciej, non-well-formed Atom, I mean
- # [14:14] <gsnedders|work> mpt: That uses an XML parser and falls back to a custom one
- # [14:14] <othermaciej> (and of course it worked fine everywhere)
- # [14:15] * Parts: annevk2 (n=annevk@213.236.208.22)
- # [14:15] <gsnedders|work> othermaciej: SimplePie forks based upon the root element. I don't think you do actually need to support those two mixed up, it's more supporting application/xml and text/xml feeds.
- # [14:15] <gsnedders|work> othermaciej: Oh, the other spec you have to break for Atom compat. is RFC3023
- # [14:16] <othermaciej> gsnedders|work: break which aspect? the text/xml encoding lie?
- # [14:16] <gsnedders|work> othermaciej: yeah
- # [14:16] <othermaciej> right, I don't think you need them mixed up, was just experimenting to determine the extent of sniffing
- # [14:17] <othermaciej> I was able to serve both feed types as each other, as text/html, as image/jpeg, as image/svg+xml, as application/pdf, and of course all of those worked in every feed reader I could find
- # [14:17] <othermaciej> I did not, at the time, try introducing well-formedness errors
- # [14:17] * Joins: Peter` (n=peter@92.254.21.251)
- # [14:18] * Joins: annevk2 (n=annevk@213.236.208.22)
- # [14:18] <othermaciej> it's sad that feed readers handle bogus Atom, when one purpose of Atom was supposed to be to make a clean break from all that
- # [14:19] <gsnedders|work> othermaciej: Basically you establish a document is a feed, and use the same code-path thereon
- # [14:19] * Joins: pmuellr (n=pmuellr@nat/ibm/x-sgtatlqksngjzzrh)
- # [14:19] <othermaciej> (I should mention that not all those types worked in feed readers built into browsers of course; they would fail on types that don't get sniffed for feeds)
- # [14:20] <othermaciej> but of course the fact that feed readers ignore Content-Type is what requires you to sniff for feeds in the first placr
- # [14:20] <othermaciej> *place
- # [14:20] <gsnedders|work> SimplePie rejects any feed not served as application/rss+xml, application/atom+xml, application/xml, application/rdf+xml, text/xml, or text/html (with HTML5-heristics)
- # [14:21] <gsnedders|work> We've got very, very, very few bug reports from not supporting more. The only one that used to come up a fair bit was text/plain, but since Firefox and Safari stopped sniffing that that has almost totally vanished.
- # [14:22] <gsnedders|work> The number of bug reports from unescaped ampersands far exceeds MIME-type issues.
- # [14:22] <othermaciej> that is omewhat encouraging
- # [14:22] <gsnedders|work> And from memory most of the XML well-formedness issues are in RSS feeds, not Atom ones.
- # [14:22] * Quits: smaug (n=chatzill@cs181150024.pp.htv.fi) (Remote closed the connection)
- # [14:23] <gsnedders|work> Atom, as I said before, you have to allow invalid byte sequences, but I think that's the only real concession you have to make for compatibility
- # [14:23] * Joins: smaug (n=chatzill@82.181.150.24)
- # [14:24] <gsnedders|work> (and this is something with millions of deployed copies, and as far as I can tell we've reached the point where increasing marketshare has more or less stopped causing such a dramatic increase in broken things being found, so that is probably representative of the feed landscape in general)
- # [14:27] * Parts: zcorpan (n=zcorpan@pat.se.opera.com)
- # [14:28] <gsnedders|work> The number of cases of unescaped ampersands, which AFAIK is the cause of 90% or so of well-formedness errors (excluding invalid byte sequences, which are the most common), is certainly decreasing. I made the decision two/three years ago to stop supporting such feeds in SimplePie, and the number of bug reports we're getting on them is going down over time, quite clearly.
- # [14:30] <jgraham> Maybe people are just not bothering to file bugs on you anymore since you wontfixed all the other bugs
- # [14:30] <gsnedders|work> (I decided to remove support primarily because we don't have our own XML parser: having one in PHP would be ungodly slow, so anything to special case certain errors is quite hackish, and this was causing some compat. issues with certain combinations of (valid) things (Atom + XHTML content + CDATA, IIRC), so I took the decision to favour the valid)
- # [14:30] <gsnedders|work> jgraham: Maybe, but there are still plenty of other duplicates we get filed :)
- # [14:31] <gsnedders|work> I am fairly certain from what I've seen elsewhere (e.g., what rubys has posted on his blog of stats from feed validator) that the state of feeds is getting better.
- # [14:32] <gsnedders|work> I'd say it is a realistic thing to change to using an XML (+NS) parser that allows invalid byte sequences and ignores RFC3023 (for text/xml charset)
- # [14:32] <gsnedders|work> </soapbox>
- # [14:42] <jgraham> http://www.youtube.com/watch?v=yFYH9BCRPAw
- # [14:43] * Quits: Peter- (n=peter@92.254.21.251) (No buffer space available)
- # [14:49] * Joins: yutak_home (n=kee@61.117.6.79)
- # [14:54] * Quits: wakaba_ (n=wakaba_@122x221x184x68.ap122.ftth.ucom.ne.jp) ("Leaving...")
- # [15:02] * Joins: GPHemsley (n=GPHemsle@pdpc/supporter/student/GPHemsley)
- # [15:04] * GPHemsley is getting tired of the <cite> argument
- # [15:10] * Joins: ttepasse (n=ttepas--@p5B0172E8.dip.t-dialin.net)
- # [15:11] * Joins: erlehmann (n=erlehman@tmo-109-179.customers.d1-online.com)
- # [15:13] * Joins: erlehmann_ (n=erlehman@tmo-109-179.customers.d1-online.com)
- # [15:13] * Quits: erlehmann_ (n=erlehman@tmo-109-179.customers.d1-online.com) (Read error: 104 (Connection reset by peer))
- # [15:15] * Joins: svl (n=me@ip-62-143-156-198.unitymediagroup.de)
- # [15:19] <Philip`> GPHemsley: Is it not endlessly fascinating?
- # [15:34] * Quits: nessy (n=nessy@124-170-205-120.dyn.iinet.net.au) ("This computer has gone to sleep")
- # [15:42] * Joins: archtech (n=sv@83.228.56.37)
- # [15:43] * Quits: svl (n=me@ip-62-143-156-198.unitymediagroup.de) ("And back he spurred like a madman, shrieking a curse to the sky.")
- # [15:43] * Joins: BlurstOfTimes (n=blurstof@168.203.117.66)
- # [15:47] * Joins: borismus (n=borismus@c-98-219-161-78.hsd1.pa.comcast.net)
- # [15:47] * Joins: kristallpirat (n=kristall@c-base/crew/kristall)
- # [15:50] * Joins: aroben (n=aroben@unaffiliated/aroben)
- # [15:50] * Quits: mpt (n=mpt@canonical/mpt) (Read error: 113 (No route to host))
- # [15:52] * Joins: miketaylr (n=miketayl@38.117.156.163)
- # [15:53] * Joins: mpt (n=mpt@canonical/mpt)
- # [15:57] * lmorchard|away is now known as lmorchard
- # [15:59] * Joins: MikeSmith (n=MikeSmit@114.48.65.127)
- # [16:23] * Quits: kristallpirat (n=kristall@c-base/crew/kristall) (Read error: 145 (Connection timed out))
- # [16:25] * Joins: kristallpirat (n=kristall@c-base/crew/kristall)
- # [16:26] * gsnedders|work guesses that IE's DOM-like thing has to have protection to stop XPath causing infinite loops.
- # [16:29] * Quits: miketaylr (n=miketayl@38.117.156.163) (hubbard.freenode.net irc.freenode.net)
- # [16:29] * Quits: erlehmann (n=erlehman@tmo-109-179.customers.d1-online.com) (hubbard.freenode.net irc.freenode.net)
- # [16:29] * Quits: boblet (n=boblet@p1254-ipbf304osakakita.osaka.ocn.ne.jp) (hubbard.freenode.net irc.freenode.net)
- # [16:29] * Quits: hsivonen (n=hsivonen@kekkonen.cs.hut.fi) (hubbard.freenode.net irc.freenode.net)
- # [16:29] * Quits: hober (n=ted@unaffiliated/hober) (hubbard.freenode.net irc.freenode.net)
- # [16:31] * Joins: miketaylr (n=miketayl@38.117.156.163)
- # [16:31] * Joins: erlehmann (n=erlehman@tmo-109-179.customers.d1-online.com)
- # [16:31] * Joins: hsivonen (n=hsivonen@kekkonen.cs.hut.fi)
- # [16:31] * Joins: hober (n=ted@unaffiliated/hober)
- # [16:31] * Joins: boblet (n=boblet@p1254-ipbf304osakakita.osaka.ocn.ne.jp)
- # [16:32] * Joins: pmuellr_ (n=pmuellr@nat/ibm/x-urmpyprfibyhzumo)
- # [16:33] <Philip`> gsnedders|work: I know nothing about this, but: Isn't XPath just supported in XML, where presumably IE uses MSXML which has a real DOM and is completely independent of the IE's HTML DOM-like thing?
- # [16:34] <gsnedders|work> Philip`: XPath is supported in HTML too
- # [16:35] * Joins: dglazkov (n=dglazkov@67.188.0.62)
- # [16:35] <Philip`> Oh, okay
- # [16:46] * Joins: hobertoAtWork (n=hobertoa@gw1.mcgraw-hill.com)
- # [16:47] * Quits: pmuellr (n=pmuellr@nat/ibm/x-sgtatlqksngjzzrh) (Read error: 110 (Connection timed out))
- # [16:47] * pmuellr_ is now known as pmuellr
- # [16:49] * Quits: dglazkov (n=dglazkov@67.188.0.62)
- # [16:52] * Joins: lazni (n=lazni@118.71.18.216)
- # [16:56] * Parts: boblet (n=boblet@p1254-ipbf304osakakita.osaka.ocn.ne.jp)
- # [17:01] <gsnedders|work> Philip`: Oh, I'm wrong
- # [17:01] * Quits: Maurice (n=ano@80.101.46.164) ("Disconnected...")
- # [17:03] * Quits: GPHemsley (n=GPHemsle@pdpc/supporter/student/GPHemsley) ("This computer has gone to sleep")
- # [17:05] * Joins: tantek (n=tantek@adsl-69-106-229-240.dsl.pltn13.pacbell.net)
- # [17:06] * Joins: sebmarkbage (n=miranda@h-73-244.A146.priv.bahnhof.se)
- # [17:07] * Joins: dglazkov (n=dglazkov@nat/google/x-uvruqahkpdbiliri)
- # [17:08] * Quits: dglazkov (n=dglazkov@nat/google/x-uvruqahkpdbiliri) (Remote closed the connection)
- # [17:08] * Joins: dglazkov (n=dglazkov@nat/google/x-csntvlcbntsydsjl)
- # [17:09] * Joins: equalsJeffH (n=weechat@209.20.72.172)
- # [17:10] * Quits: equalsJeffH (n=weechat@209.20.72.172) (Client Quit)
- # [17:11] * Joins: equalsJeffH (n=weechat@209.20.72.172)
- # [17:12] * Quits: equalsJeffH (n=weechat@209.20.72.172) (Client Quit)
- # [17:13] * Quits: jgraham (n=jgraham@web22.webfaction.com) (hubbard.freenode.net irc.freenode.net)
- # [17:13] * Joins: jgraham (n=jgraham@web22.webfaction.com)
- # [17:13] * Joins: equalsJeffH (n=weechat@209.20.72.172)
- # [17:13] * Quits: aroben (n=aroben@unaffiliated/aroben) (hubbard.freenode.net irc.freenode.net)
- # [17:13] * Quits: othree (n=othree@admin39.ct.ntust.edu.tw) (hubbard.freenode.net irc.freenode.net)
- # [17:13] * Quits: omii (i=programz@verizon-gni.com) (hubbard.freenode.net irc.freenode.net)
- # [17:13] * Quits: vs-hs_ (n=vs-hs@91.90.24.186) (hubbard.freenode.net irc.freenode.net)
- # [17:13] * Quits: tyoshino (n=tyoshino@220.109.219.244) (hubbard.freenode.net irc.freenode.net)
- # [17:13] * Quits: Dashiva (i=Dashiva@wikia/Dashiva) (hubbard.freenode.net irc.freenode.net)
- # [17:13] * Quits: kinetik (n=kinetik@121.98.132.55) (hubbard.freenode.net irc.freenode.net)
- # [17:13] * Quits: jcranmer (n=jcranmer@ltsp2.csl.tjhsst.edu) (hubbard.freenode.net irc.freenode.net)
- # [17:13] * Quits: jennb (n=jennb@74.125.59.73) (hubbard.freenode.net irc.freenode.net)
- # [17:13] * Quits: peritus_ (n=peritus@ircbridge.mahner.org) (hubbard.freenode.net irc.freenode.net)
- # [17:13] * Quits: mookid (i=mookid@ROFL.name) (hubbard.freenode.net irc.freenode.net)
- # [17:13] * Joins: mookid_ (i=mookid@ROFL.name)
- # [17:13] * Joins: zcorpan (n=zcorpan@pat.se.opera.com)
- # [17:13] * Joins: omii_ (i=programz@verizon-gni.com)
- # [17:13] * Joins: Dashiva (i=Dashiva@m223j.studby.ntnu.no)
- # [17:13] * Joins: kinetik (n=kinetik@121.98.132.55)
- # [17:13] * Joins: vs-hs (n=vs-hs@91.90.24.186)
- # [17:13] * Joins: aroben (n=aroben@unaffiliated/aroben)
- # [17:13] * Joins: jcranmer (n=jcranmer@ltsp2.csl.tjhsst.edu)
- # [17:13] * Joins: tyoshino (n=tyoshino@220.109.219.244)
- # [17:14] * Joins: peritus- (n=peritus@ircbridge.mahner.org)
- # [17:14] * Quits: equalsJeffH (n=weechat@209.20.72.172) (Client Quit)
- # [17:15] * Joins: equalsJeffH (n=weechat@209.20.72.172)
- # [17:15] * Quits: myakura (n=myakura@p4112-ipbf5102marunouchi.tokyo.ocn.ne.jp) ("Leaving...")
- # [17:16] * Joins: othree (n=othree@admin39.ct.ntust.edu.tw)
- # [17:17] * Quits: lazni (n=lazni@118.71.18.216) (hubbard.freenode.net irc.freenode.net)
- # [17:17] * Quits: hsivonen (n=hsivonen@kekkonen.cs.hut.fi) (hubbard.freenode.net irc.freenode.net)
- # [17:17] * Quits: hober (n=ted@unaffiliated/hober) (hubbard.freenode.net irc.freenode.net)
- # [17:17] * Quits: erlehmann (n=erlehman@tmo-109-179.customers.d1-online.com) (hubbard.freenode.net irc.freenode.net)
- # [17:17] * Quits: miketaylr (n=miketayl@38.117.156.163) (hubbard.freenode.net irc.freenode.net)
- # [17:17] * Joins: lazni (n=lazni@118.71.18.216)
- # [17:17] * Joins: miketaylr (n=miketayl@38.117.156.163)
- # [17:17] * Joins: erlehmann (n=erlehman@tmo-109-179.customers.d1-online.com)
- # [17:17] * Joins: hsivonen (n=hsivonen@kekkonen.cs.hut.fi)
- # [17:17] * Joins: hober (n=ted@unaffiliated/hober)
- # [17:18] * Quits: miketaylr (n=miketayl@38.117.156.163)
- # [17:18] * Joins: miketaylr (n=miketayl@38.117.156.163)
- # [17:22] * Quits: hsivonen (n=hsivonen@kekkonen.cs.hut.fi) (hubbard.freenode.net irc.freenode.net)
- # [17:22] * Quits: hober (n=ted@unaffiliated/hober) (hubbard.freenode.net irc.freenode.net)
- # [17:22] * Quits: erlehmann (n=erlehman@tmo-109-179.customers.d1-online.com) (hubbard.freenode.net irc.freenode.net)
- # [17:22] * Quits: lazni (n=lazni@118.71.18.216) (hubbard.freenode.net irc.freenode.net)
- # [17:23] * Joins: lazni (n=lazni@118.71.18.216)
- # [17:23] * Joins: erlehmann (n=erlehman@tmo-109-179.customers.d1-online.com)
- # [17:23] * Joins: hsivonen (n=hsivonen@kekkonen.cs.hut.fi)
- # [17:23] * Joins: hober (n=ted@unaffiliated/hober)
- # [17:23] * Quits: csarven (n=csarven@ip5451caad.direct-adsl.nl) ("Leaving.")
- # [17:28] * Quits: weinig|zZz (n=weinig@c-67-180-35-124.hsd1.ca.comcast.net) (Read error: 104 (Connection reset by peer))
- # [17:28] * Joins: weinig (n=weinig@c-67-180-35-124.hsd1.ca.comcast.net)
- # [17:29] * Joins: onar_ (n=onar@c-67-180-87-66.hsd1.ca.comcast.net)
- # [17:34] * Quits: gunderwonder (n=gunderwo@garage.upstruct.com)
- # [17:37] <gsnedders|work> Anyone got any idea about what the best way to count the descendants of a document is?
- # [17:37] <gsnedders|work> (pref. in a way that works in IE)
- # [17:37] <jgraham> It is important to clarify that you mean "Nodes"
- # [17:39] <zcorpan> just c/p from live dom viewer
- # [17:39] <zcorpan> and don't count the red nodes
- # [17:39] <jgraham> (but the short answer is "walk the 'tree' being careful to not count any node twice or descend into the descendants of nodes that you have seen before"
- # [17:39] <jgraham> )
- # [17:45] * Joins: explicit_ (i=bill@cpc1-ely05-2-0-cust456.5-1.cable.virginmedia.com)
- # [17:46] * Joins: smaug_ (n=chatzill@cs181150024.pp.htv.fi)
- # [17:47] * Quits: smaug (n=chatzill@82.181.150.24) (Read error: 131 (Connection reset by peer))
- # [17:47] * smaug_ is now known as smaug
- # [17:52] * Joins: Super-Dot (n=Super-Do@66-240-25-23.isp.comcastbusiness.net)
- # [17:54] * Quits: zcorpan (n=zcorpan@pat.se.opera.com)
- # [18:02] * Quits: pesla (n=retep@procurios.xs4all.nl) ("( www.nnscript.com :: NoNameScript 4.21 :: www.esnation.com )")
- # [18:03] * Quits: Super-Dot (n=Super-Do@66-240-25-23.isp.comcastbusiness.net)
- # [18:05] * Quits: erikvold (n=erikvvol@S01060024012860e9.gv.shawcable.net)
- # [18:05] * Joins: dave_levin (n=dave_lev@74.125.59.73)
- # [18:08] * Joins: ThunderSchunked (i=43f00ab4@gateway/web/freenode/x-cjgzkyixzycfespw)
- # [18:09] * Joins: Maurice (i=copyman@5ED548D4.cable.ziggo.nl)
- # [18:14] * Joins: paulirish (n=paul_iri@12.33.239.250)
- # [18:15] * Quits: ThunderSchunked (i=43f00ab4@gateway/web/freenode/x-cjgzkyixzycfespw) (Client Quit)
- # [18:15] * Joins: ThunderSchunked (i=43f00ab4@gateway/web/freenode/x-kqhmdpigahviqmlg)
- # [18:16] * Quits: lazni (n=lazni@118.71.18.216) ("Leaving.")
- # [18:16] * Quits: paul_irish (n=paul_iri@c-71-192-163-128.hsd1.nh.comcast.net) (Nick collision from services.)
- # [18:16] * paulirish is now known as paul_irish
- # [18:17] * Joins: paul_irish_ (n=paul_iri@c-71-192-163-128.hsd1.nh.comcast.net)
- # [18:18] <jgraham> Where does HTML5 say normatively that event handler attributes are null in the absence of being defined
- # [18:18] <jgraham> I can see where it says they are null if the content attribute doesn't compile
- # [18:18] <jgraham> or if the IDL attribute is removed
- # [18:19] <jgraham> Oh, nevermind it was obvious
- # [18:20] <jgraham> (just in the paragraph above where I was looking)
- # [18:20] * Joins: GPHemsley (n=GPHemsle@pdpc/supporter/student/GPHemsley)
- # [18:21] <GPHemsley> Philip`: No, actually, it's endlessly repetitive.
- # [18:23] * Quits: borismus (n=borismus@c-98-219-161-78.hsd1.pa.comcast.net)
- # [18:25] <gsnedders|work> http://www.betanews.com/article/Yahoo-Apple-Adobe-others-named-in-Eolas-patent-lawsuit-blitz/1254842259
- # [18:28] <tantek> ah the ghost of patent trolls past raises its ugly head
- # [18:31] <Philip`> We should all be glad that their innovation allowed us to have interactive plugins embedded in web pages
- # [18:32] <Philip`> Surely it's fair that they deserve a billion dollars for that?
- # [18:34] * Quits: weinig (n=weinig@c-67-180-35-124.hsd1.ca.comcast.net)
- # [18:36] <Dashiva> And patents don't have any chinese wall equivalent either, do they?
- # [18:36] <Dashiva> Even if you didn't know about the patent, you're infringing someone else's innovation
- # [18:37] * Joins: remysharp (n=remyshar@host86-179-225-45.range86-179.btcentralplus.com)
- # [18:38] <Philip`> Indeed, otherwise it'd be trivial to steal someone's legitimate patent and just pretend you never read about it, which would be pretty much impossible to disprove
- # [18:39] * Quits: aboodman (n=aboodman@72.14.229.81)
- # [18:39] * Joins: aboodman (n=aboodman@72.14.229.81)
- # [18:40] * Joins: cardona507 (n=cardona5@c-67-180-160-250.hsd1.ca.comcast.net)
- # [18:40] * Quits: wildcard (i=ard@arson.matnia.net) (Remote closed the connection)
- # [18:41] <tantek> I wonder if history will repeat or not.
- # [18:41] <cardona507> hello - there was a really great video that went around the public_html mailing list last week about HTML5 and what it can do and how well it is supported in the different browsers. I am pretty sure it was made by someone at google. I can't seem to locate it in my email. Can someone point me toward it? (I apologize if the description is kinda vague)
- # [18:42] <cardona507> I want to post it to my HTML/CSS class forum
- # [18:42] <tantek> Last time, various folks (including TBL) wrote friend of the court briefs outlining how the so called "innovations" were previously openly discussed - by others - on w3.org mailing lists. But that didn't seem to affect the outcome.
- # [18:42] <webben> cardona507: http://vimeo.com/6691519 ?
- # [18:43] <cardona507> webben - exactly :) thanks
- # [18:55] * Joins: borismus (n=borismus@CMU-348674.WV.CC.CMU.EDU)
- # [18:56] * Quits: riven (n=colin@pdpc/supporter/professional/riven) (Read error: 131 (Connection reset by peer))
- # [18:56] * Joins: riven (n=colin@5ED0BF60.cable.ziggo.nl)
- # [19:02] * aroben is now known as aroben|meeting
- # [19:05] * Joins: maikmerten (n=maikmert@BAE1ae5.bae.pppool.de)
- # [19:06] * Quits: mpt (n=mpt@canonical/mpt) (Read error: 60 (Operation timed out))
- # [19:08] * Quits: michaelforrest (n=michaelf@91.189.88.12) (Read error: 104 (Connection reset by peer))
- # [19:10] * Joins: dimich_ (n=dimich@c-98-203-252-208.hsd1.wa.comcast.net)
- # [19:11] * Quits: onar_ (n=onar@c-67-180-87-66.hsd1.ca.comcast.net)
- # [19:12] <gsnedders|work> Philip`: yt?
- # [19:13] * Joins: weinig (n=weinig@17.246.16.128)
- # [19:13] * Joins: cying (n=cying@70.90.171.153)
- # [19:14] <Philip`> gsnedders|work: Y
- # [19:14] <gsnedders|work> Philip`: What pages contain: document.createElement(["']<
- # [19:15] * Quits: zdobersek (n=zan@cpe-92-37-76-191.dynamic.amis.net) (Read error: 60 (Operation timed out))
- # [19:15] <Philip`> gsnedders|work: Do you mean document\.createElement\(["']< ?
- # [19:15] <gsnedders|work> Philip`: yeah
- # [19:16] * Joins: zdobersek (n=zan@cpe-92-37-68-253.dynamic.amis.net)
- # [19:16] <Philip`> gsnedders|work: Ask me again in five minutes
- # [19:20] <gsnedders|work> Philip`: again?
- # [19:22] <Philip`> gsnedders|work: http://philip.html5.org/data/createelement-with-angle-bracket.txt
- # [19:23] <gsnedders|work> Philip`: thx
- # [19:27] * Quits: cardona507 (n=cardona5@c-67-180-160-250.hsd1.ca.comcast.net)
- # [19:30] * Quits: weinig (n=weinig@17.246.16.128)
- # [19:31] * Quits: cedricv (n=cedric@112.199.138.194) (Remote closed the connection)
- # [19:40] * Joins: weinig (n=weinig@17.246.16.128)
- # [19:41] * Joins: mpt (n=mpt@canonical/mpt)
- # [19:42] * Quits: mat_t (n=mattomas@91.189.88.12) ("This computer has gone to sleep")
- # [19:48] * Joins: gunderwonder (n=gunderwo@239.80-203-88.nextgentel.com)
- # [19:49] * Joins: onar_ (n=onar@17.244.70.19)
- # [19:52] * Joins: jennb (n=jennb@74.125.59.73)
- # [19:52] * Quits: explicit_ (i=bill@cpc1-ely05-2-0-cust456.5-1.cable.virginmedia.com)
- # [19:52] * Joins: gratz|home (n=gratz@cpc3-brig15-2-0-cust237.3-3.cable.virginmedia.com)
- # [19:55] * Quits: onar_ (n=onar@17.244.70.19) (Remote closed the connection)
- # [19:55] * Joins: onar_ (n=onar@17.226.23.126)
- # [19:55] * Quits: MikeSmith (n=MikeSmit@114.48.65.127) (Read error: 145 (Connection timed out))
- # [19:57] * Quits: dimich_ (n=dimich@c-98-203-252-208.hsd1.wa.comcast.net)
- # [20:00] * Quits: mpt (n=mpt@canonical/mpt) (Read error: 110 (Connection timed out))
- # [20:01] * Quits: remysharp (n=remyshar@host86-179-225-45.range86-179.btcentralplus.com) ("Gotta shoot - peeyaow!")
- # [20:02] * Joins: onar__ (n=onar@17.244.70.19)
- # [20:04] * Joins: mpt (n=mpt@canonical/mpt)
- # [20:10] * Quits: onar_ (n=onar@17.226.23.126) (Read error: 145 (Connection timed out))
- # [20:18] * Quits: Dashiva (i=Dashiva@wikia/Dashiva)
- # [20:20] * Joins: Dashiva (i=Dashiva@wikia/Dashiva)
- # [20:30] * Quits: mpt (n=mpt@canonical/mpt) ("Ex-Chat")
- # [20:37] * Quits: JohnResig (n=JohnResi@ejohn.org) ("leaving")
- # [20:38] * Joins: JohnResig (n=JohnResi@121.255.201.74.static.ey03.engineyard.com)
- # [20:39] * Joins: mitnavn (n=mitnavn@0x5552b452.adsl.cybercity.dk)
- # [20:39] * Quits: mitnavn (n=mitnavn@0x5552b452.adsl.cybercity.dk) (hubbard.freenode.net irc.freenode.net)
- # [20:39] * Quits: Dashiva (i=Dashiva@wikia/Dashiva) (hubbard.freenode.net irc.freenode.net)
- # [20:39] * Quits: onar__ (n=onar@17.244.70.19) (hubbard.freenode.net irc.freenode.net)
- # [20:39] * Quits: hsivonen (n=hsivonen@kekkonen.cs.hut.fi) (hubbard.freenode.net irc.freenode.net)
- # [20:39] * Quits: hober (n=ted@unaffiliated/hober) (hubbard.freenode.net irc.freenode.net)
- # [20:39] * Quits: erlehmann (n=erlehman@tmo-109-179.customers.d1-online.com) (hubbard.freenode.net irc.freenode.net)
- # [20:40] * Joins: mitnavn (n=mitnavn@0x5552b452.adsl.cybercity.dk)
- # [20:40] * Joins: Dashiva (i=Dashiva@wikia/Dashiva)
- # [20:40] * Joins: onar__ (n=onar@17.244.70.19)
- # [20:40] * Joins: erlehmann (n=erlehman@tmo-109-179.customers.d1-online.com)
- # [20:40] * Joins: hsivonen (n=hsivonen@kekkonen.cs.hut.fi)
- # [20:40] * Joins: hober (n=ted@unaffiliated/hober)
- # [20:40] * Quits: onar__ (n=onar@17.244.70.19) (Killed by sagan.freenode.net (Nick collision))
- # [20:41] * Joins: arun (n=arun@nat/mozilla/x-qwsdrntjtupgfksd)
- # [20:42] * Quits: hsivonen (n=hsivonen@kekkonen.cs.hut.fi) (hubbard.freenode.net irc.freenode.net)
- # [20:42] * Quits: Dashiva (i=Dashiva@wikia/Dashiva) (hubbard.freenode.net irc.freenode.net)
- # [20:42] * Quits: hober (n=ted@unaffiliated/hober) (hubbard.freenode.net irc.freenode.net)
- # [20:42] * Quits: erlehmann (n=erlehman@tmo-109-179.customers.d1-online.com) (hubbard.freenode.net irc.freenode.net)
- # [20:42] * Quits: mitnavn (n=mitnavn@0x5552b452.adsl.cybercity.dk) (hubbard.freenode.net irc.freenode.net)
- # [20:43] * Joins: Dashiva (i=Dashiva@m223j.studby.ntnu.no)
- # [20:43] * Joins: hsivonen (n=hsivonen@kekkonen.cs.hut.fi)
- # [20:43] * Joins: erlehmann (n=erlehman@tmo-109-179.customers.d1-online.com)
- # [20:43] * Joins: hober (n=ted@unaffiliated/hober)
- # [20:43] * Joins: mitnavn (n=mitnavn@unaffiliated/mitnavn)
- # [20:48] * Quits: borismus (n=borismus@CMU-348674.WV.CC.CMU.EDU)
- # [20:50] * Joins: Rik` (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net)
- # [20:55] * GPHemsley shifts uncomfortably after reading the latest response in the <cite> debate.
- # [20:58] * aroben|meeting is now known as aroben
- # [20:58] <TabAtkins> GPHemsley: To be fair, I totally agree with him, and don't understand quite how it could be misconstrued as badly as it is by Hixie.
- # [20:59] <GPHemsley> I'm personally of the belief that <cite> should be used to mark up an entire entry in a bibliography, so I don't even bother getting directly involved in the discussion.
- # [20:59] <GPHemsley> But yeah, I certainly don't agree that <cite> should be restricted to just titles of works
- # [20:59] <TabAtkins> Interesting, but totally against legacy usage, so can be struck immediately. ^_^
- # [21:00] * Joins: dbaron (n=dbaron@nat/mozilla/x-pgtrlcxlawwtedmu)
- # [21:00] <GPHemsley> Precisely :P
- # [21:00] <TabAtkins> Yeah, I just added an example from my own site to the whatwg wiki page about it.
- # [21:00] * aroben is now known as aroben|lunch
- # [21:00] * Quits: weinig (n=weinig@17.246.16.128)
- # [21:00] * Quits: maikmerten (n=maikmert@BAE1ae5.bae.pppool.de) (Remote closed the connection)
- # [21:00] <TabAtkins> As I use the <blockquote>/<cite> pair to mark up testimonials, and expect to continue to do so in the future.
- # [21:01] <GPHemsley> right
- # [21:01] <GPHemsley> what is the link to the wiki article, please?
- # [21:01] <TabAtkins> One sec.
- # [21:02] * Joins: Super-Dot (n=Super-Do@66-240-25-4.isp.comcastbusiness.net)
- # [21:03] <TabAtkins> GPHemsley: http://wiki.whatwg.org/wiki/Cite_element
- # [21:03] <GPHemsley> thanks
- # [21:03] * Joins: weinig (n=weinig@17.246.16.128)
- # [21:06] <GPHemsley> perhaps we should analyze the word 'cite' itself?
- # [21:06] <GPHemsley> if so, the first question is, are we using it as a verb or a noun?
- # [21:07] <TabAtkins> I use it as a verb. I'm citing whatever's in the <cite>.
- # [21:08] * Quits: weinig (n=weinig@17.246.16.128) (Client Quit)
- # [21:09] <GPHemsley> hmm... according to the main definition of the verb 'cite', it cane be used to refer to quotes/quotations, titles, and people
- # [21:09] <GPHemsley> s/cane/can/
- # [21:10] <TabAtkins> Yeah, the first one doesn't jive with legacy <cite>, but the second and third definitely do.
- # [21:11] <TabAtkins> Which is why I don't understand why Hixie keeps splitting things the way he does. We want to use <cite> for "things we cite". He seems to be slicing things differently - he wants to use for "x things", making sure that x is a category that can be reliably styled as a citation.
- # [21:11] <TabAtkins> Which is why names don't work for his logic - most of the time you *don't* want to mark up a name, or style it with italics.
- # [21:11] <GPHemsley> reading the FAQ entry on it, it seems that the main issue is the difference in styling (i.e. italics) between titles and authors
- # [21:12] * Quits: cying (n=cying@70.90.171.153) (Remote closed the connection)
- # [21:12] <TabAtkins> I just don't see a significant difference, though. I italicize cited names.
- # [21:12] * Quits: archtech (n=sv@83.228.56.37)
- # [21:12] * Joins: cying (n=cying@70.90.171.153)
- # [21:12] <TabAtkins> And if I was bolding them or something, I'd be bolding work names too.
- # [21:13] <GPHemsley> I think <cite> should be used for things such as parenthetical citations or footnotes (e.g. in spec documents, like <cite>[RFC3066]</cite>), rather than any off-handed mention of a work's title
- # [21:14] <TabAtkins> Basically I just don't want to be stuck with <span class=cite> when I'm trying to mark up names being attributed for styling purposes when there's a perfectly serviceable <cite> element right here.
- # [21:14] <GPHemsley> ...or author, for that matter
- # [21:14] <TabAtkins> Well, you *do* often style works, even if you're not directly quoting them.
- # [21:14] <GPHemsley> yes
- # [21:14] <GPHemsley> that is true
- # [21:14] <GPHemsley> but I think that should be dealt with separately
- # [21:15] <TabAtkins> And saying that "too bad, that's not *enough* quotation to get special <cite> styling, off to <span>-land with you" is weird and would just cause problems.
- # [21:15] <TabAtkins> A simpler rule is "are you citing something, and do you want it styled specially?".
- # [21:15] <GPHemsley> I think you'd be better off with <cite class="title"> and <cite class="author">
- # [21:15] <TabAtkins> Possibly, if you need to slice things that thinly.
- # [21:15] <GPHemsley> right
- # [21:16] <GPHemsley> so, leave the default styling as italics (for legacy issues), and then allow any reference to any work or author, with the granularity decided by the author
- # [21:16] <TabAtkins> My rule for semantics is that if I can't explain it in terms of a single easy question, it's too complicated.
- # [21:16] <TabAtkins> Yeah, that's about what I want.
- # [21:16] <GPHemsley> seems simple enough
- # [21:17] <GPHemsley> Hixie: ^^
- # [21:21] <TabAtkins> Ah, spending some time just sitting down and styling a page is so relaxing.
- # [21:23] <GPHemsley> heh
- # [21:23] <GPHemsley> while you're at it, I'd recommend to changing -- to em dashes ;)
- # [21:23] <GPHemsley> s/to/you/
- # [21:24] <TabAtkins> Yeah, probably. I always forget how to do unicode in the content property, though.
- # [21:24] <GPHemsley> \u2014
- # [21:24] <GPHemsley> I think
- # [21:25] <TabAtkins> Lemme try. One sec.
- # [21:26] <TabAtkins> Nope. >_<
- # [21:27] <GPHemsley> you did it wrong :P
- # [21:27] <TabAtkins> I've done it four different ways now.
- # [21:27] <GPHemsley> oh
- # [21:27] <GPHemsley> meh
- # [21:27] <GPHemsley> hang on
- # [21:27] <GPHemsley> oh
- # [21:27] <GPHemsley> \2014
- # [21:28] <TabAtkins> Ah, excellent.
- # [21:28] <GPHemsley> weird... the space disappeared
- # [21:29] <TabAtkins> Yeah, but I don't care enough to debug. It's good enough.
- # [21:30] <GPHemsley> perhaps you want a \00A0 (NBSP) or \2002 (en space) \2003 (em space)
- # [21:31] <GPHemsley> (there's an "or" missing in there)
- # [21:31] * Joins: gunderwonder_ (n=gunderwo@239.80-203-88.nextgentel.com)
- # [21:31] * Joins: benward (n=benward@nat/yahoo/x-mjqqxqxifszntjpi)
- # [21:33] <tantek> TabAtkins - re: cite element, perhaps add your voice of support to the opinions section on the wiki: http://wiki.whatwg.org/wiki/Cite_element
- # [21:33] <tantek> (and add any examples you have on the web as well)
- # [21:33] <TabAtkins> tantek: I already added an example - it's the Go Figure one.
- # [21:33] <tantek> oh cool - awesome
- # [21:33] <TabAtkins> GPHemsley: Yeah, an nbsp did it.
- # [21:34] <GPHemsley> TabAtkins: Cool
- # [21:34] <TabAtkins> Odd that it would lose an ordinary space, though. Hmm.
- # [21:34] <GPHemsley> TabAtkins: Incidently, I'd recommend indenting those lines just a tad, as well.
- # [21:34] <tantek> TabAtkins, GPHemsley, still worth adding a +1 here IMHO: http://wiki.whatwg.org/wiki/Cite_element#opinions
- # [21:34] <TabAtkins> Oh, the cite lines?
- # [21:34] <GPHemsley> yeah
- # [21:34] * aroben|lunch is now known as aroben
- # [21:35] <tantek> if any strawpoll is conducted in the wg, it can include the opinions there in absentia
- # [21:35] * Joins: jwalden (n=waldo@nat/mozilla/x-ehnwdqpfukbaxcho)
- # [21:35] <GPHemsley> what are we +1ing, though?
- # [21:36] <tantek> the use of the cite element to mark up names of speakers/people for quotations
- # [21:36] <TabAtkins> tantek: done
- # [21:36] * Quits: sebmarkbage (n=miranda@h-73-244.A146.priv.bahnhof.se) (Read error: 104 (Connection reset by peer))
- # [21:37] <TabAtkins> GPHemsley: You're right, that looks better.
- # [21:37] <GPHemsley> :)
- # [21:37] <GPHemsley> TabAtkins: And perhaps a little extra space above, too
- # [21:37] * Quits: gunderwonder (n=gunderwo@239.80-203-88.nextgentel.com) (Connection timed out)
- # [21:38] <TabAtkins> above the cite or above the blockquote?
- # [21:38] <GPHemsley> above the cite
- # [21:38] <GPHemsley> (hmm... thanks for alerting to me to the 'text-indent' property, BTW)
- # [21:38] * gunderwonder_ is now known as gunderwonder
- # [21:38] * GPHemsley really cannot type.
- # [21:38] <TabAtkins> Heh, np.
- # [21:39] <GPHemsley> yeah, that's better
- # [21:39] <TabAtkins> Okay, .25em is a bit too much. I like the space, but want only a very fine one.
- # [21:39] <TabAtkins> Ah, better.
- # [21:40] <TabAtkins> .15em it is. I still want a very strong visual correlation with the preceding blockquote.
- # [21:40] <GPHemsley> right
- # [21:41] <GPHemsley> I'm gonna write a message to the cite thread regarding our discussion, BTW
- # [21:41] * Joins: cohitre (n=cohitre@pool-98-111-95-62.sttlwa.fios.verizon.net)
- # [21:41] <TabAtkins> kk. That saves me having to do so.
- # [21:43] * Quits: roc (n=roc@121.72.169.197)
- # [21:44] <TabAtkins> lunch - be back in 2 hours
- # [21:45] * Quits: jennb (n=jennb@74.125.59.73)
- # [21:45] * Quits: kristallpirat (n=kristall@c-base/crew/kristall) ("Wünsche weiterhin guten Flug")
- # [21:49] * Joins: gunderwonder_ (n=gunderwo@239.80-203-88.nextgentel.com)
- # [21:52] <GPHemsley> sent
- # [21:54] <GPHemsley> tantek: I'm now on record with what I support. Still not sure whether that fits into that +1 list.
- # [21:55] <tantek> GPHemsley - the beginning of the section describes what is proposed
- # [21:55] <tantek> http://wiki.whatwg.org/wiki/Cite_element#speaker
- # [21:55] * Joins: nessy (n=nessy@124-170-205-120.dyn.iinet.net.au)
- # [21:55] <GPHemsley> Yeah, I'm there
- # [21:55] <GPHemsley> it's kind of a dinky sentence
- # [21:56] <GPHemsley> it should probably be propped up with more direct wording, like "we all support this, that, and the other thing"
- # [21:56] <GPHemsley> IDK, just my opinion
- # [21:56] <GPHemsley> easy to miss
- # [21:57] <tantek> ok
- # [21:57] * Quits: gunderwonder (n=gunderwo@239.80-203-88.nextgentel.com) (Read error: 110 (Connection timed out))
- # [21:57] * gunderwonder_ is now known as gunderwonder
- # [21:57] * Philip` adds a -1, just to balance things out
- # [21:58] <GPHemsley> :P
- # [21:59] * Quits: Super-Dot (n=Super-Do@66-240-25-4.isp.comcastbusiness.net) (Read error: 104 (Connection reset by peer))
- # [22:00] * Joins: Super-Dot (n=Super-Do@66-240-25-4.isp.comcastbusiness.net)
- # [22:01] <Dashiva> Philip`: Make it -10 just in case
- # [22:02] * Quits: Rik` (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net) (Read error: 113 (No route to host))
- # [22:03] <tantek> Philip` - I encourage you to add your opinion to the wiki, along with links to any supporting materials: http://wiki.whatwg.org/wiki/Cite_element#opinions
- # [22:03] <tantek> GPHemsley - reload that link - I've added a summary opinion sentence to address the issue you raised
- # [22:03] * Joins: explicit_ (n=bill@cpc1-ely05-2-0-cust456.5-1.cable.virginmedia.com)
- # [22:03] * Joins: Rik` (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net)
- # [22:04] * Joins: ap (n=ap@17.246.19.174)
- # [22:05] * Parts: pmuellr (n=pmuellr@nat/ibm/x-urmpyprfibyhzumo)
- # [22:06] * Quits: tantek (n=tantek@adsl-69-106-229-240.dsl.pltn13.pacbell.net)
- # [22:07] <GPHemsley> tantek: That's better, but it's still a little submissive and ambiguous. It should make clear what +1 means versus -1.
- # [22:12] <Philip`> tantek: Oh, I don't want to bother actually reading the page or having an informed opinion
- # [22:14] * Quits: Super-Dot (n=Super-Do@66-240-25-4.isp.comcastbusiness.net) (Read error: 60 (Operation timed out))
- # [22:18] * Quits: webben (n=Adium@dip5-fw.corp.ukl.yahoo.com) (Client Quit)
- # [22:19] * Joins: webben (n=Adium@dip5-fw.corp.ukl.yahoo.com)
- # [22:20] * Joins: tantek (n=tantek@70-36-139-108.dsl.dynamic.sonic.net)
- # [22:21] * Joins: jennb (n=jennb@74.125.59.73)
- # [22:24] * Quits: zdobersek (n=zan@cpe-92-37-68-253.dynamic.amis.net) ("Leaving.")
- # [22:24] * Quits: smaug (n=chatzill@cs181150024.pp.htv.fi) ("ChatZilla 0.9.85 [Firefox 3.7a1pre/20090929162016]")
- # [22:24] * Quits: equalsJeffH (n=weechat@209.20.72.172) ("WeeChat 0.2.6")
- # [22:25] * Joins: smaug (n=chatzill@cs181150024.pp.htv.fi)
- # [22:27] * Joins: roc (n=roc@203-97-204-82.dsl.clear.net.nz)
- # [22:35] * Joins: borismus (n=borismus@CMU-348674.WV.CC.CMU.EDU)
- # [22:38] * Joins: sicking (n=chatzill@nat/mozilla/x-whsdwxaywrcmjsqa)
- # [22:43] * Quits: ROBOd (n=robod@89.122.216.38) ("http://www.robodesign.ro")
- # [22:44] * Joins: jwalden_ (n=waldo@nat/mozilla/x-rcdpgeyyrxjgseac)
- # [22:50] * Quits: borismus (n=borismus@CMU-348674.WV.CC.CMU.EDU)
- # [22:51] * Joins: cardona507 (n=cardona5@c-67-180-160-250.hsd1.ca.comcast.net)
- # [22:54] * Quits: jwalden (n=waldo@nat/mozilla/x-ehnwdqpfukbaxcho) (Success)
- # [22:58] * Joins: borismus (n=borismus@CMU-348674.WV.CC.CMU.EDU)
- # [22:59] * Quits: tndH (n=Rob@cpc2-leed18-0-0-cust427.leed.cable.ntl.com) ("ChatZilla 0.9.85-rdmsoft [XULRunner 1.9.0.1/2008072406]")
- # [22:59] * Quits: mitnavn (n=mitnavn@unaffiliated/mitnavn) (Client Quit)
- # [23:04] * Joins: tndH (n=Rob@cpc2-leed18-0-0-cust427.leed.cable.ntl.com)
- # [23:06] * arun is now known as Guest66076
- # [23:08] * Quits: Maurice (i=copyman@5ED548D4.cable.ziggo.nl)
- # [23:10] * Quits: erlehmann (n=erlehman@tmo-109-179.customers.d1-online.com) (Read error: 54 (Connection reset by peer))
- # [23:12] * Quits: Rik` (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net) (Read error: 54 (Connection reset by peer))
- # [23:12] * Joins: Rik`_ (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net)
- # [23:12] * Quits: Rik`_ (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net) (Client Quit)
- # [23:14] * Quits: othermaciej (n=mjs@c-69-181-42-237.hsd1.ca.comcast.net)
- # [23:16] * Quits: ThunderSchunked (i=43f00ab4@gateway/web/freenode/x-kqhmdpigahviqmlg) (Ping timeout: 180 seconds)
- # [23:18] * Quits: BlurstOfTimes (n=blurstof@168.203.117.66) ("Leaving...")
- # [23:33] * Quits: cying (n=cying@70.90.171.153)
- # [23:36] * Joins: Super-Dot (n=Super-Do@66-240-27-50.isp.comcastbusiness.net)
- # [23:45] * Quits: daedb (n=daed@h11n1fls34o986.telia.com) (Remote closed the connection)
- # [23:45] * Joins: weinig (n=weinig@17.246.16.128)
- # [23:47] * Quits: benward (n=benward@nat/yahoo/x-mjqqxqxifszntjpi) (Read error: 104 (Connection reset by peer))
- # [23:50] * Joins: dpranke (n=Adium@nat/google/x-xfwuzteapblrwlto)
- # [23:54] * mookid_ is now known as mikeke
- # [23:54] * Joins: ojan (n=ojan@nat/google/x-atguerljrvadgiqo)
- # [23:54] * Joins: benward (n=benward@98.210.154.133)
- # [23:54] * Quits: jorlow (n=jorlow@nat/google/x-vpliukrtyrdjgtcq)
- # [23:57] * Quits: paul_irish (n=paul_iri@12.33.239.250) (Read error: 104 (Connection reset by peer))
- # [23:57] * Joins: paulirish (n=paul_iri@12.33.239.250)
- # [23:59] * paulirish is now known as paul_irish
- # Session Close: Wed Oct 07 00:00:00 2009
The end :)