Options:
- # Session Start: Sun Jun 08 00:00:00 2014
- # Session Ident: #whatwg
- # [00:01] * Quits: zdobersek (~zan@5.153.234.122) (Quit: Leaving.)
- # [00:14] * Joins: newtron_ (~newtron@108.175.231.92)
- # [00:16] * Joins: TimmyTones (~Tim@cpc5-oxfd18-2-0-cust437.4-3.cable.virginm.net)
- # [00:17] * Quits: newtron_ (~newtron@108.175.231.92) (Remote host closed the connection)
- # [00:17] * Joins: newtron_ (~newtron@108.175.231.92)
- # [00:22] * Quits: newtron_ (~newtron@108.175.231.92) (Ping timeout: 240 seconds)
- # [00:26] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [00:27] * Joins: zama (zama@unaffiliated/stryx/x-3871776)
- # [00:29] * Quits: Smylers (~smylers@host81-156-154-50.range81-156.btcentralplus.com) (Ping timeout: 265 seconds)
- # [00:30] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Ping timeout: 240 seconds)
- # [00:31] * Quits: Bass10 (~Bass10@c-73-37-130-61.hsd1.mn.comcast.net) (Ping timeout: 252 seconds)
- # [00:34] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Ping timeout: 255 seconds)
- # [00:38] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [00:40] * Quits: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (Ping timeout: 245 seconds)
- # [00:42] * Joins: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.afb.bredband2.com)
- # [00:43] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 252 seconds)
- # [00:44] * Quits: Maurice` (copyman@94.213.97.124)
- # [01:00] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [01:04] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Ping timeout: 255 seconds)
- # [01:07] <Hixie> aw man
- # [01:07] <Hixie> i'm going through the parser tests in a somewhat random order
- # [01:08] <Hixie> but it seems somehow unfair that the second tree constructor test that i ended up having to deal with does foster parenting
- # [01:12] * Quits: smaug____ (~chatzilla@a91-154-44-207.elisa-laajakaista.fi) (Ping timeout: 252 seconds)
- # [01:12] * SamB hands Hixie some orphaned MIME messages
- # [01:13] <Hixie> hm?
- # [01:16] <gsnedders> Hixie: What random order?
- # [01:16] <gsnedders> Hixie: the order they're in the files?
- # [01:16] <gsnedders> that's pretty random :)
- # [01:17] <Hixie> well the file order i'm using is random
- # [01:17] <Hixie> apparently html5lib-tests/tree-construction/tests7.dat is the first test file i'm doing
- # [01:18] <Hixie> i got <!doctype html><body><title>X</title> to work
- # [01:18] <Hixie> now it's <!doctype html><table><title>X</title></table>
- # [01:18] <gsnedders> :)
- # [01:18] <Hixie> which seems ambitious for a second test to get right :-)
- # [01:18] * Quits: tantek (~tantek@c-76-118-181-62.hsd1.ma.comcast.net) (Quit: tantek)
- # [01:18] <gsnedders> Just convert the spec into code using some NLP tool!
- # [01:18] <Hixie> hah
- # [01:19] <Hixie> how long does html5lib take to do all the tests, btw?
- # [01:19] <Hixie> i'm doing this to be faster, but i've no idea if i am :-)
- # [01:19] <gsnedders> some number of seconds
- # [01:19] <gsnedders> And on what implementation of Python?
- # [01:19] <Hixie> is there that much difference?
- # [01:20] <zewt> the universe is some number of seconds old
- # [01:20] <gsnedders> Hixie: tests, maybe not; general parsing, massively!
- # [01:20] <gsnedders> (tests have a lot of weird branches for parse errors taken frequently, real stuff mostly doesn't)
- # [01:21] <Hixie> interesting
- # [01:24] <gsnedders> for complete.html — CPython 2: 14.7s; CPython 3: 16.4s; PyPy: 7.7s
- # [01:27] <gsnedders> Hixie: also remembers whether modules for optional tree formats are installed; PyPy takes 33s to run all the tests in my current WC
- # [01:27] <gsnedders> I English good, it seem
- # [01:28] <Hixie> what's the difference between CPython and PyPy?
- # [01:29] <gsnedders> CPython is the reference implementation, a mere interpreter; PyPy is a tracing JITing VM
- # [01:29] <Hixie> ah
- # [01:29] <Hixie> i'll have to give you a binary when i'm done, have you compare that
- # [01:30] <Hixie> right now it probably does it in aout 20ms but crashes with "not implemented" about 2 lines in :-P
- # [01:30] <gsnedders> also note that that figure for the tests including serializer/sanitizer/etc. tests
- # [01:30] <Hixie> ah
- # [01:30] <Hixie> i'm only doing tokeniser/tree-constructor
- # [01:30] <Hixie> (and excluding some of those too, e.g. fragment tests)
- # [01:30] <Hixie> (iirc)
- # [01:31] <gsnedders> (it appears I really can't watch Buffy and type at the same time :))
- # [01:32] <Hixie> ho ho ho, i just found a bug in the html parser
- # [01:32] <gsnedders> in the spec?
- # [01:32] <zewt> nondeterministic GC in pypy makes me hesitant to go near it, though
- # [01:32] <Hixie> yeah
- # [01:32] <Hixie> one sec while i check my work
- # [01:32] <gsnedders> Do we implement the spec correctly? :)
- # [01:32] <Hixie> that's what i'm checking :-)
- # [01:33] <gsnedders> It wouldn't be the first time we've had bogus behaviour on the basis the spec did :)
- # [01:35] <Hixie> well gecko and blink seem to just ignore my mistake here, which seems wise
- # [01:35] <gsnedders> zewt: CPython is non-det GC too
- # [01:35] <Hixie> since otherwise they'd probably crash or create a crazy non-dom-valid dom
- # [01:35] <Hixie> http://software.hixie.ch/utilities/js/live-dom-viewer/saved/3054
- # [01:35] <zewt> only with cycles
- # [01:35] <gsnedders> Besides, you can make it deterministic in both cases through gc.disable() :)
- # [01:35] <zewt> memory.splode()
- # [01:37] <Hixie> oh nevermind
- # [01:37] <Hixie> the spec actually checks for this later
- # [01:38] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [01:40] <gsnedders> Other problems with converting the spec text: coreference resolution.
- # [01:41] <gsnedders> Or not
- # [01:41] <gsnedders> Not such a big problem as I thought
- # [01:41] <Hixie> cowhat now?
- # [01:42] <gsnedders> Consider: "Consume the next input character; output the character".
- # [01:42] <gsnedders> What does "the character" refer to?
- # [01:42] <Hixie> aah
- # [01:42] <Hixie> yeah
- # [01:42] <Hixie> good luck!
- # [01:42] * Joins: dbaron (~dbaron@66.228.68.132)
- # [01:42] <gsnedders> I don't think you actually have that much coreference in the tokenizer at least though
- # [01:43] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 260 seconds)
- # [01:43] <gsnedders> Because you almost always (maybe always?) use "the current input character"
- # [01:44] <Hixie> man the foster parenting algorithm sure is described in a round-about way
- # [01:44] <gsnedders> Yes.
- # [01:45] <gsnedders> I think this Hixie guy is to blame there :)
- # [01:45] <Hixie> pah
- # [01:45] * Hixie implements it completely differently and hopes he's right that it's isomorphic
- # [01:45] <gsnedders> Proving stuff is equivilent is hard given the spec machine is infinite state :(
- # [01:46] <Hixie> well proving that this subpart is equivalent should be easier
- # [01:47] <gsnedders> tbf, one can likely bound the stack of open elements at something like 10 elements and the list of active formatting elements similarly and then just argue everything will just be those with extra elements of no effect inbetween
- # [01:47] <Hixie> be careful about that
- # [01:47] <Hixie> noah's ark really screws with that
- # [01:47] <Hixie> if you do that you want a pretty high cap, iirc
- # [01:48] <gsnedders> Yeah, you will
- # [01:48] <gsnedders> I haven't tried to work it out
- # [01:48] <SamB> noah's ark is a technical term now?
- # [01:48] <gsnedders> I fear it's exponential to the number of formatting elements.
- # [01:48] <Hixie> SamB: so many silly terms in the parser, you've no idea
- # [01:48] <Hixie> SamB: it's the only way i could stay sane
- # [01:48] <Hixie> while writing it
- # [01:48] * gsnedders takes a deep breath and carries on
- # [01:48] <Hixie> yeah, that one too :-)
- # [01:49] * Hixie implemented that just yesterday (commented out, of course)
- # [01:49] <gsnedders> Hixie: Do you know of any bug for the spec being slow in Firefox?
- # [01:49] <Hixie> slow to load?
- # [01:49] <Hixie> no
- # [01:49] <Hixie> but it's a problem for sure
- # [01:49] <SamB> Hixie: that reminds me of \relax
- # [01:50] <Hixie> is it worrying when you implement an algorithm and your implementation has none of the variables of the original? :-)
- # [01:50] * SamB isn't really TeXnically aware enough to know all that \relax is good for ...
- # [01:50] <SamB> Hixie: it should worry someone
- # [01:50] <gsnedders> Hixie: Not replicating the WebKit HTML parser bug with </sarcasm> then? :)
- # [01:50] <SamB> hmm
- # [01:51] * Quits: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.afb.bredband2.com) (Remote host closed the connection)
- # [01:51] <gsnedders> Hixie: something around layout is slow when the window changes size, like to open the find box :(
- # [01:51] <SamB> gsnedders: where did that crop up?
- # [01:51] <Hixie> gsnedders: i still love that that happened
- # [01:51] <SamB> someone forgot to escape </sarcasm>, or was it inside a script or something?
- # [01:51] <Hixie> gsnedders: yeah, reflow is slow. dunno of a specific bug. cc me if you file one.
- # [01:52] <gsnedders> Hixie: k
- # [01:52] <Hixie> gotta go, bbl
- # [01:52] <gsnedders> SamB: https://bugs.webkit.org/show_bug.cgi?id=45645
- # [01:52] <gsnedders> SamB: This is the reason html5lib has tests for </sarcasm> :)
- # [01:52] * SamB looks around for something spritely to open that on
- # [01:53] * Joins: tantek (~tantek@66.228.68.132)
- # [01:53] <SamB> has the standard managed to avoid mentioning </sarcasm> thus far?
- # [01:53] <gsnedders> The WebKit bug is there because the standard *does* mention it
- # [01:53] <SamB> hah
- # [01:53] <gsnedders> As Hixie said, the parser section is full of jokes
- # [01:54] <zewt> sure am tired of having to find obscure switches to tell MSVC to stop telling me that C functions like read() are "deprecated"
- # [01:54] <gsnedders> An end tag whose tag name is "sarcasm"
- # [01:54] <gsnedders> Take a deep breath, then act as described in the "any other end tag" entry below.
- # [01:54] <gsnedders> SamB: ^^
- # [01:54] <SamB> zewt: ouch
- # [01:54] <gsnedders> That's far too funny if you're actually in the middle of just implementing every single case one by one :)
- # [01:55] <SamB> does "take a deep breath" link somewhere?
- # [01:55] <gsnedders> nah
- # [01:55] <gsnedders> SamB: Seems like a bug. Report it! :)
- # [01:56] <zewt> uh, woah, now it's defaulting to having them as errors
- # [01:59] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net) (Remote host closed the connection)
- # [01:59] <SamB> zewt: so, um, the headers don't make it clear how to disable that?
- # [01:59] <SamB> you *did* look at the headers, right?
- # [01:59] <zewt> some of the warnings do ("#define this special thing" for sprintf()), but not read()
- # [01:59] <SamB> the funny thing is, read() doesn't have any buffer-size issues or anything
- # [02:00] <zewt> hell no i'm not going to dig into seventy-deep system headers, i'll let the web figure it out
- # [02:00] <SamB> I mean, like, can you see what construct is causing MSVC to treat those things as deprecated
- # [02:00] <SamB> yeah, I really don't like MSVC very much
- # [02:01] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [02:02] <SamB> the one thing I've liked about it in the past is that I can actually get more-or-less a whole stack trace for code compiled with it
- # [02:02] <SamB> but maybe I could do that with an up-to-date GDB, too
- # [02:04] <SamB> (with GCC on windows, I've had to resort to stuff like using WinDbg alongside GDB and/or binutils)
- # [02:05] <SamB> (where WinDbg can unwind to my code -- and very likely also through it -- and GDB or binutils can help me with the addresses/name mappings)
- # [02:05] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Ping timeout: 255 seconds)
- # [02:07] * Quits: TimmyTones (~Tim@cpc5-oxfd18-2-0-cust437.4-3.cable.virginm.net) (Remote host closed the connection)
- # [02:08] <SamB> (hmm, I guess intelisense is also kind of cool ...)
- # [02:08] <SamB> (but not cool enough to really want to deal with cl.exe ...)
- # [02:08] <SamB> (or, well, the compiler proper's probably in DLLs now ...)
- # [02:09] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [02:10] <SamB> Hixie: isn't the outline for http://www.whatwg.org/specs/web-apps/current-work/multipage/the-end.html kind of nonsensical?
- # [02:12] <Philip`> zewt: "#define _CRT_SECURE_NO_WARNINGS" has worked in all the cases I've seen so far
- # [02:13] <SamB> do they seriously have a read_s?
- # [02:14] * SamB reported https://www.w3.org/Bugs/Public/show_bug.cgi?id=26012
- # [02:14] * Quits: Streusel (~Anonymous@unaffiliated/streusel) (Quit: Computer has gone to sleep.)
- # [02:16] * gsnedders finally has a moment in which he thinks having text nodes is a good distinction from strings
- # [02:16] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net)
- # [02:18] * Quits: dbaron (~dbaron@66.228.68.132) (Ping timeout: 245 seconds)
- # [02:21] * Joins: TimmyTones (~Tim@cpc5-oxfd18-2-0-cust437.4-3.cable.virginm.net)
- # [02:27] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [02:30] * Quits: TimmyTones (~Tim@cpc5-oxfd18-2-0-cust437.4-3.cable.virginm.net) (Remote host closed the connection)
- # [02:31] * Joins: dbaron (~dbaron@corp-nat.p2p.sfo1.mozilla.com)
- # [02:32] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Ping timeout: 245 seconds)
- # [02:34] * Quits: dbaron (~dbaron@corp-nat.p2p.sfo1.mozilla.com) (Client Quit)
- # [02:38] * Quits: plutoniix (~plutoniix@node-10x4.pool-180-180.dynamic.totbb.net) (Quit: จรลี จรลา)
- # [02:39] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [02:40] * Joins: Streusel (~Anonymous@unaffiliated/streusel)
- # [02:43] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 240 seconds)
- # [02:43] * Joins: dbaron (~dbaron@corp-nat.p2p.sfo1.mozilla.com)
- # [02:53] * Joins: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.afb.bredband2.com)
- # [02:58] * Quits: dbaron (~dbaron@corp-nat.p2p.sfo1.mozilla.com) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [03:12] * Quits: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.afb.bredband2.com) (Remote host closed the connection)
- # [03:16] * Quits: KevinMarks2 (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
- # [03:17] <Domenic> Hah, I like how in the WebKit source code there's an actual callTheAdoptionAgency(token); line
- # [03:17] * Joins: KevinMarks2 (~yaaic@2607:fb90:280f:83f0:c29c:dfd7:c66d:36a8)
- # [03:20] <SamB> Domenic: well how would YOU name something that implements "call the adoption agency"?
- # [03:23] * Joins: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.afb.bredband2.com)
- # [03:38] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [03:43] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 240 seconds)
- # [03:48] * Krinkle|detached is now known as Krinkle
- # [03:50] * Quits: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.afb.bredband2.com) (Remote host closed the connection)
- # [03:50] <caitp> "activateTerribleDesignDecision()"
- # [03:51] * Joins: newtron_ (~newtron@108.175.231.92)
- # [03:51] * Quits: arunranga (~otherarun@cpe-69-203-2-134.nyc.res.rr.com) (Quit: arunranga)
- # [03:59] * Joins: tantek_ (~tantek@66.228.68.132)
- # [04:00] * Joins: ChrisMorgan (~ChrisMorg@unaffiliated/chrismorgan)
- # [04:01] <caitp> seriously, who ever came up with that reparenting scheme... SMH ._.
- # [04:02] * Quits: tantek (~tantek@66.228.68.132) (Ping timeout: 276 seconds)
- # [04:02] * tantek_ is now known as tantek
- # [04:13] * Joins: poona (~poona@unaffiliated/poona)
- # [04:17] * Joins: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.afb.bredband2.com)
- # [04:19] * Joins: RiVale (~rv@a79-168-80-35.cpe.netcabo.pt)
- # [04:26] * Quits: tantek (~tantek@66.228.68.132) (Quit: tantek)
- # [04:27] * Quits: RiVale (~rv@a79-168-80-35.cpe.netcabo.pt) (Quit: Leaving)
- # [04:27] * Joins: RiVale (~rv@a79-168-80-35.cpe.netcabo.pt)
- # [04:28] * Joins: arunranga (~otherarun@cpe-69-203-2-134.nyc.res.rr.com)
- # [04:28] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [04:28] * Quits: RiVale (~rv@a79-168-80-35.cpe.netcabo.pt) (Client Quit)
- # [04:29] * Joins: RiVale (~rv@a79-168-80-35.cpe.netcabo.pt)
- # [04:32] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Ping timeout: 240 seconds)
- # [04:34] * Quits: RiVale (~rv@a79-168-80-35.cpe.netcabo.pt) (Quit: Leaving)
- # [04:35] * Joins: RiVale (~rv@a79-168-80-35.cpe.netcabo.pt)
- # [04:38] <gsnedders> caitp: see the acknowledgements section of the spec; Dave Hyatt
- # [04:38] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [04:38] <gsnedders> caitp: and if you start with the requirement that the DOM must be a tree, it's not clear you can do much better :(
- # [04:39] <caitp> gsnedders, this discussion has been had with hixie --- the DOM doesn't break when things don't get reparented, you can see this by dynamically inserting arbitrary content at places where it would ordinarily be reparented during parsing
- # [04:40] <caitp> it was a mistake to ever decide the DOM needed to reparent things, and it turns out to be very hard to fix that mistake ._.
- # [04:40] <caitp> but I don't like to name names when mocking terrible design decisions
- # [04:41] <caitp> people did it wrong before, and I guess we're stuck with it forever :(
- # [04:41] <gsnedders> But if you don't reparent you don't get a DOM that renders correctly, no?
- # [04:42] <caitp> you get a DOM that renders the way you expected it to be rendered when you authored your content wrong
- # [04:43] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 252 seconds)
- # [04:43] <caitp> the reparenting thing A) complicates things for no good reason, and B) makes things like custom elements slightly harder to implement correctly without the use of hackish nonsense like is=*
- # [04:44] <caitp> all to avoid breaking some awful smut website, I mean really
- # [04:44] <gsnedders> Plenty would argue "to avoid breaking some website" is a good reason. :)
- # [04:44] <caitp> people were not thinking when they decided this was something that needed to happen, but it's too hard to fix it =(
- # [04:45] * Quits: RiVale (~rv@a79-168-80-35.cpe.netcabo.pt) (Quit: Leaving)
- # [04:47] <gsnedders> But, eh, the ship sailed when it came to misnested content tags before I could speak (probably).
- # [04:49] <caitp> from my perspective, my generation shouldn't have to pay for mistakes made by the generation that came a decade or two before, we should be fixing their broken crap
- # [04:49] <caitp> but herr ian disagrees
- # [04:50] <gsnedders> meh, plenty of evidence that breaking websites leads web browsers to lose marketshare and not websites being fixed
- # [04:50] <caitp> from my perspective, that's not a real excuse, if it leads to future work having to satisfy earlier, broken work
- # [04:51] <caitp> but people have their priorities, I guess
- # [04:51] <caitp> I just think they're getting it wrong in this case
- # [04:51] <gsnedders> convince the browser vendors to lose their marketshare, I guess
- # [04:51] <gsnedders> And there's again plenty of evidence what's in a spec doesn't really effect what browsers do in terms of breaking sites
- # [04:51] <caitp> that is certainly true
- # [04:52] * Joins: mven_ (~textual@ip68-104-38-84.lv.lv.cox.net)
- # [04:52] <caitp> but the fact that the reparenting scheme lives in the spec sort of validates the decision to include broken stuff in the browser
- # [04:53] <gsnedders> Only difference the spec dropping it would make is the spec would cease to have implementations
- # [04:53] <caitp> if all vendors decided to ignore it
- # [04:54] <gsnedders> which they will
- # [04:54] <caitp> I don't think you can say "they will"
- # [04:54] <caitp> there are a lot of implementations out there
- # [04:55] <gsnedders> well, any impl with any real number of users will ignore it
- # [04:56] <caitp> I'm not sure about that, I don't think fixing that particular part of brokenness would hurt marketshare that much for a mainstream browser
- # [04:56] <caitp> and it would be temporary
- # [04:56] <caitp> you know why it's temporary, because people have their browser of choice, it's part of their identity, it becomes who they are!
- # [04:57] <caitp> that sounds silly, but it's not that much of an exaggeration, people have preferences for this stuff
- # [04:57] <caitp> pretty strong, irrational preferences
- # [04:58] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [05:10] * Quits: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.afb.bredband2.com) (Remote host closed the connection)
- # [05:11] * Joins: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.afb.bredband2.com)
- # [05:15] * Quits: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.afb.bredband2.com) (Ping timeout: 240 seconds)
- # [05:21] * Joins: weinig (~weinig@98.234.191.242)
- # [05:27] * Quits: ChrisMorgan (~ChrisMorg@unaffiliated/chrismorgan) (Ping timeout: 245 seconds)
- # [05:31] * Joins: tantek (~tantek@66.228.68.132)
- # [05:38] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [05:43] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 276 seconds)
- # [05:47] * Quits: arunranga (~otherarun@cpe-69-203-2-134.nyc.res.rr.com) (Quit: arunranga)
- # [05:48] * Joins: nielsle (~nielsle@3239078-cl69.boa.fiberby.dk)
- # [05:53] * Krinkle is now known as Krinkle|detached
- # [05:56] * Quits: newtron_ (~newtron@108.175.231.92) (Remote host closed the connection)
- # [05:56] * Joins: russbeye (~russbeye@99-22-61-68.lightspeed.stlsmo.sbcglobal.net)
- # [05:56] * Joins: newtron_ (~newtron@108.175.231.92)
- # [06:00] * Quits: newtron_ (~newtron@108.175.231.92) (Ping timeout: 240 seconds)
- # [06:02] * Joins: ChrisMorgan (~ChrisMorg@27-32-227-98.static.tpgi.com.au)
- # [06:02] * Quits: ChrisMorgan (~ChrisMorg@27-32-227-98.static.tpgi.com.au) (Changing host)
- # [06:02] * Joins: ChrisMorgan (~ChrisMorg@unaffiliated/chrismorgan)
- # [06:02] * Joins: nessy (~silviapf@101.164.214.231)
- # [06:05] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Remote host closed the connection)
- # [06:05] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [06:06] * Quits: seventh (seventh@192.64.4.102) (Ping timeout: 240 seconds)
- # [06:08] * Quits: estellevw (~estellevw@173-228-112-232.dsl.dynamic.sonic.net) (Quit: Snuggling with the puppies)
- # [06:10] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Ping timeout: 245 seconds)
- # [06:16] * Quits: weinig (~weinig@98.234.191.242) (Quit: weinig)
- # [06:22] * Hixie runs into the fact that the stack of open elements is sometimes randomly mutated
- # [06:22] <Hixie> bummer
- # [06:23] <Hixie> that's gonna be exciting.
- # [06:29] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [06:29] * Joins: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net)
- # [06:30] * Krinkle|detached is now known as Krinkle
- # [06:33] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Ping timeout: 245 seconds)
- # [06:34] * Quits: russbeye (~russbeye@99-22-61-68.lightspeed.stlsmo.sbcglobal.net) (Quit: Leaving...)
- # [06:38] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [06:43] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 240 seconds)
- # [06:51] * Quits: KevinMarks2 (~yaaic@2607:fb90:280f:83f0:c29c:dfd7:c66d:36a8) (Remote host closed the connection)
- # [06:52] * Quits: nessy (~silviapf@101.164.214.231) (Quit: Leaving.)
- # [06:57] * Joins: KevinMarks2 (~yaaic@2607:fb90:280f:83f0:c29c:dfd7:c66d:36a8)
- # [07:06] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [07:07] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Read error: No route to host)
- # [07:08] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [07:12] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Ping timeout: 240 seconds)
- # [07:19] <Hixie> hey someone double-check me here. In "push onto the list of active formatting elements", where the spec says "list markers", it should say "scope markers", no?
- # [07:23] * Quits: tantek (~tantek@66.228.68.132) (Quit: tantek)
- # [07:38] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [07:38] * Joins: arunranga (~otherarun@cpe-69-203-2-134.nyc.res.rr.com)
- # [07:43] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 276 seconds)
- # [07:55] * Joins: jeffreyatw (~jeffreyat@199-188-192-248.PUBLIC.monkeybrains.net)
- # [07:59] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [08:00] * Joins: Smylers (~smylers@host81-156-154-50.range81-156.btcentralplus.com)
- # [08:03] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Ping timeout: 252 seconds)
- # [08:20] * Joins: coolbot95 (~coolbot95@gateway/tor-sasl/coolbot95)
- # [08:30] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [08:34] * Quits: arunranga (~otherarun@cpe-69-203-2-134.nyc.res.rr.com) (Quit: arunranga)
- # [08:35] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Ping timeout: 265 seconds)
- # [08:35] * Krinkle is now known as Krinkle|detached
- # [08:38] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [08:43] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 276 seconds)
- # [08:46] * Joins: Ms2ger (~Ms2ger@251.193-64-87.adsl-dyn.isp.belgacom.be)
- # [08:54] * Joins: nessy (~silviapf@101.164.214.231)
- # [09:02] * Quits: jeffreyatw (~jeffreyat@199-188-192-248.PUBLIC.monkeybrains.net) (Quit: jeffreyatw)
- # [09:02] * Quits: KevinMarks2 (~yaaic@2607:fb90:280f:83f0:c29c:dfd7:c66d:36a8) (Ping timeout: 240 seconds)
- # [09:04] * Joins: KevinMarks2 (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [09:06] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [09:09] * Joins: BigBangUDR (~Thunderbi@123.239.162.188)
- # [09:11] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Ping timeout: 260 seconds)
- # [09:12] * Quits: BigBangUDR (~Thunderbi@123.239.162.188) (Client Quit)
- # [09:35] * Quits: KevinMarks2 (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 276 seconds)
- # [09:36] * Joins: KevinMarks2 (~yaaic@2607:fb90:282c:3d37:a2f4:7e51:5361:678d)
- # [09:39] * Joins: kochi_home (~kochi_hom@122.133.198.67)
- # [09:41] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net)
- # [09:41] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net) (Client Quit)
- # [09:43] * Quits: kochi_home (~kochi_hom@122.133.198.67) (Ping timeout: 240 seconds)
- # [09:44] * Joins: Maurice` (copyman@5ED5617C.cm-7-6b.dynamic.ziggo.nl)
- # [09:55] * Quits: Smylers (~smylers@host81-156-154-50.range81-156.btcentralplus.com) (Ping timeout: 240 seconds)
- # [09:59] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [10:03] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [10:06] * Quits: nielsle (~nielsle@3239078-cl69.boa.fiberby.dk) (Quit: Ex-Chat)
- # [10:07] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [10:07] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [10:09] * Joins: BigBangUDR (~Thunderbi@220.225.242.27)
- # [10:09] * Quits: BigBangUDR (~Thunderbi@220.225.242.27) (Client Quit)
- # [10:11] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Ping timeout: 245 seconds)
- # [10:16] * Quits: ChrisMorgan (~ChrisMorg@unaffiliated/chrismorgan) (Ping timeout: 240 seconds)
- # [10:39] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [10:39] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Ping timeout: 255 seconds)
- # [10:43] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 276 seconds)
- # [10:54] * Quits: kangil (~kangil@210.94.41.89) (Remote host closed the connection)
- # [10:55] * Joins: kangil (~kangil@210.94.41.89)
- # [11:00] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net) (Remote host closed the connection)
- # [11:05] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [11:06] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [11:11] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Ping timeout: 240 seconds)
- # [11:12] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Ping timeout: 255 seconds)
- # [11:16] * Quits: KevinMarks2 (~yaaic@2607:fb90:282c:3d37:a2f4:7e51:5361:678d) (Ping timeout: 240 seconds)
- # [11:19] * Joins: KevinMarks2 (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [11:20] <jgraham> Hixie: AFAICT there you use "list marker", in the definition above you use "scope marker" and everywhere else you use "marker"
- # [11:20] * Joins: plutoniix (~plutoniix@node-1e3g.pool-101-108.dynamic.totbb.net)
- # [11:21] * Joins: Smylers (~smylers@host81-156-154-50.range81-156.btcentralplus.com)
- # [11:28] * Quits: Smylers (~smylers@host81-156-154-50.range81-156.btcentralplus.com) (Ping timeout: 240 seconds)
- # [11:28] * Quits: nessy (~silviapf@101.164.214.231) (Quit: Leaving.)
- # [11:30] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net)
- # [11:33] * Quits: KevinMarks2 (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 245 seconds)
- # [11:34] * Joins: KevinMarks2 (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [11:37] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net) (Ping timeout: 276 seconds)
- # [11:38] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [11:40] * Quits: KevinMarks2 (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
- # [11:43] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 265 seconds)
- # [11:46] * Joins: KevinMarks2 (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [11:48] * Joins: TimmyTones (~Tim@cpc5-oxfd18-2-0-cust437.4-3.cable.virginm.net)
- # [11:52] * Quits: stalled (~stalled@unaffiliated/stalled) (Ping timeout: 260 seconds)
- # [12:07] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [12:07] * Joins: stalled (~stalled@unaffiliated/stalled)
- # [12:11] * Joins: dbaron (~dbaron@66.228.68.132)
- # [12:11] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Ping timeout: 252 seconds)
- # [12:11] * Joins: espadrine (~ttyl@AMontsouris-158-1-53-36.w92-128.abo.wanadoo.fr)
- # [12:14] * Joins: zdobersek (~zan@cpe-77.38.31.63.cable.t-1.si)
- # [12:18] * Quits: zdobersek (~zan@cpe-77.38.31.63.cable.t-1.si) (Ping timeout: 240 seconds)
- # [12:18] * Joins: zdobersek (~zan@5.153.233.26)
- # [12:30] * Joins: nessy (~silviapf@101.164.214.231)
- # [12:35] * Quits: Streusel (~Anonymous@unaffiliated/streusel) (Quit: Computer has gone to sleep.)
- # [12:39] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [12:43] * Quits: dbaron (~dbaron@66.228.68.132) (Ping timeout: 265 seconds)
- # [12:43] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 260 seconds)
- # [12:48] * Joins: toydestroyer (~textual@46.39.35.204)
- # [12:50] * Quits: TimmyTones (~Tim@cpc5-oxfd18-2-0-cust437.4-3.cable.virginm.net) (Quit: Leaving...)
- # [13:05] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Remote host closed the connection)
- # [13:06] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [13:08] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [13:11] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Ping timeout: 260 seconds)
- # [13:13] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Ping timeout: 255 seconds)
- # [13:13] * Joins: ChrisMorgan (~ChrisMorg@unaffiliated/chrismorgan)
- # [13:14] * Quits: jwatt (~roslea@host86-160-112-104.range86-160.btcentralplus.com) (Ping timeout: 260 seconds)
- # [13:17] * Quits: zdobersek (~zan@5.153.233.26) (Ping timeout: 276 seconds)
- # [13:19] * Joins: cheron (~cheron@unaffiliated/cheron)
- # [13:29] * Joins: dbaron (~dbaron@66.228.68.132)
- # [13:29] * Joins: jwatt (~roslea@host86-160-112-104.range86-160.btcentralplus.com)
- # [13:31] * Quits: toydestroyer (~textual@46.39.35.204)
- # [13:33] * Joins: zdobersek (~zan@46.19.140.62)
- # [13:34] * Quits: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (Quit: is sleepy)
- # [13:39] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [13:43] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 245 seconds)
- # [13:45] * Quits: nessy (~silviapf@101.164.214.231) (Quit: Leaving.)
- # [14:00] * Joins: toydestroyer (~textual@46.39.35.204)
- # [14:00] * Quits: ricea (~ricea@2401:fa00:4:1000:b6b5:2fff:feca:47f8) (*.net *.split)
- # [14:02] * Joins: ricea (~ricea@2401:fa00:4:1000:b6b5:2fff:feca:47f8)
- # [14:09] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [14:14] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Ping timeout: 255 seconds)
- # [14:17] * Joins: nessy (~silviapf@101.164.214.231)
- # [14:35] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net)
- # [14:36] * Quits: nessy (~silviapf@101.164.214.231) (Quit: Leaving.)
- # [14:37] * Quits: toydestroyer (~textual@46.39.35.204)
- # [14:38] * Quits: tav (~tav`@host217-42-231-34.range217-42.btcentralplus.com) (Quit: tav)
- # [14:39] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [14:39] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net) (Ping timeout: 240 seconds)
- # [14:39] * Joins: nessy (~silviapf@101.164.214.231)
- # [14:43] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 260 seconds)
- # [14:44] * Joins: toydestroyer (~textual@46.39.35.204)
- # [14:52] * Quits: poona (~poona@unaffiliated/poona) (Ping timeout: 276 seconds)
- # [15:00] * Quits: toydestroyer (~textual@46.39.35.204)
- # [15:04] * Joins: poona (~poona@unaffiliated/poona)
- # [15:06] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [15:10] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [15:11] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Ping timeout: 276 seconds)
- # [15:13] * Joins: toydestroyer (~textual@46.39.35.204)
- # [15:16] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Ping timeout: 255 seconds)
- # [15:19] * Quits: jwatt (~roslea@host86-160-112-104.range86-160.btcentralplus.com) (Ping timeout: 240 seconds)
- # [15:24] * Joins: gavin_ (~gavin@76.14.87.162)
- # [15:26] * Quits: dbaron (~dbaron@66.228.68.132) (Ping timeout: 252 seconds)
- # [15:28] * Joins: Smylers (~smylers@host81-156-154-50.range81-156.btcentralplus.com)
- # [15:29] * Joins: jwatt (~roslea@host86-160-112-104.range86-160.btcentralplus.com)
- # [15:32] * Joins: tantek (~tantek@66.228.68.132)
- # [15:35] * Joins: BigBangUDR (~Thunderbi@101.59.199.118)
- # [15:35] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net)
- # [15:36] * Quits: BigBangUDR (~Thunderbi@101.59.199.118) (Client Quit)
- # [15:38] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [15:42] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net) (Ping timeout: 265 seconds)
- # [15:43] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 265 seconds)
- # [15:46] * Quits: nessy (~silviapf@101.164.214.231) (Quit: Leaving.)
- # [15:49] * jwatt is now known as Guest62836
- # [15:49] * Joins: jwatt_ (~roslea@host86-160-112-104.range86-160.btcentralplus.com)
- # [15:49] * Quits: Guest62836 (~roslea@host86-160-112-104.range86-160.btcentralplus.com) (Ping timeout: 252 seconds)
- # [15:52] * Joins: raisdead (~alien@173-21-127-233.client.mchsi.com)
- # [16:07] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [16:11] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Ping timeout: 252 seconds)
- # [16:13] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [16:17] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Ping timeout: 255 seconds)
- # [16:31] * Quits: tantek (~tantek@66.228.68.132) (Quit: tantek)
- # [16:31] * Joins: tantek (~tantek@66.228.68.132)
- # [16:34] * Quits: grarg (~grarg@212.22.70.155) (Quit: Leaving)
- # [16:37] * Quits: tantek (~tantek@66.228.68.132) (Quit: tantek)
- # [16:38] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [16:44] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 276 seconds)
- # [17:01] * Krinkle|detached is now known as Krinkle
- # [17:06] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [17:07] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [17:10] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Remote host closed the connection)
- # [17:10] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [17:10] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Ping timeout: 240 seconds)
- # [17:13] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [17:15] * Quits: coolbot95 (~coolbot95@gateway/tor-sasl/coolbot95) (Write error: Connection reset by peer)
- # [17:16] * Quits: twisted` (sid6794@gateway/web/irccloud.com/x-jjqhwoybeeighuly) (*.net *.split)
- # [17:16] * Quits: kcherkashin__ (sid25169@gateway/web/irccloud.com/x-qamfmqvlpccoccfp) (*.net *.split)
- # [17:16] * Quits: JonathanNeal (sid5831@gateway/web/irccloud.com/x-cserjhyeawebksyr) (*.net *.split)
- # [17:16] * Quits: arv_ (sid4269@gateway/web/irccloud.com/x-wptjruxjrjorqlgz) (*.net *.split)
- # [17:16] * Quits: k308de (~k308@k308.de) (*.net *.split)
- # [17:16] * Joins: arv_ (sid4269@gateway/web/irccloud.com/session)
- # [17:16] * Joins: kcherkashin__ (sid25169@gateway/web/irccloud.com/session)
- # [17:16] * Joins: JonathanNeal (sid5831@gateway/web/irccloud.com/session)
- # [17:17] * Joins: k308 (~k308@k308.de)
- # [17:18] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Ping timeout: 255 seconds)
- # [17:25] * Joins: twisted` (sid6794@gateway/web/irccloud.com/session)
- # [17:26] * jarib_ is now known as jarib
- # [17:26] * Quits: jarib (~jarib@jaribakken.no) (Changing host)
- # [17:26] * Joins: jarib (~jarib@unaffiliated/jarib)
- # [17:31] * Quits: raisdead (~alien@173-21-127-233.client.mchsi.com) (Ping timeout: 276 seconds)
- # [17:33] * Quits: gavin_ (~gavin@76.14.87.162) (Remote host closed the connection)
- # [17:36] * Joins: gavin_ (~gavin@76.14.87.162)
- # [17:38] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [17:39] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net)
- # [17:41] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [17:42] * Quits: kcherkashin__ (sid25169@gateway/web/irccloud.com/session) (Changing host)
- # [17:42] * Joins: kcherkashin__ (sid25169@gateway/web/irccloud.com/x-tbgurgthdrjvicwc)
- # [17:42] * Quits: twisted` (sid6794@gateway/web/irccloud.com/session) (Changing host)
- # [17:42] * Joins: twisted` (sid6794@gateway/web/irccloud.com/x-tssqdlummuaoheiu)
- # [17:42] * Quits: arv_ (sid4269@gateway/web/irccloud.com/session) (Changing host)
- # [17:42] * Joins: arv_ (sid4269@gateway/web/irccloud.com/x-ymdfzjmmczkmggoc)
- # [17:42] * Quits: JonathanNeal (sid5831@gateway/web/irccloud.com/session) (Changing host)
- # [17:42] * Joins: JonathanNeal (sid5831@gateway/web/irccloud.com/x-tnsggqxirtkagaww)
- # [17:43] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 245 seconds)
- # [17:43] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net) (Ping timeout: 260 seconds)
- # [17:44] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [17:59] * Joins: newtron_ (~newtron@108.175.231.92)
- # [18:06] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [18:07] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Remote host closed the connection)
- # [18:09] <Hixie> jgraham: k, that's what i concluded too
- # [18:11] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Ping timeout: 252 seconds)
- # [18:14] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net)
- # [18:14] * Joins: tav (~tav`@host217-42-231-34.range217-42.btcentralplus.com)
- # [18:14] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [18:16] * Quits: ChrisMorgan (~ChrisMorg@unaffiliated/chrismorgan) (Ping timeout: 252 seconds)
- # [18:16] <jgraham> Hixie: FWIW I think "scope marker" is a bad name since it requires a note that it doesn't correspond to the other notion of "in scope"
- # [18:19] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Ping timeout: 255 seconds)
- # [18:34] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [18:34] * Joins: JosephSilber (~Joseph@ool-44c3e80a.static.optonline.net)
- # [18:39] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [18:42] <Hixie> jgraham: yeah...
- # [18:43] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 240 seconds)
- # [18:44] * Joins: tantek (~tantek@66.228.68.132)
- # [18:47] <Hixie> ok, renamed them all to just "marker", that's unambiguous enough
- # [18:47] <Hixie> also, made them all cross-refs
- # [18:48] * Quits: gavin_ (~gavin@76.14.87.162) (Remote host closed the connection)
- # [18:48] * Joins: gavin_ (~gavin@76.14.87.162)
- # [18:50] <jgraham> Hixie++
- # [18:54] * Joins: jeffreyatw (~jeffreyat@199-188-192-248.PUBLIC.monkeybrains.net)
- # [18:56] * Joins: izhak (~izhak@92.248.142.152)
- # [18:59] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [19:01] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [19:01] * Joins: Bass10 (~Bass10@c-73-37-130-61.hsd1.mn.comcast.net)
- # [19:02] * Quits: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com) (Client Quit)
- # [19:02] * Joins: caitp (~caitp@CPE48f8b385c01c-CM602ad06daeed.cpe.net.cable.rogers.com)
- # [19:02] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net) (Remote host closed the connection)
- # [19:06] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [19:07] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Read error: No route to host)
- # [19:09] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Remote host closed the connection)
- # [19:14] * Joins: coolbot95 (~coolbot95@gateway/tor-sasl/coolbot95)
- # [19:14] * Joins: gavin__ (~gavin@76.14.87.162)
- # [19:14] * Quits: jeffreyatw (~jeffreyat@199-188-192-248.PUBLIC.monkeybrains.net) (Quit: jeffreyatw)
- # [19:14] * Joins: RiVale (~rv@a79-168-80-35.cpe.netcabo.pt)
- # [19:15] * Joins: BigBangUDR (~Thunderbi@101.59.199.118)
- # [19:16] * Quits: BigBangUDR (~Thunderbi@101.59.199.118) (Remote host closed the connection)
- # [19:16] * Quits: gavin_ (~gavin@76.14.87.162) (Ping timeout: 276 seconds)
- # [19:18] * Quits: Smylers (~smylers@host81-156-154-50.range81-156.btcentralplus.com) (Remote host closed the connection)
- # [19:20] * Quits: gavin__ (~gavin@76.14.87.162) (Remote host closed the connection)
- # [19:20] * Joins: gavin_ (~gavin@76.14.87.162)
- # [19:21] * Joins: jeffreyatw (~jeffreyat@199-188-192-248.PUBLIC.monkeybrains.net)
- # [19:23] * Quits: jeffreyatw (~jeffreyat@199-188-192-248.PUBLIC.monkeybrains.net) (Client Quit)
- # [19:24] * Quits: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr) (*.net *.split)
- # [19:24] * Quits: dshwang (~dshwang@192.55.54.40) (*.net *.split)
- # [19:24] * Quits: lerc_ (~quassel@121-74-2-8.telstraclear.net) (*.net *.split)
- # [19:24] * Joins: dshwang (~dshwang@192.55.54.40)
- # [19:26] * Joins: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr)
- # [19:26] * Joins: lerc (~quassel@121-74-2-8.telstraclear.net)
- # [19:28] * Joins: weinig (~weinig@98.234.191.242)
- # [19:28] * Quits: izhak (~izhak@92.248.142.152) (Ping timeout: 252 seconds)
- # [19:34] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [19:40] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [19:44] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 252 seconds)
- # [19:45] * Quits: toydestroyer (~textual@46.39.35.204)
- # [19:46] * Quits: tantek (~tantek@66.228.68.132) (Quit: tantek)
- # [19:53] * Quits: KevinMarks2 (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 245 seconds)
- # [19:55] * Joins: KevinMarks2 (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [19:55] * Joins: toydestroyer (~textual@162.13.47.212)
- # [20:03] * Joins: tantek (~tantek@66.228.68.132)
- # [20:10] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Remote host closed the connection)
- # [20:10] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [20:15] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Ping timeout: 265 seconds)
- # [20:15] * Quits: tav (~tav`@host217-42-231-34.range217-42.btcentralplus.com) (Quit: tav)
- # [20:17] * Joins: dogfoodhh (~dogfood@d216222.adsl.hansenet.de)
- # [20:20] * Quits: JosephSilber (~Joseph@ool-44c3e80a.static.optonline.net) (Ping timeout: 245 seconds)
- # [20:30] * Joins: raisdead (~alien@99.122.125.161)
- # [20:33] * Joins: nikol (~nikol@c-76-97-254-166.hsd1.ga.comcast.net)
- # [20:35] * Quits: raisdead (~alien@99.122.125.161) (Ping timeout: 265 seconds)
- # [20:36] * Joins: arunranga (~otherarun@cpe-69-203-2-134.nyc.res.rr.com)
- # [20:36] * Joins: shepazu (~shepazu@31-34-203.wireless.csail.mit.edu)
- # [20:37] * Quits: dogfoodhh (~dogfood@d216222.adsl.hansenet.de) (Quit: Textual IRC Client: www.textualapp.com)
- # [20:41] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [20:45] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 240 seconds)
- # [20:46] * Quits: arunranga (~otherarun@cpe-69-203-2-134.nyc.res.rr.com) (Quit: arunranga)
- # [20:52] * Joins: tav (~tav`@host217-42-231-34.range217-42.btcentralplus.com)
- # [20:56] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [20:57] * Quits: shepazu (~shepazu@31-34-203.wireless.csail.mit.edu) (Quit: is sleepy)
- # [21:00] * Quits: tantek (~tantek@66.228.68.132) (Quit: tantek)
- # [21:03] * Parts: RiVale (~rv@a79-168-80-35.cpe.netcabo.pt) ("Leaving")
- # [21:06] * Joins: smaug____ (~chatzilla@a91-154-44-207.elisa-laajakaista.fi)
- # [21:07] * Quits: newtron_ (~newtron@108.175.231.92) (Remote host closed the connection)
- # [21:07] * Joins: newtron_ (~newtron@108.175.231.92)
- # [21:11] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [21:12] * Quits: smaug____ (~chatzilla@a91-154-44-207.elisa-laajakaista.fi) (Ping timeout: 265 seconds)
- # [21:12] * Quits: newtron_ (~newtron@108.175.231.92) (Ping timeout: 240 seconds)
- # [21:15] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Ping timeout: 240 seconds)
- # [21:16] * Joins: JosephSilber (~Joseph@ool-44c3e80a.static.optonline.net)
- # [21:23] * Joins: tantek (~tantek@31-35-228.wireless.csail.mit.edu)
- # [21:25] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [21:30] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Ping timeout: 265 seconds)
- # [21:33] * Joins: smaug____ (~chatzilla@a91-154-44-207.elisa-laajakaista.fi)
- # [21:41] * Quits: weinig (~weinig@98.234.191.242) (Quit: weinig)
- # [21:41] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [21:42] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [21:46] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 240 seconds)
- # [21:46] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Ping timeout: 265 seconds)
- # [21:48] * Krinkle is now known as Krinkle|detached
- # [21:49] * Joins: newtron_ (~newtron@108.175.231.92)
- # [21:53] * Quits: newtron_ (~newtron@108.175.231.92) (Ping timeout: 240 seconds)
- # [21:54] * Joins: dbaron (~dbaron@66.228.68.132)
- # [21:55] * Quits: poona (~poona@unaffiliated/poona) (Ping timeout: 240 seconds)
- # [21:59] * Joins: Streusel (~Anonymous@unaffiliated/streusel)
- # [22:03] * Quits: hendry (~hendry@sg.webconverger.com) (Quit: leaving)
- # [22:03] * Joins: hendry (~hendry@uk.webconverger.com)
- # [22:03] * Quits: jwatt_ (~roslea@host86-160-112-104.range86-160.btcentralplus.com) (Ping timeout: 252 seconds)
- # [22:06] * Joins: newtron_ (~newtron@108.175.231.92)
- # [22:06] * Joins: jacobolus (~jacobolus@74-95-6-5-SFBA.hfc.comcastbusiness.net)
- # [22:07] * Joins: jwatt (~roslea@host86-160-112-104.range86-160.btcentralplus.com)
- # [22:07] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Remote host closed the connection)
- # [22:10] * Quits: newtron_ (~newtron@108.175.231.92) (Ping timeout: 240 seconds)
- # [22:10] * Quits: CvP (~CvP@27.147.198.50) (Read error: Connection reset by peer)
- # [22:11] * Joins: CvP (~CvP@27.147.198.50)
- # [22:12] * Quits: jwatt (~roslea@host86-160-112-104.range86-160.btcentralplus.com) (Ping timeout: 265 seconds)
- # [22:12] * Quits: Ms2ger (~Ms2ger@251.193-64-87.adsl-dyn.isp.belgacom.be) (Quit: nn)
- # [22:16] * Joins: jwatt (~roslea@host86-160-112-104.range86-160.btcentralplus.com)
- # [22:18] * Quits: toydestroyer (~textual@162.13.47.212)
- # [22:25] * Quits: nikol (~nikol@c-76-97-254-166.hsd1.ga.comcast.net) (Read error: Connection reset by peer)
- # [22:25] * Joins: nikol (~nikol@c-76-97-254-166.hsd1.ga.comcast.net)
- # [22:26] * Joins: felipedefarias (~felipedef@189.55.72.188)
- # [22:31] * Quits: felipedefarias (~felipedef@189.55.72.188) (Remote host closed the connection)
- # [22:31] * Quits: jacobolus (~jacobolus@74-95-6-5-SFBA.hfc.comcastbusiness.net) (Remote host closed the connection)
- # [22:37] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [22:40] * Joins: arunranga (~otherarun@cpe-69-203-2-134.nyc.res.rr.com)
- # [22:42] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Ping timeout: 265 seconds)
- # [22:42] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [22:46] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 240 seconds)
- # [22:50] * Quits: tantek (~tantek@31-35-228.wireless.csail.mit.edu) (Quit: tantek)
- # [22:52] * Joins: weinig (~weinig@98.234.191.242)
- # [23:06] * Joins: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com)
- # [23:11] * Quits: coolbot95 (~coolbot95@gateway/tor-sasl/coolbot95) (Quit: coolbot95)
- # [23:11] * Quits: sak_to (~sak_to@24-52-206-247.cable.teksavvy.com) (Ping timeout: 276 seconds)
- # [23:13] * Quits: dbaron (~dbaron@66.228.68.132) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [23:14] * Joins: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.afb.bredband2.com)
- # [23:16] * Joins: sankha93 (~sankha93@stgt-4d02d939.pool.mediaWays.net)
- # [23:16] * Quits: sankha93 (~sankha93@stgt-4d02d939.pool.mediaWays.net) (Changing host)
- # [23:16] * Joins: sankha93 (~sankha93@fsf/emeritus/sankha93)
- # [23:16] * Joins: newtron_ (~newtron@108.175.231.92)
- # [23:19] * Quits: arunranga (~otherarun@cpe-69-203-2-134.nyc.res.rr.com) (Quit: arunranga)
- # [23:20] * Quits: newtron_ (~newtron@108.175.231.92) (Ping timeout: 240 seconds)
- # [23:24] * Joins: arunranga (~otherarun@cpe-69-203-2-134.nyc.res.rr.com)
- # [23:27] * Joins: newtron_ (~newtron@108.175.231.92)
- # [23:34] * Quits: JosephSilber (~Joseph@ool-44c3e80a.static.optonline.net) (Ping timeout: 252 seconds)
- # [23:35] * Quits: weinig (~weinig@98.234.191.242) (Quit: weinig)
- # [23:36] * Joins: tantek (~tantek@31-35-228.wireless.csail.mit.edu)
- # [23:40] * Quits: jensnockert (~jensnocke@dynamic.1.7.34dbfd722180.e0f8471ae7fa.afb.bredband2.com) (Remote host closed the connection)
- # [23:42] * Quits: newtron_ (~newtron@108.175.231.92) (Remote host closed the connection)
- # [23:42] * Joins: newtron_ (~newtron@108.175.231.92)
- # [23:42] * Quits: nikol (~nikol@c-76-97-254-166.hsd1.ga.comcast.net) (Read error: Connection reset by peer)
- # [23:42] * Joins: nikol (~nikol@c-76-97-254-166.hsd1.ga.comcast.net)
- # [23:43] * Joins: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp)
- # [23:46] * Quits: newtron_ (~newtron@108.175.231.92) (Ping timeout: 240 seconds)
- # [23:46] * Quits: tav (~tav`@host217-42-231-34.range217-42.btcentralplus.com) (Quit: tav)
- # [23:47] * Quits: kochi_home (~kochi_hom@FL1-122-133-198-67.kng.mesh.ad.jp) (Ping timeout: 240 seconds)
- # [23:50] * Quits: nikol (~nikol@c-76-97-254-166.hsd1.ga.comcast.net) (Read error: Connection reset by peer)
- # [23:50] * Joins: N1K0L (~nikol@76.97.254.166)
- # [23:51] * Quits: zdobersek (~zan@46.19.140.62) (Quit: Leaving.)
- # [23:53] * Quits: tantek (~tantek@31-35-228.wireless.csail.mit.edu) (Quit: tantek)
- # [23:59] * N1K0L is now known as nikol
- # Session Close: Mon Jun 09 00:00:00 2014
The end :)