Options:
- # Session Start: Wed Dec 18 00:00:01 2013
- # Session Ident: #whatwg
- # [00:00] * Quits: encryptd_fractal (~mfrawley@66-188-99-174.static.ftbg.wi.charter.com) (Quit: Leaving.)
- # [00:01] * Quits: jensnockert (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com) (Remote host closed the connection)
- # [00:04] * Quits: weinig (~weinig@17.114.216.117) (Quit: weinig)
- # [00:05] * Joins: jensnockert_ (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com)
- # [00:05] * Quits: danny_ (~Danny@gateway/tor-sasl/malaclyps) (Ping timeout: 240 seconds)
- # [00:06] * Joins: weinig (~weinig@17.114.216.117)
- # [00:06] * Quits: malaclyps (~Danny@unaffiliated/malaclyps) (Ping timeout: 260 seconds)
- # [00:08] * Joins: aiglesias (~aiglesias@92-195-17-190.fibertel.com.ar)
- # [00:13] * Quits: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net) (Quit: tantek)
- # [00:14] * Quits: zdobersek (~zdobersek@62-210-190-12.rev.poneytelecom.eu) (Ping timeout: 260 seconds)
- # [00:15] * Quits: barnabywalters (~barnabywa@94-76-254-5.static.as29550.net) (Quit: barnabywalters)
- # [00:15] * Quits: smaug____ (~chatzilla@cs78246079.pp.htv.fi) (Ping timeout: 252 seconds)
- # [00:16] * Quits: jorgepedret (~jorgepedr@209.82.121.50) (Quit: Computer has gone to sleep.)
- # [00:17] * Joins: jernoble (~jernoble@17.212.152.13)
- # [00:19] * Joins: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginm.net)
- # [00:21] * Quits: jensnockert_ (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com) (Remote host closed the connection)
- # [00:21] * Joins: malaclyps (~Danny@unaffiliated/malaclyps)
- # [00:21] * Joins: jensnockert (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com)
- # [00:21] * Joins: danny_ (~Danny@gateway/tor-sasl/malaclyps)
- # [00:22] <Hixie> sicking: man, this messageport thing is tough. let me think on it some more.
- # [00:23] <sicking> Hixie: i've shot some promises people an email to see if we're abusing promises.
- # [00:23] <sicking> Hixie: it's still unclear to me when promises are ok and when they are not, so it's a very good question
- # [00:23] <sicking> Hixie: Dominic has said that they are only appropriate as return values for asynchronous functions, which isn't the case here
- # [00:23] <Hixie> sicking: the problem with the promise solution is it prevents the page from bfcaching in the case of a long-lived notification-style channel (as opposed to a channel just used for query-response), which i'd really like to avoid if we can
- # [00:23] * Joins: jensnockert_ (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com)
- # [00:24] <sicking> Hixie: i don't think solving the bfcaching is an interesting use case to solve in v1
- # [00:24] * Quits: jensnockert (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com) (Read error: Connection reset by peer)
- # [00:24] <Hixie> sicking: (and also, i think it's kind of weird to have two entirely different parts of the app be in charge of rejecting and resolving the same promise, let alone the UA and the author)
- # [00:24] <sicking> Hixie: it's something that needs to be very explicitly opted in to
- # [00:25] * Joins: Dashiva (Dashiva@178-82-40-88.dynamic.hispeed.ch)
- # [00:25] * Quits: Dashiva (Dashiva@178-82-40-88.dynamic.hispeed.ch) (Changing host)
- # [00:25] * Joins: Dashiva (Dashiva@wikia/Dashiva)
- # [00:25] <Hixie> sicking: if we can find a solution that doesn't put the feature at risk like onsuspend does, and yet doesn't prevent bfcache at all like the promise does, i think it'd be great.
- # [00:25] <sicking> Hixie: the problem is that bfcaching was intended to be an optimistic and transparent feature. Anything that breaks that is not going to be interesting for us to implement since it's so unlikely that devs are going to know about bfcaching
- # [00:25] <Hixie> sicking: right
- # [00:26] * Quits: Ir1sh (~Ir1sh@89.100.254.231) (Ping timeout: 245 seconds)
- # [00:26] * Joins: ehsan (~ehsan@66.207.208.102)
- # [00:29] * Quits: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com) (Quit: sicking)
- # [00:29] * Joins: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com)
- # [00:30] <Hixie> heh, i just thought of a way that even browsers without a bfcache could get onresume in my (flawed) proposal in my last e-mail
- # [00:30] <Hixie> suppose an iframe has one end of a port
- # [00:30] <Hixie> and the other end is far away in some other process, and has onsuspend/onresume attached
- # [00:31] <Hixie> now the iframe is navigated away, but before doing so, it passes a reference to its port up to its parent (just a reference, it doesn't transfer ownership)
- # [00:31] <Hixie> the navigation causes the port to stop receiving messages, so onsuspend is sent (though actually, come to think of it, the parent could still _send_ messages, it's only receiving them that's blocked)
- # [00:31] <Hixie> now, the parent takes this port, and _transfers it to itself_, via a newly cearted MessageChannel
- # [00:32] <Hixie> created
- # [00:32] <sicking> Hixie: syntax aside, I think we need a signal that says "other side has gone away" (of course). But always enabling such a signal disables GCing. Hence we need a signal that says "I'm interested in the gone-away signal" and "i'm no longer interested in the gone-away signal". If you additionally want to solve bfcaching (which i'm not sure that you'll find any implementation interest in), you separately need three signals for "i can handle
- # [00:32] <sicking> bfcaching", "other side was bfcached" and "other side is back from bfcache"
- # [00:32] <Hixie> the port that comes out the other end is no longer owned by a "dead" Document, so the other end-point would suddenly get an onresume event :-)
- # [00:33] * Quits: weinig (~weinig@17.114.216.117) (Quit: weinig)
- # [00:33] <Hixie> sicking: yeah. i'm hoping there's some other way of looking at this that doesn't force us to block GCing or bfcaching.
- # [00:33] * Joins: frustrum (~frustrum@jaw044-res.resnet.ucsd.edu)
- # [00:33] <Hixie> sicking: especially since, in principle, we're saying that almost any sane use of ports should really be listening for these states to be well implemented.
- # [00:33] <sicking> Hixie: i'm fairly sure that it's probaly impossible
- # [00:34] * Joins: weinig (~weinig@17.114.216.117)
- # [00:34] <Hixie> it's possible, but before we chop our arm off i want to really be absolutely sure i've exhausted every idea i can come up with :-)
- # [00:34] * Quits: frustrum (~frustrum@jaw044-res.resnet.ucsd.edu) (Client Quit)
- # [00:34] <sicking> have at it
- # [00:34] * Joins: frustrum (~frustrum@jaw044-res.resnet.ucsd.edu)
- # [00:36] * Quits: zcorpan (~zcorpan@ip-200.t2.se.opera.com) (Remote host closed the connection)
- # [00:40] <sicking> Hixie: and to be cleaer, even if you did specify a mechanism to enable bfcaching, i'm not sure that we would implement. There are other features that prevent bfcaching of *way* more pages, and yet we have not implemented APIs to enable bfcaching those pages.
- # [00:43] * Joins: hasather (~hasather@guest.schibsted.no)
- # [00:44] * Quits: jensnockert_ (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com) (Remote host closed the connection)
- # [00:48] <Hixie> sicking: i wouldn't propose an API that enables it. i would just be looking for an API that didn't preclude it (while not putting bfcaching implementations at risk the way onsuspend does)
- # [00:48] * Quits: hasather (~hasather@guest.schibsted.no) (Ping timeout: 272 seconds)
- # [00:48] <Hixie> (though see notes above about how even non-bfcaching UAs could still get onresume)
- # [00:52] * Quits: marcosc (~marcosc@101.165.85.63) (Read error: Connection reset by peer)
- # [00:53] * Joins: marcosc (~marcosc@101.165.85.63)
- # [00:53] * Quits: aiglesias (~aiglesias@92-195-17-190.fibertel.com.ar) (Remote host closed the connection)
- # [00:53] * Joins: hasather (~hasather@guest.schibsted.no)
- # [00:56] * Quits: necolas (~necolas@host31-52-87-225.range31-52.btcentralplus.com) (Read error: Connection reset by peer)
- # [00:57] * Joins: necolas_ (~necolas@host31-52-87-225.range31-52.btcentralplus.com)
- # [00:58] * Quits: hasather (~hasather@guest.schibsted.no) (Ping timeout: 240 seconds)
- # [00:59] * Quits: rego (~rego@3.192.27.77.dynamic.mundo-r.com) (Remote host closed the connection)
- # [01:01] * Joins: doublec (~doublec@bit.cd.pn)
- # [01:01] * Quits: doublec (~doublec@bit.cd.pn) (Changing host)
- # [01:01] * Joins: doublec (~doublec@unaffiliated/doublec)
- # [01:02] * Parts: doublec (~doublec@unaffiliated/doublec)
- # [01:04] * Quits: jeffreyatw (~jeffreyat@nat-address.greatschools.org) (Quit: jeffreyatw)
- # [01:07] * jorendorff is now known as jorendorff_away
- # [01:07] * Joins: zcorpan (~zcorpan@2a00:801:e0:30:8118:8e67:367b:c5df)
- # [01:08] * Quits: necolas_ (~necolas@host31-52-87-225.range31-52.btcentralplus.com) (Remote host closed the connection)
- # [01:08] * Joins: mven (~mven@169.241.49.224)
- # [01:15] * Quits: zcorpan (~zcorpan@2a00:801:e0:30:8118:8e67:367b:c5df) (Ping timeout: 246 seconds)
- # [01:19] * Joins: jorgepedret (~jorgepedr@64-46-23-103.dyn.novuscom.net)
- # [01:20] * Quits: annevk (~annevk@2.31.25.203) (Remote host closed the connection)
- # [01:23] * Joins: jeffreyatw (~jeffreyat@173.247.197.10)
- # [01:25] * Quits: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginm.net) (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
- # [01:27] * Quits: mven (~mven@169.241.49.224) (Remote host closed the connection)
- # [01:32] * Quits: WeirdAl (~chatzilla@g2spf.ask.info) (Quit: ChatZilla 0.9.90.1 [Firefox 26.0/20131205075310])
- # [01:33] * Quits: weinig (~weinig@17.114.216.117) (Quit: weinig)
- # [01:37] * Joins: weinig (~weinig@17.114.216.117)
- # [01:39] * Joins: barnabywalters (~barnabywa@94-76-254-5.static.as29550.net)
- # [01:44] * Joins: hasather (~hasather@guest.schibsted.no)
- # [01:44] * Quits: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com) (Quit: sicking)
- # [01:48] * Quits: hasather (~hasather@guest.schibsted.no) (Ping timeout: 246 seconds)
- # [01:57] * Joins: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com)
- # [01:58] * Quits: decotii (~decotii@hq.croscon.com) (Quit: Leaving)
- # [01:58] * Quits: barnabywalters (~barnabywa@94-76-254-5.static.as29550.net) (Remote host closed the connection)
- # [02:05] * Quits: ap (~ap@2620:149:4:304:108e:5c75:fdab:3dc2) (Quit: ap)
- # [02:12] * Quits: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com) (Quit: sicking)
- # [02:13] * Joins: plutoniix (~plutoniix@210.213.57.70)
- # [02:17] * Joins: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com)
- # [02:18] * [[zzz]] is now known as [[zz]]
- # [02:18] * Quits: jernoble (~jernoble@17.212.152.13) (Quit: Computer has gone to sleep.)
- # [02:18] * Quits: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com) (Client Quit)
- # [02:20] * Quits: jsbell (jsbell@nat/google/x-ejgwkgetduxqefkw) (Quit: There's no place like home...)
- # [02:20] * Quits: danny_ (~Danny@gateway/tor-sasl/malaclyps) (Ping timeout: 240 seconds)
- # [02:20] * Quits: malaclyps (~Danny@unaffiliated/malaclyps) (Ping timeout: 246 seconds)
- # [02:26] * Quits: weinig (~weinig@17.114.216.117) (Quit: weinig)
- # [02:29] * Joins: jernoble (~jernoble@17.212.152.13)
- # [02:29] * Quits: ehsan (~ehsan@66.207.208.102) (Remote host closed the connection)
- # [02:30] * Joins: tantek (~tantek@172.56.17.250)
- # [02:33] * Joins: weinig (~weinig@17.114.216.117)
- # [02:34] * Quits: tantek (~tantek@172.56.17.250) (Quit: tantek)
- # [02:38] * Parts: html (~css@unaffiliated/css)
- # [02:45] * Joins: hasather (~hasather@guest.schibsted.no)
- # [02:45] * Quits: tobie (~tobielang@col74-1-88-183-112-72.fbx.proxad.net) (Quit: tobie)
- # [02:46] * Joins: jensnockert (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com)
- # [02:47] * Quits: lmclister (~lmclister@sjfw1-a.adobe.com)
- # [02:50] * Quits: hasather (~hasather@guest.schibsted.no) (Ping timeout: 272 seconds)
- # [02:51] * Quits: jensnockert (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com) (Ping timeout: 272 seconds)
- # [02:55] * Joins: hasather (~hasather@guest.schibsted.no)
- # [02:56] * Quits: jeffreyatw (~jeffreyat@173.247.197.10) (Quit: jeffreyatw)
- # [02:57] * Quits: sgalineau (~sylvaing@192.150.10.205) (Ping timeout: 252 seconds)
- # [03:00] * Quits: hasather (~hasather@guest.schibsted.no) (Ping timeout: 246 seconds)
- # [03:01] * Quits: saba (~foo@unaffiliated/saba) (Ping timeout: 250 seconds)
- # [03:06] * Joins: saba (~foo@unaffiliated/saba)
- # [03:07] * Quits: rniwa (~rniwa@17.212.154.114) (Quit: rniwa)
- # [03:08] * Joins: Goplat (~goplat@reactos/developer/Goplat)
- # [03:16] * Quits: nephyrin (~neph@2620:101:8003:200:7a2b:cbff:fe9e:2e67) (Remote host closed the connection)
- # [03:18] * Joins: nephyrin (~neph@2620:101:8003:200:7a2b:cbff:fe9e:2e67)
- # [03:19] * Quits: saba (~foo@unaffiliated/saba) (Ping timeout: 246 seconds)
- # [03:21] * Quits: jernoble (~jernoble@17.212.152.13) (Quit: Computer has gone to sleep.)
- # [03:27] * heycam is now known as heycam|away
- # [03:28] * Quits: jorgepedret (~jorgepedr@64-46-23-103.dyn.novuscom.net) (Quit: Computer has gone to sleep.)
- # [03:34] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net)
- # [03:38] * Joins: ehsan (~ehsan@24.212.206.174)
- # [03:39] * Joins: a-ja (~Instantbi@70.230.150.59)
- # [03:43] * Quits: weinig (~weinig@17.114.216.117) (Quit: weinig)
- # [03:45] * Joins: hasather (~hasather@guest.schibsted.no)
- # [03:50] * Quits: ambv (~ambv@206.108.217.134) (Quit: sys.exit(0) # computer went to sleep)
- # [03:50] * Quits: hasather (~hasather@guest.schibsted.no) (Ping timeout: 248 seconds)
- # [04:00] * Joins: danny_ (~Danny@gateway/tor-sasl/malaclyps)
- # [04:00] * danny_ is now known as malaclyps
- # [04:06] * Quits: ehsan (~ehsan@24.212.206.174) (Quit: Leaving...)
- # [04:08] * heycam|away is now known as heycam
- # [04:11] * Joins: danny_ (~Danny@unaffiliated/malaclyps)
- # [04:23] * Joins: jorgepedret (~jorgepedr@184.71.182.138)
- # [04:24] * Quits: marcosc (~marcosc@101.165.85.63) (Read error: Connection reset by peer)
- # [04:25] * Joins: marcosc (~marcosc@101.165.85.63)
- # [04:35] * Joins: sankha93 (~Instantbi@fsf/emeritus/sankha93)
- # [04:36] * Quits: sankha93 (~Instantbi@fsf/emeritus/sankha93) (Client Quit)
- # [04:45] * Joins: Ir1sh (~Ir1sh@89.100.254.231)
- # [04:45] * Joins: mven (~mven@ip68-224-15-53.lv.lv.cox.net)
- # [04:46] * Joins: hasather (~hasather@guest.schibsted.no)
- # [04:47] * Joins: jensnockert (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com)
- # [04:51] * Quits: hasather (~hasather@guest.schibsted.no) (Ping timeout: 260 seconds)
- # [04:51] * Quits: jensnockert (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com) (Ping timeout: 252 seconds)
- # [04:51] * Quits: Ir1sh (~Ir1sh@89.100.254.231) (Ping timeout: 250 seconds)
- # [04:58] * Quits: malaclyps (~Danny@gateway/tor-sasl/malaclyps) (Ping timeout: 240 seconds)
- # [04:59] * Quits: danny_ (~Danny@unaffiliated/malaclyps) (Ping timeout: 272 seconds)
- # [05:00] * Quits: jorgepedret (~jorgepedr@184.71.182.138) (Quit: Computer has gone to sleep.)
- # [05:04] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net) (Remote host closed the connection)
- # [05:05] * Joins: jorgepedret (~jorgepedr@184.71.182.138)
- # [05:06] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net)
- # [05:09] * Quits: gavinc (~gavin@barad-dur.carothers.name) (Quit: Konversation terminated!)
- # [05:11] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net) (Ping timeout: 248 seconds)
- # [05:11] * Joins: weinig (~weinig@17.114.216.117)
- # [05:14] * Quits: weinig (~weinig@17.114.216.117) (Client Quit)
- # [05:16] * Joins: saba_ (~foo@unaffiliated/saba)
- # [05:17] * Quits: ivan`` (~ivan@unaffiliated/ivan/x-000001) (Ping timeout: 252 seconds)
- # [05:25] * Joins: ivan`` (~ivan@unaffiliated/ivan/x-000001)
- # [05:27] * Joins: malaclyps (~Danny@gateway/tor-sasl/malaclyps)
- # [05:28] * Joins: danny_ (~Danny@unaffiliated/malaclyps)
- # [05:34] * Quits: jorgepedret (~jorgepedr@184.71.182.138) (Quit: Computer has gone to sleep.)
- # [05:35] * Joins: jorgepedret (~jorgepedr@184.71.182.138)
- # [05:35] * Quits: jorgepedret (~jorgepedr@184.71.182.138) (Client Quit)
- # [05:37] * Quits: saba_ (~foo@unaffiliated/saba) (Quit: leaving)
- # [05:38] * Joins: DeTeam (~DeTeam@79-172-113-147.dyn.broadband.iskratelecom.ru)
- # [05:40] * Joins: weinig (~weinig@24.130.60.35)
- # [05:42] * Quits: Bass10_ (Bass10@c-76-113-194-7.hsd1.mn.comcast.net) (Ping timeout: 252 seconds)
- # [05:47] * Joins: hasather (~hasather@guest.schibsted.no)
- # [05:52] * Quits: hasather (~hasather@guest.schibsted.no) (Ping timeout: 260 seconds)
- # [05:53] * heycam is now known as heycam|away
- # [05:54] * Quits: marcosc (~marcosc@101.165.85.63) (Read error: Connection reset by peer)
- # [05:55] * Joins: marcosc (~marcosc@101.165.85.63)
- # [05:56] * Joins: jernoble (~jernoble@17.212.152.13)
- # [06:01] * Joins: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net)
- # [06:05] * Joins: rektide (~rektide@eldergods.com)
- # [06:11] * Quits: jernoble (~jernoble@17.212.152.13) (Quit: Computer has gone to sleep.)
- # [06:12] * Quits: plutoniix (~plutoniix@210.213.57.70) (Ping timeout: 240 seconds)
- # [06:14] * Quits: rektide (~rektide@eldergods.com) (Quit: Changing server)
- # [06:17] <Hixie> deep in the middle of a page's markup, suddenly, a wild namespace appears!:
- # [06:17] <Hixie> <?xml version="1.0" encoding="utf-16"?><table xmlns="http://www.w3.org/TR/REC-html40" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:dt="urn:schemas-microsoft-com:datatypes" xmlns:user="urn:my-scripts"><tr>...
- # [06:18] * Joins: plutoniix (~plutoniix@210.213.57.70)
- # [06:20] * Quits: DeTeam (~DeTeam@79-172-113-147.dyn.broadband.iskratelecom.ru) (Quit: DeTeam)
- # [06:20] * Quits: malaclyps (~Danny@gateway/tor-sasl/malaclyps) (Ping timeout: 240 seconds)
- # [06:20] * Quits: danny_ (~Danny@unaffiliated/malaclyps) (Ping timeout: 272 seconds)
- # [06:30] * Joins: danny_ (~Danny@unaffiliated/malaclyps)
- # [06:30] * Joins: malaclyps (~Danny@gateway/tor-sasl/malaclyps)
- # [06:31] <tantek> xmlns - worst attribute ever?
- # [06:34] * Quits: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net) (Quit: tantek)
- # [06:36] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net)
- # [06:39] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net) (Remote host closed the connection)
- # [06:42] * Quits: malaclyps (~Danny@gateway/tor-sasl/malaclyps) (Ping timeout: 240 seconds)
- # [06:42] * Quits: danny_ (~Danny@unaffiliated/malaclyps) (Ping timeout: 246 seconds)
- # [06:47] * Joins: jensnockert (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com)
- # [06:48] * Joins: hasather (~hasather@guest.schibsted.no)
- # [06:52] * Quits: hasather (~hasather@guest.schibsted.no) (Ping timeout: 246 seconds)
- # [06:52] * Quits: jensnockert (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com) (Ping timeout: 252 seconds)
- # [06:52] * Joins: sicking (~sicking@c-98-210-155-26.hsd1.ca.comcast.net)
- # [06:58] * Joins: hasather (~hasather@guest.schibsted.no)
- # [07:02] * Quits: hasather (~hasather@guest.schibsted.no) (Ping timeout: 240 seconds)
- # [07:03] * Joins: tantek (~tantek@172.56.17.60)
- # [07:05] * Quits: weinig (~weinig@24.130.60.35) (Quit: weinig)
- # [07:17] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net)
- # [07:19] * Joins: Kolombiken1 (~Adium@94.137.124.2)
- # [07:23] * heycam|away is now known as heycam
- # [07:26] * Quits: jwalden (~waldo@c-98-243-38-247.hsd1.mi.comcast.net) (Quit: ChatZilla 0.9.87-7.1450hg.fc19 [XULRunner 25.0/20131030081700])
- # [07:30] * heycam is now known as heycam|away
- # [07:42] * Parts: a-ja (~Instantbi@70.230.150.59)
- # [07:44] * Joins: niloy (~niloy@223.239.200.58)
- # [07:48] * Joins: hasather (~hasather@guest.schibsted.no)
- # [07:50] * Quits: frustrum (~frustrum@jaw044-res.resnet.ucsd.edu) (Ping timeout: 240 seconds)
- # [07:52] * heycam|away is now known as heycam
- # [07:53] * Quits: hasather (~hasather@guest.schibsted.no) (Ping timeout: 272 seconds)
- # [07:55] * Joins: annevk (~annevk@2.31.25.203)
- # [07:55] * Quits: marcosc (~marcosc@101.165.85.63) (Read error: Connection reset by peer)
- # [07:56] * Quits: tantek (~tantek@172.56.17.60) (Quit: tantek)
- # [07:56] * Joins: marcosc (~marcosc@101.165.85.63)
- # [08:03] * Joins: sgalineau (~sylvaing@12.144.179.211)
- # [08:10] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net) (Remote host closed the connection)
- # [08:12] * Quits: sgalineau (~sylvaing@12.144.179.211) (Quit: Textual IRC Client: www.textualapp.com)
- # [08:15] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net)
- # [08:18] * Joins: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net)
- # [08:23] * Quits: annevk (~annevk@2.31.25.203) (Remote host closed the connection)
- # [08:25] * Quits: niloy (~niloy@223.239.200.58) (Quit: Leaving)
- # [08:26] * Quits: marcosc (~marcosc@101.165.85.63) (Read error: Connection reset by peer)
- # [08:26] * Joins: marcosc (~marcosc@101.165.85.63)
- # [08:27] * Joins: niloy (~niloy@223.239.200.58)
- # [08:39] * Krinkle is now known as Krinkle|detached
- # [08:59] * Joins: hasather (~hasather@guest.schibsted.no)
- # [09:01] * Quits: Goplat (~goplat@reactos/developer/Goplat) (Remote host closed the connection)
- # [09:03] * Quits: hasather (~hasather@guest.schibsted.no) (Ping timeout: 252 seconds)
- # [09:04] * Joins: Ms2ger (~Ms2ger@b255h194.ugent.be)
- # [09:04] * jaket_ is now known as jake
- # [09:04] * jake is now known as Guest41138
- # [09:05] * Guest41138 is now known as jaket__
- # [09:08] * Joins: ambv (~ambv@23.16.55.40)
- # [09:09] * heycam is now known as heycam|away
- # [09:12] * paul_irish_ is now known as paul_irish
- # [09:26] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net) (Remote host closed the connection)
- # [09:34] * Quits: mven (~mven@ip68-224-15-53.lv.lv.cox.net) (Remote host closed the connection)
- # [09:38] * Kolombiken1 is now known as Kolombiken
- # [09:47] * Quits: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net) (Quit: tantek)
- # [09:50] * Joins: hasather (~hasather@guest.schibsted.no)
- # [09:50] * Joins: tantek (~tantek@50.0.164.83)
- # [09:51] * Joins: rego (~rego@231.193.27.77.dynamic.mundo-r.com)
- # [09:54] * Quits: hasather (~hasather@guest.schibsted.no) (Ping timeout: 260 seconds)
- # [10:07] * Joins: DeTeam (~DeTeam@213.232.195.228)
- # [10:09] * Quits: sicking (~sicking@c-98-210-155-26.hsd1.ca.comcast.net) (Quit: sicking)
- # [10:12] * Quits: marcosc (~marcosc@101.165.85.63) (Read error: Connection reset by peer)
- # [10:12] * Joins: paul_irish_ (~paul_iris@ve.hsh6wjwx.vesrv.com)
- # [10:12] * Joins: marcosc (~marcosc@101.165.85.63)
- # [10:13] * Quits: nephyrin (~neph@2620:101:8003:200:7a2b:cbff:fe9e:2e67) (*.net *.split)
- # [10:13] * Quits: sangwhan (sid12645@gateway/web/irccloud.com/x-epgldqtouvmjsugs) (*.net *.split)
- # [10:13] * Quits: wakaba (~wakaba@154.72.102.121.dy.bbexcite.jp) (*.net *.split)
- # [10:13] * Quits: zaal (~zaal@cpc1-nrwh11-2-0-cust348.4-4.cable.virginmedia.com) (*.net *.split)
- # [10:13] * Quits: Osmose1000 (Osmose1000@2600:3c02::f03c:91ff:feae:1aeb) (*.net *.split)
- # [10:13] * Quits: amtiskaw (uid19262@gateway/web/irccloud.com/x-xejnxtpqgnlcllwk) (*.net *.split)
- # [10:13] * Quits: tyoshino (uid19222@gateway/web/irccloud.com/x-dletpusqrlsxtyto) (*.net *.split)
- # [10:13] * Quits: paul_irish (~paul_iris@ve.hsh6wjwx.vesrv.com) (*.net *.split)
- # [10:13] * Quits: frozenice (sid21176@gateway/web/irccloud.com/x-tgoxzjnoyxantvir) (*.net *.split)
- # [10:13] * Quits: scheib (sid4467@gateway/web/irccloud.com/x-srvtkqcchrnrwtgf) (*.net *.split)
- # [10:13] * Quits: rastus_vernon_ (uid15187@gateway/web/irccloud.com/x-rejnazonuviqfvhe) (*.net *.split)
- # [10:13] * Quits: cwilso (sid10206@gateway/web/irccloud.com/x-fcbzqqolrhkbuhsj) (*.net *.split)
- # [10:13] * Quits: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (*.net *.split)
- # [10:13] * Quits: dglazkov_ (uid20749@gateway/web/irccloud.com/x-ibjszzglmztdorls) (*.net *.split)
- # [10:13] * Quits: scottjehl___ (sid3055@gateway/web/irccloud.com/x-dsgakwoljmtippwi) (*.net *.split)
- # [10:13] * Quits: dfreedm (sid7859@gateway/web/irccloud.com/x-oaarubjebgprsmot) (*.net *.split)
- # [10:13] * Quits: jaeholee (uid4856@gateway/web/irccloud.com/x-hsddgemdyeqxwqlc) (*.net *.split)
- # [10:13] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (*.net *.split)
- # [10:13] * Quits: m4nu (~manu@216.252.204.51) (*.net *.split)
- # [10:13] * Quits: Scorchin (sid1242@gateway/web/irccloud.com/x-unerekhxddhtmfib) (*.net *.split)
- # [10:13] * Quits: ojan_away (uid5519@gateway/web/irccloud.com/x-riqqpavkgujdzjpb) (*.net *.split)
- # [10:13] * Quits: Domenic_ (sid10976@gateway/web/irccloud.com/x-dykwqyfghcenwncw) (*.net *.split)
- # [10:13] * Quits: pxz (pxz@2a01:7e00::f03c:91ff:fe93:309d) (*.net *.split)
- # [10:13] * Quits: gavin (~gavin@firefox/developer/gavin) (*.net *.split)
- # [10:13] * Quits: scott_gonzalez (gonzasi0@gateway/shell/jquery.com/x-oxgdbagjabrdasfk) (*.net *.split)
- # [10:13] * Quits: OliverJAsh (uid11790@gateway/web/irccloud.com/x-ykhacapnuwnkmtwp) (*.net *.split)
- # [10:13] * Quits: jamesr__ (uid10481@gateway/web/irccloud.com/x-mxejmarzmfbvapnx) (*.net *.split)
- # [10:13] * Quits: krit (sid15081@gateway/web/irccloud.com/x-qdcwjmwzvckrswdl) (*.net *.split)
- # [10:13] * Quits: cabanier (sid15093@gateway/web/irccloud.com/x-acirmgtdkfshrhnp) (*.net *.split)
- # [10:13] * Quits: phuu (sid7721@gateway/web/irccloud.com/x-baojcfnxwpmvvkar) (*.net *.split)
- # [10:13] * Quits: arv (uid4269@gateway/web/irccloud.com/x-shzqhcrgjyixjxuf) (*.net *.split)
- # [10:13] * Quits: slightlyoff (sid1768@gateway/web/irccloud.com/x-nykqrwislsohodso) (*.net *.split)
- # [10:13] * alecf_ is now known as alecf
- # [10:15] * alecf is now known as 77CAAS99W
- # [10:15] * Joins: nephyrin (~neph@2620:101:8003:200:7a2b:cbff:fe9e:2e67)
- # [10:15] * Joins: sangwhan (sid12645@gateway/web/irccloud.com/x-epgldqtouvmjsugs)
- # [10:15] * Joins: wakaba (~wakaba@154.72.102.121.dy.bbexcite.jp)
- # [10:15] * Joins: zaal (~zaal@cpc1-nrwh11-2-0-cust348.4-4.cable.virginmedia.com)
- # [10:15] * Joins: Osmose1000 (Osmose1000@2600:3c02::f03c:91ff:feae:1aeb)
- # [10:15] * Joins: amtiskaw (uid19262@gateway/web/irccloud.com/x-xejnxtpqgnlcllwk)
- # [10:15] * Joins: tyoshino (uid19222@gateway/web/irccloud.com/x-dletpusqrlsxtyto)
- # [10:15] * Joins: frozenice (sid21176@gateway/web/irccloud.com/x-tgoxzjnoyxantvir)
- # [10:15] * Joins: scheib (sid4467@gateway/web/irccloud.com/x-srvtkqcchrnrwtgf)
- # [10:15] * Joins: rastus_vernon_ (uid15187@gateway/web/irccloud.com/x-rejnazonuviqfvhe)
- # [10:15] * Joins: cwilso (sid10206@gateway/web/irccloud.com/x-fcbzqqolrhkbuhsj)
- # [10:15] * Joins: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net)
- # [10:15] * Joins: scottjehl___ (sid3055@gateway/web/irccloud.com/x-dsgakwoljmtippwi)
- # [10:15] * Joins: dglazkov_ (uid20749@gateway/web/irccloud.com/x-ibjszzglmztdorls)
- # [10:15] * Joins: dfreedm (sid7859@gateway/web/irccloud.com/x-oaarubjebgprsmot)
- # [10:15] * Joins: jaeholee (uid4856@gateway/web/irccloud.com/x-hsddgemdyeqxwqlc)
- # [10:15] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [10:15] * Joins: m4nu (~manu@216.252.204.51)
- # [10:15] * Joins: Scorchin (sid1242@gateway/web/irccloud.com/x-unerekhxddhtmfib)
- # [10:15] * Joins: ojan_away (uid5519@gateway/web/irccloud.com/x-riqqpavkgujdzjpb)
- # [10:15] * Joins: phuu (sid7721@gateway/web/irccloud.com/x-baojcfnxwpmvvkar)
- # [10:15] * Joins: Domenic_ (sid10976@gateway/web/irccloud.com/x-dykwqyfghcenwncw)
- # [10:15] * Joins: pxz (pxz@2a01:7e00::f03c:91ff:fe93:309d)
- # [10:15] * Joins: gavin (~gavin@firefox/developer/gavin)
- # [10:15] * Joins: scott_gonzalez (gonzasi0@gateway/shell/jquery.com/x-oxgdbagjabrdasfk)
- # [10:15] * Joins: OliverJAsh (uid11790@gateway/web/irccloud.com/x-ykhacapnuwnkmtwp)
- # [10:15] * Joins: jamesr__ (uid10481@gateway/web/irccloud.com/x-mxejmarzmfbvapnx)
- # [10:15] * Joins: krit (sid15081@gateway/web/irccloud.com/x-qdcwjmwzvckrswdl)
- # [10:15] * Joins: cabanier (sid15093@gateway/web/irccloud.com/x-acirmgtdkfshrhnp)
- # [10:15] * Joins: arv (uid4269@gateway/web/irccloud.com/x-shzqhcrgjyixjxuf)
- # [10:15] * Joins: slightlyoff (sid1768@gateway/web/irccloud.com/x-nykqrwislsohodso)
- # [10:16] * Joins: hasather (~hasather@80.91.33.141)
- # [10:17] * Quits: krijn (sid2319@gateway/web/irccloud.com/x-xeoofkjkctsydvvh) (Ping timeout: 245 seconds)
- # [10:18] * Quits: falken_ (uid20729@gateway/web/irccloud.com/x-ruxxkjjdbbxodmec) (Ping timeout: 245 seconds)
- # [10:19] * Quits: nephyrin (~neph@2620:101:8003:200:7a2b:cbff:fe9e:2e67) (*.net *.split)
- # [10:19] * Quits: sangwhan (sid12645@gateway/web/irccloud.com/x-epgldqtouvmjsugs) (*.net *.split)
- # [10:19] * Quits: wakaba (~wakaba@154.72.102.121.dy.bbexcite.jp) (*.net *.split)
- # [10:19] * Quits: zaal (~zaal@cpc1-nrwh11-2-0-cust348.4-4.cable.virginmedia.com) (*.net *.split)
- # [10:19] * Quits: Osmose1000 (Osmose1000@2600:3c02::f03c:91ff:feae:1aeb) (*.net *.split)
- # [10:19] * Quits: tyoshino (uid19222@gateway/web/irccloud.com/x-dletpusqrlsxtyto) (*.net *.split)
- # [10:19] * Quits: amtiskaw (uid19262@gateway/web/irccloud.com/x-xejnxtpqgnlcllwk) (*.net *.split)
- # [10:19] * Quits: frozenice (sid21176@gateway/web/irccloud.com/x-tgoxzjnoyxantvir) (*.net *.split)
- # [10:19] * Quits: scheib (sid4467@gateway/web/irccloud.com/x-srvtkqcchrnrwtgf) (*.net *.split)
- # [10:19] * Quits: rastus_vernon_ (uid15187@gateway/web/irccloud.com/x-rejnazonuviqfvhe) (*.net *.split)
- # [10:19] * Quits: cwilso (sid10206@gateway/web/irccloud.com/x-fcbzqqolrhkbuhsj) (*.net *.split)
- # [10:19] * Quits: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (*.net *.split)
- # [10:19] * Quits: scottjehl___ (sid3055@gateway/web/irccloud.com/x-dsgakwoljmtippwi) (*.net *.split)
- # [10:19] * Quits: dglazkov_ (uid20749@gateway/web/irccloud.com/x-ibjszzglmztdorls) (*.net *.split)
- # [10:19] * Quits: dfreedm (sid7859@gateway/web/irccloud.com/x-oaarubjebgprsmot) (*.net *.split)
- # [10:19] * Quits: jaeholee (uid4856@gateway/web/irccloud.com/x-hsddgemdyeqxwqlc) (*.net *.split)
- # [10:19] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (*.net *.split)
- # [10:19] * Quits: m4nu (~manu@216.252.204.51) (*.net *.split)
- # [10:19] * Quits: Scorchin (sid1242@gateway/web/irccloud.com/x-unerekhxddhtmfib) (*.net *.split)
- # [10:19] * Quits: ojan_away (uid5519@gateway/web/irccloud.com/x-riqqpavkgujdzjpb) (*.net *.split)
- # [10:19] * Quits: Domenic_ (sid10976@gateway/web/irccloud.com/x-dykwqyfghcenwncw) (*.net *.split)
- # [10:19] * Quits: pxz (pxz@2a01:7e00::f03c:91ff:fe93:309d) (*.net *.split)
- # [10:19] * Quits: gavin (~gavin@firefox/developer/gavin) (*.net *.split)
- # [10:19] * Quits: scott_gonzalez (gonzasi0@gateway/shell/jquery.com/x-oxgdbagjabrdasfk) (*.net *.split)
- # [10:19] * Quits: OliverJAsh (uid11790@gateway/web/irccloud.com/x-ykhacapnuwnkmtwp) (*.net *.split)
- # [10:19] * Quits: jamesr__ (uid10481@gateway/web/irccloud.com/x-mxejmarzmfbvapnx) (*.net *.split)
- # [10:19] * Quits: krit (sid15081@gateway/web/irccloud.com/x-qdcwjmwzvckrswdl) (*.net *.split)
- # [10:19] * Quits: cabanier (sid15093@gateway/web/irccloud.com/x-acirmgtdkfshrhnp) (*.net *.split)
- # [10:19] * Quits: phuu (sid7721@gateway/web/irccloud.com/x-baojcfnxwpmvvkar) (*.net *.split)
- # [10:19] * Quits: arv (uid4269@gateway/web/irccloud.com/x-shzqhcrgjyixjxuf) (*.net *.split)
- # [10:19] * Quits: slightlyoff (sid1768@gateway/web/irccloud.com/x-nykqrwislsohodso) (*.net *.split)
- # [10:19] * Joins: falken__ (uid20729@gateway/web/irccloud.com/x-gjhawaxpbdluwgwn)
- # [10:19] * Joins: krijn_ (sid2319@gateway/web/irccloud.com/x-rtcovtstemgohhep)
- # [10:20] * Quits: tantek (~tantek@50.0.164.83) (Quit: tantek)
- # [10:21] * Joins: zcorpan (~zcorpan@2a00:801:e0:30:c5b6:d7af:c33c:9e43)
- # [10:24] * Joins: nephyrin (~neph@2620:101:8003:200:7a2b:cbff:fe9e:2e67)
- # [10:24] * Joins: sangwhan (sid12645@gateway/web/irccloud.com/x-epgldqtouvmjsugs)
- # [10:24] * Joins: wakaba (~wakaba@154.72.102.121.dy.bbexcite.jp)
- # [10:24] * Joins: zaal (~zaal@cpc1-nrwh11-2-0-cust348.4-4.cable.virginmedia.com)
- # [10:24] * Joins: Osmose1000 (Osmose1000@2600:3c02::f03c:91ff:feae:1aeb)
- # [10:24] * Joins: amtiskaw (uid19262@gateway/web/irccloud.com/x-xejnxtpqgnlcllwk)
- # [10:24] * Joins: tyoshino (uid19222@gateway/web/irccloud.com/x-dletpusqrlsxtyto)
- # [10:24] * Joins: frozenice (sid21176@gateway/web/irccloud.com/x-tgoxzjnoyxantvir)
- # [10:24] * Joins: scheib (sid4467@gateway/web/irccloud.com/x-srvtkqcchrnrwtgf)
- # [10:24] * Joins: rastus_vernon_ (uid15187@gateway/web/irccloud.com/x-rejnazonuviqfvhe)
- # [10:24] * Joins: cwilso (sid10206@gateway/web/irccloud.com/x-fcbzqqolrhkbuhsj)
- # [10:24] * Joins: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net)
- # [10:24] * Joins: scottjehl___ (sid3055@gateway/web/irccloud.com/x-dsgakwoljmtippwi)
- # [10:24] * Joins: dglazkov_ (uid20749@gateway/web/irccloud.com/x-ibjszzglmztdorls)
- # [10:24] * Joins: dfreedm (sid7859@gateway/web/irccloud.com/x-oaarubjebgprsmot)
- # [10:24] * Joins: jaeholee (uid4856@gateway/web/irccloud.com/x-hsddgemdyeqxwqlc)
- # [10:24] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [10:24] * Joins: m4nu (~manu@216.252.204.51)
- # [10:24] * Joins: Scorchin (sid1242@gateway/web/irccloud.com/x-unerekhxddhtmfib)
- # [10:24] * Joins: ojan_away (uid5519@gateway/web/irccloud.com/x-riqqpavkgujdzjpb)
- # [10:24] * Joins: phuu (sid7721@gateway/web/irccloud.com/x-baojcfnxwpmvvkar)
- # [10:24] * Joins: Domenic_ (sid10976@gateway/web/irccloud.com/x-dykwqyfghcenwncw)
- # [10:24] * Joins: pxz (pxz@2a01:7e00::f03c:91ff:fe93:309d)
- # [10:24] * Joins: gavin (~gavin@firefox/developer/gavin)
- # [10:24] * Joins: scott_gonzalez (gonzasi0@gateway/shell/jquery.com/x-oxgdbagjabrdasfk)
- # [10:24] * Joins: OliverJAsh (uid11790@gateway/web/irccloud.com/x-ykhacapnuwnkmtwp)
- # [10:24] * Joins: jamesr__ (uid10481@gateway/web/irccloud.com/x-mxejmarzmfbvapnx)
- # [10:24] * Joins: krit (sid15081@gateway/web/irccloud.com/x-qdcwjmwzvckrswdl)
- # [10:24] * Joins: cabanier (sid15093@gateway/web/irccloud.com/x-acirmgtdkfshrhnp)
- # [10:24] * Joins: arv (uid4269@gateway/web/irccloud.com/x-shzqhcrgjyixjxuf)
- # [10:24] * Joins: slightlyoff (sid1768@gateway/web/irccloud.com/x-nykqrwislsohodso)
- # [10:30] * Quits: fredy (~fredy@snf-8914.vm.okeanos.grnet.gr) (Quit: ZNC - http://znc.sourceforge.net)
- # [10:33] * Joins: fredy (~fredy@snf-8914.vm.okeanos.grnet.gr)
- # [10:34] <matjas> I just realized that XHTML handles character references differently
- # [10:34] <matjas> i.e. `…` → U+0085 in XHTML, while in HTML it’s U+2026
- # [10:34] <matjas> but AFAICT this isn’t mentioned here: http://www.whatwg.org/specs/web-apps/current-work/multipage/tokenization.html#tokenizing-character-references what am I missing?
- # [10:35] <matjas> I assume the parsing section only applies to non-XHTML HTML, as XML is defined elsewhere, correct?
- # [10:38] <Ms2ger> That's in the HTML syntax section, no?
- # [10:39] * Joins: tobie (~tobielang@col74-1-88-183-112-72.fbx.proxad.net)
- # [10:39] * Joins: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net)
- # [10:40] <matjas> http://www.w3.org/TR/xml/#d0e3895
- # [10:41] <matjas> Ms2ger: yeah, I guess it all makes sense
- # [10:41] <matjas> just never realized this difference before — kinda mind-blowing
- # [10:42] <Ms2ger> Yay for stupid stuff
- # [10:44] * Joins: cheron (~cheron@unaffiliated/cheron)
- # [10:48] * Quits: ambv (~ambv@23.16.55.40) (Quit: sys.exit(0) # computer went to sleep)
- # [10:49] * Joins: jensnockert (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com)
- # [10:50] * Quits: marcosc (~marcosc@101.165.85.63) (Remote host closed the connection)
- # [10:50] * Joins: marcosc (~marcosc@101.165.85.63)
- # [10:54] * Quits: jensnockert (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com) (Ping timeout: 272 seconds)
- # [10:55] * Joins: Ir1sh (~Ir1sh@89.100.254.231)
- # [10:55] * Joins: ihab (~Adium@88.255.234.170)
- # [11:01] * Quits: DeTeam (~DeTeam@213.232.195.228) (Quit: DeTeam)
- # [11:06] * Joins: shaunbak_ (~shaunbake@brick-lane.lbi.co.uk)
- # [11:11] * Quits: tobie (~tobielang@col74-1-88-183-112-72.fbx.proxad.net) (Quit: tobie)
- # [11:11] * Joins: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si)
- # [11:12] * Quits: marcosc (~marcosc@101.165.85.63) (Remote host closed the connection)
- # [11:13] <zcorpan> matjas: check out http://software.hixie.ch/utilities/js/live-dom-viewer/saved/2696
- # [11:13] * Joins: marcosc (~marcosc@101.165.85.63)
- # [11:14] * Quits: vcarbune_ (~vcarbune@86.121.185.210) (Ping timeout: 260 seconds)
- # [11:17] * Quits: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si) (Quit: ZNC - http://znc.in)
- # [11:17] * Quits: marcosc (~marcosc@101.165.85.63) (Ping timeout: 256 seconds)
- # [11:18] * Joins: zdobersek (~zdobersek@91.108.183.50)
- # [11:19] * Quits: bzed (~bzed@devel.recluse.de) (Remote host closed the connection)
- # [11:19] * Joins: bzed (~bzed@devel.recluse.de)
- # [11:20] * Joins: g4 (~g4@unaffiliated/gormer)
- # [11:21] * Parts: ihab (~Adium@88.255.234.170)
- # [11:21] * Joins: ihab (~Adium@88.255.234.170)
- # [11:21] * Quits: ihab (~Adium@88.255.234.170) (Client Quit)
- # [11:23] * Joins: barnabywalters (~barnabywa@46-239-239-203.tal.is)
- # [11:24] * Joins: Lachy (~Lachy@213.166.174.2)
- # [11:24] * Joins: bzed_ (~bzed@devel.recluse.de)
- # [11:26] * Joins: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net)
- # [11:26] * Quits: bzed (~bzed@devel.recluse.de) (Ping timeout: 245 seconds)
- # [11:27] <hsivonen> zcorpan: I can't remember what Gecko does with non-JS <script src>
- # [11:30] * Joins: darobin (~darobin@78.109.80.74)
- # [11:30] * Joins: bzed (~bzed@devel.recluse.de)
- # [11:30] * Quits: bzed_ (~bzed@devel.recluse.de) (Ping timeout: 260 seconds)
- # [11:49] <zcorpan> hsivonen: in my testing it doesn't fetch anything
- # [11:51] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net)
- # [11:52] <hsivonen> zcorpan: than it doesn't :-)
- # [11:52] <hsivonen> *then
- # [11:55] <matjas> zcorpan: oh wow
- # [11:58] * Quits: plutoniix (~plutoniix@210.213.57.70) (Quit: จรลี จรลา)
- # [11:59] <hsivonen> matjas: It's kinda annoying that Unicode starts with ISO-8859-1 instead of starting with windows-1252
- # [12:07] * Quits: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net) (Quit: Computer has gone to sleep.)
- # [12:09] <annevk-cloud> So much
- # [12:12] * Joins: darobin_ (~darobin@78.109.80.74)
- # [12:12] * Quits: darobin (~darobin@78.109.80.74) (Read error: Connection reset by peer)
- # [12:12] * Joins: annevk (~annevk@207.218.72.65)
- # [12:13] * Joins: marcosc (~marcosc@101.165.85.63)
- # [12:14] * Quits: marcosc (~marcosc@101.165.85.63) (Remote host closed the connection)
- # [12:15] * Joins: marcosc (~marcosc@101.165.85.63)
- # [12:20] * Quits: Ms2ger (~Ms2ger@b255h194.ugent.be) (Quit: bbl)
- # [12:26] * Joins: vcarbune_ (~vcarbune@86.121.185.210)
- # [12:27] <darobin_> Domenic_: I read in the back log that you felt bad about being flippant and unpolitic about streams — don't. It can get a lot worse without being a problem.
- # [12:27] <darobin_> If you feel you should somehow apologise do so, but in any case just move on
- # [12:28] <darobin_> and give us a fucking streams API today :)
- # [12:28] * darobin_ is now known as darobin
- # [12:29] <hsivonen> annevk: did you check the source code for the GBK and GB18030 decoders in Gecko?
- # [12:29] <hsivonen> the latter is a subclass of the former
- # [12:29] * Joins: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net)
- # [12:30] <annevk> hsivonen: but they are not using the same table I think
- # [12:30] <annevk> hsivonen: I find Gecko's code for encodings hard to follow
- # [12:30] <annevk> hsivonen: it has all kinds of abstractions that could be removed
- # [12:33] <hsivonen> annevk: not the same table, right
- # [12:33] <hsivonen> annevk: the GBK table has one entry! for euro
- # [12:33] <annevk> hsivonen: whoa
- # [12:33] <hsivonen> I can't figure out from the GB18030 tables if 0x80 maps to euro in the larger table
- # [12:35] <hsivonen> euro sign is kinda like time zones: the politician who come up with this stuff should be required to implement this stuff. *Correctly.*
- # [12:36] <annevk> hsivonen: in gb18030 0x80 maps to 0x20AC
- # [12:36] <annevk> hsivonen: so if Gecko does that for gbk...
- # [12:36] <annevk> and http://mxr.mozilla.org/mozilla-central/source/intl/uconv/ucvcn/gbkuniq2b.ut seems to indicate it does
- # [12:38] <annevk> hsivonen: actually, in Chrome gb18030 0x80 does not map to 0x20AC
- # [12:38] <hsivonen> I regret putting gbk in the new charset menu
- # [12:39] * Quits: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net) (Quit: Computer has gone to sleep.)
- # [12:39] <hsivonen> since now it's more of a hassle to change the UI strings
- # [12:40] * Joins: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net)
- # [12:42] <annevk> hsivonen: my bad, I should have sorted this out long ago
- # [12:42] <annevk> hsivonen: seems that in IE byte 80 is also not mapped to the Euro sign, but it's not mapped to anything sensible either so...
- # [12:46] * Joins: adactio (~adactio@212.42.170.181)
- # [12:46] <annevk> hsivonen: compare http://dump.testsuite.org/encoding/gbk/byte-80-gbk.html and http://dump.testsuite.org/encoding/gbk/byte-80-gb18030.html btw
- # [12:46] * Quits: nunnun- (~hiro@sculptor.local.hiro.ne.jp) (Quit: Bye)
- # [12:46] <annevk> hsivonen: however, it seems that treating 0x80 as 0x20AC is harmless
- # [12:48] <annevk> hsivonen: http://en.wikipedia.org/wiki/GB_18030#GB18030_as_a_code_page has all the details it seems in the third paragraph with respect to the incompatibility
- # [12:48] * Joins: nunnun (~hiro@sculptor.local.hiro.ne.jp)
- # [12:48] <hsivonen> annevk: the latter shows a question mark for 0x80 in IE11
- # [12:48] <hsivonen> why not U+FFFD?
- # [12:48] <annevk> hsivonen: same in IE10
- # [12:49] <annevk> hsivonen: I suspect they just have weird error handling
- # [12:50] <annevk> I could test what they do for FF
- # [12:50] <annevk> or 8100
- # [12:50] * annevk makes a test
- # [12:50] * Joins: jensnockert (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com)
- # [12:53] <annevk> hsivonen: see also http://dump.testsuite.org/encoding/gbk/byte-FF-gb18030.html and http://dump.testsuite.org/encoding/gbk/byte-8100-gb18030.html
- # [12:53] <annevk> hsivonen: IE10 is a mess
- # [12:54] <annevk> hsivonen: not sure what Chrome is doing either :/
- # [12:54] <annevk> Or I suppose, what ICU is doing, that seems broken
- # [12:54] * Quits: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net) (Quit: Computer has gone to sleep.)
- # [12:55] <hsivonen> annevk: does IE just drop 0xFF?
- # [12:55] * Quits: jensnockert (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com) (Ping timeout: 272 seconds)
- # [12:55] <annevk> hsivonen: no it renders it as
- # [12:56] <annevk> hsivonen: whoa, that's a round dot in Windows, but on Mac it renders totally different...
- # [12:58] <annevk> hsivonen: oh, it's PUA
- # [12:58] <annevk> hsivonen: U+F8F5
- # [13:06] * Joins: smaug____ (~chatzilla@cs78246079.pp.htv.fi)
- # [13:16] <zcorpan> wonder if i should test url query encoding in the prescanner
- # [13:21] <annevk> hsivonen: the IE gbk table is identical to the Chrome gbk table
- # [13:21] <annevk> hsivonen: I find one difference in the gb18030 table weirdly enough
- # [13:21] <annevk> hsivonen: index 6555 maps to 3000 in Gecko and E5E5 in IE
- # [13:23] * Joins: felipeduardo (~felipedua@r253-pw-corumbatai.ibys.com.br)
- # [13:27] <annevk> hsivonen: seems like we should just alias gbk and gb18030 and not worry about the 81/82 PUAs
- # [13:33] <hsivonen> annevk: aliasing will change how the euro sign gets submitted in forms, right?
- # [13:33] * Joins: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginm.net)
- # [13:34] * hsivonen hopes the euro sign doesn't get submitted to Chinese sites often
- # [13:34] <annevk> hsivonen: yeah, it would use the gb18030 two byte sequence, unless we special case 20AC in the encoder
- # [13:35] <annevk> hsivonen: special casing it in the encoder however would be incompatible with non-gbk compatible gb18030 implementations
- # [13:35] <hsivonen> special-casing the encoder might break sites that really are already using de jure GB18030
- # [13:35] * Quits: shaunbak_ (~shaunbake@brick-lane.lbi.co.uk) (Remote host closed the connection)
- # [13:35] <annevk> right
- # [13:35] * Quits: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginm.net) (Read error: Connection reset by peer)
- # [13:35] * Joins: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginm.net)
- # [13:35] <hsivonen> currency signs are such a bad idea
- # [13:36] <annevk> Surprising how little code the x-user-def is
- # [13:36] <hsivonen> both this whole euro thing. and the sheqel sign difference between 8859-8 and windows-1255
- # [13:37] <hsivonen> annevk: yeah
- # [13:37] <annevk> Was it Unicode 6.2 or 6.3 that did the Turkish thing?
- # [13:37] <hsivonen> oh and *that*
- # [13:38] <hsivonen> at least bitcoin uses an existing sign
- # [13:39] * Joins: shaunbak_ (~shaunbake@brick-lane.lbi.co.uk)
- # [13:40] * Joins: Cromulent|2 (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginm.net)
- # [13:40] * Quits: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginm.net) (Ping timeout: 241 seconds)
- # [13:41] <annevk> hsivonen: well, "B⃦ has been the standard currency sign for BTC for a long time. Some existing Unicode symbols have been proposed but also serious work is being done on creating a custom Bitcoin sign with its own official Unicode that is recognized by the Unicode Consortium."
- # [13:41] <annevk> hsivonen: from https://en.bitcoin.it/wiki/Bitcoin_symbol
- # [13:45] <hsivonen> annevk: sadness
- # [13:45] * Quits: niloy (~niloy@223.239.200.58) (Read error: Connection reset by peer)
- # [13:50] * Joins: niloy (~niloy@223.239.200.58)
- # [13:50] <MikeSmith> ah cool x-webkit-speech
- # [13:50] <MikeSmith> https://www.w3.org/Bugs/Public/show_bug.cgi?id=24126
- # [14:05] * Joins: DeTeam (~DeTeam@213.232.195.228)
- # [14:11] * Quits: rego (~rego@231.193.27.77.dynamic.mundo-r.com) (Read error: Connection reset by peer)
- # [14:12] * Joins: shannonmoeller (~shannonmo@pool-108-17-8-225.bflony.fios.verizon.net)
- # [14:12] * Quits: Kolombiken (~Adium@94.137.124.2) (Ping timeout: 260 seconds)
- # [14:15] * Quits: Lachy (~Lachy@213.166.174.2) (Quit: Textual IRC Client: www.textualapp.com)
- # [14:16] * Quits: vcarbune_ (~vcarbune@86.121.185.210) (Ping timeout: 240 seconds)
- # [14:17] * Quits: fredy (~fredy@snf-8914.vm.okeanos.grnet.gr) (Ping timeout: 245 seconds)
- # [14:19] * Joins: tj_vantoll (~Adium@2601:4:1400:6b6:3979:9578:e55:756d)
- # [14:21] * Joins: fredy (~fredy@snf-8914.vm.okeanos.grnet.gr)
- # [14:24] * Joins: Lachy (~Lachy@213.166.174.2)
- # [14:26] * Quits: Cromulent|2 (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginm.net) (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
- # [14:32] * Quits: Lachy (~Lachy@213.166.174.2) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [14:33] * Joins: Lachy (~Lachy@213.166.174.2)
- # [14:34] * Quits: niloy (~niloy@223.239.200.58) (Read error: Connection reset by peer)
- # [14:35] * Quits: Lachy (~Lachy@213.166.174.2) (Client Quit)
- # [14:36] * Joins: Lachy (~Lachy@213.166.174.2)
- # [14:46] * Joins: Bass10_ (Bass10@c-76-113-194-7.hsd1.mn.comcast.net)
- # [14:47] * Quits: dglazkov (sid4270@gateway/web/irccloud.com/x-nnslxzaayaikegev) (Read error: Connection reset by peer)
- # [14:47] * Quits: Phae (sid455@gateway/web/irccloud.com/x-nvxfhywkspddxqgp) (Read error: Connection reset by peer)
- # [14:48] * Joins: dglazkov (sid4270@gateway/web/irccloud.com/x-hpcmedvzsnqrwgiq)
- # [14:48] * Joins: Phae_ (sid455@gateway/web/irccloud.com/x-scmpdvmfjjvjrppt)
- # [14:51] * Joins: Ms2ger (~Ms2ger@91.182.21.244)
- # [14:51] * Joins: jensnockert (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com)
- # [14:52] * Joins: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net)
- # [14:53] * Joins: foxtrotwhiskey (~foxtrotwh@192-63-2457.unisys.com)
- # [14:55] * Quits: jensnockert (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com) (Ping timeout: 245 seconds)
- # [14:59] * Joins: decotii (~decotii@hq.croscon.com)
- # [15:02] * Quits: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net) (Quit: Computer has gone to sleep.)
- # [15:07] * Quits: zcorpan (~zcorpan@2a00:801:e0:30:c5b6:d7af:c33c:9e43) (Remote host closed the connection)
- # [15:12] * Joins: rdebeasi (~rdebeasi@datacenter.ef.com)
- # [15:13] * jorendorff_away is now known as jorendorff
- # [15:16] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [15:21] * Joins: frustrum (~frustrum@jaw044-res.resnet.ucsd.edu)
- # [15:30] * Joins: newtron (~newtron@199.71.174.203)
- # [15:34] * Joins: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginm.net)
- # [15:38] * Joins: gavinc (~gavin@barad-dur.carothers.name)
- # [15:41] * jorendorff is now known as jorendorff_away
- # [15:42] * Quits: smaug____ (~chatzilla@cs78246079.pp.htv.fi) (Ping timeout: 246 seconds)
- # [15:44] * Joins: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net)
- # [15:47] * Quits: annevk (~annevk@207.218.72.65) (Remote host closed the connection)
- # [15:48] * Joins: annevk (~annevk@207.218.72.65)
- # [15:52] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net) (Ping timeout: 240 seconds)
- # [15:52] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net)
- # [15:52] <Ms2ger> odinho++
- # [15:53] * jorendorff_away is now known as jorendorff
- # [15:56] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 246 seconds)
- # [15:59] * Joins: idbentley (~idbentley@204.91.28.98)
- # [16:00] * Joins: seventh (seventh@185.29.164.49)
- # [16:01] * Quits: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net) (Quit: Computer has gone to sleep.)
- # [16:01] * Joins: sankha93 (~Instantbi@fsf/emeritus/sankha93)
- # [16:04] * Joins: zcorpan (~zcorpan@94.234.170.207)
- # [16:05] * Quits: DeTeam (~DeTeam@213.232.195.228) (Remote host closed the connection)
- # [16:05] * jorendorff is now known as jorendorff_away
- # [16:06] * Joins: ehsan (~ehsan@66.207.208.102)
- # [16:08] * Joins: mpt (~mpt@canonical/mpt)
- # [16:09] * Quits: hasather (~hasather@80.91.33.141) (Quit: Leaving...)
- # [16:10] <annevk> hsivonen: just to be clear, current gbk sites with <form> might run into issues with more than U+20AC
- # [16:10] <annevk> hsivonen: as every code point will map to a byte sequence
- # [16:13] * Joins: TallTed (~Thud@63.119.36.36)
- # [16:14] <SimonSapin> jgraham: what’s the fix when Critic gets upset by an amended commit?
- # [16:14] <jgraham> SimonSapin: There isn't one
- # [16:15] <jgraham> SimonSapin: I have instructions from jl on how to go about fixing that though
- # [16:15] <jgraham> So, happy christams to me, I guess
- # [16:16] <SimonSapin> I knew that present would make you happy :)
- # [16:16] <jgraham> SimonSapin: Unless you want to make a patch ;)
- # [16:16] <SimonSapin> I could submit a new pull request
- # [16:16] <SimonSapin> for the same changes
- # [16:17] <SimonSapin> https://github.com/html5lib/html5lib-python/pull/123
- # [16:18] * Quits: matjas (sid2247@gateway/web/irccloud.com/x-qlnrclaossvnzhyr) (Read error: Connection reset by peer)
- # [16:18] * Quits: abarth (uid5294@gateway/web/irccloud.com/x-rmyvixiialcywjnw) (Read error: Connection reset by peer)
- # [16:18] <hsivonen> annevk: are *all* of those sequences now inconsistent between different browsers' gbk encoders?
- # [16:19] <annevk> hsivonen: gbk is a subset
- # [16:19] <annevk> hsivonen: so if you go outside the subset, you'd get &#....; for the code point or ?, depending on the error handling
- # [16:19] <hsivonen> annevk: so is it inconsistent between "&#....;" and "?"?
- # [16:19] <annevk> hsivonen: gb18030 would however never trigger error handling
- # [16:20] <annevk> hsivonen: it's inconsistent between generating a gb18030 byte sequence for the code point in the merger scenario and &#...; in the gbk <form> submission scenario
- # [16:20] * Joins: matjas (sid2247@gateway/web/irccloud.com/x-holousprwkiyafnx)
- # [16:20] * Joins: abarth (uid5294@gateway/web/irccloud.com/x-lvtzgmjdnvbwtxmm)
- # [16:21] <annevk> (for code points outside the two byte range)
- # [16:21] <annevk> (and 0x80)
- # [16:21] <odinho> Ms2ger: I'm incremented! :D (Not too long ago also, I went from 26 to 27 on the 6th)
- # [16:21] <Ms2ger> Happy incrementation :)
- # [16:23] <jgraham> odinho: Wait, what, you are tracking it?
- # [16:24] <Ms2ger> I guess some people would avoid tracking it, at their level :)
- # [16:24] <jgraham> Ms2ger--
- # [16:24] <jgraham> :p
- # [16:25] <Ms2ger> :D
- # [16:27] * Joins: encryptd_fractal (~mfrawley@66-188-99-174.static.ftbg.wi.charter.com)
- # [16:27] <odinho> deferred incrementation :) I save up the function and only flush once per year. And then only run one cycle.
- # [16:28] <odinho> I wonder what happens if I start getting more decrements than all increments I've had in total. What will happen then :-O
- # [16:29] <jgraham> odinho: We can test if you want :
- # [16:29] <jgraham> p
- # [16:29] <odinho> ^_^
- # [16:35] * Joins: jernoble (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net)
- # [16:35] * Joins: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net)
- # [16:37] * jorendorff_away is now known as jorendorff
- # [16:37] * Joins: reyre (~reyre@CPE7cb21b1e2cf4-CM7cb21b1e2cf1.cpe.net.cable.rogers.com)
- # [16:41] * Quits: jernoble (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net) (Ping timeout: 240 seconds)
- # [16:42] <hsivonen> annevk: so Gecko's GB18030 impl already matches the spec and we only need to change the label stuff, right?
- # [16:42] * Quits: zcorpan (~zcorpan@94.234.170.207) (Ping timeout: 272 seconds)
- # [16:44] <annevk> hsivonen: afaict, yes
- # [16:44] * Joins: mven (~mven@ip68-224-15-53.lv.lv.cox.net)
- # [16:44] <annevk> hsivonen: Gecko has the 0x80 mapping which is the only "weird" thing
- # [16:46] * Quits: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net) (Quit: Computer has gone to sleep.)
- # [16:47] * Joins: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net)
- # [16:49] <jgraham> SimonSapin: urllib[2].urlopen doesn't return a HTTPResponse object. What am I missing?
- # [16:49] <SimonSapin> it does on Python 3
- # [16:49] <SimonSapin> well, urllib.request.urlopen()
- # [16:49] <jgraham> And the bug doesn't happen on python2?
- # [16:50] <hsivonen> annevk: ok. bug filed: https://bugzilla.mozilla.org/show_bug.cgi?id=951691
- # [16:50] * Joins: zcorpan (~zcorpan@c-5eeaaa47-74736162.cust.telenor.se)
- # [16:51] <SimonSapin> jgraham: apparently urllib[2].urlopen does not use httplib on Python 2, but httplib is still affected
- # [16:51] <GPHemsley> Gonna be updating the wiki software today. Nobody panic. :)
- # [16:51] <jgraham> SimonSapin: I see
- # [16:51] <annevk> hsivonen: should we have a separate bug on removing GBK from the menu?
- # [16:52] <annevk> hsivonen: thinking about it, that has the same risk (in theory) so grouping them seems fine
- # [16:52] * Joins: jensnockert (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com)
- # [16:52] <jgraham> SimonSapin: Thanks
- # [16:52] <hsivonen> annevk: I think we can do that in the same bug unless the label bug gets stalled somehow
- # [16:52] <hsivonen> annevk: I think the menu is lower risk
- # [16:52] * Joins: jernoble (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net)
- # [16:53] <hsivonen> annevk: since users probably already can't make an informed choice and can end up submitting whatever
- # [16:53] * Quits: shaunbak_ (~shaunbake@brick-lane.lbi.co.uk)
- # [16:53] <annevk> hsivonen: have you thought about "Character Encoding" -> "Text Encoding" btw?
- # [16:53] * Joins: shaunbaker (~shaunbake@brick-lane.lbi.co.uk)
- # [16:53] <hsivonen> annevk: I haven't
- # [16:53] <hsivonen> annevk: not my bikeshed
- # [16:53] <annevk> hsivonen: ait
- # [16:53] <annevk> Chrome uses Encoding
- # [16:55] <annevk> IE names it Encoding as well
- # [16:55] * Quits: mven (~mven@ip68-224-15-53.lv.lv.cox.net) (Remote host closed the connection)
- # [16:55] <annevk> hsivonen: would that be a bug against Firefox or some other component?
- # [16:56] <gsnedders> jgraham: Are you fixing the bug, then?
- # [16:56] <gsnedders> jgraham: Or dealing with it at least?
- # [16:56] <hsivonen> annevk: Firefox
- # [16:56] <annevk> ta
- # [16:57] * Quits: jensnockert (~jensnocke@dynamic.1.24.64e950153c80.01b11587a2c.afb.bredband2.com) (Ping timeout: 246 seconds)
- # [16:57] <jgraham> gsnedders: What bug?
- # [16:57] <gsnedders> jgraham: the html5lib one
- # [16:57] <gsnedders> jgraham: that you were discussing with SimonSapin above
- # [16:58] * Quits: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net) (Quit: Computer has gone to sleep.)
- # [16:59] <jgraham> gsnedders: He fixed it
- # [16:59] <annevk> https://bugzilla.mozilla.org/show_bug.cgi?id=951695
- # [17:01] * Quits: shaunbaker (~shaunbake@brick-lane.lbi.co.uk) (Ping timeout: 260 seconds)
- # [17:03] * Joins: shaunbaker (~shaunbake@brick-lane.lbi.co.uk)
- # [17:04] * Joins: TuRnaD0 (~Thunderbi@x1-6-e0-46-9a-1e-fe-ca.cpe.webspeed.dk)
- # [17:05] <rwaldron> annevk ping for quick Q
- # [17:06] <annevk> rwaldron: go ahead
- # [17:06] <rwaldron> In Boston, you mentioned an "Elements" API
- # [17:06] <rwaldron> IIRC, this was an Array subclass
- # [17:06] <rwaldron> "from the future" ;)
- # [17:06] <annevk> rwaldron: see links in red box http://dom.spec.whatwg.org/#elements
- # [17:07] <rwaldron> <3
- # [17:07] <rwaldron> you read my mind
- # [17:07] <rwaldron> thanks!
- # [17:07] <rwaldron> (ie. the next question was "i can has link?")
- # [17:07] <rwaldron> thanks again
- # [17:07] <annevk> heh
- # [17:11] * Joins: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net)
- # [17:11] * Joins: jwalden (~waldo@c-98-243-38-247.hsd1.mi.comcast.net)
- # [17:16] * Quits: frustrum (~frustrum@jaw044-res.resnet.ucsd.edu) (Ping timeout: 272 seconds)
- # [17:17] * Joins: dbaron (~dbaron@pool-72-94-180-192.phlapa.fios.verizon.net)
- # [17:19] * Quits: shaunbaker (~shaunbake@brick-lane.lbi.co.uk) (Remote host closed the connection)
- # [17:21] * Joins: vcarbune_ (~vcarbune@86.121.185.210)
- # [17:22] * Quits: jorgepedret (~jorgepedr@70-36-56-110.dyn.novuscom.net) (Quit: Computer has gone to sleep.)
- # [17:24] * Joins: lmclister (~lmclister@sjfw1-a.adobe.com)
- # [17:31] * Joins: frustrum (~frustrum@128.54.213.182)
- # [17:35] * Joins: sicking (~sicking@c-98-210-155-26.hsd1.ca.comcast.net)
- # [17:35] * Quits: jernoble (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net) (Quit: Textual IRC Client: www.textualapp.com)
- # [17:41] * Joins: jsbell (jsbell@nat/google/x-zixegityyqarknwu)
- # [17:41] * Quits: foxtrotwhiskey (~foxtrotwh@192-63-2457.unisys.com) (Ping timeout: 260 seconds)
- # [17:46] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [17:46] * Quits: sicking (~sicking@c-98-210-155-26.hsd1.ca.comcast.net) (Quit: sicking)
- # [17:52] * Joins: aiglesias (~aiglesias@host111.190-139-148.telecom.net.ar)
- # [17:56] * Joins: jeffreyatw (~jeffreyat@173.247.197.10)
- # [17:57] * Quits: darobin (~darobin@78.109.80.74) (Remote host closed the connection)
- # [17:58] * Quits: zcorpan (~zcorpan@c-5eeaaa47-74736162.cust.telenor.se) (Ping timeout: 245 seconds)
- # [17:59] * Quits: molsson (~molsson@83.218.67.123) (Ping timeout: 246 seconds)
- # [17:59] * Joins: molsson (~molsson@83.218.67.123)
- # [18:04] <GPHemsley> Wiki upgrade in progress. Nobody panic.
- # [18:07] <Hixie> woot
- # [18:07] * Ms2ger grasps his towel
- # [18:08] * Joins: Maurice (copyman@5ED57922.cm-7-6b.dynamic.ziggo.nl)
- # [18:21] <GPHemsley> OK, I think we're good. Let me know if you see any issues.
- # [18:21] * Quits: sankha93 (~Instantbi@fsf/emeritus/sankha93) (Ping timeout: 246 seconds)
- # [18:24] * Quits: barnabywalters (~barnabywa@46-239-239-203.tal.is) (Quit: Back to real life!)
- # [18:25] * Joins: sgalineau (~sylvaing@192.150.10.205)
- # [18:27] * Joins: smaug____ (~chatzilla@cs78246079.pp.htv.fi)
- # [18:27] * Joins: tj_vantoll1 (~Adium@c-68-84-189-15.hsd1.mi.comcast.net)
- # [18:28] * Quits: annevk (~annevk@207.218.72.65) (Remote host closed the connection)
- # [18:28] * Joins: ap (~ap@2620:149:4:304:a096:5a3d:4a51:9a39)
- # [18:30] * Quits: tj_vantoll (~Adium@2601:4:1400:6b6:3979:9578:e55:756d) (Ping timeout: 240 seconds)
- # [18:31] * Quits: Lachy (~Lachy@213.166.174.2) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [18:31] * Quits: adactio (~adactio@212.42.170.181) (Ping timeout: 240 seconds)
- # [18:33] * Joins: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net)
- # [18:35] * Joins: KevinMarks (~KevinMark@c-67-164-14-200.hsd1.ca.comcast.net)
- # [18:36] * Joins: adactio (~adactio@212.42.170.181)
- # [18:38] * Joins: jernoble (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net)
- # [18:42] * Quits: othermaciej (~mjs@c-50-136-134-16.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [18:44] * Quits: newtron (~newtron@199.71.174.203) (Quit: Leaving...)
- # [18:50] * Joins: eric_carlson_ (~eric@17.212.152.104)
- # [18:50] * Joins: newtron (~newtron@199.71.174.203)
- # [18:52] * Quits: eric_carlson (~eric@17.212.152.104) (Ping timeout: 272 seconds)
- # [18:52] * eric_carlson_ is now known as eric_carlson
- # [18:54] * Joins: ap_ (~ap@17.114.218.49)
- # [18:56] * Quits: ap (~ap@2620:149:4:304:a096:5a3d:4a51:9a39) (Ping timeout: 240 seconds)
- # [18:56] * ap_ is now known as ap
- # [18:59] * Quits: matjas (sid2247@gateway/web/irccloud.com/x-holousprwkiyafnx) (*.net *.split)
- # [18:59] * Quits: nephyrin (~neph@2620:101:8003:200:7a2b:cbff:fe9e:2e67) (*.net *.split)
- # [18:59] * Quits: sangwhan (sid12645@gateway/web/irccloud.com/x-epgldqtouvmjsugs) (*.net *.split)
- # [18:59] * Quits: wakaba (~wakaba@154.72.102.121.dy.bbexcite.jp) (*.net *.split)
- # [18:59] * Quits: zaal (~zaal@cpc1-nrwh11-2-0-cust348.4-4.cable.virginmedia.com) (*.net *.split)
- # [18:59] * Quits: Osmose1000 (Osmose1000@2600:3c02::f03c:91ff:feae:1aeb) (*.net *.split)
- # [18:59] * Quits: tyoshino (uid19222@gateway/web/irccloud.com/x-dletpusqrlsxtyto) (*.net *.split)
- # [18:59] * Quits: amtiskaw (uid19262@gateway/web/irccloud.com/x-xejnxtpqgnlcllwk) (*.net *.split)
- # [18:59] * Quits: frozenice (sid21176@gateway/web/irccloud.com/x-tgoxzjnoyxantvir) (*.net *.split)
- # [18:59] * Quits: scheib (sid4467@gateway/web/irccloud.com/x-srvtkqcchrnrwtgf) (*.net *.split)
- # [18:59] * Quits: g4 (~g4@unaffiliated/gormer) (*.net *.split)
- # [18:59] * Quits: rastus_vernon_ (uid15187@gateway/web/irccloud.com/x-rejnazonuviqfvhe) (*.net *.split)
- # [18:59] * Quits: cwilso (sid10206@gateway/web/irccloud.com/x-fcbzqqolrhkbuhsj) (*.net *.split)
- # [18:59] * Quits: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net) (*.net *.split)
- # [18:59] * Quits: scottjehl___ (sid3055@gateway/web/irccloud.com/x-dsgakwoljmtippwi) (*.net *.split)
- # [18:59] * Quits: dglazkov_ (uid20749@gateway/web/irccloud.com/x-ibjszzglmztdorls) (*.net *.split)
- # [18:59] * Quits: dfreedm (sid7859@gateway/web/irccloud.com/x-oaarubjebgprsmot) (*.net *.split)
- # [18:59] * Quits: jaeholee (uid4856@gateway/web/irccloud.com/x-hsddgemdyeqxwqlc) (*.net *.split)
- # [18:59] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (*.net *.split)
- # [18:59] * Quits: m4nu (~manu@216.252.204.51) (*.net *.split)
- # [18:59] * Quits: Scorchin (sid1242@gateway/web/irccloud.com/x-unerekhxddhtmfib) (*.net *.split)
- # [18:59] * Quits: ojan_away (uid5519@gateway/web/irccloud.com/x-riqqpavkgujdzjpb) (*.net *.split)
- # [18:59] * Quits: Domenic_ (sid10976@gateway/web/irccloud.com/x-dykwqyfghcenwncw) (*.net *.split)
- # [18:59] * Quits: pxz (pxz@2a01:7e00::f03c:91ff:fe93:309d) (*.net *.split)
- # [18:59] * Quits: gavin (~gavin@firefox/developer/gavin) (*.net *.split)
- # [18:59] * Quits: scott_gonzalez (gonzasi0@gateway/shell/jquery.com/x-oxgdbagjabrdasfk) (*.net *.split)
- # [18:59] * Quits: OliverJAsh (uid11790@gateway/web/irccloud.com/x-ykhacapnuwnkmtwp) (*.net *.split)
- # [18:59] * Quits: jamesr__ (uid10481@gateway/web/irccloud.com/x-mxejmarzmfbvapnx) (*.net *.split)
- # [18:59] * Quits: krit (sid15081@gateway/web/irccloud.com/x-qdcwjmwzvckrswdl) (*.net *.split)
- # [18:59] * Quits: cabanier (sid15093@gateway/web/irccloud.com/x-acirmgtdkfshrhnp) (*.net *.split)
- # [18:59] * Quits: phuu (sid7721@gateway/web/irccloud.com/x-baojcfnxwpmvvkar) (*.net *.split)
- # [18:59] * Quits: arv (uid4269@gateway/web/irccloud.com/x-shzqhcrgjyixjxuf) (*.net *.split)
- # [18:59] * Quits: slightlyoff (sid1768@gateway/web/irccloud.com/x-nykqrwislsohodso) (*.net *.split)
- # [19:00] <SimonSapin> jgraham: what happens after approval in Critic?
- # [19:01] <SimonSapin> also, should I resubmit #123 to get Critic unstuck?
- # [19:04] * Quits: frustrum (~frustrum@128.54.213.182) (Ping timeout: 240 seconds)
- # [19:05] * Quits: adactio (~adactio@212.42.170.181) (Quit: adactio)
- # [19:06] <jgraham> SimonSapin: Someone has to merge
- # [19:06] <jgraham> or rebbase
- # [19:07] <jgraham> Although I think that html5lib has a non-linear history in any case so merging might not be so bad
- # [19:07] <jgraham> And yes, resubmitting is probably a good idea
- # [19:07] * Quits: sgalineau (~sylvaing@192.150.10.205) (Quit: Textual IRC Client: www.textualapp.com)
- # [19:10] * Krinkle|detached is now known as Krinkle
- # [19:15] * Joins: matjas (sid2247@gateway/web/irccloud.com/x-holousprwkiyafnx)
- # [19:15] * Joins: g4 (~g4@unaffiliated/gormer)
- # [19:15] * Joins: nephyrin (~neph@2620:101:8003:200:7a2b:cbff:fe9e:2e67)
- # [19:15] * Joins: sangwhan (sid12645@gateway/web/irccloud.com/x-epgldqtouvmjsugs)
- # [19:15] * Joins: wakaba (~wakaba@154.72.102.121.dy.bbexcite.jp)
- # [19:15] * Joins: zaal (~zaal@cpc1-nrwh11-2-0-cust348.4-4.cable.virginmedia.com)
- # [19:15] * Joins: Osmose1000 (Osmose1000@2600:3c02::f03c:91ff:feae:1aeb)
- # [19:15] * Joins: amtiskaw (uid19262@gateway/web/irccloud.com/x-xejnxtpqgnlcllwk)
- # [19:15] * Joins: tyoshino (uid19222@gateway/web/irccloud.com/x-dletpusqrlsxtyto)
- # [19:15] * Joins: frozenice (sid21176@gateway/web/irccloud.com/x-tgoxzjnoyxantvir)
- # [19:15] * Joins: scheib (sid4467@gateway/web/irccloud.com/x-srvtkqcchrnrwtgf)
- # [19:15] * Joins: rastus_vernon_ (uid15187@gateway/web/irccloud.com/x-rejnazonuviqfvhe)
- # [19:15] * Joins: cwilso (sid10206@gateway/web/irccloud.com/x-fcbzqqolrhkbuhsj)
- # [19:15] * Joins: shepazu (~shepazu@108-70-132-46.lightspeed.rlghnc.sbcglobal.net)
- # [19:15] * Joins: scottjehl___ (sid3055@gateway/web/irccloud.com/x-dsgakwoljmtippwi)
- # [19:15] * Joins: dglazkov_ (uid20749@gateway/web/irccloud.com/x-ibjszzglmztdorls)
- # [19:15] * Joins: dfreedm (sid7859@gateway/web/irccloud.com/x-oaarubjebgprsmot)
- # [19:15] * Joins: jaeholee (uid4856@gateway/web/irccloud.com/x-hsddgemdyeqxwqlc)
- # [19:15] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [19:15] * Joins: m4nu (~manu@216.252.204.51)
- # [19:15] * Joins: Scorchin (sid1242@gateway/web/irccloud.com/x-unerekhxddhtmfib)
- # [19:15] * Joins: ojan_away (uid5519@gateway/web/irccloud.com/x-riqqpavkgujdzjpb)
- # [19:15] * Joins: phuu (sid7721@gateway/web/irccloud.com/x-baojcfnxwpmvvkar)
- # [19:15] * Joins: Domenic_ (sid10976@gateway/web/irccloud.com/x-dykwqyfghcenwncw)
- # [19:15] * Joins: pxz (pxz@2a01:7e00::f03c:91ff:fe93:309d)
- # [19:15] * Joins: gavin (~gavin@firefox/developer/gavin)
- # [19:15] * Joins: scott_gonzalez (gonzasi0@gateway/shell/jquery.com/x-oxgdbagjabrdasfk)
- # [19:15] * Joins: OliverJAsh (uid11790@gateway/web/irccloud.com/x-ykhacapnuwnkmtwp)
- # [19:15] * Joins: jamesr__ (uid10481@gateway/web/irccloud.com/x-mxejmarzmfbvapnx)
- # [19:15] * Joins: krit (sid15081@gateway/web/irccloud.com/x-qdcwjmwzvckrswdl)
- # [19:15] * Joins: cabanier (sid15093@gateway/web/irccloud.com/x-acirmgtdkfshrhnp)
- # [19:15] * Joins: arv (uid4269@gateway/web/irccloud.com/x-shzqhcrgjyixjxuf)
- # [19:15] * Joins: slightlyoff (sid1768@gateway/web/irccloud.com/x-nykqrwislsohodso)
- # [19:18] * Quits: remysharp_ (sid4345@gateway/web/irccloud.com/x-feswpjnfqgqiaesh) (Ping timeout: 245 seconds)
- # [19:18] * Quits: krijn_ (sid2319@gateway/web/irccloud.com/x-rtcovtstemgohhep) (Ping timeout: 245 seconds)
- # [19:18] * Joins: Lachy (~Lachy@cm-84.215.104.248.getinternet.no)
- # [19:19] * Quits: timeless (sid4015@gateway/web/irccloud.com/x-fxmxtupqdkpqknab) (Ping timeout: 245 seconds)
- # [19:20] * Joins: remysharp (sid4345@gateway/web/irccloud.com/x-tubhyjwfqltbqfym)
- # [19:20] * Joins: krijn_ (sid2319@gateway/web/irccloud.com/x-wgcagxgringvziax)
- # [19:22] * Joins: timeless_ (sid4015@gateway/web/irccloud.com/x-xhramwcsrjdhrmej)
- # [19:25] <gsnedders> jgraham: I aim for history from git onwards to be linear, FWIW
- # [19:26] <jgraham> gsnedders: Then you have a rebase to do :)
- # [19:27] <gsnedders> jgraham: If you can find the one number I need for this HMRC form.
- # [19:29] <Hixie> when you do frames[0].location.reload(), what's the source browsing context? the parent, or the subframe?
- # [19:30] <jgraham> gsnedders: Isn't the answer in the question? The number you need is 1.
- # [19:30] <gsnedders> jgraham: I suspect I paid more tax than £1. :)
- # [19:31] * Joins: ambv (~ambv@206.108.217.134)
- # [19:34] <MikeSmith> Hixie: the subframe...? isn't that the case of frames[0].location.assign and .replace?
- # [19:35] <Hixie> Navigation for the assign() and replace() methods must be done with the responsible browsing context specified by the incumbent settings object as the source browsing context.
- # [19:35] * Joins: jorgepedret (~jorgepedr@64-46-23-103.dyn.novuscom.net)
- # [19:36] <MikeSmith> HAL^WHixie: you forgot to add ,Dave at the end of that
- # [19:37] <jgraham> gsnedders: Oh, just tell them the answer is in GTU (Gsnedders Tax Units)
- # [19:37] <gsnedders> jgraham: The form doesn't allow that. :(
- # [19:37] <MikeSmith> Hixie: so given that why should not that the same be true for .reload() ?
- # [19:38] <gsnedders> (I mean, HMRC should /already have this number/. Do I really need to tell them it!?)
- # [19:38] <Hixie> MikeSmith: yeah, that's my conclusion too. i've just checked that in. previously it was just undefined.
- # [19:38] * Quits: encryptd_fractal (~mfrawley@66-188-99-174.static.ftbg.wi.charter.com) (Ping timeout: 264 seconds)
- # [19:38] <Hixie> MikeSmith: it's mostly academic, really. i think it only affects if you can do parent.location.reload() when you're sandboxed allow-same-origin allow-scripts, which is a very dumb situation to be in anyway.
- # [19:39] <MikeSmith> oh
- # [19:39] <MikeSmith> well I don't plan on the doing that at least
- # [19:39] <Hixie> heh
- # [19:40] * Joins: encryptd_fractal (~mfrawley@66-188-99-174.static.ftbg.wi.charter.com)
- # [19:40] <Hixie> oh actually location.reload() explicitly uses a different source browsing context in the situation of a non-overridden reload
- # [19:40] <Hixie> wonder why
- # [19:40] * gsnedders kinda wants to prove the event loop is free from deadlock/livelock
- # [19:40] * timeless_ is now known as timeless
- # [19:41] * Quits: timeless (sid4015@gateway/web/irccloud.com/x-xhramwcsrjdhrmej) (Changing host)
- # [19:41] * Joins: timeless (sid4015@firefox/developer/timeless)
- # [19:42] <Hixie> wow, http://software.hixie.ch/utilities/js/live-dom-viewer/?saved=141 actually shows that's true, too
- # [19:42] <Hixie> at least in chrome
- # [19:44] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net) (Ping timeout: 240 seconds)
- # [19:44] * Quits: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginm.net) (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
- # [19:50] * Quits: yoshiki_ (yoshiki@nat/google/x-txteyfroxdpztsko) (Quit: Leaving...)
- # [19:55] * Quits: pxz (pxz@2a01:7e00::f03c:91ff:fe93:309d) (Ping timeout: 252 seconds)
- # [19:56] * Joins: pxz (~pxz@li146-216.members.linode.com)
- # [19:58] <Hixie> how the heck can i retroactively figure out the source browsing context of a document.open()'ed document
- # [20:00] <MikeSmith> Hixie: printf
- # [20:02] * Quits: ap (~ap@17.114.218.49) (Quit: ap)
- # [20:02] <Hixie> printf of what, though?
- # [20:06] * Joins: ap (~ap@17.202.44.214)
- # [20:06] <MikeSmith> some whatever object in the browser source code and you just dump it out
- # [20:06] <MikeSmith> after you hack the source and recompile it
- # [20:07] * jgraham looks for a blunt instrument to apply to mq
- # [20:11] * Joins: danny__ (~Danny@unaffiliated/malaclyps)
- # [20:11] * danny__ is now known as Guest21419
- # [20:12] <TabAtkins> Sigh. I hate it when people in non-American timezones try to ping me repeatedly over multiple days during times when America is asleep, and sign off when they don't hear anything from me.
- # [20:12] <TabAtkins> I can't respond! I'm asleep! You're a dumbass!
- # [20:15] <Hixie> yeah, it seems like if you're not going to stick around, then send e-mail
- # [20:17] * Quits: Guest21419 (~Danny@unaffiliated/malaclyps) (Ping timeout: 246 seconds)
- # [20:19] * Joins: sgalineau (~sylvaing@192.150.10.205)
- # [20:19] <jgraham> TabAtkins: You should schedule irc breaks into your sleep pattern
- # [20:19] <tantek> TabAtkins just ask them to summarize their question and see if they bother checking the logs. If they don't, it can't have been that important right?
- # [20:19] <TabAtkins> That seems like a legitimate solution to the problem, yes.
- # [20:20] <TabAtkins> tantek: I'm getting pinged privately, so there's no logs for them to check.
- # [20:20] <tantek> you're getting pinged privately about *standards* questions?
- # [20:20] <Hixie> /away i'm asleep, please leave a detailed message after the beep. BEEEP.
- # [20:21] <tantek> TabAtkins perhaps an irc/pm auto-responder? "If you have a question about the web platform, please ask it in #whatwg and feel free to cc my alias"
- # [20:22] <jgraham> or, apparently, /away If you ask me something now and sign off before I respond I will call you a dumbass in public
- # [20:22] <tantek> LOL
- # [20:22] <TabAtkins> tantek: Yup. I'd like to tell them to just ping me in #whatwg, but I can't since they dont' stick around in public places.
- # [20:23] <Hixie> oh this is in IM, not IRC?
- # [20:24] <tantek> TabAtkins - people are pinging you about *standards* exclusively in *private* places? Ignore them until they figure it out. Or send them this for some background reading: http://tantek.com/2011/168/b1/practices-good-open-web-standards-development
- # [20:24] <TabAtkins> tantek: Still can't send them anything. You keep missing the fundamental difficulty I'm running into here. ^_^
- # [20:25] <Hixie> (fwiw, i get the same thing.)
- # [20:26] <jgraham> TabAtkins: /away allows you to do that, doesn't it?
- # [20:26] <tantek> You two are too patient. I've long since told people to go the (appropriate) IRC channel and ask there.
- # [20:26] <Hixie> tantek: how?
- # [20:26] <TabAtkins> jgraham: That requires me to actaully remember to set /away.
- # [20:26] <tantek> TabAtkins - how are you getting the pings?
- # [20:26] <TabAtkins> tantek: HOW DO I TELL ANYONE TO PING ME ELSEWHERE WHEN THEY LEAVE BEFORE I CAN TELL THEM ANYTHING?!?
- # [20:26] <TabAtkins> ^_^
- # [20:26] <Hixie> yeah, what tab said
- # [20:26] <jgraham> TabAtkins: Well, sure, that's a problem
- # [20:27] <jgraham> You could possibly set up your client to do it automatically after an inactivity timeout
- # [20:27] <tantek> if they're able to ping you then you are able to setup an /away auto-response
- # [20:27] * Quits: shannonmoeller (~shannonmo@pool-108-17-8-225.bflony.fios.verizon.net) (Quit: Leaving...)
- # [20:27] <tantek> I think some clients auto-set /away after an inactivity timeout
- # [20:27] <jgraham> Although assuming you use IRCCloud that might not be super-easy
- # [20:27] <TabAtkins> tantek: Not a specialized one, and I don't want to spam people who are legit PMing me during the day with a mesage telling them to buzz off.
- # [20:27] * ap is now known as ap|brb
- # [20:27] <TabAtkins> jgraham: Yes, that's what I use, and to the best of my knowledge I cant' set such a thing.
- # [20:28] <jgraham> Well you can
- # [20:28] <jgraham> Just need to write an extension or bookmarket, or something
- # [20:28] <tantek> FWIW Colloquy has a "Sleep Message" in the settings
- # [20:29] * Quits: lmclister (~lmclister@sjfw1-a.adobe.com)
- # [20:29] <TabAtkins> tantek: Not helpful for me on a Linux box, also IRCCloud is awesome and now free through work.
- # [20:30] * tantek is trying the Sleep Message setting
- # [20:31] <TabAtkins> So IRCCloud has an auto-away, but it triggers only when you leave the page in all clients.
- # [20:32] <Hixie> most. ridiculous. test. ever. http://damowmow.com/playground/demos/sandbox/001.html
- # [20:32] <Hixie> short of bidi tests.
- # [20:33] <tantek> oh NM - the Colloquy sleep message is triggered like a quit message when you put your computer to sleep (as opposed to actually quitting the IRC client)
- # [20:33] * Quits: sgalineau (~sylvaing@192.150.10.205) (Quit: Textual IRC Client: www.textualapp.com)
- # [20:33] <tantek> TabAtkins - perhaps file a feature request with the IRCCloud folks to have an "after hours" setting that auto-sets you /away with a message.
- # [20:34] <TabAtkins> tantek: Yeah, gonna do that.
- # [20:34] * Joins: shannonmoeller (~shannonmo@pool-108-17-8-225.bflony.fios.verizon.net)
- # [20:35] * Joins: csmith (~Adium@h86.25.141.67.dynamic.ip.windstream.net)
- # [20:38] * Quits: tj_vantoll1 (~Adium@c-68-84-189-15.hsd1.mi.comcast.net) (Quit: Leaving.)
- # [20:40] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net)
- # [20:42] * Joins: [[zzz]] (~zz]]@node-1ckh.pool-101-108.dynamic.totbb.net)
- # [20:44] * Joins: lmclister (~lmclister@sjfw1-a.adobe.com)
- # [20:46] * Quits: [[zz]] (~zz]]@node-qi2.pool-180-180.dynamic.totbb.net) (Ping timeout: 264 seconds)
- # [20:47] * Joins: tj_vantoll (~Adium@2601:4:1400:6b6:3979:9578:e55:756d)
- # [20:50] * Joins: othermaciej (~mjs@17.114.217.165)
- # [20:51] * Quits: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net) (Quit: tantek)
- # [20:52] * ap|brb is now known as ap
- # [20:52] * Krinkle is now known as Krinkle|detached
- # [21:00] * jorendorff is now known as jorendorff_away
- # [21:02] * Quits: Lachy (~Lachy@cm-84.215.104.248.getinternet.no) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [21:04] * Quits: nunnun (~hiro@sculptor.local.hiro.ne.jp) (Ping timeout: 245 seconds)
- # [21:04] * Quits: othermaciej (~mjs@17.114.217.165) (Quit: othermaciej)
- # [21:07] * Joins: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginm.net)
- # [21:08] * Joins: nunnun (~hiro@sculptor.local.hiro.ne.jp)
- # [21:09] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net) (Ping timeout: 240 seconds)
- # [21:09] * Krinkle|detached is now known as Krinkle
- # [21:14] * Joins: frustrum (~frustrum@128.54.213.182)
- # [21:16] * Quits: zdobersek (~zdobersek@91.108.183.50) (Quit: ZNC - http://znc.in)
- # [21:25] * paul_irish_ is now known as paul_irish
- # [21:41] * Joins: tantek (~tantek@172.56.16.139)
- # [21:46] * Quits: jwalden (~waldo@c-98-243-38-247.hsd1.mi.comcast.net) (Quit: food, back later)
- # [21:47] * Joins: Lachy (~Lachy@cm-84.215.104.248.getinternet.no)
- # [21:52] * Joins: othermaciej (~mjs@17.114.217.165)
- # [21:56] * jorendorff_away is now known as jorendorff
- # [21:56] * Joins: nullFxn (~nullFxn@cpe-174-103-20-40.indy.res.rr.com)
- # [21:57] * jorendorff is now known as jorendorff_away
- # [22:02] * Quits: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginm.net) (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
- # [22:03] * jorendorff_away is now known as jorendorff
- # [22:03] * Quits: othermaciej (~mjs@17.114.217.165) (Quit: othermaciej)
- # [22:04] * Quits: nullFxn (~nullFxn@cpe-174-103-20-40.indy.res.rr.com) (Quit: leaving)
- # [22:04] * Joins: nullFxn (~nullFxn@cpe-174-103-20-40.indy.res.rr.com)
- # [22:04] * Quits: Benvie (~bbenvie@corp-nat.p2p.sfo1.mozilla.com) (Ping timeout: 248 seconds)
- # [22:07] * Joins: SteveF (~chatzilla@92.234.79.149)
- # [22:08] * Quits: felipeduardo (~felipedua@r253-pw-corumbatai.ibys.com.br) (Read error: Operation timed out)
- # [22:08] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [22:11] * Quits: nullFxn (~nullFxn@cpe-174-103-20-40.indy.res.rr.com) (Ping timeout: 246 seconds)
- # [22:12] * Joins: nullFxn (~nullFxn@cpe-174-103-20-40.indy.res.rr.com)
- # [22:12] * Quits: tantek (~tantek@172.56.16.139) (Ping timeout: 265 seconds)
- # [22:15] * Quits: nullFxn (~nullFxn@cpe-174-103-20-40.indy.res.rr.com) (Client Quit)
- # [22:16] * Quits: rdebeasi (~rdebeasi@datacenter.ef.com) (Quit: Leaving)
- # [22:16] * Quits: SteveF (~chatzilla@92.234.79.149) (Ping timeout: 240 seconds)
- # [22:16] * Joins: rniwa (~rniwa@17.212.154.114)
- # [22:17] * Quits: ehsan (~ehsan@66.207.208.102) (Remote host closed the connection)
- # [22:18] * Joins: malaclyps (~Danny@unaffiliated/malaclyps)
- # [22:20] * Joins: danny__ (~Danny@gateway/tor-sasl/malaclyps)
- # [22:21] * danny__ is now known as Guest43657
- # [22:21] * Joins: ehsan_ (~ehsan@66.207.208.102)
- # [22:21] * Quits: malaclyps (~Danny@unaffiliated/malaclyps) (Client Quit)
- # [22:21] * Guest43657 is now known as malaclyps
- # [22:28] * Joins: annevk (~annevk@2.31.25.203)
- # [22:30] * Quits: malaclyps (~Danny@gateway/tor-sasl/malaclyps) (Remote host closed the connection)
- # [22:30] * Joins: newtron_ (~newtron@199.71.174.202)
- # [22:34] * Quits: newtron (~newtron@199.71.174.203) (Ping timeout: 272 seconds)
- # [22:35] * Quits: newtron_ (~newtron@199.71.174.202) (Ping timeout: 272 seconds)
- # [22:37] * Joins: malaclyps (~Danny@gateway/tor-sasl/malaclyps)
- # [22:38] * Quits: malaclyps (~Danny@gateway/tor-sasl/malaclyps) (Remote host closed the connection)
- # [22:38] * Joins: tantek (~tantek@172.56.16.139)
- # [22:38] * Joins: malaclyps (~Danny@gateway/tor-sasl/malaclyps)
- # [22:42] * Quits: malaclyps (~Danny@gateway/tor-sasl/malaclyps) (Remote host closed the connection)
- # [22:43] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net)
- # [22:52] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.sonic.net)
- # [22:58] * Quits: tantek (~tantek@172.56.16.139) (Ping timeout: 252 seconds)
- # [23:01] * Joins: tantek (~tantek@corp-nat.p2p.sfo1.mozilla.com)
- # [23:03] * Joins: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginm.net)
- # [23:03] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [23:05] * Quits: TallTed (~Thud@63.119.36.36)
- # [23:05] * Joins: a-ja (~Instantbi@70.230.150.59)
- # [23:12] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: :tiuQ tiuq sah woclrak)
- # [23:15] * heycam|away is now known as heycam
- # [23:18] * Quits: gavin_ (~gavin@76.14.87.162) (Ping timeout: 272 seconds)
- # [23:18] * Quits: aiglesias (~aiglesias@host111.190-139-148.telecom.net.ar) (Remote host closed the connection)
- # [23:19] * Joins: gavin_ (~gavin@76.14.87.162)
- # [23:25] * Quits: Maurice (copyman@5ED57922.cm-7-6b.dynamic.ziggo.nl)
- # [23:25] * Quits: tj_vantoll (~Adium@2601:4:1400:6b6:3979:9578:e55:756d) (Quit: Leaving.)
- # [23:27] <zcorpan> TabAtkins: just change your nick to TabAtkins_i'm_asleep_dumbass
- # [23:27] * Joins: aiglesias (~aiglesias@host111.190-139-148.telecom.net.ar)
- # [23:27] <TabAtkins> zcorpan: That requires the same level of forethought as setting /away.
- # [23:29] <zcorpan> not if you have that nick when you're awake, too :-P
- # [23:30] * Ms2ger is now known as Ms2ger_i_m_aslee
- # [23:30] <Ms2ger_i_m_aslee> Good idea
- # [23:33] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginm.net) (Ping timeout: 240 seconds)
- # [23:41] * Quits: aiglesias (~aiglesias@host111.190-139-148.telecom.net.ar) (Remote host closed the connection)
- # [23:41] * Quits: vcarbune_ (~vcarbune@86.121.185.210) (Ping timeout: 248 seconds)
- # [23:42] * Joins: vcarbune_ (~vcarbune@86.121.185.210)
- # [23:47] * Quits: vcarbune_ (~vcarbune@86.121.185.210) (Ping timeout: 272 seconds)
- # [23:49] * Joins: vcarbune_ (~vcarbune@86.121.185.210)
- # Session Close: Thu Dec 19 00:00:00 2013
The end :)