Options:
- # Session Start: Sun Aug 25 12:26:49 2013
- # Session Ident: #whatwg
- # [12:26] * Now talking in #whatwg
- # [12:26] * Topic is 'WHATWG: http://www.whatwg.org/ -- logs: http://krijnhoetmer.nl/irc-logs/ & http://logbot.glob.com.au/ -- stats: http://gavinsharp.com/irc/whatwg.html -- Please leave your sense of logic at the door, thanks!'
- # [12:26] * Set by smaug____!~chatzilla@GGZYYCCCXVIII.gprs.sl-laajakaista.fi on Wed Mar 21 17:14:24
- # [12:28] <krijn> Thanks for noticing
- # [12:29] <Ms2ger> Np
- # [12:37] * Quits: Ms2ger (~Ms2ger@188.192-64-87.adsl-dyn.isp.belgacom.be) (Quit: bbl)
- # [12:43] * Joins: zkis (~zkis@178-55-31-46.bb.dnainternet.fi)
- # [12:50] * Quits: seventh (seventh@31.6.45.231) (Ping timeout: 240 seconds)
- # [13:15] * Quits: wakaba_ (~wakaba@33.114.147.124.dy.bbexcite.jp) (Quit: Leaving...)
- # [13:18] * Joins: wakaba (~wakaba@33.114.147.124.dy.bbexcite.jp)
- # [13:23] * Joins: hasather (~hasather@cm-84.210.170.16.getinternet.no)
- # [13:33] * Quits: zkis (~zkis@178-55-31-46.bb.dnainternet.fi) (Ping timeout: 264 seconds)
- # [13:34] * heycam is now known as heycam|away
- # [14:12] * Quits: espadrine (~ttyl@AMontsouris-158-1-65-206.w92-128.abo.wanadoo.fr) (Quit: Leaving)
- # [14:12] * Joins: espadrine (~ttyl@AMontsouris-158-1-65-206.w92-128.abo.wanadoo.fr)
- # [14:15] * Quits: hasather (~hasather@cm-84.210.170.16.getinternet.no) (Remote host closed the connection)
- # [14:16] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com)
- # [14:19] * Quits: roven (~roven@78-20-24-80.access.telenet.be) (Remote host closed the connection)
- # [14:24] * Joins: boogyman (~dividingl@pdpc/supporter/professional/boogyman)
- # [14:28] * Joins: zkis (~zkis@178-55-31-46.bb.dnainternet.fi)
- # [14:29] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com) (Ping timeout: 240 seconds)
- # [14:33] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com)
- # [14:34] * Quits: zkis (~zkis@178-55-31-46.bb.dnainternet.fi) (Ping timeout: 240 seconds)
- # [14:42] * Joins: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com)
- # [14:42] <annevk> matijs: I recommend finding the answers to questions in specifications, not mailing lists ;)
- # [14:42] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com) (Ping timeout: 240 seconds)
- # [14:43] <annevk> matjas: ^^
- # [14:43] <annevk> your nicks are confusingly similar
- # [14:44] <matjas> annevk: what mail in particularare you referring to?
- # [14:44] <annevk> matjas: latest tweet
- # [14:45] <matjas> annevk: ah, good point, as always :)
- # [14:46] <annevk> matjas: if you use a BOM, which is kinda icky, your JS would be fully portable. If you use utf-8 all the time (including in your HTML), it's portable within your set of sites
- # [14:47] <annevk> matjas: otherwise you need to involve either <script charset> (eww) or HTTP (annoying)
- # [14:47] <matjas> i know
- # [14:47] <matjas> my point was that JS library authors have no way of knowing in which environments their code will end up
- # [14:47] <matjas> so going ASCII-only is probably the safest bet
- # [14:48] <annevk> It seems JavaScript could introduce a "utf-8" directive as the first thing in the file
- # [14:49] <matjas> like, d3.js (a popular dataviz library) has `var π = Math.PI` in its source, and every few weeks someone complains about “encoding issues” in their issue tracker
- # [14:49] <annevk> for easier editing than the utf-8 BOM
- # [14:49] <annevk> it's somewhat backwards compatible in that it doesn't throw and would definitely improve matters going forward
- # [14:49] <matjas> directives suck, though
- # [14:50] <annevk> what's the problem?
- # [14:50] <matjas> 2008: // nothing
- # [14:50] <matjas> 2009 (ES5): 'use strict'
- # [14:50] * Joins: hasather (~hasather@80.91.33.141)
- # [14:50] <matjas> 2014: 'use strict'; 'use utf-8';
- # [14:51] <annevk> I think "use strict" is regarded as a mistake
- # [14:51] <annevk> and "utf-8" is not really like "use strict", it's more how to decode the source, like @charset
- # [14:52] <matjas> would’ve been cool if 'use strict' implied utf-8, though
- # [14:52] <annevk> anyway, I guess it hasn't really been needed thus far, might not be worth it
- # [14:52] <matjas> but too late for that i guess
- # [14:52] <annevk> yeah, workers imply utf-8
- # [14:52] <annevk> but not use strict
- # [14:52] <matjas> xhr.responseType='json' too
- # [14:52] <annevk> we should make modules imply utf-8
- # [14:52] <matjas> which is pretty awesome
- # [14:52] <annevk> yes
- # [14:52] <matjas> yeah!
- # [14:53] <annevk> I force utf-8 everywhere
- # [14:53] <annevk> it's like a side mission in Zelda
- # [14:53] <matjas> out of curiosity, has no one complained about not supporting other encodings for `responseType='json'` since you specced it in 2011?
- # [14:54] <matjas> would be surprising, as there is no reason at all to not use UTF-8
- # [14:55] <annevk> haven't had complaints yet
- # [14:55] <annevk> note that XHR send() also forces utf-8
- # [14:56] <annevk> bbl
- # [15:05] * Joins: Ms2ger (~Ms2ger@188.192-64-87.adsl-dyn.isp.belgacom.be)
- # [15:12] * Quits: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com) (Quit: KVIrc 4.1.3 Equilibrium http://www.kvirc.net/)
- # [15:21] * Joins: frozenice` (~frozenice@unaffiliated/fr0zenice)
- # [15:26] * Quits: beverloo` (~peter@is-aweso.me) (Ping timeout: 240 seconds)
- # [15:26] * Quits: Somatt (famic@hidden.dns.ug) (Read error: Operation timed out)
- # [15:26] * Quits: jmb (~jmb@mail.parsifal.org.uk) (Read error: Operation timed out)
- # [15:26] * Quits: Garbee (~Garbee@lb1.cluster.grephix.nl) (Read error: Operation timed out)
- # [15:26] * Quits: payman (~payman@ip-200.t2.se.opera.com) (Read error: Operation timed out)
- # [15:26] * Quits: Domenic_ (uid10976@gateway/web/irccloud.com/x-gmnmfijgavwtixpw) (Ping timeout: 240 seconds)
- # [15:26] * Quits: paul_irish (~paul_iris@ve.hsh6wjwx.vesrv.com) (Quit: ZNC - http://znc.sourceforge.net)
- # [15:26] * Quits: frozenice (~frozenice@unaffiliated/fr0zenice) (Ping timeout: 240 seconds)
- # [15:26] * Quits: FireFly (~firefly@oftn/member/FireFly) (Read error: Operation timed out)
- # [15:26] * Joins: FireFly (~firefly@oftn/member/FireFly)
- # [15:26] * Joins: payman (~payman@ip-200.t2.se.opera.com)
- # [15:26] * Joins: scor (~scor@c-98-216-39-127.hsd1.ma.comcast.net)
- # [15:26] * Quits: scor (~scor@c-98-216-39-127.hsd1.ma.comcast.net) (Changing host)
- # [15:26] * Joins: scor (~scor@drupal.org/user/52142/view)
- # [15:27] * Joins: paul_irish (~paul_iris@ve.hsh6wjwx.vesrv.com)
- # [15:27] * Joins: jmb (~jmb@mail.parsifal.org.uk)
- # [15:27] * Quits: stalled (~stalled@unaffiliated/stalled) (Write error: Connection reset by peer)
- # [15:27] * Quits: scor (~scor@drupal.org/user/52142/view) (Client Quit)
- # [15:27] * Joins: yoichio_ (yoichio@nat/google/x-pggmyfrkwrdfeotv)
- # [15:28] * Joins: Guest9111 (~Garbee@lb1.cluster.grephix.nl)
- # [15:29] * Quits: yoichio (yoichio@nat/google/x-kvlajlvlzgybhfsl) (Ping timeout: 268 seconds)
- # [15:30] * Joins: Somatt (famic@hidden.dns.ug)
- # [15:30] * Joins: stalled (~stalled@unaffiliated/stalled)
- # [15:31] * Joins: beverloo` (~peter@is-aweso.me)
- # [15:35] * Quits: stalled (~stalled@unaffiliated/stalled) (Ping timeout: 260 seconds)
- # [15:38] * Quits: boogyman (~dividingl@pdpc/supporter/professional/boogyman) (Quit: ChatZilla 0.9.90.1 [Firefox 23.0.1/20130814063812])
- # [15:39] * Quits: espadrine (~ttyl@AMontsouris-158-1-65-206.w92-128.abo.wanadoo.fr) (Ping timeout: 246 seconds)
- # [15:41] * Joins: zagamqt (zagam@c-31-209-19-218.cust.bredband2.com)
- # [15:44] * Joins: Areks (~Areks@95-26-232-198.broadband.corbina.ru)
- # [15:44] * Guest9111 is now known as Garbee
- # [15:50] * Quits: zagamqt (zagam@c-31-209-19-218.cust.bredband2.com) (Quit: Leaving)
- # [16:03] * Joins: stalled (~stalled@unaffiliated/stalled)
- # [16:15] * Quits: stalled (~stalled@unaffiliated/stalled) (Ping timeout: 260 seconds)
- # [16:26] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com)
- # [16:35] * Joins: stalled (~stalled@unaffiliated/stalled)
- # [16:36] * Quits: stalled (~stalled@unaffiliated/stalled) (Read error: Connection reset by peer)
- # [16:41] * Joins: stalled (~stalled@unaffiliated/stalled)
- # [16:47] * Joins: jannis_ (~Adium@xdsl-188-155-17-213.adslplus.ch)
- # [16:48] * Quits: stalled (~stalled@unaffiliated/stalled) (Ping timeout: 260 seconds)
- # [16:52] * Joins: stalled (~stalled@unaffiliated/stalled)
- # [17:07] * Joins: barneybook (~kvirc@220-136-58-53.dynamic.hinet.net)
- # [17:12] * Quits: barneybook (~kvirc@220-136-58-53.dynamic.hinet.net) (Read error: Connection reset by peer)
- # [17:12] * Quits: stalled (~stalled@unaffiliated/stalled) (Ping timeout: 260 seconds)
- # [17:16] * Joins: barneybook (~kvirc@220-136-58-53.dynamic.hinet.net)
- # [17:19] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com) (Ping timeout: 240 seconds)
- # [17:23] * Joins: stalled (~stalled@unaffiliated/stalled)
- # [17:25] * Joins: ^esc_ (~esc-ape@178.115.248.56.wireless.dyn.drei.com)
- # [17:27] * Quits: ^esc (~esc-ape@178.115.248.130.wireless.dyn.drei.com) (Ping timeout: 264 seconds)
- # [17:33] * Joins: yorick (~yorick@oftn/member/yorick)
- # [17:34] * Joins: Domenic_ (uid10976@gateway/web/irccloud.com/x-mgibiiepdjnavkyh)
- # [17:57] * Quits: hasather (~hasather@80.91.33.141) (Remote host closed the connection)
- # [17:57] * Quits: smaug____ (~chatzilla@a91-154-47-240.elisa-laajakaista.fi) (Ping timeout: 245 seconds)
- # [17:58] * Joins: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net)
- # [18:02] * Joins: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com)
- # [18:14] * Quits: Cromulent (~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com) (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
- # [18:15] * Joins: Goplat (~goplat@reactos/developer/Goplat)
- # [18:26] * Joins: baku (~baku@cpc2-croy12-0-0-cust247.19-2.cable.virginmedia.com)
- # [18:30] * Joins: jorgepedret (~jorgepedr@64-46-3-158.dyn.novuscom.net)
- # [18:33] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com)
- # [18:38] * Joins: zkis (~zkis@178-55-31-46.bb.dnainternet.fi)
- # [18:45] * Joins: jannis_1 (~Adium@xdsl-188-155-17-213.adslplus.ch)
- # [18:46] * Quits: jannis_ (~Adium@xdsl-188-155-17-213.adslplus.ch) (Ping timeout: 246 seconds)
- # [18:47] * Quits: diffalot-away (~papyroman@c-76-107-128-104.hsd1.ms.comcast.net) (Quit: ZNC - http://znc.in)
- # [18:50] * Joins: diffalot-away (~papyroman@c-76-107-128-104.hsd1.ms.comcast.net)
- # [18:50] * diffalot-away is now known as diffalot
- # [18:53] * Quits: jernoble (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net) (Quit: Computer has gone to sleep.)
- # [18:55] * Quits: zkis (~zkis@178-55-31-46.bb.dnainternet.fi) (Ping timeout: 276 seconds)
- # [18:57] * Joins: zkis (~zkis@178-55-31-46.bb.dnainternet.fi)
- # [19:10] * Joins: smaug____ (~chatzilla@a91-154-47-240.elisa-laajakaista.fi)
- # [19:23] * Joins: dbaron (~dbaron@173-228-85-238.dsl.dynamic.sonic.net)
- # [19:23] * Quits: zkis (~zkis@178-55-31-46.bb.dnainternet.fi) (Ping timeout: 264 seconds)
- # [19:57] * Quits: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net) (Quit: tantek)
- # [20:04] * Joins: jernoble (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net)
- # [20:06] <TabAtkins> heycam: Yes, I did, but I last bikeshedded it before I had syntax support for token references.
- # [20:07] * Quits: jernoble (~jernoble@199-188-193-107.PUBLIC.monkeybrains.net) (Client Quit)
- # [20:11] * Joins: tobie_ (~tobielang@73-118.195-178.cust.bluewin.ch)
- # [20:11] * jannis_1 is now known as jannis_
- # [20:14] * Joins: hasather (~hasather@cm-84.210.170.16.getinternet.no)
- # [20:15] * Joins: seventh (seventh@31.6.45.226)
- # [20:19] * Quits: jannis_ (~Adium@xdsl-188-155-17-213.adslplus.ch) (Quit: Leaving.)
- # [20:22] * Quits: baku (~baku@cpc2-croy12-0-0-cust247.19-2.cable.virginmedia.com) (Ping timeout: 260 seconds)
- # [20:23] * Quits: tobie_ (~tobielang@73-118.195-178.cust.bluewin.ch) (Quit: tobie_)
- # [20:32] <TabAtkins> heycam|away: All fixed up now, and your bugs in the list fixed as well.
- # [20:40] * Joins: tobie_ (~tobielang@73-118.195-178.cust.bluewin.ch)
- # [20:44] * Joins: jannis_ (~Adium@xdsl-188-155-17-213.adslplus.ch)
- # [20:44] * Quits: tobie_ (~tobielang@73-118.195-178.cust.bluewin.ch) (Ping timeout: 264 seconds)
- # [20:47] * Joins: weinig (~weinig@24.130.60.35)
- # [20:51] * Quits: hasather (~hasather@cm-84.210.170.16.getinternet.no) (Remote host closed the connection)
- # [20:57] * Joins: hasather (~hasather@cm-84.210.170.16.getinternet.no)
- # [20:58] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [21:24] * Joins: espadrine (~ttyl@AMontsouris-158-1-31-146.w92-128.abo.wanadoo.fr)
- # [21:27] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [21:29] * Joins: scor (scor@drupal.org/user/52142/view)
- # [21:34] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com) (Ping timeout: 240 seconds)
- # [21:42] * Joins: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net)
- # [21:50] * Joins: tobie_ (~tobielang@73-118.195-178.cust.bluewin.ch)
- # [21:50] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [21:54] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [21:54] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [21:57] * Quits: tobie_ (~tobielang@73-118.195-178.cust.bluewin.ch) (Quit: tobie_)
- # [21:58] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 246 seconds)
- # [22:08] * Joins: josemanuel (~josemanue@65.236.221.87.dynamic.jazztel.es)
- # [22:09] * Quits: josemanuel (~josemanue@65.236.221.87.dynamic.jazztel.es) (Remote host closed the connection)
- # [22:11] * Quits: TuRnaD0 (~Thunderbi@x1-6-e0-46-9a-1e-fe-ca.k368.webspeed.dk) (Remote host closed the connection)
- # [22:17] * Joins: roven (~roven@78-20-24-80.access.telenet.be)
- # [22:18] * NimeshNeema is now known as AgentSmith
- # [22:19] * Quits: seventh (seventh@31.6.45.226) (Ping timeout: 260 seconds)
- # [22:26] * AgentSmith is now known as NimeshNeema
- # [22:26] * Quits: scor (scor@drupal.org/user/52142/view) (Quit: scor)
- # [22:28] * NimeshNeema is now known as AgentBrown
- # [22:29] * Quits: barneybook (~kvirc@220-136-58-53.dynamic.hinet.net) (Read error: Connection reset by peer)
- # [22:30] * Joins: barneybook (~kvirc@220-136-58-81.dynamic.hinet.net)
- # [22:31] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [22:33] * Quits: Ms2ger (~Ms2ger@188.192-64-87.adsl-dyn.isp.belgacom.be) (Quit: nn)
- # [22:40] * Joins: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com)
- # [22:44] * Quits: frozenice` (~frozenice@unaffiliated/fr0zenice) (Remote host closed the connection)
- # [22:45] * Quits: SteveF (~chatzilla@cpc3-nmal20-2-0-cust916.19-2.cable.virginmedia.com) (Ping timeout: 264 seconds)
- # [22:48] * Joins: nessy (~silviapf@101.164.144.53)
- # [22:57] * Quits: tantek (~tantek@50-0-164-83.dsl.dynamic.sonic.net) (Quit: tantek)
- # [23:00] * Joins: jdaggett (~jdaggett@y230006.dynamic.ppp.asahi-net.or.jp)
- # [23:01] * Quits: nessy (~silviapf@101.164.144.53) (Quit: Leaving.)
- # [23:13] * Quits: Maurice (copyman@5ED57922.cm-7-6b.dynamic.ziggo.nl)
- # [23:14] * Joins: kevinmarks (~yaaic@172.56.17.155)
- # [23:14] * AgentBrown is now known as NimeshNeema
- # [23:15] * Joins: kevinmarks2 (~yaaic@fw.bcp.org)
- # [23:16] * Joins: tantek (~tantek@172.56.16.245)
- # [23:18] * Quits: kevinmarks (~yaaic@172.56.17.155) (Ping timeout: 245 seconds)
- # [23:21] * Joins: seventh (seventh@31.6.45.229)
- # [23:25] * Joins: kevinmarks (~yaaic@172.56.17.155)
- # [23:25] * Quits: kevinmarks2 (~yaaic@fw.bcp.org) (Read error: Connection reset by peer)
- # [23:25] * Joins: kevinmarks2 (~yaaic@fw.bcp.org)
- # [23:26] * Quits: tantek (~tantek@172.56.16.245) (Read error: Connection reset by peer)
- # [23:28] * Joins: kevinmarks3 (~yaaic@64.62.178.135)
- # [23:29] * Quits: hasather (~hasather@cm-84.210.170.16.getinternet.no) (Remote host closed the connection)
- # [23:29] * Quits: kevinmarks (~yaaic@172.56.17.155) (Read error: Connection reset by peer)
- # [23:30] * Quits: kevinmarks2 (~yaaic@fw.bcp.org) (Ping timeout: 276 seconds)
- # [23:32] * Joins: tantek (~tantek@172.56.16.245)
- # [23:32] * Quits: kevinmarks3 (~yaaic@64.62.178.135) (Ping timeout: 256 seconds)
- # [23:32] * Quits: tantek (~tantek@172.56.16.245) (Client Quit)
- # [23:34] * Joins: kevinmarks (~yaaic@fw.bcp.org)
- # [23:36] * Quits: charl (~charl@charl.eu) (Quit: leaving)
- # [23:42] * Quits: kevinmarks (~yaaic@fw.bcp.org) (Ping timeout: 260 seconds)
- # [23:50] * Quits: Guest45901 (~Krinkle@ec2-50-112-50-28.us-west-2.compute.amazonaws.com) (Changing host)
- # [23:50] * Joins: Guest45901 (~Krinkle@wikimedia/Krinkle)
- # [23:50] * Guest45901 is now known as Krinkle
- # [23:51] * Joins: hasather (~hasather@cm-84.210.170.16.getinternet.no)
- # [23:51] * Quits: reyre_ (~reyre@CPE7cb21b1e2cf4-CM7cb21b1e2cf1.cpe.net.cable.rogers.com) (Remote host closed the connection)
- # [23:54] * Joins: reyre (~reyre@CPE7cb21b1e2cf4-CM7cb21b1e2cf1.cpe.net.cable.rogers.com)
- # [23:57] * Quits: zdobersek (~zdobersek@cpe-77.38.31.63.cable.t-1.si) (Quit: ZNC - http://znc.in)
- # [23:58] * Domenic_ is now known as Domenic
- # [23:58] * Domenic is now known as Domenic_
- # [23:59] * Quits: yorick (~yorick@oftn/member/yorick) (Remote host closed the connection)
- # Session Close: Mon Aug 26 00:00:00 2013
The end :)