Options:
Previous day, Next day
- # Session Start: Tue Jan 27 00:00:00 2015
- # Session Ident: #whatwg
- # [00:00] * Joins: bholley (~bholley@c-50-131-239-99.hsd1.ca.comcast.net)
- # [00:02] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: This computer has gone to sleep)
- # [00:02] * Joins: weinig (~weinig@17.114.217.60)
- # [00:03] * Joins: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com)
- # [00:06] * Joins: mven (~textual@32.97.110.56)
- # [00:06] * Quits: mven (~textual@32.97.110.56) (Excess Flood)
- # [00:11] <jgraham> nicholasserra: So afaict when you parse the output of that you get the same as when you parse the input i.e. everything is working as expected
- # [00:12] * Quits: Lachy_ (~Lachy@cm-84.215.179.176.getinternet.no) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [00:12] * Quits: shaundunne (~shaundunn@97e012f2.skybroadband.com) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [00:13] <nicholasserra> jgraham: What do you mean? To clarify my issue, if I try to sanitize an anchor tag with href like google.com/?key=1&key=2, the href will be changed to ?key=1&key=2
- # [00:13] * Joins: hendry (~hendry@sg.webconverger.com)
- # [00:14] * Quits: benjamingr (uid23465@gateway/web/irccloud.com/x-abjwzxejurwziwrt) (Remote host closed the connection)
- # [00:14] * Joins: benjamingr (uid23465@gateway/web/irccloud.com/x-xanihsegrpovsqqn)
- # [00:18] * Quits: eric_carlson (~ericc@17.202.49.94) (Ping timeout: 256 seconds)
- # [00:19] * Quits: hendry (~hendry@sg.webconverger.com) (Ping timeout: 265 seconds)
- # [00:19] <zewt_> dpm
- # [00:19] <zewt_> typing hard
- # [00:19] <zewt_> don't suppose there's a magic setting to un-break chrome user scripts
- # [00:20] <zewt_> one day google decided to just kill off user scripts saying "not from chrome web store"
- # [00:20] <jgraham> nicholasserra: The output will yes. But reparsing that output will give you the same DOM as your original input
- # [00:20] <jgraham> So I don't see why it's a problem
- # [00:22] * c74d3 is now known as c74d
- # [00:22] <nicholasserra> The DOM is fine, but now I have an href with an invalid link
- # [00:22] * Quits: tantek (~tantek@50.1.62.185) (Quit: tantek)
- # [00:22] <nicholasserra> jgraham: ^
- # [00:23] <nicholasserra> Unless html entities are parsed by the browser. I don't think that's the case though.
- # [00:25] <nicholasserra> tldr <a href="test.com/&"> goes in, <a href="test.com/&"> comes out. Different href attrs
- # [00:25] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (Read error: Connection reset by peer)
- # [00:25] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [00:25] <zewt_> that looks right to me
- # [00:25] * zewt_ is now known as zewt
- # [00:26] <jgraham> nicholasserra: It is the case. See e.g. http://software.hixie.ch/utilities/js/live-dom-viewer/saved/3384
- # [00:26] <zewt> it's not going to remember which characters were escaped in the input, you just always escape going out
- # [00:27] * Quits: abinader (sid21713@gateway/web/irccloud.com/x-tvrznprxpdbadgiw)
- # [00:27] <zewt> it could probably figure out when escaping isn't needed, but nobody would risk escaping-related security bugs just to prettify html a little
- # [00:27] <zewt> (for some value of nobody)
- # [00:27] <nicholasserra> Nice. I guess I never knew that the browser would treat html special chars as their regular character counterparts when parsing the attribute. Still seems generally wrong to me though.
- # [00:28] <nicholasserra> I would expect those URI attrs to be excluded from any parsing or treatment in general.
- # [00:28] <zewt> (you mean URL)
- # [00:28] <zewt> how would you put a quote in the string?
- # [00:28] <jgraham> nicholasserra: The spec and all browsers disagree with your expectations, though :)
- # [00:29] <zewt> i guess you're thinking that you could URL-escape but not HTML-escape, which I guess is fair, but incorrect
- # [00:29] <jgraham> Not all attributes are URLs
- # [00:29] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [00:29] <nicholasserra> The code from html5lib refers to them as URI. But yeah.
- # [00:30] <zewt> since the ... yeah that's a shorter way of typing what i was about to type
- # [00:30] <nicholasserra> Yeah, I guess I would imagine that urlencoding it would make more sense
- # [00:30] <jgraham> It probably shouldn't say URI but it's hard to change the API now
- # [00:30] <nicholasserra> Weird stuff
- # [00:31] <nicholasserra> thanks for sorting it out with me zewt and jgraham
- # [00:31] <jgraham> nicholasserra: np
- # [00:31] <nicholasserra> Im going to leave my issue open to see if anyone else has an opinion on it
- # [00:32] <zewt> not really good practice
- # [00:33] <zewt> since it's forcing somebody somewhere to spend time on it (and just repeating what we just said)
- # [00:34] * Joins: xtrm0 (uid12574@gateway/web/irccloud.com/x-vgrgsfhtpzaajxdu)
- # [00:34] <nicholasserra> While you're both right that it will work, I still don't think URL attributes should even be parsed. It's probably a wontfix issue, but i'm curious if the authors have any more input.
- # [00:34] * Joins: jdaggett (~jdaggett@103.5.142.47)
- # [00:35] <zewt> given that that's not what browsers actually do, that's frankly just not a valid thing to think :)
- # [00:36] <zewt> better off posting to a mailing list if you want to ask for opinions--filing a bug is sort of like demanding them
- # [00:36] * Joins: hendry (~hendry@sg.webconverger.com)
- # [00:37] <zewt> (anyway, i'm not the one who has to respond to the bug report)
- # [00:38] <nicholasserra> That's fair. The google group for html5lib is pretty dead. Any suggestions on where to ask that question?
- # [00:38] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [00:39] * Joins: othermaciej (~mjs@17.114.218.228)
- # [00:39] <jgraham> nicholasserra: FWIW I am one of the principal authors of html5lib
- # [00:39] <zewt> it's not really html5lib-specific, you could ask anywhere html-related, eg. stackoverflow
- # [00:39] <zewt> since you're asking about html parsing, html5lib is just one implementation of that
- # [00:40] <nicholasserra> Gotcha. Thanks. I closed my issue. Maybe i'll bring it up elsewhere. jgraham zewt
- # [00:40] <zewt> (another reason what you're suggesting is incorrect: browsers don't know whether an attribute contains a url in advance; it might be a polyfilled attribute that it doesn't know about yet)
- # [00:41] * Quits: hendry (~hendry@sg.webconverger.com) (Ping timeout: 252 seconds)
- # [00:42] <nicholasserra> I guess my gripe is more with the parser than the browser. Mainly: If the browser will just read the html special character as its regular character counterpart, and the parser knows that it's in a URL attribute, when why bother escaping it?
- # [00:43] <zewt> the parser doesn't necessarily know anything about the contents of an attribute
- # [00:43] <nicholasserra> In html5lib, it has a list of attrs that are marked as URL attributes
- # [00:43] <zewt> (and it shouldn't have to--that's bad layering)
- # [00:43] <zewt> and that's not exhaustive: when a new attribute is added to HTML that contains a URL, it won't know about it
- # [00:44] <zewt> which means HTML would parse differently as attributes are added
- # [00:44] <nicholasserra> So basically you're saying it should sanitize everything just in case?
- # [00:44] * Joins: Zebra111 (~quassel@sydnns0115w-156057001250.dhcp-dynamic.FibreOp.ns.bellaliant.net)
- # [00:46] <zewt> nothing to do with sanitizing, if you say <foo srcurl="http://google.com/&">, and you look at srcurl in javascript on the page, some browsers would say "http://google.com&" and others would say "http://google.com&"
- # [00:46] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [00:47] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [00:47] * Quits: weinig (~weinig@17.114.217.60) (Quit: weinig)
- # [00:48] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [00:49] * Joins: frivoal (~frivoal@46.140.101.190)
- # [00:50] * Quits: wilsonpage (~wilsonpag@87.113.78.29) (Ping timeout: 252 seconds)
- # [00:51] * Quits: othermaciej (~mjs@17.114.218.228) (Quit: othermaciej)
- # [00:52] * Joins: wilsonpage (~wilsonpag@87.113.78.29)
- # [00:53] * Quits: frivoal (~frivoal@46.140.101.190) (Ping timeout: 252 seconds)
- # [00:58] * Joins: hendry (~hendry@sg.webconverger.com)
- # [00:59] * Joins: satazor (~satazor@80.99.114.89.rev.vodafone.pt)
- # [01:00] * Joins: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [01:01] * Joins: satazor_ (~satazor@37.189.3.135)
- # [01:03] * Joins: othermaciej (~mjs@17.244.160.55)
- # [01:04] * Quits: hendry (~hendry@sg.webconverger.com) (Ping timeout: 264 seconds)
- # [01:04] * Quits: satazor (~satazor@80.99.114.89.rev.vodafone.pt) (Ping timeout: 276 seconds)
- # [01:09] * Quits: ambv (~ambv@199.201.64.131) (Quit: sys.exit(0) # app closed)
- # [01:11] * Quits: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
- # [01:13] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [01:16] * Joins: tantek (~tantek@corp-nat.p2p.sfo1.mozilla.com)
- # [01:18] * Quits: wilsonpage (~wilsonpag@87.113.78.29) (Read error: Connection reset by peer)
- # [01:21] * Joins: hendry (~hendry@sg.webconverger.com)
- # [01:22] * Quits: othermaciej (~mjs@17.244.160.55) (Ping timeout: 265 seconds)
- # [01:24] * Joins: othermaciej (~mjs@17.202.46.4)
- # [01:26] * Quits: hendry (~hendry@sg.webconverger.com) (Ping timeout: 256 seconds)
- # [01:27] * Quits: bholley (~bholley@c-50-131-239-99.hsd1.ca.comcast.net)
- # [01:38] * Joins: encryptd_fractal (~encryptd_@24.177.122.160)
- # [01:48] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [01:52] * Joins: plutoniix (~plutoniix@119.63.87.222)
- # [01:52] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 265 seconds)
- # [01:59] * Quits: Zebra111 (~quassel@sydnns0115w-156057001250.dhcp-dynamic.FibreOp.ns.bellaliant.net) (Remote host closed the connection)
- # [01:59] * Joins: newtron (~newtron@167.88.20.244)
- # [02:04] * Joins: ehsan (~ehsan@24-212-206-173.cable.teksavvy.com)
- # [02:04] * Quits: ehsan (~ehsan@24-212-206-173.cable.teksavvy.com) (Remote host closed the connection)
- # [02:05] * Joins: hendry (~hendry@sg.webconverger.com)
- # [02:08] * Joins: weinig (~weinig@17.245.30.129)
- # [02:09] * Quits: hendry (~hendry@sg.webconverger.com) (Ping timeout: 264 seconds)
- # [02:09] * Joins: weinig_ (~weinig@17.114.217.60)
- # [02:13] * Quits: weinig (~weinig@17.245.30.129) (Ping timeout: 252 seconds)
- # [02:13] * weinig_ is now known as weinig
- # [02:15] * Quits: ap (~ap@17.114.218.73)
- # [02:16] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (Read error: Connection reset by peer)
- # [02:16] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [02:21] * Joins: satazor (~satazor@80.99.114.89.rev.vodafone.pt)
- # [02:22] * Quits: jwalden (~waldo@2620:101:80fc:224:7e7a:91ff:fe25:a5a3) (Quit: ChatZilla 0.9.87-8.1450hg.fc20 [XULRunner 32.0/20140902134853])
- # [02:22] * Quits: satazor (~satazor@80.99.114.89.rev.vodafone.pt) (Remote host closed the connection)
- # [02:22] * Quits: benjamingr (uid23465@gateway/web/irccloud.com/x-xanihsegrpovsqqn) (Quit: Connection closed for inactivity)
- # [02:24] * Quits: satazor_ (~satazor@37.189.3.135) (Ping timeout: 252 seconds)
- # [02:28] * heycam is now known as heycam|away
- # [02:28] * heycam|away is now known as heycam
- # [02:29] * heycam is now known as heycam|away
- # [02:30] * Quits: smaug____ (~chatzilla@62.78.246.79) (Ping timeout: 240 seconds)
- # [02:32] * Quits: nicholasserra (~Adium@cpe-24-93-244-49.neo.res.rr.com) (Quit: Leaving.)
- # [02:33] * Quits: othermaciej (~mjs@17.202.46.4) (Ping timeout: 272 seconds)
- # [02:33] * Quits: bnicholson (~bnicholso@corp.mtv2.mozilla.com) (Quit: Leaving)
- # [02:38] * Joins: frivoal (~frivoal@46.140.101.190)
- # [02:42] * Quits: frivoal (~frivoal@46.140.101.190) (Ping timeout: 244 seconds)
- # [02:45] * Quits: encryptd_fractal (~encryptd_@24.177.122.160) (Remote host closed the connection)
- # [02:47] * Joins: othermaciej (~mjs@76.74.153.49)
- # [02:47] * Joins: bnicholson (~bnicholso@24.130.60.241)
- # [02:48] * Joins: Rastus_Vernon (uid15187@wikimedia/Rastus-Vernon)
- # [02:54] * Joins: bholley (~bholley@c-50-131-239-99.hsd1.ca.comcast.net)
- # [02:59] * Joins: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [02:59] * Quits: weinig (~weinig@17.114.217.60) (Quit: weinig)
- # [03:08] * Quits: tantek (~tantek@corp-nat.p2p.sfo1.mozilla.com) (Quit: tantek)
- # [03:10] * heycam|away is now known as heycam
- # [03:10] * Joins: hendry (~hendry@sg.webconverger.com)
- # [03:13] * Quits: jdaggett (~jdaggett@103.5.142.47) (Quit: jdaggett)
- # [03:13] * heycam is now known as heycam|away
- # [03:15] * Quits: hendry (~hendry@sg.webconverger.com) (Ping timeout: 240 seconds)
- # [03:17] * Joins: jwalden (~waldo@c-50-168-55-219.hsd1.ca.comcast.net)
- # [03:20] * Quits: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
- # [03:21] * Joins: jsx (uid48919@fsf/intern/jsx)
- # [03:21] * Joins: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [03:21] * Joins: hendry (~hendry@sg.webconverger.com)
- # [03:25] * Quits: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Ping timeout: 252 seconds)
- # [03:28] * Quits: terinjokes (~terinjoke@wikinews/Terinjokes) (Quit: So long and thanks for all the fish!)
- # [03:29] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: This computer has gone to sleep)
- # [03:35] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [03:39] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [03:45] * Joins: tripu (~tripu@219.239.227.197)
- # [03:49] * Quits: jwalden (~waldo@c-50-168-55-219.hsd1.ca.comcast.net) (Quit: back tomorrow, sans end-of-day grouchiness)
- # [03:52] * Quits: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com) (Quit: sicking)
- # [03:55] * Joins: haipa (~haipa.dev@HSI-KBW-109-192-039-107.hsi6.kabel-badenwuerttemberg.de)
- # [03:57] * Quits: othermaciej (~mjs@76.74.153.49) (Quit: othermaciej)
- # [03:59] * heycam|away is now known as heycam
- # [04:02] * Quits: haipa (~haipa.dev@HSI-KBW-109-192-039-107.hsi6.kabel-badenwuerttemberg.de)
- # [04:02] * Joins: othermaciej (~mjs@c-71-198-213-78.hsd1.ca.comcast.net)
- # [04:04] * Quits: dbaron (~dbaron@2620:101:80fb:224:49ce:f52:114c:63dd) (Ping timeout: 245 seconds)
- # [04:08] * Joins: tav (~tav`@host31-52-138-176.range31-52.btcentralplus.com)
- # [04:15] * Quits: espadrine (~tyl@dan75-7-88-166-187-54.fbx.proxad.net) (Ping timeout: 276 seconds)
- # [04:18] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Read error: Connection reset by peer)
- # [04:19] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [04:20] * Joins: haipahaipa (~haipa@2a02:8070:6387:8000:c8ef:38fc:e414:94c5)
- # [04:20] * Quits: othermaciej (~mjs@c-71-198-213-78.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [04:21] * Quits: haipahaipa (~haipa@2a02:8070:6387:8000:c8ef:38fc:e414:94c5) (Remote host closed the connection)
- # [04:22] * Joins: haipa (~haipa@2a02:8070:6387:8000:c8ef:38fc:e414:94c5)
- # [04:25] * Quits: haipa (~haipa@2a02:8070:6387:8000:c8ef:38fc:e414:94c5) (Client Quit)
- # [04:26] * Joins: mven (~textual@72.183.104.138)
- # [04:26] * Quits: mven (~textual@72.183.104.138) (Excess Flood)
- # [04:27] * Joins: frivoal (~frivoal@46.140.101.190)
- # [04:28] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (Remote host closed the connection)
- # [04:28] * Joins: ivan\ (~ivan@104.236.45.82)
- # [04:29] * Quits: ivan\ (~ivan@104.236.45.82) (Changing host)
- # [04:29] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [04:30] * Joins: jdaggett (~jdaggett@ad056175.dynamic.ppp.asahi-net.or.jp)
- # [04:31] * Quits: frivoal (~frivoal@46.140.101.190) (Ping timeout: 264 seconds)
- # [04:35] * Quits: bholley (~bholley@c-50-131-239-99.hsd1.ca.comcast.net) (Quit: ZZZzzz…)
- # [04:35] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [04:36] * Joins: bholley (~bholley@c-50-131-239-99.hsd1.ca.comcast.net)
- # [04:38] * Quits: CvP (CvP@203.76.123.238) (Read error: Connection reset by peer)
- # [04:38] * Joins: CvP (CvP@203.76.123.238)
- # [04:39] * Joins: dbaron (~dbaron@70-36-140-197.dsl.dynamic.fusionbroadband.com)
- # [04:40] * Quits: bholley (~bholley@c-50-131-239-99.hsd1.ca.comcast.net) (Ping timeout: 240 seconds)
- # [04:40] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [04:41] * Quits: say2joe (~Adium@198-101-119-98.static-ip.telepacific.net) (Quit: Leaving.)
- # [04:48] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [04:52] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Ping timeout: 256 seconds)
- # [04:54] * Joins: darobin (~darobin@wifi-139-230.sfc.wide.ad.jp)
- # [04:57] * Joins: kbx (~kbx@2401:fa00:4:1013:3c13:6315:8ac6:5bca)
- # [04:59] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [05:19] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [05:22] * Joins: satazor (~satazor@80.99.114.89.rev.vodafone.pt)
- # [05:23] * Joins: weinig (~weinig@98.234.191.242)
- # [05:27] * Quits: satazor (~satazor@80.99.114.89.rev.vodafone.pt) (Ping timeout: 244 seconds)
- # [05:29] * Quits: xtrm0 (uid12574@gateway/web/irccloud.com/x-vgrgsfhtpzaajxdu) (Quit: Connection closed for inactivity)
- # [05:38] * Quits: tripu (~tripu@219.239.227.197) (Ping timeout: 265 seconds)
- # [05:40] * Quits: kbx (~kbx@2401:fa00:4:1013:3c13:6315:8ac6:5bca) (Ping timeout: 276 seconds)
- # [05:47] * Quits: Rastus_Vernon (uid15187@wikimedia/Rastus-Vernon) (Quit: Connection closed for inactivity)
- # [05:48] * Joins: ohaibbq (~ohaibbq@2601:9:a80:a8f:79bc:b623:7759:9865)
- # [05:51] * Joins: kbx (~kbx@2401:fa00:4:1013:3c13:6315:8ac6:5bca)
- # [05:53] * Joins: nicholasserra (~Adium@cpe-24-93-244-49.neo.res.rr.com)
- # [05:58] * Joins: psy_ (~psy@103.6.159.170)
- # [06:00] * Joins: othermaciej (~mjs@c-71-198-213-78.hsd1.ca.comcast.net)
- # [06:15] * Joins: frivoal (~frivoal@46.140.101.190)
- # [06:20] * Quits: frivoal (~frivoal@46.140.101.190) (Ping timeout: 255 seconds)
- # [06:21] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [06:29] * Quits: plutoniix (~plutoniix@119.63.87.222) (Read error: Connection reset by peer)
- # [06:30] * Joins: plutoniix (~plutoniix@119.63.87.222)
- # [06:36] * Quits: nicholasserra (~Adium@cpe-24-93-244-49.neo.res.rr.com) (Quit: Leaving.)
- # [06:39] * Quits: kochi (~kochi@2401:fa00:4:1000:55b9:66c8:5929:c966) (Ping timeout: 245 seconds)
- # [06:40] * Quits: zama (~zama@unaffiliated/stryx/x-3871776) (Remote host closed the connection)
- # [06:45] * Quits: weinig (~weinig@98.234.191.242) (Quit: weinig)
- # [06:49] * Joins: tripu (~tripu@219.239.227.197)
- # [06:53] * Joins: kochi (~kochi@2401:fa00:4:1000:592b:dcec:c029:3a9b)
- # [06:59] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (Remote host closed the connection)
- # [06:59] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [07:01] * Quits: roc (~chatzilla@2001:cb0:b202:232:2677:3ff:fece:dc64) (Remote host closed the connection)
- # [07:02] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [07:14] * heycam is now known as heycam|away
- # [07:18] * Joins: bholley (~bholley@c-50-131-239-99.hsd1.ca.comcast.net)
- # [07:19] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [07:19] * Quits: othermaciej (~mjs@c-71-198-213-78.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [07:23] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [07:24] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [07:25] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [07:43] * Joins: tantek (~tantek@50-1-62-185.dsl.dynamic.fusionbroadband.com)
- # [07:45] * Quits: bholley (~bholley@c-50-131-239-99.hsd1.ca.comcast.net)
- # [07:47] * Quits: tantek (~tantek@50-1-62-185.dsl.dynamic.fusionbroadband.com) (Quit: tantek)
- # [07:48] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [07:51] * Joins: zama (~zama@unaffiliated/stryx/x-3871776)
- # [07:51] * Quits: ^esc (~esc-ape@178.115.128.40.wireless.dyn.drei.com) (Ping timeout: 264 seconds)
- # [07:57] * Quits: zama (~zama@unaffiliated/stryx/x-3871776) (Ping timeout: 264 seconds)
- # [08:03] * Joins: zama (~zama@unaffiliated/stryx/x-3871776)
- # [08:18] * Joins: shaundunne (~shaundunn@97e012f2.skybroadband.com)
- # [08:19] * shaundunne is now known as Guest23349
- # [08:23] * Quits: darobin (~darobin@wifi-139-230.sfc.wide.ad.jp) (Read error: Connection reset by peer)
- # [08:24] * Joins: darobin (~darobin@wifi-139-230.sfc.wide.ad.jp)
- # [08:24] * Joins: KevinMarks (~yaaic@2607:fb90:402:8085:1fc3:9ddc:35b6:2f7d)
- # [08:35] * Joins: frivoal (~frivoal@46.140.101.190)
- # [08:38] * Quits: jdaggett (~jdaggett@ad056175.dynamic.ppp.asahi-net.or.jp) (Quit: jdaggett)
- # [08:39] * Joins: zdobersek (~zan@gateway/vpn/privateinternetaccess/zdobersek)
- # [08:44] * Quits: igoroliveira (uid20755@gateway/web/irccloud.com/x-cicoezvrrtxutniy) (Quit: Connection closed for inactivity)
- # [08:45] * Joins: KevinMarks__ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [08:49] * Quits: KevinMarks (~yaaic@2607:fb90:402:8085:1fc3:9ddc:35b6:2f7d) (Ping timeout: 245 seconds)
- # [08:53] * Joins: ^esc (~esc-ape@178.115.131.138.wireless.dyn.drei.com)
- # [08:56] * Joins: iandevlin (~iandevlin@b2b-5-10-191-178.unitymedia.biz)
- # [08:59] * Quits: hgl (~hgl@unaffiliated/hgl) (Ping timeout: 255 seconds)
- # [09:01] * Joins: Ducki (~Ducki@191.233.66.1)
- # [09:01] * Quits: plutoniix (~plutoniix@119.63.87.222) (Ping timeout: 245 seconds)
- # [09:01] * Joins: hgl (~hgl@unaffiliated/hgl)
- # [09:02] <charl> good morning
- # [09:03] * Joins: jdaggett (~jdaggett@ad056175.dynamic.ppp.asahi-net.or.jp)
- # [09:03] * Joins: calvaris (~calvaris@fanzine.igalia.com)
- # [09:04] * Quits: frivoal (~frivoal@46.140.101.190) (Remote host closed the connection)
- # [09:04] * Joins: plutoniix (~plutoniix@119.63.87.222)
- # [09:06] * Joins: aretecode (~aretecode@50.23.131.206-static.reverse.softlayer.com)
- # [09:07] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [09:09] * Joins: frivoal (~frivoal@46.140.101.190)
- # [09:10] * Quits: frivoal (~frivoal@46.140.101.190) (Remote host closed the connection)
- # [09:12] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [09:15] <iandevlin> Morning
- # [09:19] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (Read error: Connection reset by peer)
- # [09:20] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [09:21] * Quits: dbaron (~dbaron@70-36-140-197.dsl.dynamic.fusionbroadband.com) (Ping timeout: 272 seconds)
- # [09:22] * Quits: hasather (~hasather@80.91.33.141) (Remote host closed the connection)
- # [09:22] * Joins: hasather (~hasather@80.91.33.141)
- # [09:43] * Joins: wilsonpage (~wilsonpag@87.113.78.29)
- # [09:46] <annevk> hsivonen: https://news.ycombinator.com/item?id=8950243
- # [09:47] * Joins: alrra (uid62345@gateway/web/irccloud.com/x-cdrbkozbgscylkjz)
- # [09:48] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [09:48] * Quits: Guest23349 (~shaundunn@97e012f2.skybroadband.com) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [09:53] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Remote host closed the connection)
- # [09:57] * Joins: laurensclaessen (~laurenscl@81.83.22.74)
- # [09:58] * Quits: darobin (~darobin@wifi-139-230.sfc.wide.ad.jp) (Remote host closed the connection)
- # [09:59] * Joins: Ms2ger (~Ms2ger@91.182.16.148)
- # [09:59] * Joins: Lachy (~Lachy@cm-84.215.179.176.getinternet.no)
- # [10:02] * Quits: ohaibbq (~ohaibbq@2601:9:a80:a8f:79bc:b623:7759:9865) (Quit: Leaving...)
- # [10:11] * Joins: roc (~chatzilla@121-99-83-18.bng1.tvc.orcon.net.nz)
- # [10:12] * Joins: GuidoBouman_ (~GuidoBoum@37.153.217.1)
- # [10:12] * Quits: zdobersek (~zan@gateway/vpn/privateinternetaccess/zdobersek) (Ping timeout: 264 seconds)
- # [10:13] * Quits: hgl (~hgl@unaffiliated/hgl) (Ping timeout: 245 seconds)
- # [10:15] * Quits: kbx (~kbx@2401:fa00:4:1013:3c13:6315:8ac6:5bca) (Ping timeout: 265 seconds)
- # [10:17] * Joins: hgl (~hgl@unaffiliated/hgl)
- # [10:24] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [10:27] * Joins: benjamingr (uid23465@gateway/web/irccloud.com/x-pqcwmqfzqorworja)
- # [10:29] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Ping timeout: 240 seconds)
- # [10:29] <hsivonen> annevk: thanks.
- # [10:30] * Quits: Lachy (~Lachy@cm-84.215.179.176.getinternet.no) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [10:31] <hsivonen> annevk: little endian being niche that goes agains tradition is pretty much like the Web being niche
- # [10:31] <annevk> uhuh
- # [10:37] * Joins: zdobersek (~zan@gateway/vpn/privateinternetaccess/zdobersek)
- # [10:39] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [10:40] * Joins: satazor (~satazor@37.189.3.135)
- # [10:53] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [10:56] * Joins: kapil__ (uid36151@gateway/web/irccloud.com/x-mqoewimedmwsyfys)
- # [10:57] * Joins: espadrine (~tyl@LMontsouris-656-1-2-84.w80-12.abo.wanadoo.fr)
- # [10:57] * Quits: KevinMarks__ (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [10:58] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [11:00] * Joins: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [11:01] * Quits: hendry (~hendry@sg.webconverger.com) (Ping timeout: 272 seconds)
- # [11:02] * Joins: Zebra111 (~quassel@sydnns0115w-156057001250.dhcp-dynamic.FibreOp.ns.bellaliant.net)
- # [11:06] * Quits: satazor (~satazor@37.189.3.135) (Remote host closed the connection)
- # [11:06] * Quits: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
- # [11:09] * Joins: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [11:11] * Quits: iandevlin (~iandevlin@b2b-5-10-191-178.unitymedia.biz) (Ping timeout: 272 seconds)
- # [11:12] * Quits: tripu (~tripu@219.239.227.197) (Quit: Leaving)
- # [11:13] * Joins: satazor (~satazor@37.189.3.135)
- # [11:14] * Joins: iandevlin (~iandevlin@b2b-5-10-191-178.unitymedia.biz)
- # [11:17] * Joins: Lachy (~Lachy@213.166.174.2)
- # [11:27] * Quits: laurensclaessen (~laurenscl@81.83.22.74) (Remote host closed the connection)
- # [11:28] * Joins: hasather_ (~hasather@guest.schibsted.no)
- # [11:31] * Quits: hasather (~hasather@80.91.33.141) (Ping timeout: 244 seconds)
- # [11:34] * Joins: hendry (~hendry@sg.webconverger.com)
- # [11:36] * Quits: wilsonpage (~wilsonpag@87.113.78.29) (Quit: Leaving.)
- # [11:36] * Joins: laurensclaessen (~laurenscl@81.83.22.74)
- # [11:37] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [11:39] * Quits: hendry (~hendry@sg.webconverger.com) (Ping timeout: 265 seconds)
- # [11:56] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (Read error: Connection reset by peer)
- # [11:56] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [11:59] * Quits: satazor (~satazor@37.189.3.135) (Remote host closed the connection)
- # [12:02] * Quits: plutoniix (~plutoniix@119.63.87.222) (Quit: จรลี จรลา)
- # [12:02] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [12:02] * Joins: satazor (~satazor@37.189.3.135)
- # [12:06] * Joins: wilsonpage (~wilsonpag@2001:450:1d:232:7014:948d:aeed:1ba0)
- # [12:16] * Quits: satazor (~satazor@37.189.3.135) (Remote host closed the connection)
- # [12:28] * Joins: satazor (~satazor@37.189.3.135)
- # [12:30] * Quits: satazor (~satazor@37.189.3.135) (Remote host closed the connection)
- # [12:31] * Quits: hasather_ (~hasather@guest.schibsted.no) (Remote host closed the connection)
- # [12:31] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [12:32] * Quits: c74d (~c74d3a4eb@2002:4404:712c:0:76de:2bff:fed4:2766) (Remote host closed the connection)
- # [12:34] * Joins: hasather_ (~hasather@80.91.33.141)
- # [12:36] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [12:37] * Joins: c74d (~c74d3a4eb@2002:4404:712c:0:76de:2bff:fed4:2766)
- # [12:39] * Joins: satazor (~satazor@37.189.3.135)
- # [12:51] * Quits: jsx (uid48919@fsf/intern/jsx) (Quit: Connection closed for inactivity)
- # [13:00] * Quits: mpt (~mpt@canonical/mpt) (Ping timeout: 265 seconds)
- # [13:02] * Quits: satazor (~satazor@37.189.3.135) (Read error: No route to host)
- # [13:02] * Joins: satazor (~satazor@37.189.3.135)
- # [13:02] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [13:03] * Quits: newtron (~newtron@167.88.20.244) (Remote host closed the connection)
- # [13:04] <annevk> JakeA: Domenic: how do you feel about adding Response.prototype.ok = function() { return this.status => 200 && this.status < 300 }?
- # [13:06] <jgraham> >=
- # [13:07] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [13:07] * Joins: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi)
- # [13:08] * Quits: satazor (~satazor@37.189.3.135) (Remote host closed the connection)
- # [13:09] <jgraham> annevk: So requests has that, but I have never been convinced that the semantics are quite perfect. But I guess it's not obviously a terrible idea
- # [13:10] <annevk> jgraham: what problems did you run into?
- # [13:11] <jgraham> Well I haven't, but I can imagine situations where getting a 204 would be just as unexpected as a 100
- # [13:12] <jgraham> (well unless 1xx responses are handled at a lower layer I guess. Does anyone actually produce those?)
- # [13:12] * Joins: mpt (~mpt@2001:67c:1560:a003:31b1:3d5f:3fef:5ea4)
- # [13:12] * Quits: mpt (~mpt@2001:67c:1560:a003:31b1:3d5f:3fef:5ea4) (Changing host)
- # [13:12] * Joins: mpt (~mpt@canonical/mpt)
- # [13:12] * Joins: satazor (~satazor@37.189.3.135)
- # [13:12] <jgraham> Anyway I guess on balance it's a good idea
- # [13:13] <gsnedders> AFAIK it's only unknown status codes that should be treated as the base one
- # [13:13] <gsnedders> and we know that all of those in HTTP/1.1 exist
- # [13:13] <annevk> jgraham: I believe 1xx is ignored and not exposed
- # [13:13] <gsnedders> whether you want to lump 201–5 in with 200 is a separate choice
- # [13:14] * Quits: laurensclaessen (~laurenscl@81.83.22.74) (Remote host closed the connection)
- # [13:14] <annevk> jgraham: mnot would like us to expose them...
- # [13:14] <annevk> CORS has a 200-299 check somewhere so there's at least one place in the platform where we use this
- # [13:15] <Ms2ger> annevk, do you know if HTTP defines what to do with status codes that aren't three digits?
- # [13:16] <annevk> Ms2ger: parse error
- # [13:16] <annevk> Ms2ger: maybe that turns it into a HTTP/0.9 response?
- # [13:16] <annevk> Ms2ger: would be an interesting test for web-platform-tests
- # [13:18] <Ms2ger> Uhuh
- # [13:19] <gsnedders> in most things it turns into a HTTP/0.9 response, IIRC
- # [13:19] <Ms2ger> How do you detect that?
- # [13:20] <annevk> Ms2ger: 0.9 means the entire response is the body
- # [13:20] <gsnedders> You're aware HTTP/0.9 has no headers?
- # [13:20] <Ms2ger> No :)
- # [13:20] <annevk> It's why we have sniffing
- # [13:20] <annevk> And why <plaintext> is a thing
- # [13:21] <annevk> HTTP and HTML used to be intertwined a bit
- # [13:22] * Joins: hendry (~hendry@sg.webconverger.com)
- # [13:23] <Ms2ger> "Well-behaved servers should retrict line length to 80 characters"
- # [13:26] <ms7821> does http/2 mention simple-request?
- # [13:43] * Quits: hswolff (~hswolff@cpe-74-68-123-30.nyc.res.rr.com) (Ping timeout: 246 seconds)
- # [13:44] * Joins: igoroliveira (uid20755@gateway/web/irccloud.com/x-lvfrumicwcfjrlqo)
- # [13:46] * Joins: hswolff (~hswolff@cpe-74-68-123-30.nyc.res.rr.com)
- # [13:47] <annevk> Fullscreen API and <dialog>. Anyone from Chromium other than falken and philipj who can give input to this bug? https://www.w3.org/Bugs/Public/show_bug.cgi?id=27865
- # [13:47] <annevk> Also, anyone know plans from other vendors regarding <dialog>?
- # [13:50] <gsnedders> ms7821: I presume not.
- # [13:51] * Joins: newtron (~newtron@199.71.174.203)
- # [14:01] * Joins: laurensclaessen (~laurenscl@81.83.22.74)
- # [14:07] * Quits: karlcow (~karl@nerval.la-grange.net) (Ping timeout: 244 seconds)
- # [14:08] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (Read error: Connection reset by peer)
- # [14:08] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [14:12] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [14:35] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Remote host closed the connection)
- # [14:39] <zcorpan> Ms2ger: it seems to me it would be about equally hard for blink to add taintEnabled as it is for gecko to drop it
- # [14:39] <Ms2ger> zcorpan, seems plausible
- # [14:39] <Ms2ger> Stuff sucks
- # [14:40] * Quits: GuidoBouman_ (~GuidoBoum@37.153.217.1) (Quit: Guido signing off!)
- # [14:40] <zcorpan> also no incentive apart from "interop!!"
- # [14:41] * Joins: tripu (~tripu@103.250.227.158)
- # [14:41] <zcorpan> i guess the spec should make it optional or something
- # [14:44] <Ms2ger> Yay interop :)
- # [14:51] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [14:53] * Quits: Zebra111 (~quassel@sydnns0115w-156057001250.dhcp-dynamic.FibreOp.ns.bellaliant.net) (Remote host closed the connection)
- # [14:55] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [15:00] * Quits: hasather_ (~hasather@80.91.33.141) (Remote host closed the connection)
- # [15:01] * Joins: hasather (~hasather@80.91.33.141)
- # [15:02] * Quits: hasather (~hasather@80.91.33.141) (Remote host closed the connection)
- # [15:03] * Joins: hasather (~hasather@80.91.33.141)
- # [15:05] <annevk> Warnings haven't helped?
- # [15:05] * Quits: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi) (Ping timeout: 272 seconds)
- # [15:06] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [15:09] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [15:09] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [15:09] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [15:09] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [15:11] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Ping timeout: 272 seconds)
- # [15:13] * Joins: abinader (sid21713@gateway/web/irccloud.com/x-uwednywlsfoscudd)
- # [15:14] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [15:14] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [15:33] * Joins: zenith_ (~zenith@142.150.23.90)
- # [15:34] * Quits: satazor (~satazor@37.189.3.135) (Read error: Connection reset by peer)
- # [15:34] * Joins: satazor (~satazor@37.189.3.135)
- # [15:35] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [15:35] * Joins: Zebra111 (~quassel@sydnns0115w-156057001250.dhcp-dynamic.FibreOp.ns.bellaliant.net)
- # [15:40] * Joins: jsx (uid48919@fsf/intern/jsx)
- # [15:41] * Joins: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com)
- # [15:42] * Quits: laurensclaessen (~laurenscl@81.83.22.74) (Remote host closed the connection)
- # [15:42] * Joins: hasather_ (~hasather@guest.schibsted.no)
- # [15:43] <annevk> GPHemsley: we should probably add a warning to https://wiki.whatwg.org/wiki/Sanitization_rules that it is not maintained and should probably not be used as reference without scrutiny
- # [15:44] <annevk> GPHemsley: did you have a template for that?
- # [15:46] * Quits: hasather (~hasather@80.91.33.141) (Ping timeout: 272 seconds)
- # [15:47] * Quits: hasather_ (~hasather@guest.schibsted.no) (Ping timeout: 240 seconds)
- # [15:47] * Quits: sarri (~sari@unaffiliated/sarri) (Ping timeout: 264 seconds)
- # [15:48] * Joins: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [15:49] * Joins: sarri (~sari@unaffiliated/sarri)
- # [15:51] * Joins: laurensclaessen (~laurenscl@81.83.22.74)
- # [15:57] * Joins: rubys (~rubys@cpe-098-027-051-253.nc.res.rr.com)
- # [15:58] <rubys> annevk: +1 to warning on wiki/Sanitization_rules ... it was never more than a work in progress
- # [15:59] * Joins: mven (~textual@32.97.110.56)
- # [15:59] * Quits: mven (~textual@32.97.110.56) (Excess Flood)
- # [16:00] * Quits: hgl (~hgl@unaffiliated/hgl) (Ping timeout: 264 seconds)
- # [16:03] * Joins: danbri (~Adium@host86-191-96-32.range86-191.btcentralplus.com)
- # [16:05] * Joins: weinig (~weinig@98.234.191.242)
- # [16:07] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [16:07] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (Read error: Connection reset by peer)
- # [16:07] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [16:08] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [16:09] * Joins: hgl (~hgl@unaffiliated/hgl)
- # [16:11] * Quits: jyasskin_w (jyasskin@nat/google/x-nobzjqammudleifz) (Ping timeout: 245 seconds)
- # [16:11] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [16:12] * Joins: darobin (~darobin@flets-tk2109.kamome.or.jp)
- # [16:12] * Quits: zcorpan (~zcorpan@90-230-218-37-no135.tbcn.telia.com) (Remote host closed the connection)
- # [16:13] * Joins: Zebra111_ (~quassel@sydnns0115w-156057001250.dhcp-dynamic.FibreOp.ns.bellaliant.net)
- # [16:13] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Ping timeout: 265 seconds)
- # [16:14] * Quits: Zebra111 (~quassel@sydnns0115w-156057001250.dhcp-dynamic.FibreOp.ns.bellaliant.net) (Read error: Connection reset by peer)
- # [16:15] * Joins: eric_carlson (~ericc@17.202.49.94)
- # [16:20] * Quits: darobin (~darobin@flets-tk2109.kamome.or.jp) (Quit: Leaving...)
- # [16:23] * Quits: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
- # [16:24] * Joins: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [16:24] * Joins: dbaron (~dbaron@70-36-140-197.dsl.dynamic.fusionbroadband.com)
- # [16:25] * Quits: dbaron (~dbaron@70-36-140-197.dsl.dynamic.fusionbroadband.com) (Client Quit)
- # [16:26] * Joins: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi)
- # [16:26] * Quits: jdaggett (~jdaggett@ad056175.dynamic.ppp.asahi-net.or.jp) (Quit: jdaggett)
- # [16:28] * Quits: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Ping timeout: 264 seconds)
- # [16:30] <Domenic> annevk: seems ok, a bit sugary and possibly encouraging bad habits (e.g. being too lenient, when you expect a 201 a 200 is generally not ok). If another spec uses the check that does make me feel better. Probably a good idea on balance.
- # [16:30] <annevk> Domenic: yeah, I'm hesitant too, really depends on the protocol
- # [16:32] <Domenic> I think devs will like it. Just us grouchy pedants who grumble.
- # [16:32] <annevk> The issue mentioned in that thread about filtering out non-2xx does exist and this does help a lot with that so...
- # [16:33] <annevk> We'll see, it's fairly trivial to ignore if it's really only relevant for CORS
- # [16:33] * Joins: jdaggett (~jdaggett@ad056175.dynamic.ppp.asahi-net.or.jp)
- # [16:39] * Quits: hgl (~hgl@unaffiliated/hgl) (Ping timeout: 246 seconds)
- # [16:39] * Quits: tripu (~tripu@103.250.227.158) (Ping timeout: 255 seconds)
- # [16:41] * Joins: hgl (~hgl@unaffiliated/hgl)
- # [16:44] * Joins: boogyman (~boogyman@38.88.11.131)
- # [16:44] * Quits: boogyman (~boogyman@38.88.11.131) (Changing host)
- # [16:44] * Joins: boogyman (~boogyman@pdpc/supporter/professional/boogyman)
- # [16:47] * Joins: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com)
- # [16:51] * Joins: tantek (~tantek@50-1-62-185.dsl.dynamic.fusionbroadband.com)
- # [16:51] * Joins: dbaron (~dbaron@70-36-140-197.dsl.dynamic.fusionbroadband.com)
- # [16:53] * Joins: tripu (~tripu@103.250.227.158)
- # [16:55] * Quits: kapil__ (uid36151@gateway/web/irccloud.com/x-mqoewimedmwsyfys) (Quit: Connection closed for inactivity)
- # [16:56] * Quits: weinig (~weinig@98.234.191.242) (Quit: weinig)
- # [17:00] * Quits: zenith_ (~zenith@142.150.23.90) (Remote host closed the connection)
- # [17:00] * Joins: myakura (~myakura@FL1-119-242-154-39.tky.mesh.ad.jp)
- # [17:01] * Quits: alrra (uid62345@gateway/web/irccloud.com/x-cdrbkozbgscylkjz) (Quit: Connection closed for inactivity)
- # [17:02] * Quits: hgl (~hgl@unaffiliated/hgl) (Ping timeout: 245 seconds)
- # [17:05] * Joins: hgl (~hgl@unaffiliated/hgl)
- # [17:07] <GPHemsley> annevk: I added {{obsolete}}. Is there a better place to point to, or is it just abandoned?
- # [17:11] * Joins: mven (~textual@32.97.110.56)
- # [17:11] * Quits: mven (~textual@32.97.110.56) (Excess Flood)
- # [17:11] * Joins: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net)
- # [17:14] * Joins: jst (~quassel@198.199.94.175)
- # [17:14] * Joins: danielfilho_ (~danielfil@208.68.39.233)
- # [17:15] * Joins: mrbkap_ (~mrbkap@people1.scl3.mozilla.com)
- # [17:15] * Joins: Philip`_ (~philip@compass.zaynar.co.uk)
- # [17:16] * Joins: fredy_ (~fredy@snf-535807.vm.okeanos.grnet.gr)
- # [17:16] * Quits: bzalasky (~bzalasky@c-67-188-211-46.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [17:17] * Joins: weinig (~weinig@17.202.50.223)
- # [17:18] * Quits: danielfilho (~danielfil@208.68.39.233) (Ping timeout: 276 seconds)
- # [17:18] * Quits: jst_ (~quassel@198.199.94.175) (Quit: No Ping reply in 180 seconds.)
- # [17:18] * Quits: fredy (~fredy@snf-535807.vm.okeanos.grnet.gr) (Ping timeout: 276 seconds)
- # [17:18] * Quits: mrbkap (~mrbkap@people1.scl3.mozilla.com) (Ping timeout: 276 seconds)
- # [17:18] * Quits: Philip` (~philip@compass.zaynar.co.uk) (Ping timeout: 276 seconds)
- # [17:18] * Quits: Lachy (~Lachy@213.166.174.2) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [17:18] * Joins: Lachy (~Lachy@213.166.174.2)
- # [17:19] * Joins: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [17:21] * Quits: rhiaro (~quassel@amy.so) (Quit: No Ping reply in 180 seconds.)
- # [17:22] * Joins: rhiaro (~quassel@amy.so)
- # [17:24] * Quits: iandevlin (~iandevlin@b2b-5-10-191-178.unitymedia.biz) (Ping timeout: 245 seconds)
- # [17:27] * Joins: gargamel (~cinch@ec2-54-149-248-162.us-west-2.compute.amazonaws.com)
- # [17:27] * Joins: jwalden (~waldo@2620:101:80fc:224:7e7a:91ff:fe25:a5a3)
- # [17:31] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (Remote host closed the connection)
- # [17:31] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [17:32] * Joins: iandevlin (~iandevlin@b2b-5-10-191-178.unitymedia.biz)
- # [17:33] <annevk> GPHemsley: abandonware though now there's template strings it might be worth looking into having a sanitized parser again
- # [17:33] <annevk> GPHemsley: though it'd be hard
- # [17:33] <GPHemsley> annevk: Alright, I was just curious as to whether there might be values for the 'spec' or 'see' parameters.
- # [17:34] <GPHemsley> (Which would point people in a better direction.)
- # [17:34] <annevk> GPHemsley: I don't think there is anything
- # [17:36] * Quits: jwalden (~waldo@2620:101:80fc:224:7e7a:91ff:fe25:a5a3) (Read error: Connection timed out)
- # [17:36] * Joins: jwalden (~waldo@2620:101:80fc:224:7e7a:91ff:fe25:a5a3)
- # [17:39] * Quits: jdaggett (~jdaggett@ad056175.dynamic.ppp.asahi-net.or.jp) (Quit: jdaggett)
- # [17:42] * Joins: plutoniix (~plutoniix@node-3ij.pool-125-25.dynamic.totbb.net)
- # [17:43] * Quits: plutoniix (~plutoniix@node-3ij.pool-125-25.dynamic.totbb.net) (Read error: Connection reset by peer)
- # [17:43] * Quits: iandevlin (~iandevlin@b2b-5-10-191-178.unitymedia.biz) (Quit: iandevlin)
- # [17:45] * Quits: tripu (~tripu@103.250.227.158) (Quit: Leaving)
- # [17:46] * Joins: frivoal (~frivoal@80-254-69-52.dynamic.monzoon.net)
- # [17:49] * Joins: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com)
- # [17:52] * annevk reads TAG minutes
- # [17:56] * Quits: rubys (~rubys@cpe-098-027-051-253.nc.res.rr.com) (Quit: Leaving.)
- # [17:56] * Quits: caitp- (~caitp@CPE48f8b385c01c-CM84948c4c6f80.cpe.net.cable.rogers.com) (Ping timeout: 244 seconds)
- # [17:57] * Joins: plutoniix (~plutoniix@node-3ij.pool-125-25.dynamic.totbb.net)
- # [18:02] * Quits: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com) (Quit: sicking)
- # [18:05] * Quits: bnicholson (~bnicholso@24.130.60.241) (Quit: This computer has gone to sleep)
- # [18:06] * fredy_ is now known as fredy
- # [18:07] * fredy is now known as Guest97967
- # [18:09] * Joins: nicholasserra (~Adium@cpe-24-93-244-49.neo.res.rr.com)
- # [18:11] * Joins: svl (~me@ip565744a7.direct-adsl.nl)
- # [18:11] * Parts: laurensclaessen (~laurenscl@81.83.22.74)
- # [18:15] * Quits: plutoniix (~plutoniix@node-3ij.pool-125-25.dynamic.totbb.net) (Read error: Connection reset by peer)
- # [18:16] * Joins: plutoniix (~plutoniix@node-3ij.pool-125-25.dynamic.totbb.net)
- # [18:17] * Joins: bnicholson (~bnicholso@2620:101:80fc:224:9156:3ce9:1d61:d687)
- # [18:17] * Joins: othermaciej (~mjs@c-71-198-213-78.hsd1.ca.comcast.net)
- # [18:18] * Joins: adactio (~adactio@212.42.170.121)
- # [18:18] * Quits: psy_ (~psy@103.6.159.170) (Read error: Connection reset by peer)
- # [18:18] * Joins: psy_ (~psy@103.6.159.170)
- # [18:19] * Quits: frivoal (~frivoal@80-254-69-52.dynamic.monzoon.net) (Remote host closed the connection)
- # [18:19] * Joins: frivoal (~frivoal@80-254-69-52.dynamic.monzoon.net)
- # [18:19] * Quits: frivoal (~frivoal@80-254-69-52.dynamic.monzoon.net) (Remote host closed the connection)
- # [18:22] * Quits: Lachy (~Lachy@213.166.174.2) (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
- # [18:23] * Joins: ehsan (~ehsan@66.207.208.102)
- # [18:26] * Joins: weinig_ (~weinig@17.244.161.238)
- # [18:26] * Quits: weinig (~weinig@17.202.50.223) (Ping timeout: 245 seconds)
- # [18:26] * weinig_ is now known as weinig
- # [18:27] * Quits: othermaciej (~mjs@c-71-198-213-78.hsd1.ca.comcast.net) (Quit: othermaciej)
- # [18:29] * Joins: frivoal (~frivoal@80-254-69-52.dynamic.monzoon.net)
- # [18:29] * Joins: ap (~ap@17.202.44.214)
- # [18:33] * Joins: zenith_ (~zenith@142.150.23.90)
- # [18:35] * Joins: Maurice` (copyman@unaffiliated/maurice)
- # [18:37] * Joins: weinig_ (~weinig@17.114.217.60)
- # [18:38] * Quits: weinig (~weinig@17.244.161.238) (Ping timeout: 245 seconds)
- # [18:38] * weinig_ is now known as weinig
- # [18:40] <smaug____> hmm, is telemetry data wrong, or has mutation event usage gone down
- # [18:40] <smaug____> where is the tool to see feature usage on chromium?
- # [18:41] * Parts: charl (~charl@524A9047.cm-4-3c.dynamic.ziggo.nl) ("WeeChat 1.1")
- # [18:42] <annevk> smaug____: https://www.chromestatus.com/metrics/feature/timeline/popularity/148
- # [18:43] <annevk> There seems to be a downward trend but still quite high
- # [18:43] <annevk> Are you guys going to Edge London?
- # [18:44] <annevk> I was thinking of going
- # [18:44] <annevk> 27 June
- # [18:45] <smaug____> yeah, still a bit high
- # [18:46] <annevk> But yay downward trend I guess
- # [18:46] <annevk> I wonder if we have to define it
- # [18:49] * Quits: weinig (~weinig@17.114.217.60) (Quit: weinig)
- # [18:49] <smaug____> oh, chrome doesn't warn about use of mutation events
- # [18:49] <annevk> Paging fool... why is he not online?
- # [18:50] * Quits: frivoal (~frivoal@80-254-69-52.dynamic.monzoon.net) (Ping timeout: 244 seconds)
- # [18:50] * Joins: othermaciej (~mjs@76.74.153.49)
- # [18:50] <annevk> SimonSapin: hey, I had a question about Servo. Is document.write() there? Is there much parallel code? Is </script> a special code path?
- # [18:51] * Joins: rubys (~rubys@cpe-098-027-051-253.nc.res.rr.com)
- # [18:51] <Ms2ger> No document.write()
- # [18:53] <annevk> smaug____: perhaps we should ask blink-dev?
- # [18:54] <SimonSapin> annevk: In order: not yet (https://github.com/servo/html5ever/issues/6), yes (especially in layout code), apparently not yet (https://github.com/servo/html5ever/blob/fc515000c0/src/tree_builder/rules.rs#L783)
- # [18:54] * Quits: karlcow (~karl@nerval.la-grange.net) (Ping timeout: 255 seconds)
- # [18:55] <Ms2ger> Nothing parallel in HTML parsing, though
- # [18:55] <SimonSapin> right
- # [18:56] <SimonSapin> In theory we could run character decoding, tokenization and tree building each in a thread, in a pipeline. But I don’t think we do.
- # [18:56] * Quits: nicholasserra (~Adium@cpe-24-93-244-49.neo.res.rr.com) (Quit: Leaving.)
- # [18:57] <annevk> SimonSapin: no parallel tree building?
- # [18:57] <jgraham> I think that tokenization-in-a-task was mooted as a GSoC project
- # [18:57] * Quits: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi) (Ping timeout: 245 seconds)
- # [18:57] <jgraham> Moving charset decoding to a task seems like it might not be much of a win?
- # [18:58] <SimonSapin> I have no idea
- # [18:58] <SimonSapin> "mooted" as in we established it was not a win?
- # [18:58] * Quits: zdobersek (~zan@gateway/vpn/privateinternetaccess/zdobersek) (Ping timeout: 245 seconds)
- # [18:59] <annevk> From another angle, how much hurt would it be to run script for creation and insertion of elements that have a dash in them?
- # [18:59] <TabAtkins> mooted as in "discussed"
- # [18:59] <TabAtkins> "moot" has multiple, somewhat opposing, meanings.
- # [19:00] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [19:00] <annevk> It would mean that part of the code could no longer be run in parallel
- # [19:07] * Quits: bnicholson (~bnicholso@2620:101:80fc:224:9156:3ce9:1d61:d687) (Quit: Leaving)
- # [19:08] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (Remote host closed the connection)
- # [19:08] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [19:11] * Joins: say2joe (~Adium@198-101-119-98.static-ip.telepacific.net)
- # [19:11] * Quits: calvaris (~calvaris@fanzine.igalia.com) (Quit: Ex-Chat)
- # [19:12] * Quits: Zebra111_ (~quassel@sydnns0115w-156057001250.dhcp-dynamic.FibreOp.ns.bellaliant.net) (Remote host closed the connection)
- # [19:13] * Joins: hasather (~hasather@cm-84.210.170.16.getinternet.no)
- # [19:13] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [19:14] * Quits: myakura (~myakura@FL1-119-242-154-39.tky.mesh.ad.jp)
- # [19:15] * Joins: bnicholson (~bnicholso@2620:101:80fc:224:45c3:3e9a:7a7:c168)
- # [19:15] * Joins: zdobersek (~zan@cpe-77.38.31.63.cable.t-1.si)
- # [19:17] * Joins: Zebra111 (~quassel@sydnns0115w-156057001250.dhcp-dynamic.FibreOp.ns.bellaliant.net)
- # [19:17] * Quits: adactio (~adactio@212.42.170.121) (Ping timeout: 276 seconds)
- # [19:17] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Ping timeout: 246 seconds)
- # [19:19] * Quits: aretecode (~aretecode@50.23.131.206-static.reverse.softlayer.com) (Quit: Toodaloo)
- # [19:20] * Quits: satazor (~satazor@37.189.3.135) (Read error: Connection reset by peer)
- # [19:20] * Joins: satazor (~satazor@37.189.3.135)
- # [19:21] * Quits: zenith_ (~zenith@142.150.23.90) (Ping timeout: 252 seconds)
- # [19:29] * Quits: espadrine (~tyl@LMontsouris-656-1-2-84.w80-12.abo.wanadoo.fr) (Ping timeout: 276 seconds)
- # [19:30] * Quits: zdobersek (~zan@cpe-77.38.31.63.cable.t-1.si) (Ping timeout: 265 seconds)
- # [19:34] * Quits: ap (~ap@17.202.44.214) (Ping timeout: 240 seconds)
- # [19:35] * Joins: weinig_ (~weinig@17.114.217.60)
- # [19:37] * Joins: ap (~ap@17.114.218.73)
- # [19:45] <annevk> hsivonen: also https://twitter.com/marshray/status/560121170373386240
- # [19:45] * Joins: zdobersek (~zan@gateway/vpn/privateinternetaccess/zdobersek)
- # [19:46] * Quits: othermaciej (~mjs@76.74.153.49) (Quit: othermaciej)
- # [19:47] * Quits: tav (~tav`@host31-52-138-176.range31-52.btcentralplus.com) (Read error: No route to host)
- # [19:49] * Quits: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Read error: Connection reset by peer)
- # [19:50] * Joins: iandevlin (~iandevlin@dslb-094-221-211-124.094.221.pools.vodafone-ip.de)
- # [19:50] * Quits: roc (~chatzilla@121-99-83-18.bng1.tvc.orcon.net.nz) (Remote host closed the connection)
- # [19:50] * Joins: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com)
- # [19:50] * Joins: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com)
- # [19:56] * Joins: mven (~textual@32.97.110.56)
- # [19:56] * Quits: mven (~textual@32.97.110.56) (Excess Flood)
- # [19:57] * Quits: encryptd_fractal (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
- # [19:59] * Joins: smaug____ (~chatzilla@62-78-246-79.bb.dnainternet.fi)
- # [19:59] * Joins: tav (~tav`@host31-52-138-176.range31-52.btcentralplus.com)
- # [20:00] * Joins: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com)
- # [20:01] * Quits: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com) (Quit: sicking)
- # [20:03] * Joins: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com)
- # [20:06] * Joins: nicholasserra (~Adium@cpe-24-93-244-49.neo.res.rr.com)
- # [20:07] * Quits: tomaw (tom@freenode/staff/tomaw) (Quit: Quitting)
- # [20:08] * Joins: rniwa (~rniwa@17.202.43.222)
- # [20:09] * Joins: nicholasserra1 (~Adium@cpe-24-93-244-49.neo.res.rr.com)
- # [20:10] * Quits: nicholasserra (~Adium@cpe-24-93-244-49.neo.res.rr.com) (Ping timeout: 245 seconds)
- # [20:11] * Parts: nicholasserra1 (~Adium@cpe-24-93-244-49.neo.res.rr.com)
- # [20:14] * Quits: satazor (~satazor@37.189.3.135) (Remote host closed the connection)
- # [20:19] * Joins: mven (~textual@32.97.110.56)
- # [20:19] * Quits: mven (~textual@32.97.110.56) (Excess Flood)
- # [20:19] <hsivonen> krijnhoetmer: thanks for the "Previous day" and "Next day" links
- # [20:23] * Quits: hsivonen (~hsivonen@hsivonen.com) (Remote host closed the connection)
- # [20:23] * Joins: jyasskin_w (jyasskin@nat/google/x-nxiuxggodaqmgzlf)
- # [20:24] * Quits: wilsonpage (~wilsonpag@2001:450:1d:232:7014:948d:aeed:1ba0) (Quit: Leaving.)
- # [20:34] <Ms2ger> ^
- # [20:36] * Quits: dbaron (~dbaron@70-36-140-197.dsl.dynamic.fusionbroadband.com) (Quit: 8403864 bytes have been tenured, next gc will be global.)
- # [20:37] * Joins: roc (~chatzilla@2001:cb0:b202:232:2677:3ff:fece:dc64)
- # [20:40] * Parts: rubys (~rubys@cpe-098-027-051-253.nc.res.rr.com)
- # [20:40] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (Read error: Connection reset by peer)
- # [20:41] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [20:43] * Joins: tomaw (tom@freenode/staff/tomaw)
- # [20:44] * Joins: Bass10 (~Bass10@c-73-37-130-61.hsd1.mn.comcast.net)
- # [20:52] * Joins: tomaw- (tom@freenode/staff/tomaw)
- # [20:54] * Quits: tomaw (tom@freenode/staff/tomaw) (Ping timeout: 619 seconds)
- # [20:54] * tomaw- is now known as tomaw
- # [21:00] * Quits: Bass10 (~Bass10@c-73-37-130-61.hsd1.mn.comcast.net) (Quit: Leaving)
- # [21:00] * Joins: Bass10 (Bass10@c-73-37-130-61.hsd1.mn.comcast.net)
- # [21:01] * Joins: juliet (~css@unaffiliated/css)
- # [21:03] * Quits: zdobersek (~zan@gateway/vpn/privateinternetaccess/zdobersek) (Quit: Leaving.)
- # [21:10] * Quits: encryptd_fractl (~encryptd_@24-177-122-160.dhcp.mdsn.wi.charter.com) (Remote host closed the connection)
- # [21:12] * Quits: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Ping timeout: 245 seconds)
- # [21:14] * Quits: jacobolus (~jacobolus@70-36-196-50.dsl.static.fusionbroadband.com) (Remote host closed the connection)
- # [21:15] * Joins: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [21:15] * Quits: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net) (Remote host closed the connection)
- # [21:16] * Quits: iandevlin (~iandevlin@dslb-094-221-211-124.094.221.pools.vodafone-ip.de) (Quit: Nettalk6 - www.ntalk.de)
- # [21:25] * Quits: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com) (Quit: sicking)
- # [21:27] * Joins: dbaron (~dbaron@2620:101:80fb:224:e5f8:cf4c:f63a:be35)
- # [21:29] * Joins: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com)
- # [21:34] * Joins: jacobolus (~jacobolus@2600:1010:b029:a29b:38b8:839b:ed97:1fe5)
- # [21:34] * Quits: psy_ (~psy@103.6.159.170) (Ping timeout: 272 seconds)
- # [21:39] * Joins: psy_ (~psy@103.6.159.170)
- # [21:42] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (Remote host closed the connection)
- # [21:43] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [21:45] * Joins: capella-s3 (~yaaic@cpe-72-230-125-7.twcny.res.rr.com)
- # [21:45] * Joins: encryptd_fractl (~encryptd_@66-188-130-46.static.mdsn.wi.charter.com)
- # [21:45] * Quits: hasather (~hasather@cm-84.210.170.16.getinternet.no) (Remote host closed the connection)
- # [21:46] * Joins: xtrm0 (uid12574@gateway/web/irccloud.com/x-qtfcmqebwghgioei)
- # [21:49] * Quits: Fusl (~Fusl@gateway/tor-sasl/fusl) (Remote host closed the connection)
- # [21:49] * Quits: tantek (~tantek@50-1-62-185.dsl.dynamic.fusionbroadband.com) (Quit: tantek)
- # [21:49] * Joins: Fusl (~Fusl@gateway/tor-sasl/fusl)
- # [21:51] * Quits: gsnedders (~gsnedders@5.2.16.23) (Quit: leaving)
- # [21:55] * Joins: wilsonpage (~wilsonpag@87.113.78.29)
- # [21:55] * Joins: gsnedders (~gsnedders@5.2.16.23)
- # [22:07] * Joins: zenith_ (~zenith@142.150.23.90)
- # [22:08] * Joins: alrra (uid62345@gateway/web/irccloud.com/x-alwmmrosvmmzzkhr)
- # [22:14] * Quits: diffalot (~diffalot@unaffiliated/papyromancer) (Remote host closed the connection)
- # [22:15] * Joins: diffalot (~diffalot@unaffiliated/papyromancer)
- # [22:17] * Quits: zenith_ (~zenith@142.150.23.90) (Ping timeout: 264 seconds)
- # [22:22] * Joins: zenith_ (~zenith@142.150.23.90)
- # [22:24] * Quits: Ms2ger (~Ms2ger@91.182.16.148) (Quit: nn)
- # [22:28] * Joins: othermaciej (~mjs@17.245.30.2)
- # [22:31] * Quits: zenith_ (~zenith@142.150.23.90) (Ping timeout: 256 seconds)
- # [22:38] * Joins: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt)
- # [22:43] * heycam|away is now known as heycam
- # [22:49] * Joins: satazor_ (~satazor@37.189.3.135)
- # [22:50] * Joins: frivoal (~frivoal@2.148.121.39.tmi.telenormobil.no)
- # [22:51] * Quits: satazor (~satazor@a213-22-1-7.cpe.netcabo.pt) (Ping timeout: 255 seconds)
- # [22:51] * Joins: espadrine (~espadrine@dan75-7-88-166-187-54.fbx.proxad.net)
- # [22:53] <Domenic> TabAtkins: can my text macros be empty strings somehow?
- # [22:53] <TabAtkins> Right now, no, but I can relax error-checking to allow it.
- # [22:53] <Domenic> There might be a better way... let me open an issue with a bit more details
- # [22:55] * mrbkap_ is now known as mrbkap
- # [22:56] * Joins: hasather (~hasather@cm-84.210.170.16.getinternet.no)
- # [22:58] * Quits: ivan\ (~ivan@unaffiliated/ivan/x-000001) (Remote host closed the connection)
- # [22:58] * Joins: ivan\ (~ivan@unaffiliated/ivan/x-000001)
- # [23:01] * Quits: hasather (~hasather@cm-84.210.170.16.getinternet.no) (Ping timeout: 265 seconds)
- # [23:01] * Quits: weinig_ (~weinig@17.114.217.60) (Quit: weinig_)
- # [23:01] <Domenic> TabAtkins: let me know if https://github.com/tabatkins/bikeshed/issues/335 makes sense
- # [23:02] <TabAtkins> Yeah, it does.
- # [23:03] <TabAtkins> Domenic: I'd been planning to add some sort of conditional element, so you could delete elements unless they matched certain attributes of your document. (Probably starting with just status.)
- # [23:03] <TabAtkins> I think that'd work for you?
- # [23:03] <Domenic> TabAtkins: sounds excellent, as long as it works with custom metadata lines like `!Version History`
- # [23:03] <TabAtkins> I'd still need to do the "remove empty <dd>s" pass.
- # [23:04] <TabAtkins> Oh wait though. The problem is that you can't pass !Version History conditionally, right?
- # [23:04] <Domenic> Right
- # [23:04] <TabAtkins> Let's just figure out how to fix that directly.
- # [23:04] <Domenic> If I could pass empty strings then I could end up with an empty <dd>
- # [23:04] * Quits: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com) (Quit: sicking)
- # [23:04] <Domenic> which visually is fine
- # [23:05] <Domenic> TabAtkins: actually, this might be unnecessary. I think I can just add a "back to the living standard" link and substitute that where the "go to commit snapshot" link would be
- # [23:05] <Domenic> Much easier.
- # [23:06] <TabAtkins> Heh, kk. And useful!
- # [23:06] * Quits: othermaciej (~mjs@17.245.30.2) (Quit: othermaciej)
- # [23:06] <TabAtkins> but also, I think I can make custom metadata work just fine.
- # [23:06] <Domenic> Yeah, I figured it would be redundant with the giant red floating banner, but it's nice for symmetry... this way the TOC doesn't jump up and down a line as you go between LS and snapshot
- # [23:10] * Joins: othermaciej (~mjs@17.245.30.2)
- # [23:11] * Quits: frivoal (~frivoal@2.148.121.39.tmi.telenormobil.no) (Remote host closed the connection)
- # [23:13] <TabAtkins> Domenic: Say I was wanting to integrate ecmd into Bikeshed directly. Most of the inline markup turns into plain HTML, but some turn into ecmarkup elements. What's the significance of these, and how should I reproduce their effects in HTML?
- # [23:13] * Quits: plutoniix (~plutoniix@node-3ij.pool-125-25.dynamic.totbb.net) (Quit: จรลี จรลา)
- # [23:13] <TabAtkins> Specifically, <emu-const> and <emu-nt>.
- # [23:14] <Domenic> TabAtkins: the idea is they are semantically better than <span class="const">, could potentially be custom-elemented in the future (although it seems unlikely you'd be able to do anything useful there), and that the EMU stylesheet will style them specifically.
- # [23:14] <TabAtkins> So I should stick with them, then?
- # [23:14] <Domenic> I think so
- # [23:14] <Domenic> See also https://bterlson.github.io/ecmarkup/
- # [23:15] * Joins: capella (~chatzilla@cpe-72-230-125-7.twcny.res.rr.com)
- # [23:15] <Domenic> Also: are you really looking into this!? I would be sooo excited.
- # [23:16] * Quits: othermaciej (~mjs@17.245.30.2) (Quit: othermaciej)
- # [23:16] * Joins: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com)
- # [23:17] <TabAtkins> Yeah.
- # [23:17] <Domenic> ^__^
- # [23:17] <TabAtkins> I've got more control over what kinds of markup shorthands can exist in a given document, so that gives me more freedom to add additional types of shorthands.
- # [23:17] <TabAtkins> Like, for example, all the JS shorthands.
- # [23:21] * Joins: weinig (~weinig@17.245.24.78)
- # [23:22] * Joins: jdaggett (~jdaggett@ad056175.dynamic.ppp.asahi-net.or.jp)
- # [23:22] * Quits: Maurice` (copyman@unaffiliated/maurice)
- # [23:24] * Quits: malcolmva (~malcolmva@c-67-180-198-144.hsd1.ca.comcast.net) (Ping timeout: 252 seconds)
- # [23:25] * Quits: wilsonpage (~wilsonpag@87.113.78.29) (Quit: Leaving.)
- # [23:25] * Joins: KevinMarks (~yaaic@c-67-164-14-200.hsd1.ca.comcast.net)
- # [23:27] * Quits: weinig (~weinig@17.245.24.78) (Quit: weinig)
- # [23:29] * Quits: jdaggett (~jdaggett@ad056175.dynamic.ppp.asahi-net.or.jp) (Ping timeout: 252 seconds)
- # [23:33] * Joins: 17SABM6WI (scrollback@23.246.213.162-static.reverse.softlayer.com)
- # [23:34] * Joins: mven (~textual@32.97.110.56)
- # [23:34] * Quits: mven (~textual@32.97.110.56) (Excess Flood)
- # [23:38] * Joins: malcolmva (~malcolmva@c-67-180-198-144.hsd1.ca.comcast.net)
- # [23:46] * Quits: svl (~me@ip565744a7.direct-adsl.nl) (Quit: And back he spurred like a madman, shrieking a curse to the sky.)
- # [23:47] * Joins: othermaciej (~mjs@17.244.162.176)
- # [23:47] * Quits: karlcow (~karl@nerval.la-grange.net) (Quit: :tiuQ tiuq sah woclrak)
- # [23:48] * Joins: karlcow (~karl@nerval.la-grange.net)
- # [23:50] * Quits: sicking (~sicking@corp-nat.p2p.sfo1.mozilla.com) (Quit: sicking)
- # [23:51] * Joins: bholley (~bholley@c-50-131-239-99.hsd1.ca.comcast.net)
- # [23:53] * heycam is now known as heycam|away
- # [23:53] * Quits: heycam|away (~cam@wok.mcc.id.au) (Quit: Terminated with extreme prejudice - dircproxy 1.0.5)
- # [23:53] * Joins: tantek (~tantek@50.242.73.10)
- # [23:55] * Quits: encryptd_fractl (~encryptd_@66-188-130-46.static.mdsn.wi.charter.com) (Remote host closed the connection)
- # [23:57] * Quits: eric_carlson (~ericc@17.202.49.94) (Quit: eric_carlson)
- # Session Close: Wed Jan 28 00:00:00 2015
Previous day, Next day
Think these logs are useful? Then please donate to show your gratitude (and keep them up, of course). Thanks! — Krijn