Options:
- # Session Start: Wed May 30 00:00:00 2007
- # Session Ident: #whatwg
- # [00:04] * Quits: KevinMarks (i=KevinMar@pdpc/supporter/active/kevinmarks) ("The computer fell asleep")
- # [00:04] * Quits: Lachy (n=Lachlan@210-84-36-41.dyn.iinet.net.au) (Read error: 104 (Connection reset by peer))
- # [00:11] * Joins: KevinMarks (i=KevinMar@nat/google/x-34d7db987fdf5912)
- # [00:12] * Joins: markp (n=markp@adsl-214-241-105.rmo.bellsouth.net)
- # [00:17] * Joins: aroben_ (i=adamrobe@nat/apple/x-7e1811beed503277)
- # [00:17] * Quits: aroben_ (i=adamrobe@nat/apple/x-7e1811beed503277) (Client Quit)
- # [00:23] * Joins: SimonW (n=simon@dyn-62-56-67-239.dslaccess.co.uk)
- # [00:24] <SimonW> does anyone know the reason that HTTP doesn't include a way of specifying the character set used in a POST?
- # [00:24] <SimonW> Or does it have a method that I don't know about?
- # [00:25] <zcorpan_> SimonW: you mean character encoding?
- # [00:25] <SimonW> yes, character encoding
- # [00:25] * Quits: karlUshi (n=karl@124-144-94-188.rev.home.ne.jp) ("Where dwelt Ymir, or wherein did he find sustenance?")
- # [00:25] <SimonW> in fact, I can't find the bit of the spec that says "browsers shall submit forms using the same character encoding as the form was served up in"
- # [00:25] <SimonW> is that HTML spec instead?
- # [00:25] * SimonW is pretty bad at specs
- # [00:26] <othermaciej> SimonW: you can't specify Content-Type on a request?
- # [00:26] <othermaciej> SimonW: I'd imagine Content-Type w/ a charset parameter would be it, but perhaps that is only allowed as a response header
- # [00:27] <SimonW> othermaciej: as far as I can tell you can't
- # [00:27] <SimonW> http://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html#sec5
- # [00:27] <SimonW> you can say "Accept-Charset"
- # [00:27] <SimonW> common knowledge appears to be that you can't either
- # [00:27] <SimonW> which is ludicrous - it means that server side scripts have to either guess the character set
- # [00:28] <SimonW> or use statistical analysis to figure it out
- # [00:28] <SimonW> or just apply a heuristic: "try to decode as UTF 8, if that fails assume ISO-885-1"
- # [00:28] <SimonW> 8859-1
- # [00:28] <SimonW> so I thought I'd pop in here and check my facts before ranting about it on my blag
- # [00:29] <SimonW> unless there's a more appropriate forum?
- # [00:30] <zcorpan_> dunno. i know that trackbacks usually don't leave hints about encoding, and come in different encodings
- # [00:31] <webben> Do you mean the transfer encoding or the content encoding?
- # [00:31] <zcorpan_> webben: content encoding
- # [00:32] <SimonW> content encoding - utf-8 v.s. iso-8859-1 etc
- # [00:32] <SimonW> it appears to be a huge gaping hole in HTTP which everyone has been ignoring for the past 15 years
- # [00:33] <zcorpan_> then we have anothing thing to fix for HTTP5... ;)
- # [00:33] <webben> Weird at http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11
- # [00:33] * Joins: [1]markp (n=markp@adsl-214-241-105.rmo.bellsouth.net)
- # [00:33] <webben> it says: "If the content-coding of an entity in a request message is not acceptable to the origin server, the server SHOULD respond with a status code of 415 (Unsupported Media Type)."
- # [00:34] <webben> which would seem to imply that request messages must be able to specify content-coding.
- # [00:34] <zcorpan_> webben: yeah, but that's about gzip &c, not utf-8 &c
- # [00:35] <zcorpan_> a different level of "encoding"
- # [00:35] <webben> oh, a third level
- # [00:36] <zcorpan_> character encoding (utf-8) -> content encoding (gzip) -> transfer encoding (7bit)
- # [00:37] <SimonW> aah, so I care about character encodin
- # [00:37] <zcorpan_> SimonW: yeah
- # [00:37] <SimonW> I'm going to e-mail Roy Fielding
- # [00:38] * Joins: bzed (n=bzed@dslb-084-059-105-081.pools.arcor-ip.net)
- # [00:39] * Quits: markp (n=markp@adsl-214-241-105.rmo.bellsouth.net) (Read error: 60 (Operation timed out))
- # [00:41] <othermaciej> SimonW: I guess that's a bug in HTTP, though de facto you have to post in the page encoding and the server assumes that
- # [00:41] <SimonW> I've been trying to find where that de facto rule is written down
- # [00:41] * Joins: annevk (n=annevk@c5144430c.cable.wanadoo.nl)
- # [00:41] <othermaciej> SimonW: I don't think it is
- # [00:42] <othermaciej> if you mean in the form of documentation or normative reference
- # [00:42] <zcorpan_> SimonW: a de facto rule is that iso-8859-1 pages will submit form content as windows-1252
- # [00:42] <othermaciej> there are no iso-8859-1 pages on the web
- # [00:43] <othermaciej> (the ones that claim to be are windows-1252)
- # [00:43] <zcorpan_> right
- # [00:43] <Dashiva> There was that "bug" earlier about webpage not "supporting" pure ASCII
- # [00:43] <SimonW> aha, http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.7.1 looks relevant
- # [00:45] <zcorpan_> annevk: hey
- # [00:46] <zcorpan_> annevk: found a blog software written in turbogears that i wanted to try out
- # [00:46] * Quits: [1]markp (n=markp@adsl-214-241-105.rmo.bellsouth.net) (Read error: 60 (Operation timed out))
- # [00:47] <SimonW> pah, turbogears :P
- # [00:47] * Joins: markp (n=markp@adsl-214-241-105.rmo.bellsouth.net)
- # [00:47] <annevk> zcorpan_, don't talk about that with SimonW around :p
- # [00:47] <zcorpan_> why not?
- # [00:47] * annevk is kidding
- # [00:47] <zcorpan_> SimonW: what's wrong with turbogears?
- # [00:47] <SimonW> it's not Django :)
- # [00:48] * SimonW co-founded Django
- # [00:48] <SimonW> on a more practical note, it seems to be being eclipsed by Pylons these days
- # [00:48] <SimonW> the TurboGears team made a bunch of decisions at the start which were very sane then but haven't really held out over the long run
- # [00:49] <SimonW> their choices for the core components have mostly been replaced by better alternatives
- # [00:49] <othermaciej> just rename Django to Python in Pails or something
- # [00:49] <SimonW> which seems to have left the project in an awkward position
- # [00:49] <SimonW> personally I'm hoping TurboGears and Pylons will merge, and Django and Pylons will work towards a common API for core features
- # [00:50] <Dashiva> Pythons on Planes
- # [00:50] <othermaciej> heh :-)
- # [00:53] * Parts: hasather (n=hasather@81-235-209-174-no62.tbcn.telia.com)
- # [00:57] * Quits: markp (n=markp@adsl-214-241-105.rmo.bellsouth.net) (Read error: 60 (Operation timed out))
- # [01:06] * Joins: Welly (n=Welly@62-31-160-20.cable.ubr11.azte.blueyonder.co.uk)
- # [01:07] * Quits: annevk (n=annevk@c5144430c.cable.wanadoo.nl)
- # [01:07] * Joins: annevk (n=annevk@c5144430c.cable.wanadoo.nl)
- # [01:07] <annevk> SimonW, first step of http://www.whatwg.org/specs/web-forms/current-work/#x-www-form-urlencoded defines what you're looking for
- # [01:08] <annevk> browsers should follow that roughly (with the caveats mentioned earlier)
- # [01:09] <annevk> when that's integrated with HTML5 it will be more detailed I suspect although it's pretty clear already
- # [01:31] * Quits: annevk (n=annevk@c5144430c.cable.wanadoo.nl) (Read error: 110 (Connection timed out))
- # [01:34] * Quits: SimonW (n=simon@dyn-62-56-67-239.dslaccess.co.uk)
- # [01:35] * Quits: Toolskyn (n=Toolskyn@adsl-dc-266ef.adsl.wanadoo.nl) (Read error: 110 (Connection timed out))
- # [01:44] * Quits: Welly (n=Welly@62-31-160-20.cable.ubr11.azte.blueyonder.co.uk) (Remote closed the connection)
- # [01:45] * Joins: markp (n=markp@adsl-214-241-105.rmo.bellsouth.net)
- # [01:56] * Joins: kfish (n=conrad@61.194.21.25)
- # [02:08] * Quits: markp (n=markp@adsl-214-241-105.rmo.bellsouth.net) (Read error: 110 (Connection timed out))
- # [02:14] * Joins: karlUshi (n=karl@dhcp-247-173.mag.keio.ac.jp)
- # [02:21] * Joins: markp (n=markp@adsl-214-241-105.rmo.bellsouth.net)
- # [02:38] * othermaciej is now known as om_food
- # [02:38] <zcorpan_> "It adds semantic richness, and that's valuable for its own sake" -- http://www.sitepoint.com/forums/showthread.php?p=3413761#post3413761
- # [02:41] <Philip`> The unquoted second part of that sentence doesn't seem to agree with the first part, since it talks about adding semantic richness for the sake of enhanced behaviour from future UAs instead of just for its own sake
- # [02:42] <zcorpan_> yeah
- # [02:42] <zcorpan_> indeed
- # [02:42] <Philip`> That's still a kind of tenuous theoretical sake, though
- # [02:43] <om_food> rel vs. rev is so brain-hurtingly confusing
- # [02:45] <Philip`> Need to work on a Brain 5, to fix the problems that today's legacy brains have with understanding really complex things
- # [02:45] * Quits: hober (n=ted@unaffiliated/hober) ("ERC Version 5.1.3 (IRC client for Emacs)")
- # [02:46] <zcorpan_> Brain 5 must be backwards compatible, otherwise it won't be adopted
- # [02:51] <karlUshi> om_food: what is the result of "7./2."?
- # [02:53] <karlUshi> there's a new apple member in the HTML WG. Adam Roben
- # [02:53] <karlUshi> http://www.w3.org/2000/09/dbwg/details?group=40318&public=1&order=org
- # [02:53] * om_food is now known as othermaciej
- # [02:53] <othermaciej> karlUshi: 3.5?
- # [02:54] <karlUshi> yes othermaciej
- # [02:55] <karlUshi> :) my point is when we were at school, starting to learn division of rational numbers. It was hard. There was a learning curve.
- # [02:55] <karlUshi> HTML has very simple things (though markup languages are difficult for most people) and there are features a bit more complex and it just takes time to learn.
- # [02:56] <Dashiva> It used to be 3 1/2 for a few years, then it became 3.5
- # [02:56] <karlUshi> cf. <om_food> rel vs. rev is so brain-hurtingly confusing
- # [02:57] * Quits: markp (n=markp@adsl-214-241-105.rmo.bellsouth.net) (Read error: 110 (Connection timed out))
- # [02:59] <othermaciej> karlUshi: rel vs. rev is more in the realm of path integrals than rational division
- # [02:59] <othermaciej> even experts have a hard time
- # [02:59] <zcorpan_> 399 invited experts
- # [03:00] <karlUshi> othermaciej: yes, it takes time to learn things and be a *pro*
- # [03:00] * Quits: KevinMarks (i=KevinMar@pdpc/supporter/active/kevinmarks) ("The computer fell asleep")
- # [03:02] <karlUshi> it reminds me of http://www.molly.com/2005/11/14/web-standards-and-the-new-professionalism/
- # [03:05] * Joins: markp (n=markp@adsl-214-241-105.rmo.bellsouth.net)
- # [03:19] * Joins: h3h (n=w3rd@cpe-66-75-149-197.san.res.rr.com)
- # [03:30] * Joins: [1]markp (n=markp@adsl-214-241-105.rmo.bellsouth.net)
- # [03:33] * Quits: markp (n=markp@adsl-214-241-105.rmo.bellsouth.net) (Read error: 113 (No route to host))
- # [03:33] * [1]markp is now known as markp
- # [03:36] * Quits: kingryan (n=kingryan@corp.technorati.com)
- # [03:44] * Quits: othermaciej (n=mjs@17.255.104.223)
- # [03:59] * Joins: aroben_ (i=adamrobe@nat/apple/x-585bc7bbbaac8319)
- # [04:00] * Quits: aroben_ (i=adamrobe@nat/apple/x-585bc7bbbaac8319) (Client Quit)
- # [04:15] <zcorpan_> damn, it's hard to test <noscript> when the tools you have at your disposal to inspect the DOM is javascript
- # [04:15] <zcorpan_> s/tools/tool/
- # [04:18] <Philip`> Disable JS, load the page, reenable JS, click the scripted DOM-inspection button on the page?
- # [04:18] * Philip` isn't sure exactly what happens when you toggle JS
- # [04:20] <zcorpan_> yeah. don't have such a button in ie7 though, and i can't figure out how to actually disable js in ie7 (i thought it was "Active Scripting")... and i don't trust the web dev toolbar in ie7
- # [04:22] * Joins: KevinMarks (n=KevinMar@66.120.92.34)
- # [04:23] <zcorpan_> oh, the setting doesn't apply to local files, apparently
- # [04:26] * Joins: zcorpan (n=zcorpan@84-216-40-128.sprayadsl.telenor.se)
- # [04:26] <zcorpan> input document: <!doctype html><head><noscript>X</noscript></head><body>Y</body>
- # [04:26] <zcorpan> .innerHTML on the root element: <HEAD><NOSCRIPT></HEAD>
- # [04:26] <zcorpan> <BODY>X</NOSCRIPT>Y</BODY>
- # [04:26] * Quits: KevinMarks (n=KevinMar@66.120.92.34) (Client Quit)
- # [04:27] <Philip`> That looks nice and tree-like
- # [04:28] * Quits: jruderman (n=jruderma@corp-242.mountainview.mozilla.com) (anthony.freenode.net irc.freenode.net)
- # [04:28] * Quits: gsnedders (n=gsnedder@host86-139-123-225.range86-139.btcentralplus.com) (anthony.freenode.net irc.freenode.net)
- # [04:28] * Quits: zcorpan_ (n=zcorpan@84-216-40-128.sprayadsl.telenor.se) (anthony.freenode.net irc.freenode.net)
- # [04:28] * Quits: MikeSmith (n=MikeSmit@58.157.21.204) (anthony.freenode.net irc.freenode.net)
- # [04:28] * Quits: deltab (n=deltab@82-46-154-93.cable.ubr02.smal.blueyonder.co.uk) (anthony.freenode.net irc.freenode.net)
- # [04:28] * Quits: laug (n=laug@poy.chewa.net) (anthony.freenode.net irc.freenode.net)
- # [04:28] * Quits: didymos (i=jho@rapwap.razor.dk) (anthony.freenode.net irc.freenode.net)
- # [04:28] * Quits: hsivonen (n=hsivonen@kekkonen.cs.hut.fi) (anthony.freenode.net irc.freenode.net)
- # [04:30] <zcorpan> i guess it makes sense to pop the noscript when it contains non-HEAD content, and then treat it as if it was found in HEAD
- # [04:30] * Joins: laug (n=laug@poy.chewa.net)
- # [04:30] <zcorpan> i.e., .innerHTML being <head><noscript></noscript></head><body>XY</body>
- # [04:31] * Joins: hsivonen (n=hsivonen@kekkonen.cs.hut.fi)
- # [04:34] * Joins: gsnedders (n=gsnedder@host86-139-123-225.range86-139.btcentralplus.com)
- # [04:36] * Joins: jruderman (n=jruderma@corp-242.mountainview.mozilla.com)
- # [04:36] * Joins: zcorpan_ (n=zcorpan@84-216-40-128.sprayadsl.telenor.se)
- # [04:36] * Joins: MikeSmith (n=MikeSmit@58.157.21.204)
- # [04:36] * Joins: deltab (n=deltab@82-46-154-93.cable.ubr02.smal.blueyonder.co.uk)
- # [04:36] * Joins: didymos (i=jho@rapwap.razor.dk)
- # [04:37] * Quits: didymos (i=jho@rapwap.razor.dk) (Connection reset by peer)
- # [04:38] * Joins: didymos (i=jho@rapwap.razor.dk)
- # [04:46] * Quits: zcorpan_ (n=zcorpan@84-216-40-128.sprayadsl.telenor.se) (Read error: 110 (Connection timed out))
- # [04:47] * Quits: MikeSmith (n=MikeSmit@58.157.21.204) (anthony.freenode.net irc.freenode.net)
- # [04:47] * Quits: deltab (n=deltab@82-46-154-93.cable.ubr02.smal.blueyonder.co.uk) (anthony.freenode.net irc.freenode.net)
- # [04:47] * Joins: MikeSmith (n=MikeSmit@58.157.21.204)
- # [04:47] * Joins: deltab (n=deltab@82-46-154-93.cable.ubr02.smal.blueyonder.co.uk)
- # [04:49] * Joins: KevinMarks (n=KevinMar@66.120.92.34)
- # [04:50] <zcorpan> http://simon.html5.org/test/html/parsing/noscript-in-head/
- # [04:54] * Quits: MikeSmith (n=MikeSmit@58.157.21.204) (anthony.freenode.net irc.freenode.net)
- # [04:54] * Quits: deltab (n=deltab@82-46-154-93.cable.ubr02.smal.blueyonder.co.uk) (anthony.freenode.net irc.freenode.net)
- # [04:57] * Joins: deltab (n=deltab@82-46-154-93.cable.ubr02.smal.blueyonder.co.uk)
- # [04:57] * Joins: MikeSmith (n=MikeSmit@58.157.21.204)
- # [05:18] * Joins: othermaciej (n=mjs@netblock-66-245-248-74.dslextreme.com)
- # [05:25] * Quits: othermaciej (n=mjs@netblock-66-245-248-74.dslextreme.com)
- # [05:30] * Quits: KevinMarks (n=KevinMar@pdpc/supporter/active/kevinmarks) ("The computer fell asleep")
- # [05:32] * Joins: jeremyb_ (n=jeremy@ool-44c7d57c.dyn.optonline.net)
- # [05:32] * Joins: KevinMarks (n=KevinMar@66.120.92.34)
- # [05:46] * Quits: jeremyb (n=jeremy@ool-44c7d57c.dyn.optonline.net) (Nick collision from services.)
- # [05:46] * jeremyb_ is now known as jeremyb
- # [06:05] <Hixie> zcorpan: your proposal for parsing <noscript> wouldn't allow round-tripping of valid dacuments, which is a requirement
- # [06:05] <Hixie> oh wait
- # [06:05] <Hixie> actually
- # [06:05] <Hixie> it would
- # [06:05] <Hixie> well...
- # [06:05] * Hixie ponders
- # [06:05] <Hixie> what you proposed probably wouldn't but there are ways around it i guess
- # [06:05] <Hixie> hm
- # [06:06] * Quits: KevinMarks (n=KevinMar@66.120.92.34) ("The computer fell asleep")
- # [06:08] <zcorpan> Hixie: i don't follow, what is the problem?
- # [06:09] <Hixie> nothing
- # [06:09] <Hixie> just thinking out loud
- # [06:09] <zcorpan> oh, ok
- # [06:09] <Hixie> sorry :-)
- # [06:09] <zcorpan> no worries :)
- # [06:13] * Quits: jruderman (n=jruderma@corp-242.mountainview.mozilla.com)
- # [06:15] * Joins: othermaciej (n=mjs@dsl081-048-145.sfo1.dsl.speakeasy.net)
- # [06:23] * Joins: csarven (n=nevrasc@modemcable081.152-201-24.mc.videotron.ca)
- # [06:26] * Joins: yod (n=ot@softbank221018155222.bbtec.net)
- # [06:29] * Joins: bzed_ (n=bzed@dslb-084-059-117-214.pools.arcor-ip.net)
- # [06:35] * Quits: csarven (n=nevrasc@modemcable081.152-201-24.mc.videotron.ca) (Read error: 60 (Operation timed out))
- # [06:38] * Quits: markp (n=markp@adsl-214-241-105.rmo.bellsouth.net) (Read error: 113 (No route to host))
- # [06:47] * Quits: bzed (n=bzed@dslb-084-059-105-081.pools.arcor-ip.net) (Read error: 110 (Connection timed out))
- # [07:10] * Quits: zcorpan (n=zcorpan@84-216-40-128.sprayadsl.telenor.se) (Read error: 110 (Connection timed out))
- # [07:31] * Joins: jruderman (n=jruderma@c-67-169-24-116.hsd1.ca.comcast.net)
- # [07:33] * moeffju is now known as moeffju[ZzZz]
- # [07:46] * Joins: aroben_ (n=adamrobe@c-67-160-250-192.hsd1.ca.comcast.net)
- # [07:46] * Quits: aroben_ (n=adamrobe@c-67-160-250-192.hsd1.ca.comcast.net) (Read error: 104 (Connection reset by peer))
- # [07:46] * Joins: aroben_ (n=adamrobe@c-67-160-250-192.hsd1.ca.comcast.net)
- # [08:03] * Joins: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [08:04] * Quits: weinigLap (n=weinig@17.203.15.217)
- # [08:15] * Joins: Toolskyn (n=Toolskyn@adsl-dc-266ef.adsl.wanadoo.nl)
- # [08:25] * Quits: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [08:27] * Joins: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [08:28] * Quits: webben (n=benh@91.84.137.29) (Client Quit)
- # [08:33] * Quits: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [08:37] * Joins: Lachy (n=Lachlan@210-84-36-41.dyn.iinet.net.au)
- # [08:39] * Joins: weinigLap (n=weinig@c-67-188-78-122.hsd1.ca.comcast.net)
- # [09:07] * Joins: Toolskyn88 (n=Toolskyn@adsl-dc-266ef.adsl.wanadoo.nl)
- # [09:13] * Joins: annevk (n=annevk@c5144430c.cable.wanadoo.nl)
- # [09:20] * Joins: KevinMarks (n=Snak@h-68-164-93-9.snvacaid.dynamic.covad.net)
- # [09:20] * Quits: h3h (n=w3rd@cpe-66-75-149-197.san.res.rr.com) ("|")
- # [09:21] * Joins: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [09:24] * Quits: Toolskyn (n=Toolskyn@adsl-dc-266ef.adsl.wanadoo.nl) (Read error: 110 (Connection timed out))
- # [09:25] * Quits: aroben_ (n=adamrobe@c-67-160-250-192.hsd1.ca.comcast.net)
- # [09:31] * Quits: karlUshi (n=karl@dhcp-247-173.mag.keio.ac.jp) ("Where dwelt Ymir, or wherein did he find sustenance?")
- # [09:33] * Quits: annevk (n=annevk@c5144430c.cable.wanadoo.nl) (Read error: 110 (Connection timed out))
- # [09:37] * Quits: Lachy (n=Lachlan@210-84-36-41.dyn.iinet.net.au) ("Leaving")
- # [09:38] * Quits: MikeSmith (n=MikeSmit@58.157.21.204) (Read error: 104 (Connection reset by peer))
- # [09:39] * Joins: MikeSmith (n=MikeSmit@58.157.21.204)
- # [10:12] * Quits: yod (n=ot@softbank221018155222.bbtec.net) ("Leaving")
- # [10:14] * Quits: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [10:15] * Joins: ROBOd (n=robod@86.34.246.154)
- # [10:27] * Joins: Jero (n=Jero@d207230.upc-d.chello.nl)
- # [10:42] * Quits: weinigLap (n=weinig@c-67-188-78-122.hsd1.ca.comcast.net)
- # [10:47] * Joins: Toolskyn_ (n=Toolskyn@adsl-dc-266ef.adsl.wanadoo.nl)
- # [10:48] * Joins: annevk (n=annevk@c5144430c.cable.wanadoo.nl)
- # [10:48] * Quits: annevk (n=annevk@c5144430c.cable.wanadoo.nl) (Remote closed the connection)
- # [10:49] * Joins: annevk (n=annevk@c5144430c.cable.wanadoo.nl)
- # [10:54] * Quits: Toolskyn88 (n=Toolskyn@adsl-dc-266ef.adsl.wanadoo.nl) (Read error: 60 (Operation timed out))
- # [10:55] * Quits: kfish (n=conrad@61.194.21.25) (Remote closed the connection)
- # [10:55] * Joins: kfish (n=conrad@61.194.21.25)
- # [11:00] <Jero> I've been reading Lachy's article about the <b> and <i> elements and I can't help thinking "then what about <u>, <s>, <strike>, and <big>!?"
- # [11:00] <Jero> I know they're deprecated in HTML 4 and all, but the reason for keeping <b> and <i> would IMO also apply to those elements.
- # [11:06] <othermaciej> the official reasoning in the HTML5 spec for what elements are kept is that they can represent useful semantics associated with the given default presentation
- # [11:07] <Jero> then so can the <u> element, right?
- # [11:08] * Quits: annevk (n=annevk@c5144430c.cable.wanadoo.nl) (Read error: 110 (Connection timed out))
- # [11:09] <othermaciej> <u> is not used for any common typographical conventions in typeset text
- # [11:09] <othermaciej> (underline rather)
- # [11:11] <Jero> but the underline also hints that the text somehow has a different meaning than the rest of the text
- # [11:13] <hsivonen> does Python come with a standard library that allows me to spider the Web Forms 2.0 test suite without invoking wget?
- # [11:14] <virtuelv> hsivonen: I can't think of anything offhand, but would http://cheeseshop.python.org/pypi/spider.py/0.5 help?
- # [11:14] <hsivonen> Jero: fwiw, I'd like to keep <u> for the use cases that <m> has been created for
- # [11:15] <hsivonen> virtuelv: thanks. the point of avoiding wget is avoiding any non-default stuff, though
- # [11:20] * hsivonen hacks up something quick and dirty
- # [11:23] <KevinMarks> hsivonen: you can use urllib
- # [11:23] <KevinMarks> see diveintopython.org for examples
- # [11:23] <hsivonen> KevinMarks: thanks
- # [11:24] * hsivonen didn't know urllib can spider
- # [11:25] <KevinMarks> well, depends what you mean by spider
- # [11:25] <KevinMarks> http://diveintopython.org/html_processing/index.html is an overview
- # [11:26] <KevinMarks> though if it's a hack and not some performance fest, use BeautifulSoup
- # [11:28] * Joins: Welly (n=Welly@62-31-160-20.cable.ubr11.azte.blueyonder.co.uk)
- # [11:28] <hsivonen> KevinMarks: I only want to grab a local copy of Anne's Web Forms 2.0 test suite without invoking anything that users don't get by installing a vanilla *nix system and python
- # [11:28] <hsivonen> KevinMarks: the diveintopython stuff is what I need. thanks
- # [11:28] <KevinMarks> ah, right, no parsing
- # [11:29] <KevinMarks> http://diveintopython.org/http_web_services/index.html is the right place to start then
- # [11:30] <KevinMarks> http://diveintopython.org/http_web_services/review.html specifically ;)
- # [11:32] <hsivonen> KevinMarks: yeah, I have the single url download case covered already. need to traverse the directories, though
- # [11:33] <hsivonen> which is what the html_processing example shows
- # [11:33] <virtuelv> hsivonen: why do you want to avoid wget?
- # [11:33] <KevinMarks> markp++
- # [11:33] * Joins: BenWard (i=BenWard@nat/yahoo/x-5037431bbbba5bf8)
- # [11:33] <hsivonen> virtuelv: Mac OS X doesn't have wget by default
- # [11:33] <virtuelv> ah
- # [11:33] <virtuelv> neither does windows, for that matter
- # [11:38] * Joins: hendry (n=hendry@91.84.62.62)
- # [11:43] <Jero> hsivonen: yeah, keeping <u> instead of <m> seems reasonable
- # [11:44] <Jero> but still, keeping those presentational elements because the can represent useful semantics associated with the given default presentation still seems a bit odd to me
- # [11:44] <Jero> heck, even <blink> would fall under that
- # [11:45] * Quits: KevinMarks (n=Snak@pdpc/supporter/active/kevinmarks) ("rebooting")
- # [11:48] * Joins: KevinMarks (n=KevinMar@h-68-164-93-9.snvacaid.dynamic.covad.net)
- # [11:49] <MikeSmith> kfish - PechaKuchaNight tonight in Tokyo
- # [11:50] <MikeSmith> http://www.tokyoartbeat.com/event/2007/EE5B
- # [11:50] <MikeSmith> volume 42
- # [11:50] <kfish> MikeSmith, sweet
- # [11:51] <MikeSmith> you should come up and do a web-designer-friendly 20x20 overview of Annodex some time
- # [11:51] <kfish> MikeSmith, sounds good :-)
- # [11:54] <hsivonen> hendry: did you see Ari Jaaksi's blog post from May 15th about Mobile Web being dead?
- # [11:54] <virtuelv> hsivonen: url?
- # [11:55] <hsivonen> virtuelv: http://jaaksi.blogspot.com/2007/05/mobile-is-dead.html
- # [11:55] <virtuelv> ty
- # [11:56] <hendry> hsivonen: no I haven't, will read.
- # [12:08] * Joins: maikmerten (n=maikmert@L9a1f.l.pppool.de)
- # [12:08] * Joins: mikeday (n=mikeday@60.224.50.129)
- # [12:13] <hendry> hsivonen: i left a comment
- # [12:33] * bzed_ is now known as bzed
- # [12:33] * Joins: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [12:35] * Joins: Ducki (n=Alex@nrdh-d9b980d7.pool.mediaWays.net)
- # [12:37] <hendry> hsivonen: do you anything about fonts?
- # [12:37] <hendry> :)
- # [12:37] <hsivonen> hendry: I know about fonts but I'm not doing anything about fonts
- # [12:38] <hendry> I was wondering how fonts like Dejavu and perhaps VeraSansYuanTi gets treated by CSS
- # [12:38] <mikeday> font-family: DejaVu Sans;
- # [12:39] <hendry> or how rather Firefox chooses the fonts
- # [12:39] <hsivonen> hendry: depends on the UA and the font back end I guess
- # [12:39] <hendry> as i don't expect Web authors to do a "font-family: DejaVu Sans;"
- # [12:39] <hsivonen> hendry: why not? without testing, I'd expecting Safari to support that
- # [12:39] <mikeday> use @font-face to map "sans-serif" to "DejaVu Sans" :)
- # [12:39] <hendry> aren't Web authors supposed to choose a family or something? instead of an actualy named font
- # [12:40] <hsivonen> hendry: DejaVu Sans is a font family in CSS terms
- # [12:40] <hendry> where can i read further about this? is the a CSS font doc I wonder
- # [12:41] * Quits: KevinMarks (n=KevinMar@pdpc/supporter/active/kevinmarks) ("The computer fell asleep")
- # [12:41] <hsivonen> mikeday: speaking of CSS fonts and DejaVu: for some reason, prince didn't find the DejaVu fonts in /Library/Fonts. I had to install them in prince's own font dir and edit fonts.css
- # [12:41] <mikeday> there are the standard families: serif, sans-serif, cursive, monospace
- # [12:42] <mikeday> hsivonen, can other MacOS X apps see them?
- # [12:43] <hendry> i wonder if there is some firefox option to show all the registered fonts?
- # [12:43] <hendry> on the system.
- # [12:44] <mikeday> Font Book or \Windows\Fonts or whatever depending on platform
- # [12:45] <mikeday> it's not really a browser-specific thing
- # [12:46] <hendry> well, just to know what Firefox (on the system) sees when it comes to fonts, not so much the system
- # [12:47] <hendry> gosh, did that make any sense :)
- # [12:47] <mikeday> yeah, that makes sense
- # [12:47] <mikeday> when you run prince --debug it prints a list of all the fonts that it can see
- # [12:47] <hendry> mikeday: you wrote Prince?
- # [12:47] <mikeday> ie. all the fonts that show up when it asks the OS: "Which fonts are installed?"
- # [12:48] <mikeday> well, the easy bits :)
- # [12:48] <mikeday> (and the font system, which is a nasty bit, I guess)
- # [12:48] <hendry> mikeday: it's pretty cool. :)
- # [12:49] <mikeday> thank you, I'm glad you like it :)
- # [12:53] <mikeday> funny thing about the default font families is that you can't mix and match them
- # [12:53] <mikeday> eg. font-family: serif monospace;
- # [12:54] <hendry> mikeday: http://static.natalian.org/2007-05-30/fc-list_monty.txt http://static.natalian.org/2007-05-30/monty-fonts.txt
- # [12:54] <mikeday> the presence of serifs is orthogonal to monospacing
- # [12:54] <hendry> fc-list seems to pick up more. what is fc-list doing I wonder?
- # [12:54] <hendry> are the 'standard families' et al documented somewhere?
- # [12:54] <mikeday> it is probably including PostScript Type 1 fonts, which Prince doesn't support yet
- # [12:55] <mikeday> all the fonts that Prince lists should be TrueType fonts
- # [12:55] <mikeday> http://www.w3.org/TR/CSS21/fonts.html#generic-font-families
- # [12:55] <hendry> monty$ wc -l monty-fonts.txt fc-list_monty.txt
- # [12:55] <hendry> 63 monty-fonts.txt
- # [12:55] <hendry> 179 fc-list_monty.txt
- # [12:56] <mikeday> rather Latin-centric, the standard font families
- # [12:56] <mikeday> they might as well be named Times, Helvetica, and Courier; it'd be less typing
- # [12:57] <hendry> mikeday: dejavu isn't mentioned on http://www.w3.org/TR/CSS21/fonts.html#generic-font-families
- # [12:57] <mikeday> no, as DejaVu is an actual font, derived from Bitstream Vera
- # [12:57] <mikeday> not a generic abstract font family, as defined by CSS
- # [12:58] <mikeday> "sans-serif" is not a physical font, it's a placeholder for any number of actual fonts
- # [12:58] <mikeday> (that don't have serifs, hopefully)
- # [12:58] <hendry> this is a science ...
- # [13:05] <mikeday> possibly the most useless generic font family is "fantasy"
- # [13:05] <mikeday> useless because it doesn't map to any obvious Microsoft Core font :)
- # [13:05] <hendry> i find it confusing that actual font can be in font-family like "font-family: DejaVu Sans;"
- # [13:06] <hendry> mikeday: do you have exp with CJK fonts? esp. Chinese?
- # [13:06] <mikeday> a little
- # [13:06] <mikeday> I use the Arphic fonts
- # [13:08] <hendry> afaik there a four free chinese fonts ttf-arphic-ukai ttf-arphic-uming ttf-fireflysung xfonts-wqy
- # [13:08] <mikeday> the arphic font pack includes several fonts
- # [13:08] <mikeday> eg. traditional + simplified variants
- # [13:09] <mikeday> hmm, actually, they're each in separate packages now it seems
- # [13:09] <hendry> is it actually used out there? compared to proprietary simsun or VeraSansYuanTi?
- # [13:09] <mikeday> ttf-arphic-gbsn00lp, ttf-arphic-gkai00mp for the simplified ones
- # [13:09] <mikeday> I have no idea, but I would guess that most Chinese websites are designed for Microsoft fonts
- # [13:10] <hendry> damn, this is hard. :)
- # [13:11] <mikeday> what are you trying to do, actually?
- # [13:11] <hendry> build an OS http://webconverger.com/
- # [13:11] <hendry> that doesn't suck for the Chinese market :)
- # [13:12] <hsivonen> mikeday: yeah, Font Book saw them
- # [13:12] <mikeday> define OS?
- # [13:12] <mikeday> hsivonen, they are probably getting silently dropped by Prince for some reason
- # [13:13] <mikeday> Prince 6.0 rev 2 includes a fix for some font issues on MacOS X, and extra debug info
- # [13:13] <mikeday> (see Prince development roadmap http://www.princexml.com/roadmap/ )
- # [13:13] <hsivonen> mikeday: ok. I didn't know about --debug nor about a roadmap. thanks
- # [13:14] <hsivonen> mikeday: I'm on Mac OS X 10.4.9
- # [13:14] <mikeday> the roadmap is new, it's an experiment in being open to our users :)
- # [13:14] <hendry> mikeday: based on Debian. boots up kernel. detects hardware, launches X and Firefox (Webconverger)
- # [13:14] * Quits: Ducki (n=Alex@nrdh-d9b980d7.pool.mediaWays.net) (Read error: 113 (No route to host))
- # [13:14] <mikeday> so it's like a distro for web kiosks
- # [13:15] <mikeday> and you're wondering what packages you need to include?
- # [13:15] <hendry> mikeday: http://flickr.com/photos/hendry/521334985/
- # [13:15] <hendry> mikeday: yes, exactly
- # [13:15] <hendry> mikeday: though I've lived out in CJK
- # [13:16] <hendry> and I know that they're really fussy about the fonts.
- # [13:16] <mikeday> hmm, sina.com.cn looks better than that when I load it here
- # [13:16] <mikeday> try installing all the arphic fonts
- # [13:17] <hendry> ok, though will Firefox use them I wonder.
- # [13:17] <hendry> I think that test rendering looks pretty bad myself :)
- # [13:18] <mikeday> it should use them if they are installed properly, otherwise might need some Fontconfig tweaking
- # [13:18] * othermaciej is now known as om_sleep
- # [13:21] <hendry> mikeday: ok, i'll try a build out later. Webconverger is totally free software btw http://svn.debian.org/wsvn/debian-live/configs/webconverger-cn/config/chroot_local-packageslists/locale?op=file&rev=0&sc=0
- # [13:21] <hendry> mikeday: thanks for your help, I need to get busy on other stuff
- # [13:21] * mikeday waves
- # [13:24] * Joins: annevk (n=annevk@c5144430c.cable.wanadoo.nl)
- # [13:28] * Parts: annevk (n=annevk@c5144430c.cable.wanadoo.nl)
- # [13:40] * Joins: ddfreyne (n=ddfreyne@d51A5CE12.access.telenet.be)
- # [13:42] * Joins: Ducki (i=Ducki@nrdh-d9b980cc.pool.mediaWays.net)
- # [13:44] * Quits: mikeday (n=mikeday@60.224.50.129) ("-")
- # [13:46] * moeffju[ZzZz] is now known as moeffju
- # [13:57] * Joins: csarven (n=nevrasc@modemcable081.152-201-24.mc.videotron.ca)
- # [14:04] * hsivonen tries to figure out the most robust way to track which files in the Opera test suite are expected to be conforming and which ones are expected to be non-conforming
- # [14:09] * Joins: Ducki_ (n=Alex@nrdh-d9b980d5.pool.mediaWays.net)
- # [14:26] * Quits: Ducki (i=Ducki@nrdh-d9b980cc.pool.mediaWays.net) (Read error: 113 (No route to host))
- # [14:32] * Quits: Jero (n=Jero@d207230.upc-d.chello.nl) (Read error: 104 (Connection reset by peer))
- # [14:35] * Quits: hendry (n=hendry@91.84.62.62) (Read error: 60 (Operation timed out))
- # [14:39] * Joins: hendry (n=hendry@91.84.62.62)
- # [15:00] * Joins: Jero (n=Jero@d207230.upc-d.chello.nl)
- # [15:12] * Joins: zcorpan (n=zcorpan@84-216-41-246.sprayadsl.telenor.se)
- # [15:18] * Quits: Ducki_ (n=Alex@nrdh-d9b980d5.pool.mediaWays.net) (Read error: 110 (Connection timed out))
- # [15:22] * Quits: MikeSmith (n=MikeSmit@58.157.21.204) (Read error: 110 (Connection timed out))
- # [15:22] * Joins: MikeSmith (n=MikeSmit@58.157.21.204)
- # [15:40] * Quits: kfish (n=conrad@61.194.21.25) ("酒")
- # [15:41] * Quits: MikeSmith (n=MikeSmit@58.157.21.204) (Read error: 110 (Connection timed out))
- # [15:44] * Joins: MikeSmith (n=MikeSmit@58.157.21.204)
- # [16:16] * Joins: wakaba (n=w@118.166.210.220.dy.bbexcite.jp)
- # [16:17] * Joins: jcgregorio (i=chatzill@nat/ibm/x-45ca0c2f1d75feab)
- # [16:24] * Quits: wakaba_ (n=w@118.166.210.220.dy.bbexcite.jp) (Read error: 60 (Operation timed out))
- # [16:26] * Joins: markp (n=markp@adsl-214-241-105.rmo.bellsouth.net)
- # [16:35] * Joins: billmason (n=billmaso@ip156.unival.com)
- # [16:37] <gsnedders> markp: you see my email about having non ASCII superset encoded autodiscovery tests?
- # [16:38] * Parts: billmason (n=billmaso@ip156.unival.com)
- # [16:52] * Quits: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [16:53] * Joins: KevinMarks (n=KevinMar@h-68-164-93-9.snvacaid.dynamic.covad.net)
- # [16:57] <markp> gsnedders: no
- # [16:57] <markp> checking
- # [16:58] <gsnedders> markp: it was a while ago.
- # [16:59] <markp> doesn't mean anything
- # [17:00] <gsnedders> markp: what doesn't? the date? the email? something else?
- # [17:00] <markp> found it
- # [17:00] <markp> er, the fact that it was a while ago <-- doesn't mean anything
- # [17:00] <markp> i'm months behind on email
- # [17:00] <gsnedders> ah
- # [17:00] <markp> ah, from november?
- # [17:01] <gsnedders> markp: 20th Feb
- # [17:01] <markp> hmm
- # [17:01] <markp> aha
- # [17:01] <markp> found it
- # [17:01] <gsnedders> I talked to you about the nov one a while ago, probably in Jan or so
- # [17:02] <gsnedders> I was just thinking of something like UTF-16
- # [17:02] <markp> i can do utf-16
- # [17:02] <gsnedders> as I say, it'll break my implementation for one
- # [17:02] <markp> excellent
- # [17:03] <gsnedders> and that's part of the point of tests :P
- # [17:04] <markp> did you want the html or the xml in utf-16?
- # [17:04] <markp> or both?
- # [17:04] <gsnedders> the HTML
- # [17:05] <gsnedders> anything apart from plain ASCII XML I think should be in the Atom test case (and my implementation copes with that, just not the HTML)
- # [17:05] <gsnedders> my feeling is the XML should be kept as simple as possible, as it's really the ability to get the <link> in the HTML that's being tested
- # [17:07] * Joins: Ducki (n=Alex@nrdh-d9b9802d.pool.mediaWays.net)
- # [17:07] * Quits: markp (n=markp@adsl-214-241-105.rmo.bellsouth.net) (" HydraIRC -> http://www.hydrairc.com <- Now with extra fish!")
- # [17:08] * Joins: markp (n=markp@adsl-214-241-105.rmo.bellsouth.net)
- # [17:08] <markp> bah
- # [17:22] * Joins: zcorpan_ (n=zcorpan@84-216-41-246.sprayadsl.telenor.se)
- # [17:26] * Joins: hasather (n=hasather@81-235-209-174-no62.tbcn.telia.com)
- # [17:34] * Quits: zcorpan (n=zcorpan@84-216-41-246.sprayadsl.telenor.se) (Read error: 110 (Connection timed out))
- # [17:36] <markp> http://diveintomark.org/tests/client/autodiscovery/html4-057.html
- # [17:36] <markp> i suppose i should add a whole bunch of tests for the new rel="feed" too
- # [17:39] <virtuelv> heh. I see lowsrc="" is making a return in the form of 'cite'
- # [17:39] <virtuelv> (yes, I realise that there's a difference)
- # [17:44] * Joins: weinigLap (n=weinig@17.203.15.217)
- # [17:48] <gsnedders> markp: heh. what I didn't realise before is that we now can't actually find the <link rel="next> either now :P
- # [17:49] <markp> yeah, i had to fix that in my atomautodiscovery.py test harness too
- # [17:50] <markp> to make it easy for you, every html and xhtml file is guaranteed to have a content-type with a charset parameter
- # [17:50] <markp> so you can cheat a little
- # [17:51] <gsnedders> I don't think I'll get the fix in 1.0, as it requires changing quite a bit, and most of that stuff is already meant to go into 1.1
- # [17:51] <gsnedders> so unlikely to be fixed till the end of the year in a stable release
- # [17:59] * Joins: Ducki_ (i=Alex@nrdh-d9b9802a.pool.mediaWays.net)
- # [17:59] * Quits: ddfreyne (n=ddfreyne@unaffiliated/ddfreyne) ("kthxbai")
- # [18:14] * Quits: markp (n=markp@adsl-214-241-105.rmo.bellsouth.net) (Read error: 110 (Connection timed out))
- # [18:17] * Joins: aroben_ (i=adamrobe@nat/apple/x-130634707f60bc47)
- # [18:22] * Quits: aroben_ (i=adamrobe@nat/apple/x-130634707f60bc47)
- # [18:23] * Quits: Ducki (n=Alex@nrdh-d9b9802d.pool.mediaWays.net) (Read error: 110 (Connection timed out))
- # [18:27] * Joins: aroben_ (i=adamrobe@nat/apple/x-822fef46d1d92ee0)
- # [18:27] * Quits: KevinMarks (n=KevinMar@pdpc/supporter/active/kevinmarks) ("The computer fell asleep")
- # [18:33] * Quits: weinigLap (n=weinig@17.203.15.217)
- # [18:33] * Joins: weinigLap (n=weinig@17.203.15.217)
- # [18:41] * Quits: aroben_ (i=adamrobe@nat/apple/x-822fef46d1d92ee0) (Read error: 104 (Connection reset by peer))
- # [18:41] * Joins: aroben_ (i=adamrobe@nat/apple/x-8a8f692cd9ab290b)
- # [18:42] * Quits: weinigLap (n=weinig@17.203.15.217)
- # [18:42] * Joins: weinigLap (n=weinig@17.203.15.217)
- # [18:44] * Quits: BenWard (i=BenWard@nat/yahoo/x-5037431bbbba5bf8) ("Fades out again…")
- # [18:47] * Quits: aroben_ (i=adamrobe@nat/apple/x-8a8f692cd9ab290b)
- # [18:52] * Joins: markp (n=markp@adsl-214-241-105.rmo.bellsouth.net)
- # [18:59] * moeffju is now known as moeffju[afk]
- # [19:16] * moeffju[afk] is now known as moeffju
- # [19:22] * Joins: hober (n=ted@unaffiliated/hober)
- # [19:23] * Quits: hober (n=ted@unaffiliated/hober) (Remote closed the connection)
- # [19:30] * Joins: kingryan (n=kingryan@corp.technorati.com)
- # [19:37] * Joins: hober (n=ted@unaffiliated/hober)
- # [19:39] * Joins: ddfreyne (n=ddfreyne@d51A5CE12.access.telenet.be)
- # [19:59] * Joins: Ducki__ (i=Alex@nrdh-d9b98039.pool.mediaWays.net)
- # [20:11] * Joins: KevinMarks (i=KevinMar@nat/google/x-1809a13a5250ce44)
- # [20:18] * Quits: Ducki_ (i=Alex@nrdh-d9b9802a.pool.mediaWays.net) (Read error: 113 (No route to host))
- # [20:19] * om_sleep is now known as othermaciej
- # [20:24] * Quits: csarven (n=nevrasc@modemcable081.152-201-24.mc.videotron.ca)
- # [20:24] * Joins: csarven (n=nevrasc@modemcable081.152-201-24.mc.videotron.ca)
- # [20:24] * moeffju is now known as moeffju[afk]
- # [20:28] * Joins: SavageX (n=maikmert@L8610.l.pppool.de)
- # [20:46] * Joins: h3h (n=w3rd@66-162-32-234.static.twtelecom.net)
- # [20:46] * Quits: hendry (n=hendry@91.84.62.62) (Read error: 104 (Connection reset by peer))
- # [20:46] * Quits: maikmerten (n=maikmert@L9a1f.l.pppool.de) (Read error: 110 (Connection timed out))
- # [20:50] * Joins: hendry (n=hendry@91.84.62.62)
- # [20:58] * Quits: Ducki__ (i=Alex@nrdh-d9b98039.pool.mediaWays.net) (Read error: 104 (Connection reset by peer))
- # [21:09] * Joins: hendry_ (n=hendry@91.84.62.62)
- # [21:09] * Quits: hendry (n=hendry@91.84.62.62) (Read error: 104 (Connection reset by peer))
- # [21:36] * Quits: SavageX (n=maikmert@L8610.l.pppool.de) (Remote closed the connection)
- # [21:41] * Quits: othermaciej (n=mjs@dsl081-048-145.sfo1.dsl.speakeasy.net)
- # [22:02] * Quits: gsnedders (n=gsnedder@host86-139-123-225.range86-139.btcentralplus.com) ("Don't touch /dev/null…")
- # [22:03] * Joins: weinigLap_ (n=weinig@17.255.100.166)
- # [22:04] * Quits: weinigLap_ (n=weinig@17.255.100.166) (Remote closed the connection)
- # [22:04] * Joins: weinigLap_ (n=weinig@17.255.100.166)
- # [22:07] * Quits: ddfreyne (n=ddfreyne@unaffiliated/ddfreyne) ("kthxbai")
- # [22:13] * Quits: ROBOd (n=robod@86.34.246.154) ("http://www.robodesign.ro")
- # [22:17] * Quits: jruderman (n=jruderma@c-67-169-24-116.hsd1.ca.comcast.net)
- # [22:19] * Quits: weinigLap (n=weinig@17.203.15.217) (Read error: 110 (Connection timed out))
- # [22:29] * Joins: met_ (n=Hassman@r5bx220.net.upc.cz)
- # [22:31] * Quits: Jero (n=Jero@d207230.upc-d.chello.nl) ("ChatZilla 0.9.78.1 [Firefox 2.0.0.3/2007030919]")
- # [22:35] * Joins: othermaciej (n=mjs@netblock-66-245-248-74.dslextreme.com)
- # [22:37] * Quits: Hixie (i=ianh@trivini.no) (Remote closed the connection)
- # [22:39] * Joins: jruderman (n=jruderma@corp-242.mountainview.mozilla.com)
- # [22:47] * Quits: weinigLap_ (n=weinig@17.255.100.166) (Remote closed the connection)
- # [22:48] * Joins: weinigLap (n=weinig@17.255.100.166)
- # [22:48] * Joins: gsnedders (n=gsnedder@host86-139-123-225.range86-139.btcentralplus.com)
- # [23:04] * Quits: jcgregorio (i=chatzill@nat/ibm/x-45ca0c2f1d75feab) ("ChatZilla 0.9.78.1 [Firefox 2.0.0.3/2007040314]")
- # [23:05] * Quits: othermaciej (n=mjs@netblock-66-245-248-74.dslextreme.com) (Read error: 110 (Connection timed out))
- # [23:09] * Quits: hendry_ (n=hendry@91.84.62.62) ("Lost terminal")
- # [23:09] * Joins: hendry (n=hendry@91.84.62.62)
- # [23:10] * Joins: Hixie (i=ianh@trivini.no)
- # [23:16] * Quits: Hixie (i=ianh@trivini.no) (Remote closed the connection)
- # [23:19] * Quits: weinigLap (n=weinig@17.255.100.166) (Remote closed the connection)
- # [23:19] * Joins: weinigLap (n=weinig@17.255.100.166)
- # [23:26] * Joins: Hixie (i=ianh@trivini.no)
- # [23:26] * Quits: Toolskyn_ (n=Toolskyn@adsl-dc-266ef.adsl.wanadoo.nl) (Connection timed out)
- # [23:47] * Joins: BenWard (n=BenWard@cpc3-cmbg2-0-0-cust58.cmbg.cable.ntl.com)
- # [23:48] * Joins: aroben_ (i=adamrobe@nat/apple/x-76162d670c8ad435)
- # [23:49] <Hixie> i'm really quite amused by the way the headers="" discussion is still going on
- # [23:59] * Quits: markp (n=markp@adsl-214-241-105.rmo.bellsouth.net) (Read error: 110 (Connection timed out))
- # [23:59] * Joins: nickshanks (n=nicholas@home.nickshanks.com)
- # Session Close: Thu May 31 00:00:00 2007
The end :)