Options:
- # Session Start: Tue Jul 31 00:00:00 2007
- # Session Ident: #whatwg
- # [00:01] * Joins: tantek (n=tantek@c-71-202-121-218.hsd1.ca.comcast.net)
- # [00:02] <Philip`> Ooh, I never knew Safari did <input type=slider>
- # [00:02] <Philip`> Uh
- # [00:02] <Philip`> Ooh, I never knew Safari did <input type=range>
- # [00:03] <Philip`> but it appears to not handle non-integer steps, which is annoying
- # [00:04] * Joins: aroben (n=adamrobe@17.203.15.181)
- # [00:04] * Quits: aroben_ (n=adamrobe@unaffiliated/aroben) (Read error: 104 (Connection reset by peer))
- # [00:05] * Parts: hasather (n=hasather@22.80-203-71.nextgentel.com)
- # [00:21] * Quits: tantek (n=tantek@c-71-202-121-218.hsd1.ca.comcast.net)
- # [00:28] * Joins: weinig (i=weinig@nat/apple/x-e1c65615c0ab51bf)
- # [00:28] * Joins: tantek (n=tantek@c-71-202-121-218.hsd1.ca.comcast.net)
- # [00:30] <Philip`> Why is a parse error? It sounds like a fairly legitimate thing to do
- # [00:32] * Joins: jruderman (n=jruderma@corp-241.mountainview.mozilla.com)
- # [00:33] * Quits: h3h (n=w3rd@66-162-32-234.static.twtelecom.net) ("|")
- # [00:40] <zcorpan_> Philip`: good question
- # [00:41] <zcorpan_> wonder how is treated in browsers
- # [00:42] <zcorpan_> (or is it the other way around?)
- # [00:52] <zcorpan_> http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C%21DOCTYPE%20html%3E%0D%0A%3Cpre%3Ea%26%2313%3B%26%2310%3Bb
- # [00:56] * Joins: weinig_ (i=weinig@nat/apple/x-cb5724f2fdb18e7a)
- # [00:56] * Quits: weinig (i=weinig@nat/apple/x-e1c65615c0ab51bf) (Read error: 104 (Connection reset by peer))
- # [00:57] <zcorpan_> http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C%21DOCTYPE%20html%3E%0D%0A%3Cpre%3Ea%26%2313%3B%26%2310%3Bb%3Cscript%3E%0D%0A%20var%20node%20%3D%20document.getElementsByTagName%28%22pre%22%29%5B0%5D.firstChild%3B%0D%0A%20node.data%20%3D%20node.data.replace%28/%5Cr/g%2C%20%22%5C%5Cr%22%29.replace%28/%5Cn/g%2C%20%22%5C%5Cn%22%29%3B%0D%0A%3C/script%3E
- # [00:59] <zcorpan_> ie: becomes \r. opera: it becomes \r\n but only one linebreak is rendered. safari, firefox: it becomes \n\n (as per html5)
- # [00:59] <zcorpan_> (unless i'm misreading the spec)
- # [01:02] * Joins: PlayPause (n=Test@81-179-113-213.dsl.pipex.com)
- # [01:02] <PlayPause> !seen nickshanks
- # [01:05] * Parts: PlayPause (n=Test@81-179-113-213.dsl.pipex.com)
- # [01:10] * Joins: yod (n=ot@softbank221018155222.bbtec.net)
- # [01:21] * Quits: hendry (n=hendry@91.84.62.62) ("andSLEEP")
- # [01:33] * Joins: tantek_ (n=tantek@c-71-202-121-218.hsd1.ca.comcast.net)
- # [01:40] <Philip`> Hmm, IE seems to support some named entities that Mozilla (and, I think, HTML5) don't
- # [01:40] <Philip`> in particular, 8203: zwsp; 8234: lre; 8235: rle; 8236: pdf; 8237: lro; 8238: rlo; 8298: iss; 8299: ass; 8300: iafs; 8301: aafs; 8302: nads; 8303: nods
- # [01:40] * Philip` wonders if anyone cares about those
- # [01:41] * Quits: tantek (n=tantek@c-71-202-121-218.hsd1.ca.comcast.net) (Read error: 110 (Connection timed out))
- # [01:47] <zcorpan_> Philip`: how did you find those?
- # [01:47] * Quits: tantek_ (n=tantek@c-71-202-121-218.hsd1.ca.comcast.net)
- # [01:48] <Philip`> http://www.bbc.co.uk/dna/h2g2/A264548 has a list that includes them
- # [01:49] <zcorpan_> ok
- # [01:50] <zcorpan_> ie seems to be alone in supporting those
- # [01:51] <zcorpan_> but i'm not against adding them to html5
- # [01:53] <Philip`> They don't appear to be the most highly documented entity names
- # [01:53] <Philip`> (like, that one list is the only place on the whole web)
- # [01:54] <zcorpan_> do they appear in your html research sample?
- # [01:54] <zcorpan_> (probably not)
- # [02:00] * Joins: tantek (n=tantek@c-71-202-121-218.hsd1.ca.comcast.net)
- # [02:00] <Philip`> I didn't collect any data about unrecognised entities when I was looking at the ~8K pages
- # [02:01] <Philip`> (The tokeniser did actually report unrecognised entities but I just discarded all that data instead of saving it anyhwere)
- # [02:01] <Philip`> s/hw/wh/
- # [02:01] <Philip`> In the other ~2.5K pages that I still have a copy of, none of those entities turn up at all
- # [02:04] <zcorpan_> yeah, we'd probably need a billion documents research to find the relevance of these entities
- # [02:05] * Quits: kingryan (n=kingryan@corp.technorati.com)
- # [02:07] <Philip`> http://www.tools.ietf.org/html/draft-duerst-iri-bidi-00 talks about lre, lro, rle, rlo, pdf
- # [02:09] <zcorpan_> Philip`: will you post this to the list?
- # [02:09] <Philip`> but that looks like it's just a coincidental use of the same names
- # [02:09] <Philip`> I will do
- # [02:09] <Philip`> (But which list? :-) )
- # [02:10] <zcorpan_> (doesn't matter)
- # [02:10] <zcorpan_> i'll cover btw
- # [02:13] * Quits: webben (n=benjamin@91.84.193.157) ("Leaving")
- # [02:19] <Philip`> Opera 9.2 is missing ®
- # [02:22] * Joins: csarven (n=nevrasc@modemcable081.152-201-24.mc.videotron.ca)
- # [02:26] * Quits: aroben (n=adamrobe@unaffiliated/aroben)
- # [02:45] * Quits: tantek (n=tantek@c-71-202-121-218.hsd1.ca.comcast.net)
- # [02:49] * Quits: weinig_ (i=weinig@nat/apple/x-cb5724f2fdb18e7a)
- # [02:56] <Philip`> http://software.hixie.ch/utilities/js/live-dom-viewer/?%3Cp%3E%3C/p%3E%3Cp%3E%26ampxyz123%3C/p%3E%0D%0A%3Cscript%3Edocument.getElementsByTagName%28%27p%27%29%5B0%5D.innerHTML%3D%27%26ampxyz123%27%3C/script%3E%0D%0A
- # [02:56] <Philip`> in IE
- # [02:58] <Philip`> When you set innerHTML, it appears to discard all alphanumeric characters after a "&" (or whatever) if there are no non-alphanumeric characters before the end of the string
- # [03:06] <Philip`> http://canvex.lazyilluminati.com/misc/entities.html
- # [03:06] <Philip`> That appears to reliably crash Firefox trunk
- # [03:10] * Joins: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [03:11] * zcorpan_ points at http://simon.html5.org/test/html/parsing/entities/trailing-semicolon/real/
- # [03:13] <Philip`> Aha
- # [03:13] <Philip`> But mine makes IE fail more ;-)
- # [03:14] <Philip`> (and works in html5lib/etc, though unfortunately all the implementations get everything right which is no fun)
- # [03:15] * Quits: tndH (i=Rob@adsl-87-102-32-80.karoo.KCOM.COM) ("ChatZilla 0.9.78.1-rdmsoft [XULRunner 1.8.0.9/2006120508]")
- # [03:16] <zcorpan_> :)
- # [03:25] * Joins: weinig (i=weinig@nat/apple/x-80c26ce691eb9893)
- # [03:26] <Philip`> http://yy28.60.kg/test/read.cgi/maido3/1096370177/l50 - there's someone using &zwsp;
- # [03:26] <Philip`> http://www.tasb.com/services/field/staff/index.aspx?print=true - there too
- # [03:26] <Philip`> It's lucky that Google doesn't understand these entities, so it lets you search for them by name
- # [03:27] <zcorpan_> there you go
- # [03:28] * Joins: karlUshi (n=karl@133.27.247.173)
- # [03:29] <Philip`> Most of the references seem to be in Chinese ASCII-art comment spam (or is that not spam?), largely on 2ch.net
- # [03:32] * Joins: aroben (n=adamrobe@17.203.15.181)
- # [03:33] <zcorpan_> it's Shift_JIS-art (*゚ー゚)
- # [03:49] <deltab> no zwsp in http://www.w3.org/TR/html4/sgml/entities.html
- # [03:49] <deltab> ... but you probably already knew that
- # [03:50] <zcorpan_> yeah... all entities in html4 are already in html5
- # [03:50] <zcorpan_> (i hope!)
- # [03:51] <Philip`> At least all the ones in Mozilla and Opera are
- # [03:51] <Philip`> Only IE is 'special' :-)
- # [04:03] * Quits: MikeSmith (n=MikeSmit@eM60-254-196-192.pool.emobile.ad.jp) (Read error: 104 (Connection reset by peer))
- # [04:04] * Joins: MikeSmith (n=MikeSmit@eM60-254-197-129.pool.emobile.ad.jp)
- # [04:15] * Quits: bzed (n=bzed@dslb-084-059-110-179.pools.arcor-ip.net) ("Leaving")
- # [04:16] * Joins: tantek_ (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [04:16] * Quits: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net) (Read error: 104 (Connection reset by peer))
- # [04:20] * Joins: weinig_ (i=weinig@nat/apple/x-03dde30f827333ee)
- # [04:21] * moeffju is now known as moeffju[ZzZz]
- # [04:22] * Quits: weinig (i=weinig@nat/apple/x-80c26ce691eb9893) (Read error: 104 (Connection reset by peer))
- # [04:26] * Quits: zcorpan_ (n=zcorpan@84-216-41-6.sprayadsl.telenor.se) (Read error: 110 (Connection timed out))
- # [04:30] * Joins: h3h (n=w3rd@cpe-76-88-44-219.san.res.rr.com)
- # [04:51] * Quits: MikeSmith (n=MikeSmit@eM60-254-197-129.pool.emobile.ad.jp) ("Less talk, more pimp walk.")
- # [04:58] * Quits: h3h (n=w3rd@cpe-76-88-44-219.san.res.rr.com)
- # [05:14] * Joins: h3h (n=w3rd@cpe-76-88-44-219.san.res.rr.com)
- # [05:25] * Quits: jruderman (n=jruderma@corp-241.mountainview.mozilla.com)
- # [05:41] * Quits: epeus (n=Snak@c-76-102-254-252.hsd1.ca.comcast.net) ("The computer fell asleep")
- # [05:43] * Quits: tantek_ (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [05:53] * Joins: jruderman (n=jruderma@c-67-169-24-116.hsd1.ca.comcast.net)
- # [06:17] * Joins: MikeSmith (n=MikeSmit@eM60-254-218-190.pool.emobile.ad.jp)
- # [06:55] * Quits: othermaciej (n=mjs@17.255.96.105) (Read error: 104 (Connection reset by peer))
- # [06:58] * Quits: gavin_ (n=gavin@firefox/developer/gavin) (Remote closed the connection)
- # [06:58] * Joins: gavin_ (n=gavin@people.mozilla.com)
- # [07:01] * Joins: othermaciej (n=mjs@17.255.96.105)
- # [07:07] * Quits: MikeSmith (n=MikeSmit@eM60-254-218-190.pool.emobile.ad.jp) ("Less talk, more pimp walk.")
- # [07:29] * Quits: weinig_ (i=weinig@nat/apple/x-03dde30f827333ee) (Read error: 110 (Connection timed out))
- # [07:37] * Quits: csarven (n=nevrasc@modemcable081.152-201-24.mc.videotron.ca) ("http:/www.csarven.ca")
- # [07:39] * Joins: weinig (i=weinig@nat/apple/x-dc78c98bf98f0fa6)
- # [07:54] * Quits: h3h (n=w3rd@cpe-76-88-44-219.san.res.rr.com)
- # [07:54] * Quits: KevinMarks (i=KevinMar@nat/google/x-48a6399d5a329a75) ("The computer fell asleep")
- # [08:27] * Quits: othermaciej (n=mjs@17.255.96.105)
- # [08:29] * Joins: MikeSmith (n=MikeSmit@eM60-254-196-28.pool.emobile.ad.jp)
- # [08:35] * Quits: Lachy (n=Lachy@203-214-140-60.perm.iinet.net.au) ("ChatZilla 0.9.78.1 [Firefox 2.0.0.4/2007051502]")
- # [08:55] * Quits: aroben (n=adamrobe@unaffiliated/aroben) (Read error: 110 (Connection timed out))
- # [08:59] * Joins: aroben (n=adamrobe@17.203.15.181)
- # [09:13] * Joins: ROBOd (n=robod@86.34.246.154)
- # [09:21] * Joins: KevinMarks (n=KevinMar@c-76-102-254-252.hsd1.ca.comcast.net)
- # [09:24] * Quits: yod (n=ot@softbank221018155222.bbtec.net) ("Leaving")
- # [09:29] * Quits: karlUshi (n=karl@133.27.247.173) ("Where dwelt Ymir, or wherein did he find sustenance?")
- # [09:40] * Joins: othermaciej (n=mjs@dsl081-048-145.sfo1.dsl.speakeasy.net)
- # [10:02] * Quits: weinig (i=weinig@nat/apple/x-dc78c98bf98f0fa6)
- # [10:03] * Quits: aroben (n=adamrobe@unaffiliated/aroben)
- # [10:11] * Joins: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [10:18] * Joins: weinig (n=weinig@c-67-188-89-242.hsd1.ca.comcast.net)
- # [10:43] * Joins: BenWard (i=BenWard@nat/yahoo/x-43ee848021db9f8a)
- # [11:03] * Quits: weinig (n=weinig@c-67-188-89-242.hsd1.ca.comcast.net)
- # [11:07] * Quits: psa (n=yomode@posom.com) (Remote closed the connection)
- # [11:13] * Joins: hendry (n=hendry@91.84.62.62)
- # [11:20] * moeffju[ZzZz] is now known as moeffju
- # [11:31] * Quits: othermaciej (n=mjs@dsl081-048-145.sfo1.dsl.speakeasy.net) (Read error: 110 (Connection timed out))
- # [11:32] <annevk> CRLF was already raised once on whatwg@whatwg.or
- # [11:32] <annevk> g
- # [11:36] <hsivonen> implementing a check for NCName makes me wonder if the original XML WG stopped to write down the code for checking it before making it part of the spec...
- # [11:37] <annevk> In XML5 it's easy :)
- # [11:52] <hsivonen> speaking of NCNames and stuff: are there known test cases that test the detection of various XML spec lawyering NCName subtleties?
- # [11:55] <hsivonen> I wonder what back end software http://www.weblogs.com/feedvalidator.html runs
- # [11:56] * annevk hopes his comparison between Harry Potter and specs won't be seen as offensive
- # [11:56] <hsivonen> annevk: on list or on blog?
- # [11:56] <annevk> list
- # [11:57] <hsivonen> annevk: my guess is it will be seen as offensive
- # [11:58] <annevk> bah
- # [12:01] <hendry> damn, i had the badware pcpro popup whilst using my bank's website...
- # [12:01] <hsivonen> I wrote a regexp for NCName suitable for sticking into a Java String literal and it is 7875 characters long!
- # [12:03] <annevk> ouch
- # [12:04] <annevk> write your own tokenizer? :)
- # [12:05] * Quits: MikeSmith (n=MikeSmit@eM60-254-196-28.pool.emobile.ad.jp) ("Less talk, more pimp walk.")
- # [12:05] <hsivonen> annevk: this is part of the feature set for parsing HTML into XML 1.0 infosets
- # [12:06] <hsivonen> annevk: no I need to be able to detect non-NCNames either to treat them as fatal or to drop them
- # [12:06] <hsivonen> anyway, the regexp is so long that Eclipse refuses to scroll enough to the right to show it all
- # [12:08] <hsivonen> using ICU4J for this would be cleaner and might even perform better, but I want to avoid the dependency
- # [12:10] * Joins: bzed (n=bzed@dslb-084-059-102-144.pools.arcor-ip.net)
- # [12:11] <annevk> omg, this quote/unquot has to stop
- # [12:20] <hsivonen> at least HTML 5 is much more author-friendly reading than any ISO spec
- # [12:21] <hsivonen> (I wonder how much work it takes to obfuscate something like ODF or OOXML to comply with ISO drafting rules.)
- # [12:21] <hsivonen> (or might ISO make an exception on those?)
- # [12:21] <hsivonen> (not to say that being more author-friendly than an ISO spec is enough)
- # [12:23] * Joins: Charl (n=charlvn@c1-186-13.wblv.isadsl.co.za)
- # [12:28] * Quits: BenWard (i=BenWard@nat/yahoo/x-43ee848021db9f8a)
- # [12:34] <annevk> he took it as insult
- # [12:36] <hsivonen> annevk: not surprising. if it wasn't meant as one, it was a badly formulated non-insult
- # [12:38] <annevk> I guess
- # [12:42] * Joins: zcorpan_ (n=zcorpan@84-216-42-147.sprayadsl.telenor.se)
- # [12:44] * Joins: BenWard (i=BenWard@nat/yahoo/x-245d39a0794fe9e4)
- # [13:02] * Joins: MikeSmith (n=MikeSmit@eM60-254-215-84.pool.emobile.ad.jp)
- # [13:29] * Quits: MikeSmith (n=MikeSmit@eM60-254-215-84.pool.emobile.ad.jp) ("Less talk, more pimp walk.")
- # [13:31] * Joins: tndH__ (i=Rob@adsl-87-102-32-80.karoo.KCOM.COM)
- # [13:31] * tndH__ is now known as tndH
- # [13:55] * Joins: MikeSmith (n=MikeSmit@eM60-254-206-98.pool.emobile.ad.jp)
- # [14:14] * Joins: mpt_ (n=mpt@121-72-130-73.dsl.telstraclear.net)
- # [14:18] * Quits: mpt (n=mpt@121-72-136-247.dsl.telstraclear.net) (Read error: 110 (Connection timed out))
- # [14:32] <hsivonen> canvas at work: http://westciv.com/xray/
- # [14:34] <annevk> in Opera I always get back <canvas>
- # [14:34] <annevk> I wonder if that's a bug
- # [14:34] <hsivonen> annevk: documentation says it only works in Gecko and WebKit. not working in Presto and Trident is known
- # [14:35] <annevk> of course, but what's the issue?
- # [14:35] <annevk> and is that an issue in Opera or Firefox?
- # [14:36] <hsivonen> I don't know. Based on what you said, I guess the issue is making the canvas event-neutral so that clicks go through it
- # [14:39] <annevk> jgraham, simpleson has no attribute "loads" causes tons of errors
- # [14:39] * Joins: billyjack (n=MikeSmit@eM60-254-205-140.pool.emobile.ad.jp)
- # [14:40] <annevk> the rests of the tests are about some silly space after <!DOCTYPE ...
- # [14:44] * Quits: MikeSmith (n=MikeSmit@eM60-254-206-98.pool.emobile.ad.jp) (Read error: 110 (Connection timed out))
- # [14:51] * Quits: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [15:04] * Quits: billyjack (n=MikeSmit@eM60-254-205-140.pool.emobile.ad.jp) ("Less talk, more pimp walk.")
- # [15:08] * Joins: G0k (n=hmason@cpe-24-58-3-19.twcny.res.rr.com)
- # [15:08] <G0k> hey all
- # [15:12] <annevk> hi
- # [15:13] <hsivonen> hi
- # [15:22] <G0k> so this TCP/UDP connection stuff in HTML5
- # [15:22] <G0k> has anyone actually tried implementing that?
- # [15:22] <annevk> I don't think so
- # [15:22] <annevk> That section is very much unstable, afaict
- # [15:23] <G0k> yeah i mean
- # [15:23] <G0k> i guess i'm not really even clear on its...purpose
- # [15:23] <G0k> i mean it seems kinda misnamed
- # [15:23] <annevk> communicating without the overhead of HTTP
- # [15:24] <annevk> and I believe it was also intended to address P2P at some point
- # [15:24] <G0k> it's not really a TCPConnection so much as a NewProtocolWeJustInventedThatHappensToUseTCPConnection
- # [15:24] <hsivonen> e.g. for games, IM clients, continuous visualizations of data, etc.
- # [15:24] <hsivonen> G0k: it isn't a pure TCP connection for security reasons
- # [15:25] <G0k> yeah that's surely legitimate, but calling it a TCP connection isn't really accurate
- # [15:25] <G0k> i mean there's also no reason that protocol couldn't be made to run over SCTP, for instance
- # [15:26] * Joins: met_ (n=Hassman@b14-4.vscht.cz)
- # [15:26] <annevk> you could point it out on the list
- # [15:27] <G0k> yeah that would require typing in complete sentences and stuff, it's much easier to complain to you people
- # [15:28] <hsivonen> G0k: the connection initialization if coupled with TCP ports isn't it?
- # [15:29] <annevk> there's also http://dev.w3.org/cvsweb/~checkout~/2006/webapi/network-api/network-api.html?rev=1.3
- # [15:29] <annevk> G0k, hah
- # [15:29] <G0k> well yeah i mean the DOM interface is TCP-specific but the protocol itself needn't be
- # [15:31] <met_> annevk, you remind me Don LaFontaine in your spot http://annevankesteren.nl/2007/07/web it's like I hear his common sentence "I a strict world where..." (see http://www.youtube.com/watch?v=ZJMGS7l0wT8 )
- # [15:33] * annevk doesn't have flash atm
- # [15:35] * hsivonen didn't know that "Don" is a real one guy
- # [15:36] <met_> hsivonen see http://www.youtube.com/watch?v=Wkhdy6bavuk
- # [15:38] <hsivonen> met_: just watched it
- # [15:41] <met_> Don's rewriting of annevk's spot: In a strict world, where pages using those new features completely break, new hero will rise. HTML5 from producers of Safari, Opera and Firefox. In December 2010 !
- # [15:44] <annevk> with 10% discount if you order now
- # [15:48] * Joins: Lachy (n=Lachy@203-214-140-60.perm.iinet.net.au)
- # [15:52] <Lachy> hey, I'm looking for some example flash sites that provide alternative HTML versions of the site. In particular, ones that link to the HTML-only versions of the site below the flash. Anyone know of any?
- # [15:53] <Lachy> or even sites that use video and provide alternative content
- # [15:53] <annevk> http://www.google.com/search?q=%22skip+intro%22 ?
- # [15:53] <Philip`> http://www.jkrowling.com/ has a text-only version
- # [15:54] * Joins: polin8 (n=brian@dsl081-134-176.nyc1.dsl.speakeasy.net)
- # [15:54] <Lachy> yeah, I already got jkrowling
- # [15:54] * Quits: polin8 (n=brian@dsl081-134-176.nyc1.dsl.speakeasy.net) (Remote closed the connection)
- # [15:54] <annevk> http://www.google.com/search?q=%22text+only+version%22
- # [15:55] <hsivonen> Lachy: I'd start by looking at recent movie promo sites
- # [15:55] <hsivonen> Lachy: with this method, starting from the Apple Trailer page, I found http://www.rushhourmovie.com/
- # [15:55] <Lachy> oh, good idea
- # [15:55] <hsivonen> it puts the textual alternative in noscript!
- # [15:56] <Lachy> oh, and it uses black text on black background when you disable JS
- # [15:57] <zcorpan_> all i get is "A flash player upgrade is required to view this website, click here to continue."
- # [15:57] <hsivonen> http://www.noendinsightmovie.com/ also has a short writeup in the source
- # [15:57] <hsivonen> hmm. perhaps the alternative content is for google--not browser users
- # [16:01] <hsivonen> the interesting thing is that even though movie promos most likely aren't trying to take blind users into account, they still bother putting text in there. this suggests that pitching textual alternatives as a SEO method might be attractive to site makers
- # [16:03] <hsivonen> hmm. http://cleanishappy.com/ contains a really long text writeup aimed at seach engines
- # [16:03] <hsivonen> but useless for users who can't browse Flash
- # [16:06] <Lachy> wow, that's got to be the longest meta description I've ever seen!
- # [16:08] * Quits: met_ (n=Hassman@b14-4.vscht.cz) ("Chemists never die, they just stop reacting.")
- # [16:08] * Parts: G0k (n=hmason@cpe-24-58-3-19.twcny.res.rr.com)
- # [16:12] <hsivonen> Lachy: http://del.icio.us/tag/flash%2Bmarketing
- # [16:15] <Lachy> thanks
- # [16:43] * Joins: billmason (n=billmaso@ip156.unival.com)
- # [16:45] * annevk wonders why SVGSVGElement is not named SVGSvgElement
- # [16:56] <annevk> <dfn title="GDO">Garage Door Opener (<abbr>GDO</abbr>)</dfn> ...
- # [17:02] <zcorpan_> in typography, is it common to have the whole thing in italics, or just the "Garage Door Opener" part, or perhaps just the "GDO" part?
- # [17:02] <annevk> dunno
- # [17:09] * Joins: dglazkov (n=dglazkov@adsl-065-081-081-030.sip.bhm.bellsouth.net)
- # [17:18] * Joins: grimeboy (n=grimboy@85-211-253-134.dsl.pipex.com)
- # [17:21] * Joins: tndH_ (i=Rob@adsl-87-102-32-80.karoo.KCOM.COM)
- # [17:22] * Joins: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [17:22] * Quits: BenWard (i=BenWard@nat/yahoo/x-245d39a0794fe9e4) (Read error: 104 (Connection reset by peer))
- # [17:23] * Joins: BenWard (i=BenWard@nat/yahoo/x-f6a98af703d23138)
- # [17:26] * Quits: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net) (Read error: 104 (Connection reset by peer))
- # [17:26] * Joins: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [17:27] * Quits: tndH (i=Rob@adsl-87-102-32-80.karoo.KCOM.COM) (Read error: 110 (Connection timed out))
- # [17:41] * Joins: gsnedders (n=gsnedder@host81-132-175-22.range81-132.btcentralplus.com)
- # [17:41] * Quits: gsnedders (n=gsnedder@host81-132-175-22.range81-132.btcentralplus.com) (Remote closed the connection)
- # [17:42] * Joins: gsnedders (n=gsnedder@host81-132-175-22.range81-132.btcentralplus.com)
- # [17:54] * Joins: maikmerten (n=maikmert@L8cf7.l.pppool.de)
- # [18:08] * maikmerten is now known as maik|eat
- # [18:09] <gsnedders> only 373 unread emails on public-html having been away
- # [18:24] * Joins: weinig (i=weinig@nat/apple/x-9559e1e7449edd74)
- # [18:27] <Philip`> Is this month going to beat May?
- # [18:27] <Philip`> It's only 15 behind at the moment
- # [18:31] <zcorpan_> we need something controversial
- # [18:32] <annevk> that should be trivial
- # [18:34] * maik|eat is now known as maikmerten
- # [18:43] * Quits: KevinMarks (n=KevinMar@c-76-102-254-252.hsd1.ca.comcast.net) ("The computer fell asleep")
- # [18:46] * Joins: h3h (n=w3rd@66-162-32-234.static.twtelecom.net)
- # [18:48] * weinig is now known as weinig|brb
- # [18:59] * weinig|brb is now known as weinig
- # [18:59] * Joins: hasather (n=hasather@22.80-203-71.nextgentel.com)
- # [19:09] * Joins: aroben (n=adamrobe@17.255.99.193)
- # [19:10] * Quits: aroben (n=adamrobe@unaffiliated/aroben) (Remote closed the connection)
- # [19:11] * Joins: aroben (n=adamrobe@17.255.99.193)
- # [19:19] <Lachy> why on earth does Firefox return true for if(document.createNodeIterator); but it returns an NS_ERROR_NOT_IMPLEMENTED whenever I try to invoke it!?
- # [19:20] <hasather> Lachy: when are you coming to Norway?
- # [19:21] <Lachy> don't know yet.
- # [19:21] * zcorpan_ might come to norway sometime soon also
- # [19:21] <hasather> zcorpan_: ahh, cool
- # [19:21] <zcorpan_> perhaps next week
- # [19:22] <Lachy> cause I want to go to Web Directions at the end of September, and if I go over in August, then I'd be coming back a few weeks later, so it was suggested that I go over in October
- # [19:22] <hasather> Lachy: so you're not coming in August?
- # [19:23] <Lachy> probably not, but I haven't heard back since I last emailed Annchen
- # [19:23] <hasather> ok
- # [19:24] <annevk> zcorpan_, you have to come next week :)
- # [19:24] <Lachy> is the difference between a NodeIterator and a TreeWalker that the NodeIterator only looks at child nodes, and the TreeWalker looks at all descendants?
- # [19:24] <zcorpan_> annevk: when are you leaving again?
- # [19:25] <annevk> zcorpan_, I'm going to Spain the 11th of August and will be back briefly the 17th to attend Friday beer :) The 18th I'll go to the Netherlands for some more vacation afer which university starts again...
- # [19:25] <zcorpan_> alrighty
- # [19:27] <Philip`> Lachy: createNodeIterator was added in https://bugzilla.mozilla.org/show_bug.cgi?id=82625
- # [19:27] * Joins: dev0 (i=Tobias@unaffiliated/icefox0)
- # [19:28] <Philip`> and it looks like those functions were just added for completeness
- # [19:29] <Lachy> Philip`: assuming you mean createTreeWalker was added in that bug, ok.
- # [19:29] <Lachy> but it looks like I should be able to use a TreeWalker and nextSibling for my needs anyway
- # [19:34] <Philip`> I meant createNodeIterator, or at least the createNodeIterator stub that just returns NS_ERROR_NOT_IMPLEMENTED
- # [19:36] * Quits: BenWard (i=BenWard@nat/yahoo/x-f6a98af703d23138) ("Fades out again…")
- # [19:57] <Lachy> Robert Burns' new quoting technique is so much harder to read :-(
- # [19:59] <Lachy> in fact, I just can't read it, cause I can't keep track of where I'm up to!
- # [20:00] <Lachy> I sent him off list mail telling him about RFC 2646 and asking him to comply with the existing convention
- # [20:01] <annevk> I gave up on reading that e-mail
- # [20:02] * annevk thought Hixie would be back this week
- # [20:04] <annevk> given http://krijnhoetmer.nl/irc-logs/whatwg/20070705#l-669 he should be, maybe he died!
- # [20:07] * Joins: othermaciej (n=mjs@dsl081-048-145.sfo1.dsl.speakeasy.net)
- # [20:21] <Lachy> I hope he hasn't
- # [20:22] <Lachy> I wonder who would know where he is?
- # [20:23] <Lachy> some weird is happening with my script. I'm getting a non-existent COL element returned from the tree walker
- # [20:29] * Quits: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net) (Read error: 104 (Connection reset by peer))
- # [20:30] * Joins: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [20:30] <Lachy> oh, it's not weird, it's my mistake :-)
- # [20:33] * Joins: KevinMarks (i=KevinMar@nat/google/x-91208c619346471a)
- # [20:40] * Quits: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net) (Read error: 104 (Connection reset by peer))
- # [20:40] * Joins: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [20:51] * Quits: othermaciej (n=mjs@dsl081-048-145.sfo1.dsl.speakeasy.net)
- # [20:51] * Joins: othermaciej (n=mjs@dsl081-048-145.sfo1.dsl.speakeasy.net)
- # [21:07] * Joins: weinig_ (i=weinig@nat/apple/x-c1306c6c188d1bac)
- # [21:07] * Quits: weinig (i=weinig@nat/apple/x-9559e1e7449edd74) (Read error: 104 (Connection reset by peer))
- # [21:08] * Quits: maikmerten (n=maikmert@L8cf7.l.pppool.de) ("Leaving")
- # [21:11] * Parts: hasather (n=hasather@22.80-203-71.nextgentel.com)
- # [21:11] * Joins: hasather (n=hasather@22.80-203-71.nextgentel.com)
- # [21:13] * Quits: aroben (n=adamrobe@unaffiliated/aroben)
- # [21:14] * Joins: weinig (i=weinig@nat/apple/x-a97d56f997f7f42d)
- # [21:14] * Quits: weinig_ (i=weinig@nat/apple/x-c1306c6c188d1bac) (Read error: 104 (Connection reset by peer))
- # [21:38] * Quits: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [21:49] * othermaciej is now known as om_out
- # [21:53] * Quits: weinig (i=weinig@nat/apple/x-a97d56f997f7f42d) (Read error: 104 (Connection reset by peer))
- # [21:54] * Joins: weinig (i=weinig@nat/apple/x-edfaf6d65b53d917)
- # [21:59] * Joins: aroben (n=adamrobe@17.255.99.193)
- # [21:59] * Quits: jruderman (n=jruderma@c-67-169-24-116.hsd1.ca.comcast.net)
- # [22:03] * Joins: jruderman (n=jruderma@c-67-169-24-116.hsd1.ca.comcast.net)
- # [22:05] * Quits: dev0 (i=Tobias@unaffiliated/icefox0) ("dev0 has no reason")
- # [22:07] * Quits: jruderman (n=jruderma@c-67-169-24-116.hsd1.ca.comcast.net) (Client Quit)
- # [22:08] * Joins: aroben_ (n=adamrobe@17.203.15.181)
- # [22:11] * Joins: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [22:12] * Joins: grimboy_uk (n=grimboy@85.211.238.103)
- # [22:23] * Parts: hasather (n=hasather@22.80-203-71.nextgentel.com)
- # [22:23] * Joins: hasather (n=hasather@22.80-203-71.nextgentel.com)
- # [22:23] * Quits: aroben (n=adamrobe@unaffiliated/aroben) (Read error: 110 (Connection timed out))
- # [22:25] * Quits: Lachy (n=Lachy@203-214-140-60.perm.iinet.net.au) ("ChatZilla 0.9.78.1 [Firefox 2.0.0.4/2007051502]")
- # [22:29] <jgraham> Astronomy spam is the best
- # [22:36] * Quits: grimeboy (n=grimboy@85-211-253-134.dsl.pipex.com) (Read error: 110 (Connection timed out))
- # [22:41] <hasather> annevk: he's alive: http://twitter.com/Hixie/statuses/178895922
- # [22:45] * Quits: ROBOd (n=robod@86.34.246.154) ("http://www.robodesign.ro")
- # [22:45] * Quits: grimboy_uk (n=grimboy@85.211.238.103) (Read error: 110 (Connection timed out))
- # [22:46] * Joins: grimboy_uk (n=grimboy@85-211-246-180.dsl.pipex.com)
- # [23:06] * Quits: Hixie (i=ianh@trivini.no) ("clearing IRC client buffers...")
- # [23:06] * Joins: Hixie (i=ianh@trivini.no)
- # [23:08] <Hixie> i have returned
- # [23:10] <jgraham> Nice holiday?
- # [23:10] <Hixie> certainly it was nice to have a break from public-html
- # [23:10] <jgraham> :)
- # [23:11] <hasather> Hixie: welcome back
- # [23:12] <Hixie> so, anything bad happen while i was away? any servers die?
- # [23:12] <Hixie> configurations go mysteriously awry?
- # [23:12] <hsivonen> Hixie: there have been complaints about whatwg archives
- # [23:12] <hsivonen> Hixie: URIs broke or something
- # [23:12] * Hixie looks
- # [23:12] <jgraham> The archives are private
- # [23:14] <Hixie> fixed
- # [23:14] <Hixie> nothing i can do about the uri changes
- # [23:16] * Quits: om_out (n=mjs@dsl081-048-145.sfo1.dsl.speakeasy.net)
- # [23:17] * Quits: Charl (n=charlvn@c1-186-13.wblv.isadsl.co.za) ("Leaving")
- # [23:24] * Quits: tndH_ (i=Rob@adsl-87-102-32-80.karoo.KCOM.COM) (Read error: 110 (Connection timed out))
- # [23:27] <hsivonen> hmm. 1300 messages on public-html this month
- # [23:27] <hsivonen> July, that is
- # [23:52] * Quits: dglazkov (n=dglazkov@adsl-065-081-081-030.sip.bhm.bellsouth.net)
- # [23:58] * Quits: weinig (i=weinig@nat/apple/x-edfaf6d65b53d917)
- # Session Close: Wed Aug 01 00:00:00 2007
The end :)