Options:
- # Session Start: Tue Jan 12 00:00:00 2010
- # Session Ident: #whatwg
- # [00:00] * Joins: payman` (n=payman@h85-8-2-58.static.se.alltele.net)
- # [00:00] <Lachy> Hixie, with the 2d context split, it seems this requirement is no longer present in either W3C HTML5 or the 2D context specs: 'This specification only defines one context, with the name "2d". If getContext() is called with that exact string for its contextId argument, then the UA must return a reference to an object implementing CanvasRenderingContext2D.'
- # [00:01] <Hixie> it's still there, just in different words
- # [00:01] <Lachy> ok
- # [00:01] <Lachy> oh, I see. It's repeated here "When the getContext() method of a canvas element is invoked with 2d as the argument, a CanvasRenderingContext2D object is returned."
- # [00:02] <Lachy> making that first one redundant, since the latter is present in all copies
- # [00:02] <Lachy> it would be less confusing if the differences between the split specs and the full specs were kept to a minimum
- # [00:03] <Hixie> the latter isn't a conformance requirement
- # [00:03] <Hixie> and yes, the changes are kept to a minimum
- # [00:03] <Lachy> oh, then I can't see where the equivalent conformance requirement is
- # [00:04] <Lachy> but the latter does come from the Conformance Requirements section
- # [00:04] <Hixie> paragraphs 2 and 3 of http://dev.w3.org/html5/2dcontext/Overview.html#conformance-requirements
- # [00:04] <Lachy> that's what I quoted
- # [00:04] <Hixie> no
- # [00:04] <Hixie> you quoted the whatwg version
- # [00:04] <Hixie> which says "is"
- # [00:04] <Hixie> the w3c version says "must be"
- # [00:04] <Hixie> like i said, i'm keeping the changes to a minimum :-)
- # [00:05] <Lachy> ah. I didn't notice the difference in the 2 sentences
- # [00:05] * Joins: svl (n=me@ip565744a7.direct-adsl.nl)
- # [00:06] <Lachy> then I take that back. Please keep the differences to a maximum to avoid further confusions like that caused by such subtle differences :-)
- # [00:06] <Hixie> hah
- # [00:12] * Joins: othermaciej (n=mjs@17.244.9.84)
- # [00:16] * Joins: yutak_home (n=kee@N038037.ppp.dion.ne.jp)
- # [00:17] <AryehGregor> TabAtkins, your selector would tend to misnest. I don't see any way you could sensibly define things like padding in general if you have <table><th><h1>...</h1>...</table><p>...<h1>...</h1> and you try to wrap everything between the h1's.
- # [00:17] <AryehGregor> Also, foo + * won't work if foo is the last child of its parent.
- # [00:17] <TabAtkins> I'm confused by your first statement, Aryeh.
- # [00:17] <TabAtkins> And yes it will - at most, it will wrap to the end of its parent.
- # [00:18] <TabAtkins> Oh, wait, now I see what you mean.
- # [00:18] <AryehGregor> TabAtkins, take my HTML snippet. What does ::wrap(h1, h1) { padding: 1em } do? What box gets the padding? Your ::wrap includes some children of one block, then a sibling of that block.
- # [00:18] <TabAtkins> Nah, it explicitly doesn't jump between generation boundaries. (I didn't state that before, but it's part of the proposal in my head.)
- # [00:19] <AryehGregor> So in this case it would do nothing.
- # [00:19] <AryehGregor> Because we have <th><h1>...</h1></th>.
- # [00:19] <AryehGregor> It would just select the h1.
- # [00:19] <TabAtkins> Yes, it would wrap the <h1> only there.
- # [00:19] <AryehGregor> And foo + * just won't match anything if foo has no next sibling, as a normal selector.
- # [00:20] <AryehGregor> I assume ::wrap(squozzle, fooble) wraps nothing if there's no fooble element in the document.
- # [00:20] <TabAtkins> But if you had <h1>foo</h1><table><th><h1>bar</h1></table><h1>baz</h1>, it would generate two wrapping pseudos at the top level, and one inside the th
- # [00:20] <AryehGregor> That sounds unexpected.
- # [00:20] <TabAtkins> The foo+* where foo has no next sibling works as expected - if the second selector is missing or matches nothing, it just wraps to the end of the first selector's parent box.
- # [00:20] * AryehGregor has thought about this problem a bit for MediaWiki, from the perspective of auto-adding divs around sections, but it's pretty hairy if there's any nesting
- # [00:20] <AryehGregor> Ah, I see.
- # [00:20] <TabAtkins> And yes, ::wrap(sqozzle, fooble) wouldn't do anything.
- # [00:21] <TabAtkins> The first selector has to match something for it to work at all.
- # [00:21] <AryehGregor> Wait, wouldn't ::wrap(squozzle, fooble) wrap around each squozzle element and all its subsequent siblings, if there's no fooble element?
- # [00:21] <TabAtkins> Yes.
- # [00:21] * Quits: zalan (n=zalan@catv-89-135-144-122.catv.broadband.hu) (Read error: 110 (Connection timed out))
- # [00:21] <AryehGregor> I think I get it now, then.
- # [00:21] <TabAtkins> kk
- # [00:21] <AryehGregor> It will break horribly if you have any kind of nesting, but oh well.
- # [00:22] <TabAtkins> It won't break. It just won't generate pseudos like you expect.
- # [00:23] <TabAtkins> The main problem is this: <b>foo</b> <i>bar</i> <b>baz</b> <i>qux</i>, ::wrap(b,b) {} ::wrap(i,i) {}
- # [00:23] <TabAtkins> That'll attempt to create overlapping wrapping pseudos, which is no good.
- # [00:23] <AryehGregor> That's a much bigger problem, yes.
- # [00:23] <TabAtkins> But I believe that we can resolve this with whatever we decide is appropriate for the same situation in the ::text() pseudo.
- # [00:23] <AryehGregor> I got the impression ::text() wasn't going anywhere.
- # [00:24] <TabAtkins> Nah, I'll be revisiting it in a bit. I'm pretty attached to the functionality.
- # [00:24] <TabAtkins> And the two authors of the group (me and Brad) both feel very strongly about it, so as long as we can get the implementors to grudgingly accept it, we should be golden.
- # [00:24] <TabAtkins> That just involves resolving all the ambiguities, and ensuring that it's not too expensive to match.
- # [00:25] <TabAtkins> "just"
- # [00:27] <AryehGregor> I think the point that it ties together style and content too tightly is pretty compelling.
- # [00:27] <TabAtkins> I think the argument that simple page transformations are unreasonably useful is pretty compelling. ^_^
- # [00:28] * Quits: cpharmston (n=Adium@office.threespot.com) ("Leaving.")
- # [00:28] <TabAtkins> ::text does indeed tie to content pretty tightly, but the current solution, where you wrap the content in <span>s according to the styling you want, is just as bad, it's just putting the problem in the HTML rather than the CSS.
- # [00:28] * Joins: cpharmston (n=Adium@office.threespot.com)
- # [00:28] <TabAtkins> ::wrap wouldn't be as tightly tied, since at least it just selects on the same things as normal CSS.
- # [00:31] <TabAtkins> The fact is, there simply isn't a generic declarative solution for complex prettifying of arbitrary content short of AI, and I think we're still pretty far from "page-style: make-it-pretty;".
- # [00:31] <TabAtkins> So style is fated to intertwine with content at least somewhat in some situations, just as behavior twines with content and style in js.
- # [00:32] <TabAtkins> Heh, page-visual-template: url(foo.pdf);
- # [00:32] * Quits: svl (n=me@ip565744a7.direct-adsl.nl) ("And back he spurred like a madman, shrieking a curse to the sky.")
- # [00:33] * Quits: jgornick (n=Joe@75-149-148-105-Minnesota.hfc.comcastbusiness.net)
- # [00:36] <Lachy> TabAtkins, what's this page-visual-template property?
- # [00:36] <TabAtkins> A pretend property implemented by AI, which takes a pdf and styles the page accordingly.
- # [00:36] <Lachy> oh.
- # [00:37] <cardona507> interesting
- # [00:37] <Lachy> I think what you're looking for is: html { content: url(design.png); }
- # [00:38] <TabAtkins> Nah, that's clearly not good for user interaction.
- # [00:39] <Lachy> fine then. binding: url(layout.xbl);
- # [00:39] <TabAtkins> But then I can't just hand it a file created by Advertising!
- # [00:39] <TabAtkins> Those people definitely won't know how to create xbl.
- # [00:39] <Lachy> oh, you poor lazy web developer ;-P
- # [00:39] <TabAtkins> Nope, I need an AI which will look at the page, match it with my content, and automagically do everything for me.
- # [00:40] <cardona507> heh
- # [00:40] <TabAtkins> But it needs to be a secret so I can still charge for 8 hours of work.
- # [00:44] <AryehGregor> That's always the tricky part.
- # [00:44] <AryehGregor> On the other hand, if we have AI like that, maybe we can all retire and have robots do everything for us.
- # [00:44] <TabAtkins> Sounds good to me.
- # [00:45] * TabAtkins is waiting for scarcity economics to die.
- # [00:46] <Lachy> TabAtkins, what's scarcity economics?
- # [00:46] <TabAtkins> Economics founded on scarcity. Essentially, nearly all of economics before the digital age.
- # [00:46] <TabAtkins> Anything where there is a limited quantity of product, such that you have to limit it.
- # [00:47] * Quits: Doc (n=chatzill@71-81-236-221.dhcp.stls.mo.charter.com) ("ChatZilla 0.9.86 [Firefox 3.5.7/20100106054534]")
- # [00:47] <Lachy> scarcity of phyical products is just reality. But, yeah, for digital, I agree, artificial scarcity is harmful
- # [00:47] <TabAtkins> When you have essentially infinite product (or similarly, when duplicating a product is essentially free), everyone benefits.
- # [00:47] <cardona507> free - chris anderson
- # [00:47] <Lachy> huh?
- # [00:47] <TabAtkins> Eh. With matter printers we'd reduce physical scarcity to whatever raw materials the printer needed.
- # [00:47] <Lachy> who is Chris Anderson?
- # [00:48] * Quits: Huvet (n=Emil@c-0acfe555.07-131-73746f39.cust.bredbandsbolaget.se) ("Leaving.")
- # [00:48] <AryehGregor> Universal constructors!
- # [00:48] <AryehGregor> Nanorobots!
- # [00:48] <Lachy> TabAtkins, you mean the Star Trek Replicators?
- # [00:48] <TabAtkins> Sure, whatever mechanic ended up being used for them.
- # [00:48] <TabAtkins> Lachy: Basically yeah.
- # [00:48] <cardona507> lachy http://www.youtube.com/watch?v=rPJuoziJaE4
- # [00:49] <cardona507> lachy - the editor in chief of wired - and the author of "the long tail" & "free"
- # [00:51] * Joins: Rik` (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net)
- # [00:52] <Lachy> I hate watching long videos on YouTube. Is that video downloadable from elsewhere?
- # [00:52] <Lachy> actually, I'll use miro to get it from YT
- # [00:53] <othermaciej> I finished fleshing out proposal 3
- # [00:54] <othermaciej> if anyone would like to review, comments would be appreciated
- # [00:54] * Joins: GarethAdams|Home (n=GarethAd@pdpc/supporter/active/GarethAdams)
- # [00:54] <othermaciej> I guess everything I wrote about equally applies to 3b
- # [00:54] <othermaciej> and almost all of it applies to 7
- # [00:55] <othermaciej> though you would have to strike "Does Not Introduce Redundant Elements for the Content" and justify "Adds Helpful Optional Elements for the Content"
- # [00:55] * Joins: sebmarkbage (n=miranda@213.80.108.29)
- # [00:58] <Lachy> othermaciej, should the content model of details say "preceded or followed by a dlabel element?" Shouldn't it be preceded only?
- # [00:58] * Joins: paul_irish (n=paul_iri@c-71-192-163-128.hsd1.nh.comcast.net)
- # [00:59] <othermaciej> Lachy: let me check what the spec says now
- # [00:59] * Quits: paul_irish (n=paul_iri@c-71-192-163-128.hsd1.nh.comcast.net) (Remote closed the connection)
- # [00:59] <TabAtkins> othermaciej: You have to escape all your html - there's one spot where a tag is clearly missing.
- # [00:59] <Lachy> it says one dt followed by dd
- # [00:59] * Joins: paul_irish (n=paul_iri@c-71-192-163-128.hsd1.nh.comcast.net)
- # [00:59] <Lachy> so the label must come first
- # [00:59] <TabAtkins> second paragraph of Impact.
- # [00:59] <othermaciej> Lachy: and it requires both?
- # [00:59] <othermaciej> Lachy: I will fix to match
- # [01:00] <TabAtkins> nm, I just fixed it.
- # [01:00] <Lachy> yes, both are required
- # [01:00] * Joins: cying_ (n=cying@70.90.171.153)
- # [01:00] * Quits: cying_ (n=cying@70.90.171.153) (Remote closed the connection)
- # [01:00] <Lachy> it wouldn't make sense to have a details without a label
- # [01:00] <Lachy> and even less sense to have no content
- # [01:01] <Lachy> hmm, unless it were just used as a placeholder in the page
- # [01:01] <othermaciej> fixed
- # [01:02] <Lachy> oh, sorry. the current spec does make dt optional
- # [01:02] <othermaciej> optional but has to be first?
- # [01:02] <othermaciej> I guess I should look myself
- # [01:02] <Lachy> yes
- # [01:02] * Quits: cying (n=cying@70.90.171.153) (Read error: 60 (Operation timed out))
- # [01:04] <othermaciej> ok really fixed
- # [01:04] <othermaciej> does folks like the suggested names in 3b better? (figcaption and dsummary instead of fcaption and dlabel)
- # [01:04] <TabAtkins> Hmm, dsummary. Yeah, I like it.
- # [01:05] <Lachy> I keep mistyping dlabel as dlable today.
- # [01:05] <othermaciej> The <details> spec text does call the caption-like thing "the summary"
- # [01:05] <AryehGregor> "label" makes more to sense to me, offhand.
- # [01:05] <othermaciej> heck, it could just be <summary> since that is presently unused
- # [01:05] <AryehGregor> Oh, that would be a slam dunk IMO.
- # [01:05] <TabAtkins> Sounds even better.
- # [01:05] <Lachy> though, I have been mistyping a lot today. Don't know why. maybe I'm just tired.
- # [01:06] <hober> But then you start to see <article><summary>...
- # [01:06] * Joins: paul_iri_ (n=paul_iri@c-71-192-163-128.hsd1.nh.comcast.net)
- # [01:06] * Quits: tametick (n=chatzill@chello084114134061.3.15.vie.surfer.at) (Read error: 104 (Connection reset by peer))
- # [01:06] <Lachy> I once suggested using <summary>, but I can't remember what the objections were at the time
- # [01:06] <hober> <article><dsummary> is much more obviously wrong, in the same way as <html><tbody>
- # [01:07] <Lachy> but I do think label is more appropriate here, given its effectively a control label
- # [01:08] <Lachy> and figcaption is better than fcaption
- # [01:08] <othermaciej> I can see an argument for both "label" and "summary"
- # [01:09] <TabAtkins> I like the way <summary> quite directly suggests what it should be, for maximum accessibility.
- # [01:09] <Dashiva> But it's not necessarily a summary, is it?
- # [01:09] <TabAtkins> Though it is clickable like a <label>, <summary> just matches better in my head.
- # [01:09] <TabAtkins> It's pretty close.
- # [01:10] <TabAtkins> Or rather, *should* be pretty close if <details> is used correctly.
- # [01:10] <TabAtkins> Note: I consider heading-like content to be close to a summary.
- # [01:10] <Lachy> I think summary sort of works as an alternative to figcaption, though its name would clash semantically with the table summary attribute, which is certainly not a caption
- # [01:10] * paul_iri_ is now known as paul_irish_
- # [01:11] <Lachy> but I don't see how summary works for details
- # [01:11] <TabAtkins> Lachy: Check http://www.whatwg.org/specs/web-apps/current-work/multipage/interactive-elements.html#the-details-element
- # [01:12] <TabAtkins> Note how the prose uses the term "summary" to describe the toggler bit.
- # [01:12] <Lachy> yeah, I saw that. I'm not sure that's a good description for it
- # [01:13] <Hixie> http://www.w3.org/mid/1263225612.26294.2.camel@chacal is interesting
- # [01:13] <othermaciej> in the spec example pictures (from the Mac OS X Finder), it's probably more accurate to call the short bits a "label" rather than a "summary"
- # [01:13] <othermaciej> Hixie: what is interesting about it?
- # [01:13] <othermaciej> Hixie: I think what Philippe is saying is:
- # [01:14] <Hixie> that the new rdfa group _doesn't_ include the text/html rdfa stuff
- # [01:14] <othermaciej> ah
- # [01:14] <Lachy> othermaciej, what are those controls called in OS X?
- # [01:14] <othermaciej> I was expecting that "RDFa in HTML" would stay an HTML WG deliverable
- # [01:14] <Hixie> Lachy: disclosure widgets is what i've heard them called
- # [01:14] <TabAtkins> Interesting, doesn't that make some of the statements about the pointed-out lacks in RDFa being addressed in 1.1 moot?
- # [01:15] <othermaciej> the term for the triangle part is "disclosure triangle"
- # [01:15] <Lachy> oh, yeah, I remember reading "disclosure triangles" in the Apple HIG
- # [01:15] <othermaciej> looking up what the control itself is called officially
- # [01:15] <TabAtkins> Or does it just mean the group responsible for it is different, but they'll still describe integration with HTML as well as XML?
- # [01:16] <Lachy> Hixie, did you make those Pillar magazine graphics?
- # [01:16] <Hixie> yes
- # [01:16] <Hixie> that's my cat
- # [01:17] <Lachy> yeah, I know
- # [01:17] <Lachy> I recognised it
- # [01:17] <AryehGregor> TabAtkins, RDFa in HTML never did anything but said how to integrate it, right? I assume it will just say how to integrate 1.1 just as much.
- # [01:17] <othermaciej> Lachy: "disclosure triangle" is the only term, the control is provided as just the spinny triangle, and not as the whole integrated thing that incorporates the contents
- # [01:17] <TabAtkins> AryehGregor: Well, at the very least it'll have to be updated for the various incompatible changes that 1.1 is making.
- # [01:18] <AryehGregor> I don't see how that's relevant to the statements you referred to, though.
- # [01:18] <TabAtkins> It is probably me just misreading the statement, so don't worry about it.
- # [01:19] <TabAtkins> Oh man, I've been off work for 15 minutes! Woo!
- # [01:22] * TabAtkins goes to play more Saints Row.
- # [01:22] * Quits: paul_irish (n=paul_iri@c-71-192-163-128.hsd1.nh.comcast.net) (Nick collision from services.)
- # [01:22] * paul_irish_ is now known as paul_irish
- # [01:29] * Quits: cpharmston (n=Adium@office.threespot.com) ("Leaving.")
- # [01:30] * Quits: ap (n=ap@17.246.19.5)
- # [01:31] * Quits: tndH (n=Rob@cpc2-leed18-0-0-cust427.leed.cable.ntl.com) ("ChatZilla 0.9.86-rdmsoft [XULRunner 1.9.0.1/2008072406]")
- # [01:32] * Quits: gavin_ (n=gavin@firefox/developer/gavin) (Read error: 60 (Operation timed out))
- # [01:34] * Joins: ap (n=ap@17.246.19.5)
- # [01:34] * Joins: gavin_ (n=gavin@firefox/developer/gavin)
- # [01:37] * Joins: wakaba_ (n=wakaba_@122x221x184x68.ap122.ftth.ucom.ne.jp)
- # [01:38] * Quits: yutak_home (n=kee@N038037.ppp.dion.ne.jp) ("Ex-Chat")
- # [01:45] * Joins: archtech (i=stanv@83.228.56.37)
- # [01:45] * Quits: cardona507 (n=cardona5@c-67-180-160-250.hsd1.ca.comcast.net)
- # [01:59] * Joins: tkent (n=tkent@220.109.219.244)
- # [02:09] * Quits: gratz|home (n=gratz@cpc3-brig15-2-0-cust237.3-3.cable.virginmedia.com) ("Leaving")
- # [02:29] * Quits: roc (n=roc@203-97-204-82.dsl.clear.net.nz)
- # [02:35] * Quits: dglazkov (n=dglazkov@nat/google/x-lyxnynyejiwicisv)
- # [02:38] * Joins: yutak (n=yutak@220.109.219.244)
- # [02:44] * Quits: ttepasse (n=ttepas--@dslb-084-060-052-161.pools.arcor-ip.net) ("xhtml2")
- # [02:44] * Joins: tantek (n=tantek@70-36-139-203.dsl.dynamic.sonic.net)
- # [02:47] * Joins: cying (n=cying@70.90.171.153)
- # [02:47] * Quits: ap (n=ap@17.246.19.5)
- # [02:50] <othermaciej> Hixie: I keep accidentally opening http://damowmow.com/playground/htmlwg/chart.html in released Safari instead of trunk
- # [02:50] <othermaciej> Hixie: I gotta get that bug into a software update for my own sanity
- # [02:51] * Joins: yutak_ (n=yutak@220.109.219.244)
- # [02:51] <Hixie> hah
- # [03:00] * Joins: cpharmston (n=Adium@68.48.43.198)
- # [03:03] * Joins: cardona507 (n=cardona5@c-67-180-160-250.hsd1.ca.comcast.net)
- # [03:03] * Parts: cpharmston (n=Adium@68.48.43.198)
- # [03:04] * Joins: _Utkarsh (n=admin@117.201.82.14)
- # [03:06] * Joins: yutak__ (n=yutak@220.109.219.244)
- # [03:06] * Joins: jgornick (n=Joe@c-76-113-143-72.hsd1.mn.comcast.net)
- # [03:10] * Quits: cardona507 (n=cardona5@c-67-180-160-250.hsd1.ca.comcast.net)
- # [03:12] * Quits: gsnedders (n=gsnedder@204.232.194.186) (Read error: 60 (Operation timed out))
- # [03:13] <othermaciej> Hixie: is it useful to have separate "HTML5 spec bugs" and "HTML5 spec proposals" components in w3c bugzilla?
- # [03:13] <othermaciej> I'm thinking of suggesting they be folded into one
- # [03:14] <Hixie> no, but please don't change that because that would break all my queries
- # [03:14] * Quits: payman` (n=payman@h85-8-2-58.static.se.alltele.net) (Read error: 60 (Operation timed out))
- # [03:14] * Quits: dbaron (n=dbaron@nat/mozilla/x-spmjrqmnkmoqqsha) ("8403864 bytes have been tenured, next gc will be global.")
- # [03:14] <Hixie> all my queries, bookmarks, scripts, etc, use those two components
- # [03:14] <othermaciej> I see
- # [03:14] <Hixie> (similarly, please don't add new components)
- # [03:14] <othermaciej> is it possible to make, say, the "proposals" one closed to new bugs without removing it fully?
- # [03:14] <Hixie> dunno
- # [03:14] <Hixie> is it causing a problem?
- # [03:14] * Joins: roc (n=roc@121-72-212-45.dsl.telstraclear.net)
- # [03:15] <othermaciej> not really, just minor annoyance when forming a query by hand
- # [03:15] * Quits: yutak (n=yutak@220.109.219.244) (Read error: 110 (Connection timed out))
- # [03:15] <Hixie> ah
- # [03:15] <othermaciej> I do think separate drafts should have separate components, cause otherwise it's pretty hard to separately track when each gets to 0 bugs in a non-terminal state
- # [03:16] * Joins: gsnedders (n=gsnedder@204.232.194.186)
- # [03:16] <Hixie> well if there are other editors, they should get components, sure, but for drafts i edit i treat them all as one draft anyway
- # [03:16] <Hixie> so it's moot
- # [03:16] * Quits: Utkarsh (n=admin@117.201.81.116) (Read error: 110 (Connection timed out))
- # [03:17] <othermaciej> so I'm seeing 231 bugs resolved since the start of the month
- # [03:17] <othermaciej> 67 still open
- # [03:17] <othermaciej> incoming rate must be out of control
- # [03:17] * Quits: cying (n=cying@70.90.171.153)
- # [03:17] <othermaciej> since there were fewer than 200 open on the 1st
- # [03:17] <Hixie> incoming rate grew significantly higher than i expected, yes
- # [03:17] <Hixie> though i don't track that
- # [03:18] <Hixie> so i don't have numbers
- # [03:19] <othermaciej> 115 created since the start of the month
- # [03:19] * Quits: roc (n=roc@121-72-212-45.dsl.telstraclear.net) (Read error: 60 (Operation timed out))
- # [03:20] <TabAtkins> Jeez, that's 10 a day.
- # [03:21] <othermaciej> FWIW Hixie's accept/reject rate is still around 50% of the non-garbage bugs
- # [03:22] <othermaciej> (where by "garbage" I mean duplicate or invalid)
- # [03:22] <othermaciej> I looked at some past months and the rate seems to be slowly going down over time
- # [03:22] <othermaciej> the highest I found was 70%
- # [03:22] <Hixie> as in i'm rejecting more?
- # [03:22] <othermaciej> that seems like pretty much whatI would expect for a maturing spec
- # [03:22] <othermaciej> yes, you seem to be rejecting more percentage-wise than in, say, July
- # [03:23] <Hixie> i'd expect the rate to go the other way, actually, because the problems should be getting more trivial (e.g. reviewers should be moving from "this doesn't work" to "this is misspelt")
- # [03:23] * Joins: cardona507 (n=cardona5@c-67-180-160-250.hsd1.ca.comcast.net)
- # [03:24] <othermaciej> well some reviewers are still submitting requests for new features
- # [03:24] <Hixie> there might be a better correlation of rate vs reporter than rate vs time
- # [03:24] <othermaciej> but you're right, I could imagine it going the other way if the proportion of editorial issues was increasing as one might expect
- # [03:24] <othermaciej> possible - I did not try to measure that cause it would be too much work :-)
- # [03:27] * Joins: roc (n=roc@121-72-212-45.dsl.telstraclear.net)
- # [03:35] * Quits: othermaciej (n=mjs@17.244.9.84)
- # [03:40] * Quits: tantek (n=tantek@70-36-139-203.dsl.dynamic.sonic.net)
- # [03:44] * Quits: drunknbass_work (n=aaron@pool-71-107-253-243.lsanca.dsl-w.verizon.net)
- # [03:47] * Joins: dglazkov (n=dglazkov@c-67-188-0-62.hsd1.ca.comcast.net)
- # [03:56] * Quits: dglazkov (n=dglazkov@c-67-188-0-62.hsd1.ca.comcast.net)
- # [04:04] * Quits: omz_32 (n=omz@host246.190-227-52.telecom.net.ar) ("Leaving")
- # [04:19] <cardona507> since we are moving into a fluid versionless HTML - will we also move into a versionless web applications?
- # [04:26] * Quits: csarven (n=csarven@ip157-77-212-87.adsl2.static.versatel.nl) ("Leaving.")
- # [04:29] * Joins: erlehmann (n=erlehman@82.113.121.19)
- # [04:42] * Quits: jgornick (n=Joe@c-76-113-143-72.hsd1.mn.comcast.net) ("Leaving")
- # [04:51] * Joins: MikeSmith (n=MikeSmit@dhcp-247-72.mag.keio.ac.jp)
- # [04:52] * Quits: MikeSmith (n=MikeSmit@dhcp-247-72.mag.keio.ac.jp) (Client Quit)
- # [04:52] * Joins: MikeSmith (n=MikeSmit@dhcp-247-72.mag.keio.ac.jp)
- # [04:52] * Quits: MikeSmith (n=MikeSmit@dhcp-247-72.mag.keio.ac.jp) (Client Quit)
- # [04:56] * Joins: dglazkov (n=dglazkov@c-67-188-0-62.hsd1.ca.comcast.net)
- # [05:03] * Quits: Rik` (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net) (Read error: 104 (Connection reset by peer))
- # [05:04] * Joins: Rik` (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net)
- # [05:13] * Joins: MikeSmith (n=MikeSmit@tea12.w3.mag.keio.ac.jp)
- # [05:18] * Quits: MikeSmith (n=MikeSmit@tea12.w3.mag.keio.ac.jp) (Client Quit)
- # [05:18] * Joins: MikeSmith (n=MikeSmit@tea12.w3.mag.keio.ac.jp)
- # [05:39] * Quits: _Utkarsh (n=admin@117.201.82.14) (Read error: 110 (Connection timed out))
- # [05:41] * Quits: MikeSmith (n=MikeSmit@tea12.w3.mag.keio.ac.jp) ("Tomorrow to fresh woods, and pastures new.")
- # [05:43] * Joins: MikeSmith (n=MikeSmit@tea12.w3.mag.keio.ac.jp)
- # [05:48] * Joins: othermaciej (n=mjs@c-69-181-42-237.hsd1.ca.comcast.net)
- # [06:18] * Joins: TabAtkins_ (n=chatzill@70-139-15-246.lightspeed.rsbgtx.sbcglobal.net)
- # [06:18] * Quits: TabAtkins (n=chatzill@70-139-15-246.lightspeed.rsbgtx.sbcglobal.net) (Read error: 60 (Operation timed out))
- # [06:19] * TabAtkins_ is now known as TabAtkins
- # [06:30] * Quits: cardona507 (n=cardona5@c-67-180-160-250.hsd1.ca.comcast.net) (Read error: 104 (Connection reset by peer))
- # [06:30] * Quits: roc (n=roc@121-72-212-45.dsl.telstraclear.net)
- # [06:30] * Joins: cardona507 (n=cardona5@c-67-180-160-250.hsd1.ca.comcast.net)
- # [06:30] * Quits: flea (n=flea@71.23.116.3) (Read error: 110 (Connection timed out))
- # [06:30] * Joins: flea (n=flea@71.23.116.3)
- # [06:34] * Joins: cying (n=cying@adsl-75-18-220-166.dsl.pltn13.sbcglobal.net)
- # [06:37] * Quits: dglazkov (n=dglazkov@c-67-188-0-62.hsd1.ca.comcast.net)
- # [06:53] * Quits: jwalden (n=waldo@71.147.38.186) ("ChatZilla 0.9.85-rdmsoft [XULRunner 1.9.1.6/20091216142458]")
- # [07:06] * Quits: flea (n=flea@71.23.116.3) (Read error: 110 (Connection timed out))
- # [07:07] * Quits: TabAtkins (n=chatzill@70-139-15-246.lightspeed.rsbgtx.sbcglobal.net) (Read error: 110 (Connection timed out))
- # [07:21] * Quits: tyoshino_ (n=tyoshino@220.109.219.244) ("Leaving...")
- # [07:25] * Quits: Rik` (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net) (Read error: 113 (No route to host))
- # [07:37] * Quits: archtech (i=stanv@83.228.56.37) (Client Quit)
- # [07:44] * Joins: zcorpan__ (n=zcorpan@c83-252-193-59.bredband.comhem.se)
- # [07:45] * Joins: zalan (n=zalan@catv-89-135-144-122.catv.broadband.hu)
- # [07:45] * Quits: zalan (n=zalan@catv-89-135-144-122.catv.broadband.hu) (Remote closed the connection)
- # [07:54] * Quits: gavin_ (n=gavin@firefox/developer/gavin) (Read error: 110 (Connection timed out))
- # [07:55] * Joins: zcorpan (n=zcorpan@c83-252-193-59.bredband.comhem.se)
- # [07:55] * Joins: gavin_ (n=gavin@firefox/developer/gavin)
- # [07:59] * Quits: zcorpan__ (n=zcorpan@c83-252-193-59.bredband.comhem.se) (Read error: 60 (Operation timed out))
- # [08:17] * Joins: maikmerten (n=merten@ls5dhcp196.cs.uni-dortmund.de)
- # [08:20] * Quits: cardona507 (n=cardona5@c-67-180-160-250.hsd1.ca.comcast.net) ("zzzzz")
- # [08:20] * Joins: zalan (n=zalan@catv-89-135-144-122.catv.broadband.hu)
- # [08:22] * Quits: zcorpan (n=zcorpan@c83-252-193-59.bredband.comhem.se) (Read error: 60 (Operation timed out))
- # [08:29] * Quits: MikeSmith (n=MikeSmit@tea12.w3.mag.keio.ac.jp) ("Tomorrow to fresh woods, and pastures new.")
- # [08:30] * Joins: MikeSmith (n=MikeSmit@tea12.w3.mag.keio.ac.jp)
- # [08:33] <hsivonen> Is the Director going to appoint three so far unannounced individuals to the TAG in addition to the re-elected and the continuing participants
- # [08:33] * hsivonen tries to understand http://www.w3.org/News/2010#entry-8694
- # [08:37] <othermaciej> hsivonen: that's what it sounds like
- # [08:38] <othermaciej> hsivonen: you should run for TAG next time
- # [08:38] * Joins: tantek (n=tantek@70-36-139-203.dsl.dynamic.sonic.net)
- # [08:38] <othermaciej> I'd tell my AC rep to vote for you :-)
- # [08:38] <othermaciej> and it would make their minutes fun to read I bet
- # [08:41] * Quits: zalan (n=zalan@catv-89-135-144-122.catv.broadband.hu)
- # [08:43] * Joins: Maurice (n=ano@a80-101-46-164.adsl.xs4all.nl)
- # [08:46] * Joins: zcorpan__ (n=zcorpan@c83-252-193-59.bredband.comhem.se)
- # [08:49] * Joins: zalan (n=zalan@catv-89-135-144-122.catv.broadband.hu)
- # [08:49] * Quits: cying (n=cying@adsl-75-18-220-166.dsl.pltn13.sbcglobal.net)
- # [08:55] * Joins: roc (n=roc@121-72-212-45.dsl.telstraclear.net)
- # [08:59] * Quits: roc (n=roc@121-72-212-45.dsl.telstraclear.net) (Read error: 60 (Operation timed out))
- # [09:07] * Joins: roc (n=roc@121-72-212-45.dsl.telstraclear.net)
- # [09:13] * Joins: workmad3 (n=workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com)
- # [09:21] * Quits: fupp (n=User@mg038a.studby.ntnu.no) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: Vito` (n=vitorio@cpe-68-203-22-47.austin.res.rr.com) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: hoodow (n=hoodow@2001:41d0:1:f5e5:0:0:0:666) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: roc (n=roc@121-72-212-45.dsl.telstraclear.net) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: Maurice (n=ano@a80-101-46-164.adsl.xs4all.nl) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: gavin_ (n=gavin@firefox/developer/gavin) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: wakaba_ (n=wakaba_@122x221x184x68.ap122.ftth.ucom.ne.jp) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: GarethAdams|Home (n=GarethAd@pdpc/supporter/active/GarethAdams) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: cedricv (n=cedric@112.199.162.33) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: smaug (n=chatzill@cs181150024.pp.htv.fi) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: GarethAdams|Work (n=GarethAd@pdpc/supporter/active/GarethAdams) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: webben (n=benjamin@173-45-238-110.slicehost.net) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: doublec (n=doublec@li30-216.members.linode.com) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: riven (n=riven@53518387.cable.casema.nl) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: karlushi (n=karlushi@fw.vdl2.ca) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: GPHemsley (n=GPHemsle@pdpc/supporter/student/GPHemsley) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: Yudai (n=Yudai@p6ea250.kngwnt01.ap.so-net.ne.jp) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: Rik|work (n=Rik|work@fw01d.skyrock.net) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: navap (i=navap@gateway/shell/blinkenshell.org/x-izhaemnnwdfjrrak) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: maikmerten (n=merten@ls5dhcp196.cs.uni-dortmund.de) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: gavin (n=gavin@firefox/developer/gavin) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: AryehGregor (n=Simetric@mediawiki/simetrical) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: karlcow (n=karl@nerval.la-grange.net) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: bzed (n=bzed@devel.recluse.de) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: workmad3 (n=workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: tantek (n=tantek@70-36-139-203.dsl.dynamic.sonic.net) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: Amorphous (i=jan@unaffiliated/amorphous) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: Dashiva (i=Dashiva@wikia/Dashiva) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: foolip (n=philip@h-63-95.A163.priv.bahnhof.se) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: scherkus_ (n=scherkus@74.125.59.73) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: erikvold (n=erikvold@S01060024012860e9.gv.shawcable.net) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: ukai (n=ukai@220.109.219.244) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: ray (i=ray@drong.notacat.org) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: zalan (n=zalan@catv-89-135-144-122.catv.broadband.hu) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: erlehmann (n=erlehman@82.113.121.19) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: yutak_ (n=yutak@220.109.219.244) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: ojan (n=ojan@72.14.229.81) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: hober (n=ted@unaffiliated/hober) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: k0rnel (n=k0rnel@krtko.org) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: dimich (n=dimich@74.125.59.65) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: jtbandes (n=jtbandes@unaffiliated/jtbandes) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: JohnResig (n=JohnResi@ejohn.org) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: jarib (i=jarib@li139-179.members.linode.com) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: ciaran_lee (i=leecn@spoon.netsoc.tcd.ie) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: egn (n=egn@li101-203.members.linode.com) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: hendry (n=hendry@webvm.net) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: drry (n=drry@unaffiliated/drry) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: bobs_ (n=oeskola@kekkonen.cs.hut.fi) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: jmb (n=jmb@login.ecs.soton.ac.uk) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: MikeSmith (n=MikeSmit@tea12.w3.mag.keio.ac.jp) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: othermaciej (n=mjs@c-69-181-42-237.hsd1.ca.comcast.net) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: paul_irish (n=paul_iri@c-71-192-163-128.hsd1.nh.comcast.net) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: daedb (n=daed@h11n1fls34o986.telia.com) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: hsivonen (n=hsivonen@130.233.41.50) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: peroo (n=peroo@peroo.xen.prgmr.com) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: Ruetobas (i=Ruetobas@114-32-107-228.HINET-IP.hinet.net) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: jorlow (n=jorlow@nat/google/x-zwkypjucygexmvgi) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: hamaji (n=hamaji@220.109.219.244) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: payman (n=payman@pat.se.opera.com) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: crash\ (i=crash@lubyte.de) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: Philip` (n=philip@zaynar.co.uk) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: kinetik (n=kinetik@121.98.132.55) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: Hixie (i=ianh@trivini.no) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: broquaint (i=62cb5519@81.102.240.104) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: inimino (n=inimino@atekomi.inimino.org) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: ivan` (n=ivan@unaffiliated/ivan/x-000001) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: danbri (n=danbri@unaffiliated/danbri) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: pablof (n=palbo@pat-tdc.opera.com) (niven.freenode.net irc.freenode.net)
- # [09:21] * Quits: deltab (n=deltab@82-46-155-15.cable.ubr02.smal.blueyonder.co.uk) (niven.freenode.net irc.freenode.net)
- # [09:23] * Joins: workmad3 (n=workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com)
- # [09:23] * Joins: roc (n=roc@121-72-212-45.dsl.telstraclear.net)
- # [09:23] * Joins: zalan (n=zalan@catv-89-135-144-122.catv.broadband.hu)
- # [09:23] * Joins: Maurice (n=ano@a80-101-46-164.adsl.xs4all.nl)
- # [09:23] * Joins: tantek (n=tantek@70-36-139-203.dsl.dynamic.sonic.net)
- # [09:23] * Joins: MikeSmith (n=MikeSmit@tea12.w3.mag.keio.ac.jp)
- # [09:23] * Joins: maikmerten (n=merten@ls5dhcp196.cs.uni-dortmund.de)
- # [09:23] * Joins: gavin_ (n=gavin@firefox/developer/gavin)
- # [09:23] * Joins: othermaciej (n=mjs@c-69-181-42-237.hsd1.ca.comcast.net)
- # [09:23] * Joins: erlehmann (n=erlehman@82.113.121.19)
- # [09:23] * Joins: yutak_ (n=yutak@220.109.219.244)
- # [09:23] * Joins: wakaba_ (n=wakaba_@122x221x184x68.ap122.ftth.ucom.ne.jp)
- # [09:23] * Joins: paul_irish (n=paul_iri@c-71-192-163-128.hsd1.nh.comcast.net)
- # [09:23] * Joins: GarethAdams|Home (n=GarethAd@pdpc/supporter/active/GarethAdams)
- # [09:23] * Joins: ojan (n=ojan@72.14.229.81)
- # [09:23] * Joins: Amorphous (i=jan@unaffiliated/amorphous)
- # [09:23] * Joins: daedb (n=daed@h11n1fls34o986.telia.com)
- # [09:23] * Joins: hober (n=ted@unaffiliated/hober)
- # [09:23] * Joins: cedricv (n=cedric@112.199.162.33)
- # [09:23] * Joins: pablof (n=palbo@pat-tdc.opera.com)
- # [09:23] * Joins: smaug (n=chatzill@cs181150024.pp.htv.fi)
- # [09:23] * Joins: GarethAdams|Work (n=GarethAd@pdpc/supporter/active/GarethAdams)
- # [09:23] * Joins: Ruetobas (i=Ruetobas@114-32-107-228.HINET-IP.hinet.net)
- # [09:23] * Joins: bzed (n=bzed@devel.recluse.de)
- # [09:23] * Joins: karlcow (n=karl@nerval.la-grange.net)
- # [09:23] * Joins: riven (n=riven@53518387.cable.casema.nl)
- # [09:23] * Joins: erikvold (n=erikvold@S01060024012860e9.gv.shawcable.net)
- # [09:23] * Joins: AryehGregor (n=Simetric@mediawiki/simetrical)
- # [09:23] * Joins: foolip (n=philip@h-63-95.A163.priv.bahnhof.se)
- # [09:23] * Joins: ivan` (n=ivan@unaffiliated/ivan/x-000001)
- # [09:23] * Joins: danbri (n=danbri@unaffiliated/danbri)
- # [09:23] * Joins: gavin (n=gavin@firefox/developer/gavin)
- # [09:23] * Joins: fupp (n=User@mg038a.studby.ntnu.no)
- # [09:23] * Joins: navap (i=navap@gateway/shell/blinkenshell.org/x-izhaemnnwdfjrrak)
- # [09:23] * Joins: ciaran_lee (i=leecn@spoon.netsoc.tcd.ie)
- # [09:23] * Joins: payman (n=payman@pat.se.opera.com)
- # [09:23] * Joins: karlushi (n=karlushi@fw.vdl2.ca)
- # [09:23] * Joins: Dashiva (i=Dashiva@wikia/Dashiva)
- # [09:23] * Joins: scherkus_ (n=scherkus@74.125.59.73)
- # [09:23] * Joins: dimich (n=dimich@74.125.59.65)
- # [09:23] * Joins: inimino (n=inimino@atekomi.inimino.org)
- # [09:23] * Joins: hamaji (n=hamaji@220.109.219.244)
- # [09:23] * Joins: hoodow (n=hoodow@2001:41d0:1:f5e5:0:0:0:666)
- # [09:23] * Joins: Rik|work (n=Rik|work@fw01d.skyrock.net)
- # [09:23] * Joins: hendry (n=hendry@webvm.net)
- # [09:23] * Joins: Yudai (n=Yudai@p6ea250.kngwnt01.ap.so-net.ne.jp)
- # [09:23] * Joins: GPHemsley (n=GPHemsle@pdpc/supporter/student/GPHemsley)
- # [09:23] * Joins: Hixie (i=ianh@trivini.no)
- # [09:23] * Joins: bobs_ (n=oeskola@kekkonen.cs.hut.fi)
- # [09:23] * Joins: broquaint (i=62cb5519@81.102.240.104)
- # [09:23] * Joins: ray (i=ray@drong.notacat.org)
- # [09:23] * Joins: jmb (n=jmb@login.ecs.soton.ac.uk)
- # [09:23] * Joins: k0rnel (n=k0rnel@krtko.org)
- # [09:23] * Joins: jarib (i=jarib@li139-179.members.linode.com)
- # [09:23] * Joins: drry (n=drry@unaffiliated/drry)
- # [09:23] * Joins: ukai (n=ukai@220.109.219.244)
- # [09:23] * Joins: jtbandes (n=jtbandes@unaffiliated/jtbandes)
- # [09:23] * Joins: peroo (n=peroo@peroo.xen.prgmr.com)
- # [09:23] * Joins: JohnResig (n=JohnResi@ejohn.org)
- # [09:23] * Joins: crash\ (i=crash@lubyte.de)
- # [09:23] * Joins: Philip` (n=philip@zaynar.co.uk)
- # [09:23] * Joins: kinetik (n=kinetik@121.98.132.55)
- # [09:23] * Joins: hsivonen (n=hsivonen@130.233.41.50)
- # [09:23] * Joins: jorlow (n=jorlow@nat/google/x-zwkypjucygexmvgi)
- # [09:23] * Joins: egn (n=egn@li101-203.members.linode.com)
- # [09:23] * Joins: Vito` (n=vitorio@cpe-68-203-22-47.austin.res.rr.com)
- # [09:23] * Joins: webben (n=benjamin@173-45-238-110.slicehost.net)
- # [09:23] * Joins: doublec (n=doublec@li30-216.members.linode.com)
- # [09:23] * Joins: deltab (n=deltab@82-46-155-15.cable.ubr02.smal.blueyonder.co.uk)
- # [09:35] <zcorpan__> Hixie: http://www.whatwg.org/specs/web-apps/html5/ gives me 500
- # [09:36] <Hixie> try now
- # [09:37] * hsivonen never remembers how Windows "NT" version numbers map to branding names
- # [09:38] * Joins: virtuelv (n=virtuelv@pat-tdc.opera.com)
- # [09:39] <zcorpan__> Hixie: oh, it's removed?
- # [09:39] <Hixie> read your whatwg mail :-)
- # [09:40] <zcorpan__> not today
- # [09:41] <Hixie> http://lists.whatwg.org/htdig.cgi/whatwg-whatwg.org/2010-January/024708.html
- # [09:42] * Joins: Rik` (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net)
- # [09:43] <hsivonen> hmm. still 3 columns at http://wiki.whatwg.org/wiki/FAQ#What_are_the_various_versions_of_the_spec.3F
- # [09:43] <hsivonen> If this trend continues, I guess I'll have to migrate html5.validator.nu to validator.nu and migrate validator.nu to custom.validator.nu
- # [09:43] <hsivonen> or something
- # [09:44] <hsivonen> calling the primary UI "html5" was probably a bad idea in the first place
- # [09:44] <Hixie> heh
- # [09:44] <hsivonen> of course, "html5" wasn't the primary UI when the "html5" UI was minted
- # [09:45] * Quits: workmad3 (n=workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com) (Remote closed the connection)
- # [09:45] <hsivonen> changing the meaning of the validator.nu UI sucks for the APIs and for bookmarks...
- # [09:45] <hsivonen> and decoupling the API endpoints from the UI URLs would suck, too
- # [09:45] <hsivonen> well, I think I'm going to wait and see how things develop
- # [09:46] <hsivonen> although by HTML6, I need to rearrange the UI anyway
- # [09:47] <Hixie> what is this "html6" you speak of? :-P
- # [09:48] <hsivonen> well, HTML5.next
- # [09:49] * Quits: yutak__ (n=yutak@220.109.219.244) ("Leaving")
- # [09:49] <zcorpan__> HTML5 is HTML5.next
- # [09:52] * Joins: yutak (n=yutak@220.109.219.244)
- # [10:03] * Quits: gavin_ (n=gavin@firefox/developer/gavin) (Read error: 60 (Operation timed out))
- # [10:04] * Joins: gavin_ (n=gavin@firefox/developer/gavin)
- # [10:12] * Quits: GarethAdams|Home (n=GarethAd@pdpc/supporter/active/GarethAdams)
- # [10:13] <MikeSmith> Hixie: have you run into cvs locking problem with the last few checkins?
- # [10:13] * Joins: Huvet (n=Emil@c-0acfe555.07-131-73746f39.cust.bredbandsbolaget.se)
- # [10:14] <Hixie> no
- # [10:15] <MikeSmith> ok
- # [10:16] * Joins: Utkarsh (n=admin@117.201.86.208)
- # [10:23] <MikeSmith> Hixie: revision number no longer shows up correctly in the line above the copyright
- # [10:24] <MikeSmith> I think because you have to change it to $Revision: $
- # [10:24] <MikeSmith> with a colon
- # [10:24] <MikeSmith> maybe
- # [10:24] <Hixie> oops
- # [10:24] <Hixie> will fix
- # [10:32] * Quits: othermaciej (n=mjs@c-69-181-42-237.hsd1.ca.comcast.net)
- # [10:38] * Joins: mpt (n=mpt@canonical/mpt)
- # [10:41] * Joins: ROBOd (n=robod@89.122.216.38)
- # [10:49] * Joins: tametick (n=chatzill@chello084114134061.3.15.vie.surfer.at)
- # [10:53] * Joins: tndH (n=Rob@cpc2-leed18-0-0-cust427.leed.cable.ntl.com)
- # [10:55] * Joins: Phae (n=phaeness@gateb.thls.bbc.co.uk)
- # [10:55] * Joins: LD (n=LD@188-220-17-188.zone11.bethere.co.uk)
- # [10:56] * Quits: LD (n=LD@188-220-17-188.zone11.bethere.co.uk) (Client Quit)
- # [10:56] <roc> is it true that the lists.w3.org archives aren't indexed by Google?
- # [10:57] <Hixie> http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=site:lists.w3.org
- # [10:57] <Hixie> Results 1 - 10 of about 1,080,000 from lists.w3.org
- # [10:58] <zcorpan__> how come i have about 1,520,000
- # [10:59] <Hixie> it's an approximation
- # [10:59] <Hixie> probably based on how many servers responded, and you probably hit a different data center than i do
- # [10:59] <jgraham> Quite a bad one it seems :)
- # [10:59] <roc> hmm
- # [10:59] <roc> how come my searches never find anything
- # [11:00] <Hixie> (i actually have no idea what it's based on)
- # [11:00] <Lachy> I get 1,090,000.
- # [11:00] <Hixie> roc: what are you looking or?
- # [11:00] * Quits: ciaran_lee (i=leecn@spoon.netsoc.tcd.ie) (Read error: 60 (Operation timed out))
- # [11:00] <jgraham> It should just say results 1-10 of about 1E6
- # [11:00] <roc> e.g.
- # [11:00] <roc> www-style making pt a physical unit
- # [11:00] <Lachy> zcorpan__, also, google.se returns different resutls from google.com
- # [11:00] * Joins: ciaran_lee (i=leecn@spoon.netsoc.tcd.ie)
- # [11:00] <roc> that query doesn't even bring up lists.w3.org in the top-10
- # [11:00] <Hixie> http://www.google.com/search?hl=en&safe=off&q=site:lists.w3.org+www-style+making+pt+a+physical+unit&aq=f&oq=&aqi=
- # [11:01] <Hixie> i guess lists.w3.org just doesn't seem very useful to google's algorithms
- # [11:01] <Hixie> hard to argue with that position :-P
- # [11:01] <roc> also
- # [11:01] <roc> "www-style archive" brings up lists.w3.org as the top hit
- # [11:02] * Quits: MikeSmith (n=MikeSmit@tea12.w3.mag.keio.ac.jp) ("Tomorrow to fresh woods, and pastures new.")
- # [11:02] <roc> but just http://lists.w3.org, not, say, "www-style@w3.org Mail Archives" (http://lists.w3.org/Archives/Public/www-style/)
- # [11:02] <Hixie> weird
- # [11:03] <Hixie> you can if you search for that a lot, click "add a result" at the bottom, and enter that URL for that query
- # [11:03] <zcorpan__> http://www.bing.com/search?q=www-style+making+pt+a+physical+unit&go=&form=QBLH&filt=all
- # [11:04] <doublec> search for 'w3c dysfunctional'
- # [11:04] <doublec> that brings up lists.w3c.org right away
- # [11:04] <zcorpan__> clearly bing is better than google
- # [11:04] <doublec> lists.w3.org that is - public-html
- # [11:04] <hsivonen> I tried to use Bing as my default engine for a couple of hours and then went back to Google due to search quality issues
- # [11:05] * Joins: mat_t (n=mattomas@91.189.88.12)
- # [11:05] <hsivonen> though it could be that only Bing's Finland region sucks
- # [11:05] <hsivonen> Bing seems to insist on making the search results locale-sensitive--badly
- # [11:06] <zcorpan__> there should be an <input type=range> for locale-senitiveness
- # [11:07] <zcorpan__> when i search for an article about some topic, i don't care about locale at all
- # [11:07] <zcorpan__> but when i search for a restaurant, i do
- # [11:08] <hsivonen> GPS-assisted restaurant search on Google Maps Mobile is awesome
- # [11:08] <hsivonen> (when outside Helsinki, that is. for Helsinki, there's a specialized service that beats Google on restaurants)
- # [11:08] <zcorpan__> maybe search engines could figure out from the query whether to be locale-sensitive or not
- # [11:14] <hsivonen> I believe they try with varying levels of success
- # [11:15] <roc> hmm
- # [11:15] <roc> Bing IS better than Google
- # [11:15] <roc> I should pay more attention to Asa
- # [11:16] <roc> I think Google tries to be locale-sensitive with great success
- # [11:17] <roc> my search for "empress garden" returns the correct Auckland restaurant as the top hit (actually the top several hits) ... I haven't searched for it before
- # [11:18] <hsivonen> roc: I tried to pay attention to Asa's recommendation, but the results were bad for me.
- # [11:18] <roc> I was being sarcastic
- # [11:19] <roc> I don't have an "add a result" option on Google
- # [11:20] * roc sends feedback
- # [11:21] <hsivonen> Y! outsourcing their search to Bing doesn't improve the state of competition :-(
- # [11:27] <zcorpan__> what's Asa?
- # [11:28] <hsivonen> s/what/who/
- # [11:28] <hsivonen> zcorpan__: http://weblogs.mozillazine.org/asa/archives/2009/12/if_you_have_nothing.html
- # [11:29] * Quits: wakaba_ (n=wakaba_@122x221x184x68.ap122.ftth.ucom.ne.jp) ("Leaving...")
- # [11:29] <hsivonen> aargh. are data: URLs that don't have <script> elements synchronously navigated to in WebKit?
- # [11:32] * Joins: adactio (n=adactio@host213-123-197-180.in-addr.btopenworld.com)
- # [11:36] <Hixie> roc: are you logged into google?
- # [11:36] * Joins: SFauconnier (n=SFauconn@78-21-41-133.access.telenet.be)
- # [11:36] <Hixie> roc: if you're logged in, it should be the first link on the left under the Goooooooogle paginator
- # [11:37] <roc> ahah
- # [11:37] <roc> thanks
- # [11:37] <zcorpan__> hmm, seems MessageChannel is supported in webkit but not in firefox
- # [11:37] <hsivonen> Hixie: are you actively following the about:blank discussion in dev.platform?
- # [11:38] <Hixie> hsivonen: not actively
- # [11:38] <hsivonen> so far it seems that about:blank navigation isn't fully synchronous in Gecko and WebKit
- # [11:39] <hsivonen> but might be in Opera and IE8
- # [11:39] <Hixie> when is it not?
- # [11:39] <hsivonen> Hixie: http://hsivonen.iki.fi/test/bz-about-blank.html
- # [11:40] * Quits: Lachy (n=Lachlan@85.196.122.246) ("This computer has gone to sleep")
- # [11:40] <hsivonen> Hixie: if the http URL is changed to a data URL, then WebKit acts like Opera
- # [11:43] <Hixie> bring it up in #webkit
- # [11:43] <Hixie> or on the whatwg list
- # [12:00] * Joins: flea (n=flea@71.23.116.3)
- # [12:01] * Joins: Lachy (n=Lachlan@pat-tdc.opera.com)
- # [12:06] * Quits: flea (n=flea@71.23.116.3) (Read error: 60 (Operation timed out))
- # [12:09] * Quits: tametick (n=chatzill@chello084114134061.3.15.vie.surfer.at) (Remote closed the connection)
- # [12:13] * Joins: CriticalMass (n=chatzill@brick-lane.lbi.co.uk)
- # [12:13] * Quits: gavin_ (n=gavin@firefox/developer/gavin) (Read error: 60 (Operation timed out))
- # [12:14] * Joins: gavin_ (n=gavin@firefox/developer/gavin)
- # [12:14] * Joins: tametick (n=chatzill@chello084114134061.3.15.vie.surfer.at)
- # [12:19] * Joins: flea (n=flea@71.23.116.3)
- # [12:21] * Quits: tantek (n=tantek@70-36-139-203.dsl.dynamic.sonic.net)
- # [12:26] * Joins: cedric_ (n=cedric@112.199.229.171)
- # [12:26] * Quits: cedricv (n=cedric@112.199.162.33) (Read error: 54 (Connection reset by peer))
- # [12:35] * Joins: cedricv (n=cedric@112.199.237.78)
- # [12:36] * Joins: cedric__ (n=cedric@112.199.169.94)
- # [12:38] * Quits: cedric_ (n=cedric@112.199.229.171) (Read error: 60 (Operation timed out))
- # [12:38] * Joins: BenMillard (i=cerbera@cpc1-farn4-0-0-cust173.glfd.cable.ntl.com)
- # [12:39] * Joins: cedric_ (n=cedric@116.197.202.15)
- # [12:39] * Quits: cedric__ (n=cedric@112.199.169.94) (Read error: 54 (Connection reset by peer))
- # [12:41] * Quits: cedricv (n=cedric@112.199.237.78) (Read error: 60 (Operation timed out))
- # [12:42] * Quits: cedric_ (n=cedric@116.197.202.15) (Read error: 54 (Connection reset by peer))
- # [12:42] * Joins: cedric_ (n=cedric@124.197.102.29)
- # [12:49] <Hixie> nn
- # [12:51] * Quits: cedric_ (n=cedric@124.197.102.29)
- # [12:52] * Joins: MikeSmith (n=MikeSmit@EM111-188-49-120.pool.e-mobile.ne.jp)
- # [12:54] * Joins: ttepasse (n=ttepas--@ip-95-222-120-117.unitymediagroup.de)
- # [12:58] * Joins: seventh (i=seventh@189.59.133.189)
- # [12:58] * Quits: adactio (n=adactio@host213-123-197-180.in-addr.btopenworld.com) (Read error: 110 (Connection timed out))
- # [12:58] <zcorpan__> text/sandboxed-html doesn't have the same backcompat as <iframe sandbox>
- # [12:58] * Joins: cpharmston (n=Adium@68.48.43.198)
- # [12:59] <zcorpan__> it should be a parameter for text/html instead
- # [13:02] * Quits: Utkarsh (n=admin@117.201.86.208) (Read error: 110 (Connection timed out))
- # [13:03] <Philip`> zcorpan__: Wouldn't that defeat the point?
- # [13:04] <Philip`> If a user could visit the supposedly-sandboxed content by a direct URL, rather than via the iframe, and their (legacy) browser rendered the page, the user would be vulnerable to malicious content
- # [13:05] <Philip`> Oh, but I suppose legacy browsers will ignore the sandbox attribute on iframe anyway, so maybe we don't care about them
- # [13:05] * Quits: cpharmston (n=Adium@68.48.43.198) ("Leaving.")
- # [13:05] <zcorpan__> or we should have <sandboxediframe>
- # [13:09] <hsivonen> Philip`: did you have a page with links to Web content that doesn't declare the charset in any way?
- # [13:12] * Joins: cpharmston (n=Adium@68.48.43.198)
- # [13:12] * Quits: cpharmston (n=Adium@68.48.43.198) (Read error: 104 (Connection reset by peer))
- # [13:13] <Philip`> hsivonen: Hmm, I can't find any like that
- # [13:13] <hsivonen> Philip`: ok
- # [13:13] <Philip`> There's http://philip.html5.org/data/charsets.html#sniffed-not-meta but it sounds like that wasn't looking at HTTP content-type
- # [13:15] <Philip`> hsivonen: Oh, there's http://philip.html5.org/data/pages-with-no-explicit-charset-in-tlds-with-funny-alphabets.txt
- # [13:15] <Philip`> which might be relevant
- # [13:15] <hsivonen> excellent. thanks
- # [13:17] <gsnedders> http://code.google.com/p/unladen-swallow/issues/detail?id=105
- # [13:17] * gsnedders is seriously impressed
- # [13:18] * Joins: Utkarsh (n=admin@117.201.82.135)
- # [13:18] <Philip`> gsnedders: You should wait until it's within an order of magnitude of Java before being that impressed :-p
- # [13:19] <gsnedders> The amount of activity is impressive though :)
- # [13:21] * jgraham prefers to be irreverently impressed
- # [13:23] <zcorpan__> /me just learned a new word
- # [13:23] <zcorpan__> so will html5lib be on par with lxml?
- # [13:26] * gsnedders thought he was the irreverent one
- # [13:26] <gsnedders> zcorpan__: No
- # [13:28] <zcorpan__> gsnedders: then i'm not impressed :P
- # [13:28] <hsivonen> does the whatwg wiki require keys?
- # [13:28] <hsivonen> or has brucel just not created an account?
- # [13:29] <Dashiva> Anyone can register
- # [13:29] * Joins: svl (n=me@ip565744a7.direct-adsl.nl)
- # [13:31] <Lachy> I don't think he realised it was the whatwg wiki, as opposed to the W3C wiki, which does have restrictions on who can edit it
- # [13:32] <Lachy> anyway, I already told him he can edit it
- # [13:38] * Quits: Vito` (n=vitorio@cpe-68-203-22-47.austin.res.rr.com) (niven.freenode.net irc.freenode.net)
- # [13:39] * Quits: tametick (n=chatzill@chello084114134061.3.15.vie.surfer.at) ("ChatZilla 0.9.86 [Firefox 3.5.7/20100106054634]")
- # [13:39] * Joins: Vito` (n=vitorio@cpe-68-203-22-47.austin.res.rr.com)
- # [13:42] * Quits: mpt (n=mpt@canonical/mpt) (Read error: 113 (No route to host))
- # [13:45] * Joins: aroben (n=aroben@unaffiliated/aroben)
- # [13:45] * Joins: mpt (n=mpt@canonical/mpt)
- # [13:48] * Joins: CriticalMass_ (n=chatzill@66.28.217.202)
- # [13:56] * Joins: CriticalMass__ (n=chatzill@brick-lane.lbi.co.uk)
- # [13:57] * Quits: kinetik (n=kinetik@121.98.132.55) (Read error: 104 (Connection reset by peer))
- # [13:57] * Joins: kinetik (n=kinetik@121.98.132.55)
- # [14:01] <zcorpan__> Hixie: the web workers spec says "Draft Recommendation" while html5 says "Draft Standard"
- # [14:07] * Quits: CriticalMass (n=chatzill@brick-lane.lbi.co.uk) (Read error: 110 (Connection timed out))
- # [14:09] * Joins: Hish_ (n=chatzill@p57B7F53B.dip.t-dialin.net)
- # [14:14] * Quits: CriticalMass_ (n=chatzill@66.28.217.202) (Read error: 110 (Connection timed out))
- # [14:18] * Joins: CriticalMass (n=chatzill@66.28.217.202)
- # [14:25] * Joins: workmad3 (n=workmad3@cspool50.cs.man.ac.uk)
- # [14:26] * Quits: BenMillard (i=cerbera@cpc1-farn4-0-0-cust173.glfd.cable.ntl.com)
- # [14:36] * Joins: tametick (n=chatzill@chello084114134061.3.15.vie.surfer.at)
- # [14:36] <Huvet> oh, nice... isn't this a nice sight? <!DOCTYPE HTML PUBLIC "-//SoftQuad//DTD HoTMetaL PRO 4.0::19970714::extensions to HTML 4.0//EN" "hmpro4.dtd">
- # [14:36] <Huvet> http://nyhetsbrev.nu
- # [14:36] * Quits: CriticalMass__ (n=chatzill@brick-lane.lbi.co.uk) (Read error: 110 (Connection timed out))
- # [14:36] <Huvet> horrible!
- # [14:37] <Huvet> passes all your code just fine :)
- # [14:37] * Huvet applauds
- # [14:38] <Lachy> Huvet, that's one of the many doctypes that triggers quirks mode.
- # [14:38] <Huvet> yep, I'd just never seen one that was that bad :)
- # [14:39] <Lachy> do you mean the doctype, or the whole page?
- # [14:39] <Huvet> the doctype
- # [14:39] <Philip`> http://www.whatwg.org/specs/web-apps/current-work/multipage/tokenization.html#quirks-mode-doctypes
- # [14:40] <Huvet> I'm parsing swedish newspapers, and have crashed html5lib five times (four of them fixed)
- # [14:40] <Huvet> so I have seen horrible stuff :)
- # [14:40] <Philip`> These HTML editors are immortalied forever
- # [14:40] <Philip`> s//s/
- # [14:40] <Huvet> yeah, the authors will have accomplished something in life
- # [14:41] <Huvet> John "HoTMetaL Pro 2.0" Doe
- # [14:42] <hsivonen> does Flash have native support for showing spherical images?
- # [14:42] <hsivonen> like street view and stuff
- # [14:43] <hsivonen> or is it put together from lower level pieces on ActionScript?
- # [14:43] <zcorpan__> Huvet: it's worse when people change various parts of the doctype, like <!DOCTYPE php PUBLIC "-//W3C/DTD HTML 4.01//NL" />
- # [14:43] * hsivonen wonders if painting <video> frames with WebGL can replicate the demo at http://demos.immersivemedia.com/
- # [14:43] * Joins: TabAtkins (n=chatzill@70-139-15-246.lightspeed.rsbgtx.sbcglobal.net)
- # [14:44] <Huvet> zcorpan__: that's worse, yes :(
- # [14:44] <Huvet> I wouldn't be surprised if someone used backslashes in the doctype, cause "they are on windows"
- # [14:45] <hsivonen> whoa. I've never seen !DOCTYPE php
- # [14:46] <Dashiva> That's a cool effect, hsivonen
- # [14:46] <zcorpan__> can't that be done with 2d canvas?
- # [14:47] <Philip`> http://philip.html5.org/data/doctypes.html#%3c%21doctype_php_public_%22-%2f%2fw3c%2f%2fdtd_xphp_1.0_transitional%2f%2fen%22_%22http%3a%2f%2fwww.w3.org%2ftr%2fxphp1%2fdtd%2fxphp1-transitional.dtd%22%3e
- # [14:47] <Dashiva> What is the source material like?
- # [14:47] <Philip`> (<!doctype php public "-//w3c//dtd xphp 1.0 transitional//en" "http://www.w3.org/tr/xphp1/dtd/xphp1-transitional.dtd">)
- # [14:47] <zcorpan__> hsivonen: probably global s/html/php/ when switching file extensions...
- # [14:47] <Dashiva> The sphere mapped to a rectangle?
- # [14:48] <hsivonen> zcorpan__: in theory, yes, but is the perf sufficient?
- # [14:48] <Philip`> There's a lot of http://philip.html5.org/data/doctypes.html#%3c%21doctype_doctype_public_%22-%2f%2fw3c%2f%2fdtd_html_4.0_transitional%2f%2fen%22%3e
- # [14:49] <Dashiva> How would you do a sphere -> rect (or opposite) mapping in 2D canvas?
- # [14:49] <zcorpan__> hsivonen: no idea
- # [14:50] <hsivonen> Dashiva: by pixel, I guess
- # [14:50] <hsivonen> Dashiva: or by slicing the image and drawing approximation with a 2D matrix
- # [14:50] <Philip`> I expect it'd be really hard to make it look good in 2D canvas, because you can only do affine transforms, so you can't even do a decent textured polygon mesh
- # [14:51] <hsivonen> the above Flash thingy doesn't look so great when there are straight lines in the view
- # [14:51] <hsivonen> like the railing of the bridge
- # [14:51] <Philip`> That demo already seems to have really dodgy perspective
- # [14:52] <Philip`> since the image seems to stretch when it's near the edges
- # [14:52] * Joins: pmuellr (n=pmuellr@nat/ibm/x-mxqaqdypvugsfgfv)
- # [14:55] <zcorpan__> 3d effects don't have to be perfect
- # [14:58] <Philip`> I think you can draw an arbitrary texture triangle onto an arbitrary screen triangle (by computing an appropriate transform matrix), so I suppose you could pre-compute a spherical triangle mesh that covers the screen, and map each triangle onto texture coordinates depending on view angle, so maybe it wouldn't be too bad
- # [14:58] <Philip`> but you'd have to use lots of triangles
- # [14:59] <zcorpan__> will <video controls> in firefox gain a full-screen button?
- # [15:02] * Quits: tametick (n=chatzill@chello084114134061.3.15.vie.surfer.at) ("ChatZilla 0.9.86 [Firefox 3.5.7/20100106054634]")
- # [15:07] * Quits: Rik` (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net)
- # [15:09] * Joins: archtech (i=stanv@83.228.56.37)
- # [15:17] * Joins: miketaylr (n=miketayl@38.117.156.163)
- # [15:17] * paul_irish is now known as paul_irish_
- # [15:19] * hsivonen wonders when Xiph is going to release XiphQT with Thusnelda
- # [15:32] * Joins: BlurstOfTimes (n=blurstof@168.203.117.66)
- # [15:36] * Quits: hober (n=ted@unaffiliated/hober) (Remote closed the connection)
- # [15:37] * Joins: hober (n=ted@unaffiliated/hober)
- # [16:10] <AryehGregor> zcorpan__, I don't see one in mozilla-central.
- # [16:11] <AryehGregor> Just in the context menu.
- # [16:11] <AryehGregor> I don't know why not, I imagine people would expect it from YouTube (I would).
- # [16:11] <AryehGregor> (except that I specifically know the feature exists so am willing to explore and do things like right-click)
- # [16:12] * Quits: virtuelv (n=virtuelv@pat-tdc.opera.com) (Read error: 60 (Operation timed out))
- # [16:14] * Joins: CriticalMass_ (n=chatzill@brick-lane.lbi.co.uk)
- # [16:15] * Joins: Shadowriver (i=528fa1b3@gateway/web/freenode/x-ojvvizouihcvwiog)
- # [16:15] <MikeSmith> AryehGregor: does the MediaWiki API provide any way to extract sections from a page?
- # [16:15] <AryehGregor> MikeSmith, um, let me see.
- # [16:16] <MikeSmith> OK, to be clear, what I mean is, if I give it a section title, can I get the contents of that section back
- # [16:17] <AryehGregor> I'd imagine you could do it by section number. Section title is probably less reliable, those aren't guaranteed to be unique and section 0 has no title.
- # [16:17] * AryehGregor doesn't usually use the API, so is looking at the docs
- # [16:18] * Joins: othermaciej (n=mjs@c-69-181-42-237.hsd1.ca.comcast.net)
- # [16:20] <AryehGregor> Hmm. The closest I see is this: http://en.wikipedia.org/w/api.php?action=parse&page=HTML5&prop=sections
- # [16:21] <Lachy> text/sandboxed-html doesn't seem to have very nice graceful degradation.
- # [16:21] <AryehGregor> I guess you could retrieve that, retrieve the wikitext, and slice out the bytes given. If you want it to be HTML, you can then feed that back to the parser. Of course, that will give weird results if any tags straddle sections.
- # [16:22] <AryehGregor> The person to ask in RoanKattouw, he's the API guy, but he seems not to be on IRC right now.
- # [16:23] <Lachy> I assume that's probably considered a feature that current UAs won't accidentally interpret the HTML, but Firefox popping up a save dialog to users isn't very nice.
- # [16:23] <Lachy> Safari seems to have the best fallback, which is to treat it as text/plain
- # [16:23] * Quits: zcorpan__ (n=zcorpan@c83-252-193-59.bredband.comhem.se)
- # [16:24] <Philip`> If your site wants to work in legacy browsers without exposing those users to XSS attacks, the site will have to sanitise the HTML anyway before it can be used in <iframe sandbox>
- # [16:25] <Philip`> in which case serving the same content as standalone text/html to legacy browsers wouldn't introduce any new dangers
- # [16:25] <Philip`> It only makes a difference for sandbox-supporting browsers, where the sandbox layer of defence would be lost if the content was accessed outside of its iframe
- # [16:25] <Lachy> yeah, I realise that. I'm just concerned that this will limit adoption among sites, since they usually need to maintain compat with older browsers for a few years after they've been made obsolete
- # [16:26] <Philip`> So I guess something like text/html;sandbox=1 would be better because it will work in legacy browsers without introducing new vulnerabilities, and will allow sandbox-supporting browsers to apply extra defences to it
- # [16:26] * Joins: Hish__ (n=chatzill@p57B7C24A.dip.t-dialin.net)
- # [16:26] <Lachy> and I don't know any site that would want users to inadvertently save the file and then possibly open it wondering what it is
- # [16:26] * Hish__ is now known as Hish
- # [16:27] <Philip`> (But, on the other hand, people will add ;sandbox=1 to all their pages before anyone's released a sandbox-supporting browser, and therefore prevent it ever being supported)
- # [16:28] <Lachy> Perhaps sites will resort to some sort of browser sniffing to determine whether or not text/sandboxed-html is supported
- # [16:33] * Quits: CriticalMass (n=chatzill@66.28.217.202) (Read error: 110 (Connection timed out))
- # [16:36] <AryehGregor> Lachy, does nine count as "a few"?
- # [16:37] * Quits: gavin_ (n=gavin@firefox/developer/gavin) (Read error: 60 (Operation timed out))
- # [16:39] * Joins: gavin_ (n=gavin@firefox/developer/gavin)
- # [16:42] <Lachy> AryehGregor, in the case of IE6, yes, but luckily, upgrade rates do seem to getting better than that these days
- # [16:43] <AryehGregor> Thankfully.
- # [16:43] * AryehGregor is hoping enterprises will switch to Win7 with IE6-in-VM for their intranets
- # [16:43] * Quits: Hish_ (n=chatzill@p57B7F53B.dip.t-dialin.net) (Read error: 110 (Connection timed out))
- # [16:43] <Lachy> anyone know what the usage of Firefox 2 is like these days, now that it's had 3.0 and 3.5 after it?
- # [16:44] * Lachy looks it up...
- # [16:44] <gsnedders> Lachy: http://stats.wikimedia.org/wikimedia/squids/SquidReportClients.htm
- # [16:44] <Philip`> http://marketshare.hitslink.com/browser-market-share.aspx?qprid=2 says 0.9%
- # [16:46] <AryehGregor> So Firefox 2.0 is still 5% or so of Firefox market share, while IE6 is still 20% or so of IE market share.
- # [16:46] <Philip`> gsnedders: Looks like it got confused by Opera 10's UA string
- # [16:47] <AryehGregor> Well, it's a confusing UA string, isn't it.
- # [16:49] * Joins: cying (n=cying@adsl-75-18-220-166.dsl.pltn13.sbcglobal.net)
- # [16:49] <Philip`> All UA strings are confusing
- # [16:49] * Joins: CriticalMass (n=chatzill@66.28.217.202)
- # [16:50] <Lachy> that's not too bad. It's only been ~1.5 years since Firefox 3.0 succeeded it, and it's already at fairly ignorable levels
- # [16:50] <TabAtkins> I've been ignoring it for a long time.
- # [16:50] <TabAtkins> Though I've also been ignoring IE6 as much as possible for at least 6 months.
- # [16:51] <Lachy> yeah, me too. When I was doing web development, I started ignoring older firefox releases fairly soon after the new one was released.
- # [16:51] <TabAtkins> I have the benefit of our tech support pushing people onto IE7 and now IE8. We don't get very many IE6 hits now.
- # [16:52] <Lachy> which site is that for?
- # [16:53] <TabAtkins> igofigure.com
- # [16:53] <Lachy> why isn't your tech support pushing people onto Firefox, Opera or Safari?
- # [16:53] <Lachy> or Chrome?
- # [16:53] <TabAtkins> Because it's much easier to say "Do Windows Update, our software requires it".
- # [16:53] * Philip` wonders how long it takes for an obsolete Firefox release to fall below the combined market share of all versions of Opera
- # [16:54] <TabAtkins> And updated IE is a Windows Update.
- # [16:56] * Quits: CriticalMass_ (n=chatzill@brick-lane.lbi.co.uk) (Read error: 60 (Operation timed out))
- # [16:58] * Joins: CriticalMass_ (n=chatzill@brick-lane.lbi.co.uk)
- # [16:58] * Quits: maikmerten (n=merten@ls5dhcp196.cs.uni-dortmund.de) (Remote closed the connection)
- # [16:58] * Quits: Vito` (n=vitorio@cpe-68-203-22-47.austin.res.rr.com) (niven.freenode.net irc.freenode.net)
- # [16:59] * Joins: dglazkov (n=dglazkov@c-67-188-0-62.hsd1.ca.comcast.net)
- # [17:00] * Joins: Vito` (n=vitorio@cpe-68-203-22-47.austin.res.rr.com)
- # [17:04] * Joins: CriticalMass__ (n=chatzill@66.28.217.202)
- # [17:05] * Quits: Maurice (n=ano@a80-101-46-164.adsl.xs4all.nl) ("Disconnected...")
- # [17:08] * aroben is now known as aroben|away
- # [17:09] * Joins: CriticalMass___ (n=chatzill@brick-lane.lbi.co.uk)
- # [17:13] <AryehGregor> foolip, so Opera is going to support H.264 if the codec is installed on the system?
- # [17:14] * Quits: workmad3 (n=workmad3@cspool50.cs.man.ac.uk) (Remote closed the connection)
- # [17:14] * Joins: CriticalMass____ (n=chatzill@brick-lane.lbi.co.uk)
- # [17:16] * Quits: CriticalMass (n=chatzill@66.28.217.202) (Read error: 110 (Connection timed out))
- # [17:16] * CriticalMass____ is now known as CriticalMass
- # [17:17] * Quits: dglazkov (n=dglazkov@c-67-188-0-62.hsd1.ca.comcast.net)
- # [17:20] * Quits: CriticalMass___ (n=chatzill@brick-lane.lbi.co.uk) (Read error: 60 (Operation timed out))
- # [17:21] * Joins: Chris|UNC (n=blahness@152.2.194.196)
- # [17:21] * Quits: Lachy (n=Lachlan@pat-tdc.opera.com) ("This computer has gone to sleep")
- # [17:22] * Quits: CriticalMass_ (n=chatzill@brick-lane.lbi.co.uk) (Read error: 110 (Connection timed out))
- # [17:27] * Quits: CriticalMass__ (n=chatzill@66.28.217.202) (Read error: 110 (Connection timed out))
- # [17:31] * Joins: hobertoAtWork4 (n=hobertoa@gw1.mcgraw-hill.com)
- # [17:31] <foolip> AryehGregor: unless we take steps to prevent it, it will happen to work on Unix, but no other platforms
- # [17:32] <AryehGregor> foolip, Unix including OS X or not?
- # [17:32] <foolip> no, not Mac
- # [17:32] <AryehGregor> Interesting.
- # [17:32] <foolip> just platforms where we can use the native GStreamer, which is, basically, Linux and FreeBSD
- # [17:32] * AryehGregor wishes Apple would end the discussion by supporting Theora already. :(
- # [17:33] * foolip too
- # [17:33] * Joins: bzed_ (n=bzed@devel.recluse.de)
- # [17:33] * Quits: bzed (n=bzed@devel.recluse.de) (Read error: 104 (Connection reset by peer))
- # [17:33] * bzed_ is now known as bzed
- # [17:33] * foolip also hope noone goes off claiming that "Opera supports H.264" because GStreamer may happen to
- # [17:34] * Philip` wonders how many Linuxes include H.264 support
- # [17:35] <AryehGregor> Philip`, probably all of them if you click through a "don't click this if you live in the US" button.
- # [17:35] <foolip> Philip`: none do by default
- # [17:35] <AryehGregor> Well, I can't say "all of them".
- # [17:35] <AryehGregor> But I'm pretty sure the major ones have it somewhere in the repos.
- # [17:35] <Philip`> I'd assume it's just the ones that are willing to pay licensing fees and the ones that don't care about patent infringement, but I don't know if there's any that aren't either of those categories
- # [17:35] <AryehGregor> *Is* it patent infringement in Europe?
- # [17:35] <AryehGregor> Or just the US?
- # [17:35] <foolip> well, Ubuntu will happily install lots of stuff if you play something in totem
- # [17:36] * Joins: Lachy (n=Lachlan@85.196.122.246)
- # [17:41] * Joins: jgornick (n=Joe@75-149-148-105-Minnesota.hfc.comcastbusiness.net)
- # [17:43] <Philip`> Hmm, it looks like I do have GStreamer installed
- # [17:43] <Philip`> but I don't think I ever use anything that uses it
- # [17:43] <Philip`> (since I just use mplayer and vlc)
- # [17:45] * Quits: MikeSmith (n=MikeSmit@EM111-188-49-120.pool.e-mobile.ne.jp) (Read error: 60 (Operation timed out))
- # [17:45] * Joins: CriticalMass_ (n=chatzill@66.28.217.202)
- # [17:46] * Joins: dglazkov (n=dglazkov@nat/google/x-vbkludvajzpsaffz)
- # [17:48] * Joins: CriticalMass__ (n=chatzill@brick-lane.lbi.co.uk)
- # [17:55] * Quits: CriticalMass_ (n=chatzill@66.28.217.202) (Read error: 60 (Operation timed out))
- # [17:57] <foolip> ubuntu has it per default anyway
- # [18:01] * Quits: karlushi (n=karlushi@fw.vdl2.ca) (Read error: 60 (Operation timed out))
- # [18:02] * Joins: tantek (n=tantek@70-36-139-203.dsl.dynamic.sonic.net)
- # [18:03] * Quits: CriticalMass (n=chatzill@brick-lane.lbi.co.uk) (Read error: 110 (Connection timed out))
- # [18:05] <Philip`> Hooray for Mercurial
- # [18:05] <Philip`> (in the W3C)
- # [18:06] <AryehGregor> Why not git?
- # [18:06] <jcranmer> ?
- # [18:06] <gsnedders> Because git is evil.
- # [18:06] * gsnedders hides
- # [18:07] <Dashiva> You git
- # [18:09] <Philip`> You mercurial fellow
- # [18:09] <Philip`> Hmm, that's not as good an insult
- # [18:10] <AryehGregor> Philip`, you're a subversive, mercurial git who . . . hangs out in bazaars.
- # [18:10] <AryehGregor> Could use work.
- # [18:10] * Quits: cying (n=cying@adsl-75-18-220-166.dsl.pltn13.sbcglobal.net)
- # [18:12] <Philip`> You're such a CVS
- # [18:13] <Dashiva> What a load of VCS
- # [18:15] <AryehGregor> I know. You're a subversive, mercurial git whose version-control preferences are simply bazaar.
- # [18:15] <AryehGregor> (could still use work, but getting there)
- # [18:17] <Dashiva> git who VC(t)S bazaars
- # [18:17] * Joins: CriticalMass (n=chatzill@66.28.217.202)
- # [18:19] <gsnedders> What a bazaar conversation.
- # [18:20] <Philip`> We should all be committed
- # [18:22] * Joins: Maurice (i=copyman@5ED548D4.cable.ziggo.nl)
- # [18:22] * Quits: jgornick (n=Joe@75-149-148-105-Minnesota.hfc.comcastbusiness.net)
- # [18:24] * Quits: CriticalMass__ (n=chatzill@brick-lane.lbi.co.uk) (Read error: 60 (Operation timed out))
- # [18:25] * Joins: ap (n=ap@17.246.19.5)
- # [18:26] * Joins: CriticalMass_ (n=chatzill@brick-lane.lbi.co.uk)
- # [18:30] * Quits: Phae (n=phaeness@gateb.thls.bbc.co.uk)
- # [18:31] * Quits: CriticalMass_ (n=chatzill@brick-lane.lbi.co.uk) (Read error: 104 (Connection reset by peer))
- # [18:31] * Joins: jwalden (n=waldo@71.147.38.186)
- # [18:39] * Joins: virtuelv (n=virtuelv@162.179.251.212.customer.cdi.no)
- # [18:43] * Joins: tametick (n=chatzill@chello084114134061.3.15.vie.surfer.at)
- # [18:45] * Quits: CriticalMass (n=chatzill@66.28.217.202) (Read error: 110 (Connection timed out))
- # [18:46] * Joins: dave_levin (n=dave_lev@74.125.59.65)
- # [18:47] * Quits: gavin_ (n=gavin@firefox/developer/gavin) (Read error: 60 (Operation timed out))
- # [18:48] * Joins: gavin_ (n=gavin@firefox/developer/gavin)
- # [18:52] * Joins: cardona507 (n=cardona5@c-67-180-160-250.hsd1.ca.comcast.net)
- # [18:54] * Quits: dave_levin (n=dave_lev@74.125.59.65)
- # [19:02] * Quits: othermaciej (n=mjs@c-69-181-42-237.hsd1.ca.comcast.net)
- # [19:02] * Joins: maikmerten (n=maikmert@port-92-201-169-126.dynamic.qsc.de)
- # [19:03] * Quits: SFauconnier (n=SFauconn@78-21-41-133.access.telenet.be) (Remote closed the connection)
- # [19:12] * Joins: dave_levin (n=dave_lev@74.125.59.73)
- # [19:17] * Quits: mpt (n=mpt@canonical/mpt) ("Ex-Chat")
- # [19:23] * Joins: cying (n=cying@70.90.171.153)
- # [19:33] * Joins: karlushi (n=karlushi@fw.vdl2.ca)
- # [19:34] * Quits: mat_t (n=mattomas@91.189.88.12) ("This computer has gone to sleep")
- # [19:35] * Joins: sbublava (n=stephan@77.118.123.12.wireless.dyn.drei.com)
- # [19:36] * Joins: GarethAdams|Home (n=GarethAd@pdpc/supporter/active/GarethAdams)
- # [19:38] * gsnedders is hearing rumours about an iniment html5lib release
- # [19:44] * Quits: GarethAdams|Home (n=GarethAd@pdpc/supporter/active/GarethAdams)
- # [19:44] * Quits: jwalden (n=waldo@71.147.38.186) ("update reboot time")
- # [19:45] * Joins: gratz|home (n=gratz@cpc3-brig15-2-0-cust237.3-3.cable.virginmedia.com)
- # [19:48] * Joins: dbaron (n=dbaron@nat/mozilla/x-fjyoiwbupqiwhtii)
- # [19:55] * Quits: dbaron (n=dbaron@nat/mozilla/x-fjyoiwbupqiwhtii) ("8403864 bytes have been tenured, next gc will be global.")
- # [20:00] * Joins: workmad3 (n=workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com)
- # [20:02] * Joins: othermaciej (n=mjs@17.203.15.209)
- # [20:02] * Joins: jwalden (n=waldo@adsl-71-147-38-186.dsl.emhril.sbcglobal.net)
- # [20:04] * Quits: Amorphous (i=jan@unaffiliated/amorphous) (Read error: 104 (Connection reset by peer))
- # [20:05] * Joins: MikeSmith (n=MikeSmit@EM111-188-1-189.pool.e-mobile.ne.jp)
- # [20:12] * Quits: erlehmann (n=erlehman@82.113.121.19) (Read error: 54 (Connection reset by peer))
- # [20:12] * Joins: erlehmann (n=erlehman@82.113.121.19)
- # [20:20] * Quits: jwalden (n=waldo@adsl-71-147-38-186.dsl.emhril.sbcglobal.net) ("ChatZilla 0.9.85-rdmsoft [XULRunner 1.9.1.6/20091216142458]")
- # [20:22] * Joins: Amorphous (i=jan@unaffiliated/amorphous)
- # [20:23] * Quits: vvv (n=vvv@mediawiki/VasilievVV) ("KVIrc Insomnia 4.0.0, revision: 3410, sources date: 20090703, built on: 2009/08/12 22:29:13 UTC http://www.kvirc.net/")
- # [20:29] * Joins: cohitre (n=cohitre@174-21-102-211.tukw.qwest.net)
- # [20:31] * Parts: cohitre (n=cohitre@174-21-102-211.tukw.qwest.net)
- # [20:31] <Huvet> hi everyone! I was wondering if someone has a couple of minutes to look at a NoReverseMatch error. I've tried to fix this for at least an hour now, trying every combination I can: http://dpaste.com/144265/
- # [20:31] <Huvet> basically, I have a url.py, that includes another url.py, in which I have a name I want to reverse
- # [20:31] <Huvet> I can't
- # [20:32] <Huvet> it's probably something stupid :(
- # [20:35] * Quits: zalan (n=zalan@catv-89-135-144-122.catv.broadband.hu)
- # [20:36] <Huvet> GAH, I found it
- # [20:37] <Huvet> urls.py, I have a $ at the end of the first regexp :/
- # [20:42] * Joins: TabAtkins_ (n=chatzill@70-139-15-246.lightspeed.rsbgtx.sbcglobal.net)
- # [20:42] * Quits: TabAtkins (n=chatzill@70-139-15-246.lightspeed.rsbgtx.sbcglobal.net) (Read error: 104 (Connection reset by peer))
- # [20:42] * TabAtkins_ is now known as TabAtkins
- # [20:54] * Quits: workmad3 (n=workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com) (Remote closed the connection)
- # [20:55] * Quits: tantek (n=tantek@70-36-139-203.dsl.dynamic.sonic.net)
- # [20:58] * Quits: gavin_ (n=gavin@firefox/developer/gavin) (Read error: 60 (Operation timed out))
- # [21:00] * Joins: gavin_ (n=gavin@firefox/developer/gavin)
- # [21:04] * Joins: othermaciej_ (n=mjs@17.246.18.30)
- # [21:14] * Quits: tametick (n=chatzill@chello084114134061.3.15.vie.surfer.at) ("ChatZilla 0.9.86 [Firefox 3.5.7/20100106054634]")
- # [21:17] * Joins: Phae (n=phaeness@cpc2-acto9-0-0-cust364.brnt.cable.ntl.com)
- # [21:20] * Quits: othermaciej (n=mjs@17.203.15.209) (Read error: 110 (Connection timed out))
- # [21:20] * othermaciej_ is now known as othermaciej
- # [21:23] * Quits: maikmerten (n=maikmert@port-92-201-169-126.dynamic.qsc.de) (Remote closed the connection)
- # [21:25] * Joins: jwalden (n=waldo@71.147.38.186)
- # [21:31] * Quits: roc (n=roc@121-72-212-45.dsl.telstraclear.net) (Read error: 54 (Connection reset by peer))
- # [21:34] * Joins: dbaron (n=dbaron@nat/mozilla/x-dxeyhbfupimurxcm)
- # [21:35] * Joins: roc (n=roc@121-72-168-57.dsl.telstraclear.net)
- # [21:38] * Joins: tametick (n=chatzill@chello084114134061.3.15.vie.surfer.at)
- # [21:51] * Quits: tametick (n=chatzill@chello084114134061.3.15.vie.surfer.at) ("ChatZilla 0.9.86 [Firefox 3.5.7/20100106054634]")
- # [21:57] <crash\> is it everywhere mentioned how browser must act after removing the selected element? I mean change HTMLSelectElement.value and .selectedIndex?
- # [21:59] <crash\> Opera doesn't changes those values after removing the selected option
- # [22:01] * Joins: GarethAdams|Home (n=GarethAd@pdpc/supporter/active/GarethAdams)
- # [22:02] * Quits: sbublava (n=stephan@77.118.123.12.wireless.dyn.drei.com)
- # [22:16] * Quits: ROBOd (n=robod@89.122.216.38) (Remote closed the connection)
- # [22:18] * Quits: ttepasse (n=ttepas--@ip-95-222-120-117.unitymediagroup.de) (Read error: 110 (Connection timed out))
- # [22:30] * Joins: workmad3 (n=workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com)
- # [22:37] * Quits: workmad3 (n=workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com) (Remote closed the connection)
- # [22:37] * Quits: aroben|away (n=aroben@unaffiliated/aroben) (Read error: 104 (Connection reset by peer))
- # [22:38] * Joins: aroben|away (n=aroben@unaffiliated/aroben)
- # [22:43] * Quits: seventh (i=seventh@189.59.133.189) ("...")
- # [22:44] * Quits: pmuellr (n=pmuellr@nat/ibm/x-mxqaqdypvugsfgfv)
- # [22:49] * Joins: workmad3 (n=workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com)
- # [22:51] * Joins: vvv (n=vvv@mediawiki/VasilievVV)
- # [22:55] * aroben|away is now known as aroben
- # [23:02] * Joins: seventh (i=seventh@189.59.133.189)
- # [23:06] * Joins: cohitre (n=cohitre@174-21-102-211.tukw.qwest.net)
- # [23:06] * Parts: cohitre (n=cohitre@174-21-102-211.tukw.qwest.net)
- # [23:07] * Quits: Chris|UNC (n=blahness@152.2.194.196)
- # [23:08] * Joins: dglazkov_ (n=dglazkov@nat/google/x-fdcmoqhkmrgybvju)
- # [23:09] * Quits: roc (n=roc@121-72-168-57.dsl.telstraclear.net)
- # [23:11] * Joins: ttepasse (n=ttepas--@ip-95-222-120-117.unitymediagroup.de)
- # [23:11] * Quits: workmad3 (n=workmad3@cpc3-bagu10-0-0-cust651.1-3.cable.virginmedia.com) (Remote closed the connection)
- # [23:11] * Quits: BlurstOfTimes (n=blurstof@168.203.117.66) ("Leaving...")
- # [23:14] * Quits: miketaylr (n=miketayl@38.117.156.163) (Remote closed the connection)
- # [23:16] * Quits: Maurice (i=copyman@5ED548D4.cable.ziggo.nl)
- # [23:25] * Quits: dglazkov (n=dglazkov@nat/google/x-vbkludvajzpsaffz) (Read error: 110 (Connection timed out))
- # [23:25] * dglazkov_ is now known as dglazkov
- # [23:27] * Quits: Shadowriver (i=528fa1b3@gateway/web/freenode/x-ojvvizouihcvwiog) ("Page closed")
- # [23:34] * Joins: wakaba (n=wakaba@236.139.210.220.dy.bbexcite.jp)
- # [23:34] * Joins: Rik` (n=Rik`@pha75-2-81-57-187-57.fbx.proxad.net)
- # [23:34] * Quits: Phae (n=phaeness@cpc2-acto9-0-0-cust364.brnt.cable.ntl.com)
- # [23:45] * Quits: cardona507 (n=cardona5@c-67-180-160-250.hsd1.ca.comcast.net) ("zzzzz")
- # [23:47] * Quits: archtech (i=stanv@83.228.56.37) (Client Quit)
- # [23:56] * Quits: Huvet (n=Emil@c-0acfe555.07-131-73746f39.cust.bredbandsbolaget.se) ("Leaving.")
- # Session Close: Wed Jan 13 00:00:00 2010
The end :)