Options:
- # Session Start: Sat Oct 29 00:00:02 2011
- # Session Ident: #whatwg
- # [00:05] * Quits: mpt (mpt@canonical/mpt) (Ping timeout: 252 seconds)
- # [00:06] * Quits: puppen (~einPaarPu@60-240-245-17.static.tpgi.com.au) (Read error: Connection reset by peer)
- # [00:07] * Quits: othermaciej (~mjs@2620:149:f01:202:8566:a574:dea8:adf0) (Quit: othermaciej)
- # [00:08] * Joins: puppen (~einPaarPu@60-240-245-17.static.tpgi.com.au)
- # [00:08] <kennyluck> Hmm.. the mbox archive output by whatwg.org doesn't do >From quotation.
- # [00:09] * Joins: othermaciej (~mjs@17.245.23.121)
- # [00:09] * Quits: Timz (~Adium@86.89.174.199) (Quit: Leaving.)
- # [00:11] * Joins: davidb_ (~davidb@bas1-toronto06-2925210074.dsl.bell.ca)
- # [00:14] * jernoble|afk is now known as jernoble
- # [00:14] <ojan> Hixie: is the case-sensitivity of attribute names for svg in html specified anywhere?
- # [00:14] <ojan> Hixie: i'm having trouble finding it in the html spec
- # [00:14] <Hixie> case-sensitivity in what sense?
- # [00:15] <ojan> Hixie: in regular html, attribute names are lowercased
- # [00:15] <Hixie> you mean when parsing?
- # [00:15] <ojan> Hixie: in regular svg, attribute names keep their case
- # [00:15] <ojan> Hixie: yeah
- # [00:15] <Hixie> aah
- # [00:16] <Hixie> yeah that's in the parser
- # [00:16] <Hixie> hold on
- # [00:16] <Hixie> i'll give you a search string
- # [00:16] <ojan> Hixie: great
- # [00:16] * Quits: othermaciej (~mjs@17.245.23.121) (Quit: othermaciej)
- # [00:16] <Hixie> search for "adjust SVG attributes"
- # [00:16] * Joins: scor_ (~scor_@c-98-216-102-251.hsd1.ma.comcast.net)
- # [00:18] <ojan> Hixie: so basically, we parse it ignoring case and then spit out the case-sensitive result?
- # [00:18] <Hixie> yeah
- # [00:18] <Hixie> well
- # [00:18] <Hixie> we spit out a case-normalised result
- # [00:18] <ojan> Hixie: e.g. paThLength -> pathLength ?
- # [00:18] <Hixie> right
- # [00:18] <ojan> Hixie: ok...here's the problem we're running into...
- # [00:19] <Hixie> paThLength in the markup becomes pathlength in the parser becomes pathLength in the DOM
- # [00:19] <ojan> Hixie: selector parsing says the case-sensitivity of attirbute name/value parsing depends on the document type
- # [00:19] <ojan> Hixie: so, webkit always lowercases attribute names in html documents
- # [00:20] <Hixie> that's changed iirc
- # [00:20] <ojan> Hixie: so now *[pathLength] doesn't match <svg pathLength="...">
- # [00:20] <ojan> because the attribute name in the selector is lowercased and the one on the svg element isn't
- # [00:20] <ojan> Hixie: it doesn't seemd changed to me in the selectors 4 spec
- # [00:21] <Hixie> hmm, i may be thinking of attribute _values_
- # [00:21] <ojan> Hixie: http://dev.w3.org/csswg/selectors4/#attribute-case
- # [00:21] * Quits: davidb_ (~davidb@bas1-toronto06-2925210074.dsl.bell.ca) (Quit: davidb_)
- # [00:21] <Hixie> yeah i'm thinking of values, don't mind me
- # [00:21] <Hixie> let's see
- # [00:22] <Hixie> ok so the HTML spec says that "and element names of HTML elements in HTML documents must be treated as ASCII case-insensitive for the purposes of selector matching"
- # [00:22] <Hixie> so [pathLength] should match <div pathlength> but not <svg pathlength>
- # [00:23] <ojan> Hixie: yes...but the problem is that it's currently impossible as speced to match <svg pathlength>
- # [00:24] <Hixie> [pathLength] would match it
- # [00:24] <Hixie> since the parser would convert it to pathLength in the DOM
- # [00:25] <ojan> Hixie: oh...i guess it's technically wrong that webkit lowercases the attribute name in the css parser
- # [00:25] <ojan> it should just be doing a case-insensitive compare
- # [00:25] <ojan> for html elements
- # [00:25] <Hixie> yeah
- # [00:25] <Hixie> html elements in html documents
- # [00:25] <ojan> right
- # [00:25] <ojan> sigh
- # [00:26] * Joins: nessy (~Adium@124-149-69-40.dyn.iinet.net.au)
- # [00:32] <ojan> Hixie: arv is suggesting that selector attribute matching in an HTML document shoudl always be case-insensitive regardless of what element you're matching
- # [00:34] <ojan> Hixie: why not make svg attributes in html documents lowercase like all other attributes?
- # [00:34] <Hixie> well the attributes being lowercase would mean that there'd be two SVG vocabularies
- # [00:34] <Hixie> one with lowercase names and one not
- # [00:34] <Hixie> which would have rammifications i can't even fully imagine
- # [00:35] <hober> ojan: DOM Consistency, basically
- # [00:35] <Hixie> but would certainly be a disaster for implementors
- # [00:35] <Hixie> consider the confusion that would result from taking an SVG file and moving the nodes to an HTML file and finding it all stopped working, e.g.
- # [00:35] <Hixie> anyway, that's one thing
- # [00:36] <Hixie> the other thing is case-sensitivity
- # [00:36] <Hixie> i don't really mind what we do there, that's an issue for the css and svg groups to decide
- # [00:36] <Hixie> i expect css would say it's up to svg, css just delegates to the host language
- # [00:36] <Hixie> and i've no idea what the svg group would want
- # [00:36] <Hixie> i haven't worked out what their operating principles are
- # [00:36] <shepazu> I could ask them
- # [00:37] <shepazu> for SVG2, we are not claiming it is an XML syntax, but a DOM one
- # [00:37] <Hixie> ojan, shepazu; shepazu, ojan.
- # [00:37] * Hixie steps back :-0
- # [00:37] * Joins: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com)
- # [00:37] <shepazu> (though there is, of course, an XML parsing)
- # [00:38] <ojan> Hixie, shepazu: people here are suggesting that maybe we should do the HTML normalization of svg attribute names at attribute matching time
- # [00:38] <shepazu> Hixie: at least, that's what I said in the charter that's up for review now
- # [00:38] <Hixie> ojan: what would that mean?
- # [00:38] * shepazu is not sure what the implications of that are, ojan
- # [00:40] <shepazu> Hixie: fyi http://www.w3.org/Graphics/SVG/2011/charter.html
- # [00:40] <shepazu> [[
- # [00:40] <shepazu> The SVG WG develops the following technologies: A markup syntax, compatible with XML and HTML5 parsing, for describing shapes, text, and painting effects, including gradients, filters, and other graphical effects, through a set of elements and attributes.
- # [00:40] <shepazu> ]]
- # [00:41] <shepazu> so, I don't say "DOM", but that's the implication
- # [00:41] <shepazu> (or something)
- # [00:42] <ojan> shepazu: the implication is that *[pathlength] would match <svg pathLength=5>
- # [00:43] <Hixie> ojan: would it match <div pathlength>?
- # [00:43] <shepazu> ojan: seems friendly to me, but not sure about the implementation fallout
- # [00:43] <ojan> Hixie: yeah
- # [00:43] <Hixie> shepazu: "a markup syntax, compatible with XML and HTML5 parsing" is, like, the opposite of a "DOM"...
- # [00:43] <shepazu> Hixie: ok, patches welcome
- # [00:43] <ojan> it's a performance tradeoff as far as implementation is concerned
- # [00:44] <Hixie> shepazu: i think charters are irrelevant, so i don't mind either way, i'm just saying that if you meant to say DOM, you should be aware that what you just quoted says the opposite :-)
- # [00:44] <shepazu> ojan: I'm more concerned about backward-compatibility
- # [00:44] <Hixie> ojan: i don't understand what "do the HTML normalization of svg attribute names at attribute matching time" means then.
- # [00:44] <ojan> with *[pathlength] matching <svg pathLength=5>, you can store only the lower-cased copy of the attribute name and for html elements, the name comparison is very fast, but it's slower for svg elements
- # [00:44] <shepazu> Hixie: too jetlagged to follow you, but interested to hear an explanation I could unpack later
- # [00:45] <ojan> Hixie: basically...when parsing *[pathLenGTH] we'd normalize it to *[pathlength]...
- # [00:45] <Hixie> shepazu: sure, ping me if you want to talk about it
- # [00:45] <Hixie> ojan: how do you know to normalize it?
- # [00:45] <ojan> Hixie: then when doing selector matching, if it's an SVG element we'd actually compare to pathLength
- # [00:45] <erlehmann> ojan, but pathLenGTH is WRONG
- # [00:45] <erlehmann> oh okey
- # [00:45] <ojan> erlehmann: for HTML elements, it would match
- # [00:46] <erlehmann> i hate every single member of your working group for that
- # [00:46] <erlehmann> ;)
- # [00:46] <Hixie> ojan: i mean, what if MathML had a "foobar" attribute and SVG had a "fooBar" attribute?
- # [00:46] <erlehmann> Hixie, namespac- oh wait.
- # [00:47] <Hixie> ojan: and would you match [pathlength] to an <svg> element that had a "pathlength" attribute manually set in the DOM? (lowercase, so not the real pathLength one?)
- # [00:47] <ojan> Hixie: what about it? *[foobAr] would match both of them
- # [00:47] * jernoble is now known as jernoble|afk
- # [00:47] <ojan> Hixie: yeah...i guess that doens't make sense
- # [00:47] <ojan> Hixie: sigh...svg in html... :(
- # [00:47] <erlehmann> well, seems “claiming SVG is not XML, but a DOM syntax” needs some work.
- # [00:48] <Hixie> ojan: "just" do the comparison case-insensitively against HTML elements and case-sensitively against non-HTML elements
- # [00:48] <ojan> Hixie: yeah...fine.
- # [00:48] <Hixie> ojan: it means having both strings in the comparison function, and one extra pointer check for each node
- # [00:48] <Hixie> ojan: not the end of the world
- # [00:48] <ojan> Hixie: yeah
- # [00:48] <Hixie> perf-wise
- # [00:49] <ojan> Hixie: yeah...it means storing an extra string if you want to keep the performance for html element matching
- # [00:49] * Quits: hasather_ (~hasather_@84.38.144.96) (Remote host closed the connection)
- # [00:49] <Hixie> yeah but you have that extra string anyway today, right
- # [00:49] <ojan> but attribute selectors are not widely used enought for it to really matter
- # [00:49] <erlehmann> why not something like *[html:pathlenght|svg:pathLength]
- # [00:49] <Hixie> or are you flattening it during parsing?
- # [00:49] <ojan> Hixie: no, right now webkit only stores the lowercased string
- # [00:49] <erlehmann> what am i missing?
- # [00:49] <Hixie> css parsing
- # [00:49] <ojan> yeah
- # [00:49] <Hixie> ah ok
- # [00:49] <Hixie> yeah that's unfortunate
- # [00:49] <Hixie> are you atom-ifying these strings?
- # [00:49] <ojan> meh, like you said it's not a big deal
- # [00:50] <ojan> Hixie: atom-ifying?
- # [00:50] <Hixie> whatever terminology webkit uses... converting them to a pointer rather than storing the literal string
- # [00:50] <ojan> Hixie: ah. yes.
- # [00:50] <Hixie> ok so it's really just one extra pointer
- # [00:50] <Hixie> plus a pointer check
- # [00:51] <Hixie> plus you get to flatten the logic for xml and html
- # [00:51] <ojan> Hixie: i'm not sure we'd atomify the non-lowercased string
- # [00:52] <Hixie> why not?
- # [00:52] <ojan> Hixie: creating AtomicStrings isn't free
- # [00:52] <ojan> Hixie: the main reason you do it is so you can have quick string comparisons
- # [00:52] <Hixie> yeah but the cost has to be offset against the many comparisons you're going to be doing
- # [00:52] * jernoble|afk is now known as jernoble
- # [00:52] <Hixie> and the same string will likely exist in the DOM too, right
- # [00:52] <Hixie> anyway
- # [00:53] <Hixie> what do i know :-)
- # [00:53] <ojan> oh...i guess for the non-lowercase one we'd still just be doing a case-senstiive comapre...so we probably would. you're right
- # [00:53] <ojan> yeah...so in the common case it would not be considerably more memroy
- # [00:54] * Quits: scor_ (~scor_@c-98-216-102-251.hsd1.ma.comcast.net) (Quit: scor_)
- # [00:59] * paul_irish is now known as paul_irish_
- # [01:01] * Quits: nessy (~Adium@124-149-69-40.dyn.iinet.net.au) (Remote host closed the connection)
- # [01:03] * Quits: Amorphous (jan@unaffiliated/amorphous) (Ping timeout: 240 seconds)
- # [01:03] * Joins: othermaciej (~mjs@17.244.6.7)
- # [01:06] * Quits: othermaciej (~mjs@17.244.6.7) (Client Quit)
- # [01:15] * Quits: jarek (~jarek@unaffiliated/jarek) (Quit: jarek)
- # [01:18] * Joins: Amorphous (jan@unaffiliated/amorphous)
- # [01:19] * Quits: jacobolus (~jacobolus@c-71-198-169-213.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [01:25] * Quits: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com) (Quit: Reading http://davidwalsh.name)
- # [01:31] * Quits: smaug____ (~chatzilla@GGYMMMCCXX.gprs.sl-laajakaista.fi) (Ping timeout: 248 seconds)
- # [01:31] * Quits: KillerX (~anant@nat/mozilla/x-nxhxjmtmqpasymiu) (Quit: KillerX)
- # [01:36] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [01:37] * Joins: smaug____ (~chatzilla@GYKLXXIV.gprs.sl-laajakaista.fi)
- # [01:39] * Joins: nonge (~nonge@p50829CDE.dip.t-dialin.net)
- # [01:47] * Quits: dave_levin (dave_levin@nat/google/x-kkqneroyicmfowxq) (Quit: dave_levin)
- # [01:51] * Joins: jacobolus (~jacobolus@c-71-198-169-213.hsd1.ca.comcast.net)
- # [01:54] * Quits: kennyluck (~kennyluck@114-43-119-103.dynamic.hinet.net) (Quit: kennyluck)
- # [01:55] * Quits: astearns (~anonymous@216.239.45.18) (Quit: astearns)
- # [01:59] * Quits: MikeSmith (MikeSmith@nat/google/x-jngrfesfagwkxnuj) (Quit: MikeSmith)
- # [02:00] * Quits: TabAtkins_ (tabatkins@nat/google/x-ecplgigbueudtnwg) (Read error: Operation timed out)
- # [02:01] * Quits: sicking (~chatzilla@c-98-210-155-80.hsd1.ca.comcast.net) (Ping timeout: 260 seconds)
- # [02:02] * Joins: sicking (~chatzilla@adsl-63-204-27-202.dsl.snfc21.pacbell.net)
- # [02:03] * Joins: scor_ (~scor_@c-98-216-102-251.hsd1.ma.comcast.net)
- # [02:07] * Quits: scor_ (~scor_@c-98-216-102-251.hsd1.ma.comcast.net) (Client Quit)
- # [02:14] * Quits: ap (~ap@2620:149:4:1b01:69b2:8846:d6bb:5b1f) (Quit: ap)
- # [02:16] * Quits: erlehmann (~erlehmann@89.204.137.88) (Read error: Connection reset by peer)
- # [02:17] * Joins: erlehmann (~erlehmann@89.204.137.88)
- # [02:18] * Quits: dbaron (~dbaron@206-15-76-122.static.twtelecom.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [02:25] * jernoble is now known as jernoble|afk
- # [02:25] * Quits: Areks (~Areks@176.14.214.163) (Ping timeout: 258 seconds)
- # [02:28] * Quits: tndH (~Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com) (Quit: ChatZilla 0.9.87-rdmsoft [XULRunner 1.9.0.1/2008072406])
- # [02:44] * Quits: smaug____ (~chatzilla@GYKLXXIV.gprs.sl-laajakaista.fi) (Ping timeout: 258 seconds)
- # [02:44] * Quits: rillian_ (~rillian@184.71.166.126) (Remote host closed the connection)
- # [03:03] * Quits: sicking (~chatzilla@adsl-63-204-27-202.dsl.snfc21.pacbell.net) (Ping timeout: 252 seconds)
- # [03:08] * Quits: shepazu (~shepazu@205.248.100.252) (Quit: shepazu)
- # [03:08] * Joins: AKAMisterSmith (~Smiths@adsl-98-80-17-49.shv.bellsouth.net)
- # [03:09] * Quits: erlehmann (~erlehmann@89.204.137.88) (Quit: Ex-Chat)
- # [03:10] * Quits: AKAMisterSmith (~Smiths@adsl-98-80-17-49.shv.bellsouth.net) (Client Quit)
- # [03:11] * heycam is now known as heycam|away
- # [03:13] * Joins: davidb (~davidb@bas1-toronto06-2925210074.dsl.bell.ca)
- # [03:14] * Quits: ezoe (~ezoe@203-140-88-212f1.kyt1.eonet.ne.jp) (Ping timeout: 252 seconds)
- # [03:26] * Quits: rniwa_ (rniwa@nat/google/x-bkmptoemqvluqiyp) (Quit: rniwa_)
- # [03:27] * eric_carlson is now known as ericc|away
- # [03:34] * Joins: sicking (~chatzilla@c-98-210-155-80.hsd1.ca.comcast.net)
- # [03:51] * Joins: agektmr (~Adium@220.109.219.244)
- # [03:57] * roc wonders where annevk is
- # [04:01] * Joins: dbaron (~dbaron@173-228-28-129.dsl.dynamic.sonic.net)
- # [04:03] <ojan> roc: u gonna be a tpac?
- # [04:03] <roc> no
- # [04:04] <ojan> roc: k...just wondering
- # [04:04] <roc> I'm not a huge fan of face-to-face standards work to be honest
- # [04:05] <ojan> me neither really
- # [04:05] <ojan> but it's good to meet people in erspon
- # [04:05] <roc> yeah, I like that, but large groups freak me out
- # [04:06] <roc> where are you based btw?
- # [04:14] * Quits: jwalden (~waldo@2620:101:8003:200:224:d7ff:fef0:8d90) (Quit: ChatZilla 0.9.87-3.1450hg.fc15 [XULRunner 7.0.1/20110930134335])
- # [04:16] * Joins: othermaciej (~mjs@c-24-6-209-189.hsd1.ca.comcast.net)
- # [04:23] <ojan> roc: sorry, was afk...
- # [04:23] <ojan> roc: i'm in SF..so this tpac is easy for me :)
- # [04:23] <ojan> i'll probably only be there mon/tues though
- # [04:24] <ojan> there was a while where i was in sydney frequently...but haven't been since april
- # [04:25] * Joins: ezoe (~ezoe@203-140-88-174f1.kyt1.eonet.ne.jp)
- # [04:35] * Quits: ojan (ojan@nat/google/x-fztylyzvwjrjcxtz) (Quit: ojan)
- # [04:46] * Joins: agektmr1 (~Adium@220.109.219.244)
- # [04:46] * Quits: agektmr (~Adium@220.109.219.244) (Read error: Connection reset by peer)
- # [04:51] * Quits: bga_ (~bga@ppp78-37-198-31.pppoe.avangarddsl.ru) (Read error: Connection reset by peer)
- # [04:54] * Joins: nessy (~Adium@124-149-69-40.dyn.iinet.net.au)
- # [04:54] * Joins: Evanescence (~Evanescen@122.237.36.230)
- # [04:57] * Quits: agektmr1 (~Adium@220.109.219.244) (Quit: Leaving.)
- # [04:58] * Joins: agektmr (~Adium@220.109.219.244)
- # [04:58] * Quits: agektmr (~Adium@220.109.219.244) (Client Quit)
- # [05:05] * Quits: davidb (~davidb@bas1-toronto06-2925210074.dsl.bell.ca) (Quit: davidb)
- # [05:08] * Quits: roc (~chatzilla@121.98.230.221) (Ping timeout: 260 seconds)
- # [05:10] * Quits: nonge (~nonge@p50829CDE.dip.t-dialin.net) (Read error: Operation timed out)
- # [05:14] * Quits: nessy (~Adium@124-149-69-40.dyn.iinet.net.au) (Quit: Leaving.)
- # [05:19] * Quits: necolas (~necolas@5e041dd3.bb.sky.com) (Remote host closed the connection)
- # [05:21] * Joins: astearns (~anonymous@209.119.68.98)
- # [05:23] * Joins: nonge (~nonge@p5B326AF5.dip.t-dialin.net)
- # [05:33] * Joins: mpt (~mpt@canonical/mpt)
- # [05:41] <jgraham> AryehGregor: You should be able to test for type error using assert_throws(TypeError(), fun);
- # [05:51] * Quits: Stikki (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi) (Ping timeout: 245 seconds)
- # [06:25] * Joins: agektmr (~Adium@220.109.219.244)
- # [06:29] * Joins: annevk (~annevk@5355737B.cm-6-6b.dynamic.ziggo.nl)
- # [06:46] * Joins: nonge_ (~nonge@p50829987.dip.t-dialin.net)
- # [06:49] <annevk> Yeah so currently storing two pointers for Selector matching would yield the incorrect result.
- # [06:50] * Quits: nonge (~nonge@p5B326AF5.dip.t-dialin.net) (Ping timeout: 245 seconds)
- # [06:50] <annevk> Because if you define an attribute named "HREF" through the DOM on an HTML element, that should still match [href] per current specifications.
- # [06:50] * Quits: dbaron (~dbaron@173-228-28-129.dsl.dynamic.sonic.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [06:50] <annevk> And it will in e.g. Gecko.
- # [06:51] <annevk> So either we need to drop the notion that Selector matching happens case-insensitively for HTML and require the double-pointer approach, or we all need to do case-insensitive matching.
- # [06:51] <annevk> Edge cases...
- # [06:58] * Joins: nessy (~Adium@124-149-69-40.dyn.iinet.net.au)
- # [07:07] * Joins: shepazu (~shepazu@c-98-248-36-12.hsd1.ca.comcast.net)
- # [07:09] * Quits: nonge_ (~nonge@p50829987.dip.t-dialin.net) (Quit: Verlassend)
- # [07:09] * Joins: nonge (~nonge@p50829987.dip.t-dialin.net)
- # [07:14] * Quits: rniwa (~rniwa@216.239.45.130) (Quit: rniwa)
- # [07:16] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [07:16] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [07:18] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [07:18] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [07:21] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [07:21] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [07:22] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: No route to host)
- # [07:23] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [07:24] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [07:24] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [07:26] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [07:26] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [07:29] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [07:29] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [07:30] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [07:30] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [07:32] * Joins: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net)
- # [07:32] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [07:32] * Joins: Rik` (~Rik`@2a01:e34:ec0f:1570:2541:174:1bdc:e758)
- # [07:33] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [07:37] * Quits: Rik` (~Rik`@2a01:e34:ec0f:1570:2541:174:1bdc:e758) (Ping timeout: 240 seconds)
- # [07:38] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [07:38] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [07:39] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 276 seconds)
- # [07:40] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [07:40] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [07:41] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [07:41] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [07:41] * Joins: mpt (~mpt@canonical/mpt)
- # [07:42] * Joins: Rik` (~Rik`@2a01:e34:ec0f:1570:f800:c744:99bc:1521)
- # [07:42] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [07:54] <annevk> Hmm, seems I should really get around to writing a WHATWG Weekly
- # [07:54] <Hixie> well i just gave you something to talk abuot
- # [07:55] <annevk> Yeah, but I already had a big list :)
- # [08:01] * heycam|away is now known as heycam
- # [08:08] * Quits: jernoble|afk (~jernoble@17.212.152.13) (Remote host closed the connection)
- # [08:15] * Joins: jernoble (~jernoble@2620:149:4:1b01:d4fd:b99e:263b:2b3e)
- # [08:19] <boblet> is there a <data> equivalent of <time pubdate> besides schema.org?
- # [08:19] <boblet> also, http://www.whatwg.org/specs/web-apps/current-work/multipage/section-index.html doesn't seem to load for me?
- # [08:20] <Hixie> boblet: well you can use any microdata vocabulary or microformats vocabulary, i guess :-)
- # [08:20] <Hixie> boblet: e.g. hAtom
- # [08:21] <Hixie> what is section-index supposed to be?
- # [08:22] <Hixie> looks like i'm getting it that way from anne
- # [08:23] <Hixie> annevk: i'm getting some weird stuff in the zip file, in fact
- # [08:23] <boblet> Hixie: trying to load http://www.whatwg.org/specs/web-apps/current-work/multipage/section-index.html#attributes-1 to confirm @pubdate is dropped :)
- # [08:23] <Hixie> including a do-multipage-... file?
- # [08:23] <boblet> that’s the link in Index at the bottom of http://www.whatwg.org/specs/web-apps/current-work/multipage/
- # [08:23] <Hixie> let me try to regen it manually
- # [08:24] * Quits: astearns (~anonymous@209.119.68.98) (Quit: astearns)
- # [08:26] <Hixie> boblet: how's now?
- # [08:26] <annevk> Hixie, oh again? :(
- # [08:26] <boblet> Hixie: wfm
- # [08:26] <annevk> foolip made some changes recently
- # [08:26] <Hixie> annevk: looks like the section thing was a one-off error
- # [08:26] <Hixie> annevk: but there's a do-multipage-... file that seems odd
- # [08:26] <Hixie> annevk: dunno what it is
- # [08:27] <Hixie> annevk: it's ok otherwise
- # [08:27] <boblet> needing to move to a microdata/microformats vocab to convey pubdate (which I’d assume search engines would like) seems like a big increase in code. otoh i was wanting updated date anyhow. hrm
- # [08:27] * Joins: dydz (~dydz@adsl-75-36-190-15.dsl.pltn13.sbcglobal.net)
- # [08:28] <annevk> Hixie, I think that's the file it fetches in order to do the update
- # [08:28] <Hixie> boblet: search engines want schema.org apparently :-)
- # [08:28] <Hixie> annevk: but why is it ending up in the archive?
- # [08:28] <annevk> because I'm doing a wget
- # [08:28] <Hixie> use -O - :-)
- # [08:29] <boblet> Hixie: if it works as an encouragement for everyone to change time@pubdate to schema.org/blogpost then sure that’s great
- # [08:30] <boblet> will have to write something for HTML5 Doctor now too, and publish something about microdata blogpost vocab. making us work again! sheesh :)
- # [08:31] <Hixie> :-)
- # [08:31] <Hixie> <time pubdate> was going nowhere fast
- # [08:31] <Hixie> and was disproportionally expensive in terms of what it required of implementations
- # [08:32] <Hixie> so...
- # [08:33] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 252 seconds)
- # [08:34] <boblet> I was siding with <time> needing some time to implement (l10n stuff always takes forever), but if browsers can use <data itemprop="datePublished"> for the same purpose… <data> def. helps with adding microdata (crap, another two articles I’ll need to update >_<)
- # [08:35] <annevk> <time> would prolly have ended up like counters in CSS
- # [08:35] <annevk> kind of cool, but hardly used, and disproportionate complexity
- # [08:35] <boblet> Hixie: btw, did you read the <u> element article? I had several quotes from you in there http://html5doctor.com/u-element
- # [08:36] <boblet> annevk: is this CSS2.1 or CSS3? ;)
- # [08:36] <boblet> TabAtkins’ rewrite is much cleaner
- # [08:36] <boblet> really looking forward to that being implemented
- # [08:38] <annevk> boblet, 2
- # [08:38] <annevk> boblet, is css3-lists touching counters?
- # [08:38] <annevk> boblet, I thought that was just lists and stuff
- # [08:42] <boblet> annevk: I thought css3 lists would be flexible enough to do the same use-cases, but I’m prolly just confused
- # [08:44] * Joins: riven` (~riven@53518387.cm-6-2c.dynamic.ziggo.nl)
- # [08:44] <annevk> boblet, counters can be used for way more than lists
- # [08:44] * Quits: mkanat (mkanat@nat/google/x-zprnqcfctbiyybjk) (Quit: Ex-Chat)
- # [08:46] <annevk> boblet, does not seem like css3-lists defines counter-increment and such, it does refer to them
- # [08:48] * Quits: riven (~riven@pdpc/supporter/professional/riven) (Ping timeout: 255 seconds)
- # [08:51] * Quits: agektmr (~Adium@220.109.219.244) (Quit: Leaving.)
- # [08:55] * Quits: dydz (~dydz@adsl-75-36-190-15.dsl.pltn13.sbcglobal.net) (Quit: dydz)
- # [09:00] <matjas> so, is <data data-data=data>data</data> now valid HTML?
- # [09:00] <annevk> no
- # [09:01] <annevk> value is required
- # [09:01] <matjas> i see
- # [09:01] * Joins: agektmr (~Adium@220.109.219.244)
- # [09:07] <matjas> no replacement for `valueAsDate`? :(
- # [09:10] <annevk> does new Date() not do that?
- # [09:11] <annevk> bah
- # [09:11] <annevk> web-apps-tracker is generating errors :(
- # [09:13] <matjas> hovering over the data element section brings up a link to the abbr element: http://i.imgur.com/HIWhh.png typo?
- # [09:14] <matjas> in the last example, should the <data> element be closed explicitly? <tr> <td> 1830 <td> <data value="8">Eight</data> <td> <data value="93">19+74 hexes (93 total)
- # [09:14] <annevk> the first is prolly because <data> does not have its own section yet
- # [09:14] <annevk> the second is a bug
- # [09:15] <annevk> I guess html5.org went over some storage limit
- # [09:15] <annevk> 50 GiB or so
- # [09:16] <annevk> I'll just empty the cache as a hack
- # [09:18] <annevk> whoa, it was approaching 60
- # [09:18] <annevk> way to go for simple SVN diffs
- # [09:18] <matjas> annevk: thanks for confirming, I’ll file it
- # [09:20] * nunnun_away is now known as nunnun
- # [09:38] <annevk> http://blog.whatwg.org/weekly-time-data
- # [09:38] * Quits: puppen (~einPaarPu@60-240-245-17.static.tpgi.com.au) (Read error: Connection reset by peer)
- # [09:39] * Joins: puppen (~einPaarPu@60-240-245-17.static.tpgi.com.au)
- # [09:50] * Quits: sicking (~chatzilla@c-98-210-155-80.hsd1.ca.comcast.net) (Ping timeout: 244 seconds)
- # [09:52] * Joins: Margle (~Margle@41-135-98-163.dsl.mweb.co.za)
- # [09:53] * Joins: FlorianX (~Florian_S@p4FCF7FBF.dip.t-dialin.net)
- # [09:55] * Joins: jdong_bot_ (~jdong_bot@202.108.52.205)
- # [09:55] * Quits: Druid_ (~Druid@p5B135606.dip.t-dialin.net) (Ping timeout: 260 seconds)
- # [09:56] * Quits: jdong_bot_ (~jdong_bot@202.108.52.205) (Remote host closed the connection)
- # [09:56] * nunnun is now known as nunnun_away
- # [09:59] * Joins: Druid_ (~Druid@p5B135184.dip.t-dialin.net)
- # [10:04] * nunnun_away is now known as nunnun
- # [10:05] * nunnun is now known as nunnun_away
- # [10:07] * nunnun_away is now known as nunnun
- # [10:08] * heycam is now known as heycam|away
- # [10:26] * Quits: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net) (Quit: rniwa)
- # [10:29] * Joins: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [10:36] * Quits: Margle (~Margle@41-135-98-163.dsl.mweb.co.za) (Quit: Computer has gone to sleep.)
- # [10:37] * Joins: tomasf (~tom@c-5ed9e555.024-204-6c6b7012.cust.bredbandsbolaget.se)
- # [10:41] * Quits: Druid_ (~Druid@p5B135184.dip.t-dialin.net) (Ping timeout: 260 seconds)
- # [10:47] * Joins: Druid_ (~Druid@p5B13549B.dip.t-dialin.net)
- # [11:17] * Quits: jernoble (~jernoble@2620:149:4:1b01:d4fd:b99e:263b:2b3e) (Read error: Connection reset by peer)
- # [11:18] * Joins: jernoble (~jernoble@17.212.152.13)
- # [11:34] * Joins: GlitchMr (~glitchmr@178-36-9-192.adsl.inetia.pl)
- # [11:36] * Joins: roc (~chatzilla@121.98.230.221)
- # [11:38] <roc> annevk: what did you think about my fullscreen suggestion for a fullscreen element stack?
- # [11:39] <annevk> I suggested that in http://lists.whatwg.org/htdig.cgi/whatwg-whatwg.org/2011-October/033549.html but responses were not enthusiastic
- # [11:42] <roc> I don't think they thought through the implications
- # [11:43] <roc> the nested case is not some complex edge case that most apps can't hit. You can hit it as soon as you can make a document full-screen that contains some other content that supports full-screen, which could easily happen by accident even
- # [11:44] <roc> as soon as you have a document that supports full-screen that might contain an embedded Youtube video, for example
- # [11:45] <roc> I'll follow up to that thread
- # [11:47] * Quits: Dashiva (Dashiva@wikia/Dashiva) (Ping timeout: 258 seconds)
- # [11:48] <annevk> Please only talk about making elements fullscreen though
- # [11:48] <annevk> We're not really making documents fullscreen
- # [11:48] <roc> ok
- # [11:51] <annevk> One alternative is making requestFullscreen always do its thing and exitFullscreen always do a full exit
- # [11:51] <roc> that seems broken
- # [11:52] <annevk> Yeah, though given the number of different scenarios I think the user will always find it confusing :(
- # [11:52] <roc> we can at least make the simple things work
- # [11:53] <annevk> If the user is already fullscreen for instance (by using F11) and then gets the message that "Esc" will get him/her out but it will actually not...
- # [11:53] <roc> actually it will
- # [11:54] <roc> "Esc" has to always bust out of all fullscreening
- # [11:54] <annevk> Gecko will exit browser fullscreen if element fullscreen is quit?
- # [11:54] <annevk> I doubt users will like that... It's not how browser fullscreen and YouTube behave today
- # [11:55] <roc> I'm not sure what the current behavior is, but I think it needs to break out
- # [11:56] <annevk> If I use fullscreen mode on Mac OS I don't want the browser to just exit that after I have watched a video
- # [11:56] <roc> well, that can be up to the UA
- # [11:58] <roc> if the UA is permanently in fullscreen mode then I don't think "press ESC to exit fullscreen" would ever be the right message to display
- # [12:04] * Joins: bga_ (~bga@ppp78-37-198-31.pppoe.avangarddsl.ru)
- # [12:05] * Joins: hasather_ (~hasather_@84.38.144.96)
- # [12:06] * Joins: MikeSmith (~MikeSmith@66.201.48.54)
- # [12:17] * ezoe is now known as i_
- # [12:19] * i_ is now known as ezoe
- # [12:20] * Joins: tndH (~Rob@cpc16-seac19-2-0-cust234.7-2.cable.virginmedia.com)
- # [12:25] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [12:28] * Quits: benjoffe_ (~benjoffe_@CPE-121-216-39-241.lnse1.ken.bigpond.net.au) (Remote host closed the connection)
- # [12:36] * Quits: mbatle_ (~mbatle@201.230.223.58) (Ping timeout: 240 seconds)
- # [12:47] * Joins: benjoffe_ (~benjoffe_@CPE-121-216-39-241.lnse1.ken.bigpond.net.au)
- # [12:49] * Joins: mbatle_ (~mbatle@200.121.172.188)
- # [12:55] * Joins: necolas (~necolas@5e041dd3.bb.sky.com)
- # [12:55] <benschwarz> heyo
- # [12:55] <benschwarz> annevk: whats the scoop with <time> ? #whatwg list?
- # [12:56] <annevk> http://www.w3.org/Bugs/Public/show_bug.cgi?id=13240 ?
- # [12:56] * Joins: smaug____ (~chatzilla@GGGMMMCMLXXX.gprs.sl-laajakaista.fi)
- # [12:56] <benschwarz> w3 change?
- # [12:56] <annevk> suggestion has been out there for several months
- # [12:56] <annevk> not sure what you mean
- # [12:56] <benschwarz> never caught it…
- # [12:57] <benschwarz> I was wondering where it orginated from
- # [12:57] <benschwarz> … people have already implemented time
- # [12:58] <benschwarz> annevk: so is the resolve to use <data> with a rel attribute? or… data-*?
- # [12:58] <annevk> depends on what you are trying to do
- # [12:59] <benschwarz> ok. so display the time that an article was published…
- # [12:59] <benschwarz> and er… I can't think of a more data driven example.
- # [12:59] <benschwarz> … its a strange change
- # [12:59] <annevk> prolly just <p class=meta> as before
- # [13:00] <annevk> just displaying doesn't need to be machine readable
- # [13:00] <annevk> but if you want it to be machine readable, the specification includes some examples using the http://schema.org/Blog vocabulary
- # [13:03] <benschwarz> no one uses schema vocabularies :)
- # [13:04] <benschwarz> (you know, in the real world)
- # [13:08] <annevk> yeah, I don't really care
- # [13:09] <annevk> I mean, I don't really care about schema.org or Microdata that much
- # [13:09] <annevk> it's better than RDFa, but still pretty complex and not too useful
- # [13:09] * Joins: Tuju (~tuju@176.75.219.213.sta.estpak.ee)
- # [13:11] <Tuju> is there a way to define CSS version when introducing it in xhtml headers?
- # [13:12] <annevk> CSS has no versions
- # [13:12] <benschwarz> annevk: well, I tend to agree. It means nothing to the real world, acedemics might argue… but the rest of the world isn't convinced :)
- # [13:12] * Joins: Ms2ger (~Ms2ger@91.181.84.233)
- # [13:13] * Quits: benjoffe_ (~benjoffe_@CPE-121-216-39-241.lnse1.ken.bigpond.net.au) (Remote host closed the connection)
- # [13:13] <Tuju> i just read about CSS tag overflow and it had comment 'this might change in version 2.1' - how are people supposed to design some appearance if terminal software don't know how they're supposed to interpret it?
- # [13:14] <Ms2ger> good morning, Whatwg!
- # [13:14] <annevk> Tuju, where does it say that?
- # [13:14] <annevk> Ms2ger, more like, midday?
- # [13:15] <Tuju> http://www.w3.org/TR/CSS21/visufx.html#overflow-clipping "Note. In CSS 2.1, all clipping regions are rectangular. We anticipate future extensions to permit non-rectangular clipping. Future updates may also reintroduce a syntax for offsetting shapes from each edge instead of offsetting from a point."
- # [13:15] <Ms2ger> annevk, sure
- # [13:16] <annevk> Tuju: the future extensions will degrade gracefully
- # [13:16] <Tuju> meaning that they don't change earlier behaviour?
- # [13:16] <annevk> Tuju: none of the languages for the web has versioning, software just interprets per whatever they implemented
- # [13:17] <annevk> Tuju: typically, though sometimes earlier behavior is changed if it doesn't cause too much problems
- # [13:17] <smaug____> JS has versioning
- # [13:17] <Tuju> annevk: that could very well be the reason why the web is such a mess.
- # [13:17] <smaug____> (thought I don't recall what HTML spec says about js versioning )
- # [13:17] <annevk> Tuju: see http://www.w3.org/TR/html-design-principles/#degrade-gracefully for more information
- # [13:17] <Tuju> devs use that constantly as an excuse to produce invalid crap that don't render correctly.
- # [13:17] <smaug____> s/thought/though/
- # [13:17] <annevk> smaug____: mostly Mozilla proprietary
- # [13:18] <annevk> smaug____: and the "use strict"; mode switch of course
- # [13:18] <annevk> Tuju: "invalid crap" might change in the future
- # [13:19] <Tuju> annevk: what do you mean by that?
- # [13:19] <annevk> Tuju: so whoever is using that as excuse is wrong
- # [13:19] <Tuju> that's not a big relief.
- # [13:19] <annevk> Tuju: e.g. overflow-x:scroll was invalid at some point, but now it is valid
- # [13:19] <Tuju> page still does not work.
- # [13:19] <Ms2ger> smaug____, the HTML spec doesn't say anything, I believe.. It just says to support all the mime types
- # [13:20] * Joins: smaug_____ (~chatzilla@GYYKCCXCIII.gprs.sl-laajakaista.fi)
- # [13:20] <annevk> it might say something about E4X
- # [13:20] <annevk> but that's obsolete now
- # [13:20] <Ms2ger> Mm, yeah
- # [13:20] <annevk> someone should prolly file a bug on that
- # [13:21] <Ms2ger> Why is it obsolete?
- # [13:21] <smaug_____> interesting. did I just manage to overheat this laptop
- # [13:22] * Quits: smaug____ (~chatzilla@GGGMMMCMLXXX.gprs.sl-laajakaista.fi) (Ping timeout: 240 seconds)
- # [13:22] <annevk> Ms2ger: a) Brendan made E4X work without that flag and b) E4X is disabled in strict mode meaning it is on its way out
- # [13:22] * smaug_____ is now known as smaug____
- # [13:22] <annevk> Ms2ger: well, got disabled
- # [13:22] * annevk wonders why smaug____ is not just smaug
- # [13:22] <Ms2ger> Because it's a common nick
- # [13:22] <smaug____> because someone else is smaug
- # [13:22] <smaug____> in some other channel
- # [13:22] <Ms2ger> Lots of dragons on freenode
- # [13:22] <gsnedders> Why so many underscores?
- # [13:23] <smaug____> because someone else is using all the other forms of smaug_*
- # [13:23] <smaug____> ____ is just the tail
- # [13:25] <smaug____> annevk: what you mean with "Brendan made E4X work without that flag" ?
- # [13:25] * Joins: Dashiva (Dashiva@84-72-45-52.dclient.hispeed.ch)
- # [13:25] * Quits: Dashiva (Dashiva@84-72-45-52.dclient.hispeed.ch) (Changing host)
- # [13:25] * Joins: Dashiva (Dashiva@wikia/Dashiva)
- # [13:25] <smaug____> I thought you need a flag to enable it
- # [13:26] <annevk> no
- # [13:26] <annevk> you can just do
- # [13:26] <annevk> var x = <fancy/>
- # [13:26] <annevk> and you have some XML in your x
- # [13:28] <smaug____> really
- # [13:28] <smaug____> I thought you need some flag in the <script> element
- # [13:29] * Joins: Areks (~Areks@176.14.214.163)
- # [13:33] <annevk> yeah before, but Brendan figured something out that worked around why that was required in the first place
- # [13:36] <Ms2ger> The problem was <!--, IIRC
- # [13:36] * Parts: Tuju (~tuju@176.75.219.213.sta.estpak.ee)
- # [13:37] <hsivonen> does Harmony try to do out of band or per-.js file versioning?
- # [13:38] <annevk> I hope neither
- # [13:39] * Quits: smaug____ (~chatzilla@GYYKCCXCIII.gprs.sl-laajakaista.fi) (Ping timeout: 240 seconds)
- # [13:39] <Ms2ger> The idea was using type= :/
- # [13:41] * riven` is now known as riven
- # [13:41] * Quits: riven (~riven@53518387.cm-6-2c.dynamic.ziggo.nl) (Changing host)
- # [13:41] * Joins: riven (~riven@pdpc/supporter/professional/riven)
- # [13:41] <annevk> ffs
- # [13:42] * Quits: Evanescence (~Evanescen@122.237.36.230) (Quit: my website: http://stardiviner.dyndns-blog.com/)
- # [13:43] * Quits: GlitchMr (~glitchmr@178-36-9-192.adsl.inetia.pl) (Read error: Connection reset by peer)
- # [13:46] * Quits: agektmr (~Adium@220.109.219.244) (Quit: Leaving.)
- # [13:51] * Joins: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com)
- # [14:15] * Joins: erlehmann (~erlehmann@89.204.154.112)
- # [14:29] * Quits: hasather_ (~hasather_@84.38.144.96) (Remote host closed the connection)
- # [14:37] * Quits: Dashiva (Dashiva@wikia/Dashiva) (Ping timeout: 276 seconds)
- # [14:39] <MikeSmith> hsivonen: when you have time, please take a look at http://www.w3.org/Bugs/Public/show_bug.cgi?id=10174#c4
- # [14:40] * Joins: Telling (~unknown@80-71-135-15.u.parknet.dk)
- # [14:40] <MikeSmith> reproducible intermittent bug when trying to validate http://nisza.org/rendering_tests/utf-8-validation.html
- # [14:48] <MikeSmith> hsivonen: in my environment, from a clean install and build from the upstream sources, I can reproduce this 100% of the time
- # [14:48] <MikeSmith> with that http://nisza.org/rendering_tests/utf-8-validation.html file
- # [14:49] <MikeSmith> I don't actually understand why in the W3C validator environment it doesn't occur 100% of time, except that must sometimes be gzipping it and other times not
- # [14:50] * Joins: Stikki (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi)
- # [14:53] * Joins: GlitchMr (~glitchmr@178-36-9-192.adsl.inetia.pl)
- # [14:57] * Joins: Dashiva (Dashiva@84-72-45-52.dclient.hispeed.ch)
- # [14:57] * Quits: Dashiva (Dashiva@84-72-45-52.dclient.hispeed.ch) (Changing host)
- # [14:57] * Joins: Dashiva (Dashiva@wikia/Dashiva)
- # [15:03] * Quits: temp01 (~temp01@unaffiliated/temp01) (Ping timeout: 255 seconds)
- # [15:06] * Joins: temp01 (~temp01@unaffiliated/temp01)
- # [15:07] * Quits: nessy (~Adium@124-149-69-40.dyn.iinet.net.au) (Quit: Leaving.)
- # [15:08] * Joins: FlorianX1 (~Florian_S@p4FCF7FBF.dip.t-dialin.net)
- # [15:09] * Quits: FlorianX (~Florian_S@p4FCF7FBF.dip.t-dialin.net) (Ping timeout: 260 seconds)
- # [15:25] * Joins: smaug____ (~chatzilla@GZYYMMLXXXIV.gprs.sl-laajakaista.fi)
- # [15:44] * Quits: esc_ (~esc-ape@193.170.99.241) (Ping timeout: 260 seconds)
- # [15:47] * Joins: esc_ (~esc-ape@193.170.99.241)
- # [16:01] * Quits: GlitchMr (~glitchmr@178-36-9-192.adsl.inetia.pl) (Ping timeout: 258 seconds)
- # [16:06] * Quits: smaug____ (~chatzilla@GZYYMMLXXXIV.gprs.sl-laajakaista.fi) (Ping timeout: 256 seconds)
- # [16:06] * Joins: kennyluck (~kennyluck@114-43-119-103.dynamic.hinet.net)
- # [16:10] * Joins: myakura (~myakura@FL1-203-136-164-250.tky.mesh.ad.jp)
- # [16:14] * Quits: ezoe (~ezoe@203-140-88-174f1.kyt1.eonet.ne.jp) (Ping timeout: 260 seconds)
- # [16:16] * Quits: myakura (~myakura@FL1-203-136-164-250.tky.mesh.ad.jp) (Remote host closed the connection)
- # [16:20] * Quits: Rik` (~Rik`@2a01:e34:ec0f:1570:f800:c744:99bc:1521) (Remote host closed the connection)
- # [16:29] * Joins: benjoffe_ (~benjoffe_@CPE-121-216-39-241.lnse1.ken.bigpond.net.au)
- # [16:33] * Quits: FireFly (firefly@firefly.xen.prgmr.com) (Changing host)
- # [16:33] * Joins: FireFly (firefly@unaffiliated/firefly)
- # [16:41] * Quits: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com) (Quit: davidwalsh)
- # [16:43] * Joins: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com)
- # [16:51] * Joins: hasather_ (~hasather_@84.38.144.96)
- # [16:59] * Quits: mbatle_ (~mbatle@200.121.172.188) (Ping timeout: 240 seconds)
- # [17:07] * Joins: astearns (~anonymous@209.119.68.98)
- # [17:13] * Joins: smaug____ (~chatzilla@cs181151161.pp.htv.fi)
- # [17:13] * Joins: mbatle__ (~mbatle@190.232.255.141)
- # [17:15] * Joins: GlitchMr (~glitchmr@178-36-9-192.adsl.inetia.pl)
- # [17:18] * Quits: mbatle__ (~mbatle@190.232.255.141) (Ping timeout: 248 seconds)
- # [17:18] * Quits: nonge (~nonge@p50829987.dip.t-dialin.net) (Quit: Verlassend)
- # [17:19] * Joins: nonge (~nonge@p50829987.dip.t-dialin.net)
- # [17:25] * Quits: puppen (~einPaarPu@60-240-245-17.static.tpgi.com.au) (Ping timeout: 258 seconds)
- # [17:40] * Joins: dbaron (~dbaron@173-228-28-129.dsl.dynamic.sonic.net)
- # [17:42] * Joins: dirkpennings (~Vuurbal@ip54534592.speed.planet.nl)
- # [17:53] * Joins: antti_s (~asal@backport.reaktor.fi)
- # [18:03] * Quits: Obvious (tachikoma@188.226.74.2) (Read error: Connection reset by peer)
- # [18:05] * Joins: Obvious (tachikoma@188.226.74.2)
- # [18:10] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [18:11] * Quits: dirkpennings (~Vuurbal@ip54534592.speed.planet.nl)
- # [18:12] * Quits: hasather_ (~hasather_@84.38.144.96) (Remote host closed the connection)
- # [18:18] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Remote host closed the connection)
- # [18:20] * Joins: nielsle (~nielsle@3239059-cl69.boa.fiberby.dk)
- # [18:21] * Joins: tomask (~tomask@unaffiliated/tomask)
- # [18:22] * Parts: tomask (~tomask@unaffiliated/tomask)
- # [18:31] * Quits: davidwalsh (~davidwals@75-135-74-55.dhcp.mdsn.wi.charter.com) (Quit: Reading http://davidwalsh.name)
- # [18:35] * Quits: astearns (~anonymous@209.119.68.98) (Quit: astearns)
- # [18:46] * Joins: _bga (~bga@ppp78-37-198-31.pppoe.avangarddsl.ru)
- # [18:46] * Quits: bga_ (~bga@ppp78-37-198-31.pppoe.avangarddsl.ru) (Read error: Connection reset by peer)
- # [18:55] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [19:03] * Joins: dydz (~dydz@adsl-75-36-190-15.dsl.pltn13.sbcglobal.net)
- # [19:03] * Quits: _bga (~bga@ppp78-37-198-31.pppoe.avangarddsl.ru) (Read error: Connection reset by peer)
- # [19:03] * Joins: bga_ (~bga@ppp78-37-198-31.pppoe.avangarddsl.ru)
- # [19:05] * Joins: dydx (~dydz@adsl-75-36-190-15.dsl.pltn13.sbcglobal.net)
- # [19:07] * Quits: dydz (~dydz@adsl-75-36-190-15.dsl.pltn13.sbcglobal.net) (Ping timeout: 240 seconds)
- # [19:07] * dydx is now known as dydz
- # [19:11] * Quits: dydz (~dydz@adsl-75-36-190-15.dsl.pltn13.sbcglobal.net) (Read error: Connection reset by peer)
- # [19:25] * Quits: benjoffe_ (~benjoffe_@CPE-121-216-39-241.lnse1.ken.bigpond.net.au) (Remote host closed the connection)
- # [19:26] * nunnun is now known as nunnun_away
- # [19:39] * Joins: puppen (~einPaarPu@60-240-245-17.static.tpgi.com.au)
- # [19:42] <smaug____> annevk: does Opera use NSS?
- # [19:43] * Quits: puppen (~einPaarPu@60-240-245-17.static.tpgi.com.au) (Ping timeout: 240 seconds)
- # [19:47] <gsnedders> smaug____: No.
- # [19:48] <gsnedders> smaug____: Uses OpenSSL
- # [19:48] * nunnun_away is now known as nunnun
- # [19:54] * nunnun is now known as nunnun_away
- # [19:55] * Quits: shepazu (~shepazu@c-98-248-36-12.hsd1.ca.comcast.net) (Quit: shepazu)
- # [20:04] * Joins: _bga (~bga@ppp78-37-198-31.pppoe.avangarddsl.ru)
- # [20:04] * Quits: bga_ (~bga@ppp78-37-198-31.pppoe.avangarddsl.ru) (Read error: Connection reset by peer)
- # [20:10] * Quits: dbaron (~dbaron@173-228-28-129.dsl.dynamic.sonic.net) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [20:10] * Joins: davidb (~davidb@bas1-toronto06-2925210074.dsl.bell.ca)
- # [20:14] * Quits: GlitchMr (~glitchmr@178-36-9-192.adsl.inetia.pl) (Read error: Connection reset by peer)
- # [20:16] * Joins: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [20:16] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [20:18] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [20:18] * Quits: Rik`_ (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [20:20] * Joins: Rik`_ (~Rik`@2a01:e34:ec0f:1570:7855:21a7:a80f:fd7e)
- # [20:20] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [20:22] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [20:25] * Quits: Rik`_ (~Rik`@2a01:e34:ec0f:1570:7855:21a7:a80f:fd7e) (Ping timeout: 240 seconds)
- # [20:25] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [20:26] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [20:28] * Joins: Rik`_ (~Rik`@2a01:e34:ec0f:1570:6c22:eac8:9423:6d55)
- # [20:28] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Read error: Connection reset by peer)
- # [20:31] * Quits: davidb (~davidb@bas1-toronto06-2925210074.dsl.bell.ca) (Quit: davidb)
- # [20:32] * Joins: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net)
- # [20:32] * Joins: davidb_ (~davidb@bas1-toronto06-2925210074.dsl.bell.ca)
- # [20:34] * Quits: FlorianX1 (~Florian_S@p4FCF7FBF.dip.t-dialin.net) (Quit: Leaving.)
- # [20:35] * Quits: Rik`_ (~Rik`@2a01:e34:ec0f:1570:6c22:eac8:9423:6d55) (Ping timeout: 244 seconds)
- # [20:36] * heycam|away is now known as heycam
- # [20:38] * Joins: astearns (~anonymous@209.119.68.98)
- # [20:40] * Joins: ben_alman_ (~cowboy@75-150-66-254-NewEngland.hfc.comcastbusiness.net)
- # [20:55] * Quits: MikeSmith (~MikeSmith@66.201.48.54) (Quit: MikeSmith)
- # [21:01] * Joins: hasather_ (~hasather_@84.38.144.96)
- # [21:06] * Quits: hasather_ (~hasather_@84.38.144.96) (Remote host closed the connection)
- # [21:07] * Joins: MikeSmith (~MikeSmith@66.201.48.54)
- # [21:08] * Joins: GlitchMr (~glitchmr@178-36-9-192.adsl.inetia.pl)
- # [21:15] * Quits: astearns (~anonymous@209.119.68.98) (Quit: astearns)
- # [21:21] * heycam is now known as heycam|away
- # [21:23] * Quits: Stikki (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi) (Ping timeout: 255 seconds)
- # [21:27] * Joins: hasather_ (~hasather_@84.38.144.96)
- # [21:30] * Quits: hasather_ (~hasather_@84.38.144.96) (Remote host closed the connection)
- # [21:31] * Quits: erlehmann (~erlehmann@89.204.154.112) (Quit: Ex-Chat)
- # [21:31] * Joins: sicking (~chatzilla@c-98-210-155-80.hsd1.ca.comcast.net)
- # [21:34] * Joins: hasather_ (~hasather_@84.38.144.96)
- # [21:41] * Joins: bga_ (~bga@ppp78-37-238-100.pppoe.avangarddsl.ru)
- # [21:42] * Quits: _bga (~bga@ppp78-37-198-31.pppoe.avangarddsl.ru) (Ping timeout: 258 seconds)
- # [21:48] * Quits: MikeSmith (~MikeSmith@66.201.48.54) (Quit: MikeSmith)
- # [21:48] * Joins: jacobolu_ (~jacobolus@c-71-198-169-213.hsd1.ca.comcast.net)
- # [21:50] * Joins: jarek (~jarek@unaffiliated/jarek)
- # [21:50] * Quits: jacobolus (~jacobolus@c-71-198-169-213.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
- # [21:51] * Joins: MikeSmith (~MikeSmith@66.201.48.54)
- # [21:54] * Joins: Stikki (~lordstich@dsl-pribrasgw1-ff17c300-80.dhcp.inet.fi)
- # [21:57] * Joins: GlitchMr42 (~glitchmr@178-36-129-153.adsl.inetia.pl)
- # [22:00] * Quits: GlitchMr (~glitchmr@178-36-9-192.adsl.inetia.pl) (Ping timeout: 258 seconds)
- # [22:08] * Quits: sicking (~chatzilla@c-98-210-155-80.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [22:14] * Quits: jarek (~jarek@unaffiliated/jarek) (Ping timeout: 276 seconds)
- # [22:14] * Joins: jarek- (~jarek@bcz245.neoplus.adsl.tpnet.pl)
- # [22:15] * Quits: smaug____ (~chatzilla@cs181151161.pp.htv.fi) (Ping timeout: 258 seconds)
- # [22:21] * Quits: Rik` (~Rik`@lag75-1-78-192-241-87.fbxo.proxad.net) (Remote host closed the connection)
- # [22:22] * Quits: cpearce (~chatzilla@ip-118-90-78-13.xdsl.xnet.co.nz) (Ping timeout: 256 seconds)
- # [22:22] * Quits: davidb_ (~davidb@bas1-toronto06-2925210074.dsl.bell.ca) (Quit: davidb_)
- # [22:23] * Quits: GlitchMr42 (~glitchmr@178-36-129-153.adsl.inetia.pl) (Read error: Connection reset by peer)
- # [22:28] * Quits: jarek- (~jarek@bcz245.neoplus.adsl.tpnet.pl) (Ping timeout: 260 seconds)
- # [22:31] * Quits: Druid_ (~Druid@p5B13549B.dip.t-dialin.net) (Ping timeout: 260 seconds)
- # [22:33] * Joins: dbaron (~dbaron@173-228-28-129.dsl.dynamic.sonic.net)
- # [22:37] * Joins: Druid_ (~Druid@p5B13549B.dip.t-dialin.net)
- # [22:39] * Quits: Ms2ger (~Ms2ger@91.181.84.233) (Quit: nn)
- # [22:47] * Quits: tomasf (~tom@c-5ed9e555.024-204-6c6b7012.cust.bredbandsbolaget.se) (Quit: tomasf)
- # [22:49] * Joins: erlehmann (~erlehmann@89.204.154.112)
- # [22:55] * Joins: smaug____ (~chatzilla@GYGDCCCLXXIX.gprs.sl-laajakaista.fi)
- # [23:03] * Quits: ben_alman_ (~cowboy@75-150-66-254-NewEngland.hfc.comcastbusiness.net) (Ping timeout: 252 seconds)
- # [23:04] * Quits: kennyluck (~kennyluck@114-43-119-103.dynamic.hinet.net) (Read error: Connection reset by peer)
- # [23:04] * Joins: kennyluck (~kennyluck@114-43-119-103.dynamic.hinet.net)
- # [23:05] * Joins: mbatle_ (~mbatle@190.236.248.11)
- # [23:05] * Quits: gwillen (~gwillen@unaffiliated/gwillen) (Ping timeout: 240 seconds)
- # [23:06] * Joins: gwillen (~gwillen@unaffiliated/gwillen)
- # [23:06] * Quits: MikeSmith (~MikeSmith@66.201.48.54) (Read error: Connection reset by peer)
- # [23:06] * Joins: astearns (~anonymous@209.119.68.98)
- # [23:07] * Joins: MikeSmith (~MikeSmith@66.201.48.54)
- # [23:14] * Joins: jamesr (jamesr@nat/google/x-qscbfjwxlsbadmcy)
- # [23:22] * Quits: smaug____ (~chatzilla@GYGDCCCLXXIX.gprs.sl-laajakaista.fi) (Ping timeout: 258 seconds)
- # [23:25] * Quits: jamesr (jamesr@nat/google/x-qscbfjwxlsbadmcy) (Ping timeout: 240 seconds)
- # [23:26] * heycam|away is now known as heycam
- # [23:26] * Joins: rniwa (~rniwa@70-89-66-218-ca.sfba.hfc.comcastbusiness.net)
- # [23:33] * Quits: Maurice (copyman@5ED573FA.cm-7-6b.dynamic.ziggo.nl)
- # [23:41] * Quits: nielsle (~nielsle@3239059-cl69.boa.fiberby.dk) (Quit: Ex-Chat)
- # [23:44] * Joins: davidb (~davidb@bas1-toronto06-2925210074.dsl.bell.ca)
- # [23:44] * Quits: davidb (~davidb@bas1-toronto06-2925210074.dsl.bell.ca) (Client Quit)
- # [23:44] * Joins: cfq (~cfq@94-194-98-91.zone8.bethere.co.uk)
- # [23:46] * Joins: smaug____ (~chatzilla@GYGCDXLVIII.gprs.sl-laajakaista.fi)
- # [23:49] * Quits: necolas (~necolas@5e041dd3.bb.sky.com) (Remote host closed the connection)
- # Session Close: Sun Oct 30 00:00:00 2011
The end :)