Options:
- # Session Start: Wed Feb 25 00:00:00 2009
- # Session Ident: #whatwg
- # [00:05] <gsnedders> oh noes! othermaciej following me on Twitter!
- # [00:05] * gsnedders hides
- # [00:06] <othermaciej> gsnedders: you followed me first dude
- # [00:06] <gsnedders> Yeah, sure.
- # [00:06] <gsnedders> I never said anything to the contrary :P
- # [00:07] * karlcow still wonders if gsnedders needs scripts examples
- # [00:08] <gsnedders> karlcow: It would be helpful.
- # [00:09] * Quits: bgalbraith_ (n=bgalbrai@72.158.245.34)
- # [00:13] <karlcow> gsnedders: SPARQL package in python to do query on an RDF graph http://www.ivan-herman.net/Misc/PythonStuff/SPARQL/Doc-SPARQL/
- # [00:13] <gsnedders> karlcow: Yeah, I saw that. Only issue: I don't know SPARQL at all
- # [00:16] <karlcow> SPARQL looks like a lot SQL
- # [00:17] <karlcow> and if you don't want to go through the insanity of parsing RDF with XSLT (aka headaches guaranteed) you should use SPARQL
- # [00:17] <karlcow> http://www.ibm.com/developerworks/xml/library/j-sparql/
- # [00:17] <karlcow> in this article there are very basic examples
- # [00:17] <karlcow> the first example is
- # [00:17] <karlcow> PREFIX foaf: <http://xmlns.com/foaf/0.1/>
- # [00:17] <karlcow> SELECT ?url
- # [00:17] <karlcow> FROM <bloggers.rdf>
- # [00:17] <karlcow> WHERE {
- # [00:17] <karlcow> ?contributor foaf:name "Jon Foobar" .
- # [00:17] <karlcow> ?contributor foaf:weblog ?url .
- # [00:18] <karlcow> }
- # [00:19] <gsnedders> karlcow: How do I deal with not knowing what element is the child of root (e.g., it might be WD, it might be REC, etc.)?
- # [00:19] * Joins: pauld (n=pauld@host86-134-106-105.range86-134.btcentralplus.com)
- # [00:21] * tantek wonders rhetorically if there might be a better IRC channel for RDF discussions.
- # [00:21] <gsnedders> Peh. Being on-topic would be logic, and we're meant to leave that at the door when coming in here.
- # [00:21] <gsnedders> s/logic/logical/
- # [00:25] <tantek> being logical can often improve the economic use of your resources such as time, assuming that is part of your self-interest.
- # [00:27] <danbri> I guess SQL is in scope nowadays?
- # [00:28] * Quits: pauld (n=pauld@host86-134-106-105.range86-134.btcentralplus.com)
- # [00:28] * Joins: othermaciej_ (n=mjs@c-69-181-43-20.hsd1.ca.comcast.net)
- # [00:28] <karlcow> gsnedders: I just created one for you
- # [00:28] <karlcow> so you can understand
- # [00:28] <karlcow> Use the SPARQL endpoint http://sparql.org/sparql.html with the form
- # [00:28] <karlcow> and type
- # [00:28] <karlcow> PREFIX dc: <http://purl.org/dc/elements/1.1/>
- # [00:28] <karlcow> PREFIX rec: <http://www.w3.org/2001/02pd/rec54#>
- # [00:28] <karlcow> SELECT ?title
- # [00:28] <karlcow> FROM <http://www.w3.org/2002/01/tr-automation/tr.rdf>
- # [00:28] <karlcow> WHERE {
- # [00:28] <karlcow> ?spec a rec:REC .
- # [00:28] <karlcow> ?spec dc:title ?title .
- # [00:29] <karlcow> }
- # [00:29] <danbri> i've been nudging the http://www.w3.org/2005/Incubator/rdb2rdf/ folk (working on sql / sparql mappings) to look at html5 sql apis
- # [00:29] <karlcow> here I'm asking to display the title of all documents which are a Rec
- # [00:29] <danbri> eg. in last week's semweb cg call
- # [00:30] <karlcow> tantek: you can ignore the lines too ;) I very rarely read the logs of this channel for example, and that's fine.
- # [00:31] <tantek> karlcow, focus / and on-topic scales better in terms of communication for more people, rather than telling everyone to ignore lines and speak whatever in whatever context.
- # [00:32] <danbri> tantek, are you new here? #whatwg isn't famed for ontopicity...
- # [00:33] * Quits: svl_ (n=me@69.Red-88-2-205.staticIP.rima-tde.net) (Read error: 104 (Connection reset by peer))
- # [00:33] <tantek> danbri, I lurk often, and most of the time see quite on topic discussions between Hixie, hsivonen, et al
- # [00:33] * Quits: othermaciej (n=mjs@c-69-181-43-20.hsd1.ca.comcast.net) (Read error: 60 (Operation timed out))
- # [00:35] <karlcow> tantek giving a meta class related to good use of channel (not respecting the channel topic then) aka respecting the topic (here html5). Conclusion: eat your own dog food. :)))
- # [00:36] <karlcow> gsnedders: I realize that I have forgotten to give you the link to the description of the vocabulary so you can play with other items of the graphs. http://www.w3.org/2001/02pd/rec54#
- # [00:36] <tantek> karlcow, html5 being ontopic I presumed that semantic use of HTML4 was also ontopic - pardon me if that was an error.
- # [00:36] * Joins: bgalbraith (n=bgalbrai@mobile-166-214-057-167.mycingular.net)
- # [00:37] <tantek> for microformats specific discussions I do redirect folks to #microformats
- # [00:37] * karlcow is just talking about the meta discussion we are just having now about IRC usage ;)
- # [00:37] <Hixie> there's no topic in this channel
- # [00:37] <Hixie> people can talk abotu whatever they want to
- # [00:37] <Hixie> it's just a place for people who work on html5 to wind down
- # [00:38] * karlcow doesn't really care. gsnedders is a nice chap. He asked for help, I'm giving a bit of help. And it might benefit others. end of the metadiscussion on my side.
- # [00:38] <gsnedders> karlcow: I'll have a look at all that tomorrow
- # [00:38] <Hixie> helping people is always welcome on this channel :-)
- # [00:38] <gsnedders> karlcow: I have to go sleep now
- # [00:38] <karlcow> gsnedders: have a good night
- # [00:39] <gsnedders> Besides, I could always go back to discussing it with MikeSmith in #html-wg where it almost certainly is off-topic :P
- # [00:39] <karlcow> hehe
- # [00:40] <tantek> Hixie, apologies, for some reason I gotten the impression that the purpose/focus of this channel was HTML5 ;)
- # [00:40] <Hixie> nah the purpose is just so i have a rapturous audience to listen to my rants
- # [00:40] * Hixie ducks
- # [00:40] <gsnedders> Hixie: Re: your email, that means I can please both you and Anne at once. Wow. :)
- # [00:41] <Hixie> gsnedders: such a rare opportunity!
- # [00:42] * Quits: aroben (n=aroben@unaffiliated/aroben) ("Leaving")
- # [00:45] * Philip` wonders how off-topic he could attempt to drag the channel before it just got very irritating to everyone
- # [00:45] <Philip`> So, is anyone else waiting for the TF2 scout update?
- # [00:45] <gsnedders> Philip`: Oh come on. Try harder.
- # [00:46] <Hixie> Philip`: no but I _am_ waiting for Half-Life 2 Episode 3
- # [00:47] <Philip`> The double-Payload map looks quite interesting
- # [00:48] <Philip`> Hixie: That's not quite the same type of waiting, since Ep3 is a lot of months away and the TF2 update is hours away :-)
- # [00:48] <Hixie> :-)
- # [00:49] <gsnedders> Anyone else got GTA IV: TLAD yet?
- # [00:50] <Philip`> (They seem to have totally failed at the idea that episodic content is meant to be faster to produce than a full game)
- # [00:50] * gsnedders on the whole thought it was a bit short only taking seven hours to get through
- # [00:50] <gsnedders> Though, to be fair, that isn't actually that much shorter than GTA IV itself (11 hours, IIRC)
- # [00:51] * karlcow is kicking gsnedders to bed
- # [00:51] * Parts: ojan (n=ojan@72.14.229.81)
- # [00:51] <gsnedders> Oh, yeah. I did mean to do that
- # [00:51] * gsnedders thanks karlcow for the reminder, and goes
- # [00:51] <Philip`> gsnedders: You should play TF2! I must have spent well over three hundred hours on it, which is pretty good value for money
- # [00:51] <Hixie> Philip`: indeed
- # [00:51] <Hixie> bbiab
- # [00:52] <gsnedders> karlcow: Molly sends a hug and kiss, FWIW
- # [00:55] <karlcow> yeeeha
- # [00:56] * karlcow wonders if gsnedders goes to bed with Molly. hmmmm no no don't answer. TMI
- # [01:01] * Quits: eric_carlson (n=ericc@nat/apple/x-44acb97d81ea35fd)
- # [01:22] * Joins: ehird (n=ehird@208.78.103.223)
- # [01:22] <ehird> Am I to assume you guys have seen the source of http://www.apple.com/safari/?
- # [01:22] <ehird> (Hint: it's html5. It uses header, nav, section, all those things, too, not just the doctype.)
- # [01:24] <Philip`> It's not even valid, though :-(
- # [01:25] * Quits: slightlyoff (n=slightly@nat/google/x-d9d974bd025e9149)
- # [01:25] <ehird> Philip`: The header looks controled by the site-wide CMS.
- # [01:25] <roc> anyone here got IE8 handy to try a testcase for me?
- # [01:25] <ehird> Even so, wow. Oh, wait, I forgot, we have to wait until 2012. Nevermind, HTML5 isn't ready yet.
- # [01:27] <Philip`> roc: I have a possibly slightly old ("RC1" apparently) copy of IE8
- # [01:27] <roc> how about for me *and* dhyatt?
- # [01:27] <roc> http://software.hixie.ch/utilities/js/live-dom-viewer/saved/18
- # [01:27] <roc> hmm, that may need to be massaged to trigger IE8 standards mode
- # [01:27] <roc> give it a standards-mode doctype
- # [01:28] <roc> then, when you scroll down, at the bottom there should be a yellow background, with "hello world" in black drawing over it, and with "This text overlaps" on top of that.
- # [01:29] <roc> the question is ... is the scrollbar under or over the yellow background?
- # [01:29] <roc> thx
- # [01:29] <Philip`> roc: The scrollbar is hidden behind the yellow background
- # [01:30] <roc> ok
- # [01:30] <roc> the "hello world" is visible over the yellow background?
- # [01:30] <Philip`> Yes
- # [01:30] <Philip`> overlapping the word "This"
- # [01:30] <roc> great thanks
- # [01:31] * jwalden should install IE8 on his Windows box
- # [01:31] <jwalden> after I finish debugging this patch :-)
- # [01:31] <Philip`> Compatibility View has the scrollbar and the "Hello world" text all behind the yellow background
- # [01:31] <Philip`> (as does quirks mode)
- # [01:35] * Quits: dglazkov (n=dglazkov@nat/google/x-6a3499ded3fddb04)
- # [01:36] * weinig is now known as weinig|away
- # [01:39] <roc> yeah thanks
- # [01:39] * Quits: jwalden (n=waldo@corp-246.mountainview.mozilla.com) ("->K")
- # [01:40] * Quits: tndH (n=Rob@james-baillie-pc083-014.student-halls.leeds.ac.uk) ("ChatZilla 0.9.84-rdmsoft [XULRunner 1.9.0.1/2008072406]")
- # [01:40] * Joins: MikeSmith (n=MikeSmit@EM114-48-139-96.pool.e-mobile.ne.jp)
- # [01:50] * Joins: dimich_ (n=dimich@72.14.227.1)
- # [01:50] * Joins: jwalden (n=waldo@corp-246.mountainview.mozilla.com)
- # [01:54] * Quits: danbri (n=danbri@unaffiliated/danbri)
- # [01:56] * Quits: dolske (n=dolske@firefox/developer/dolske)
- # [02:00] * Quits: virtuelv_ (n=virtuelv@mic92-9-82-236-193-123.fbx.proxad.net) (Read error: 110 (Connection timed out))
- # [02:03] * Quits: bgalbraith (n=bgalbrai@mobile-166-214-057-167.mycingular.net) (Read error: 110 (Connection timed out))
- # [02:05] * Quits: xcombelle (n=chatzill@AToulouse-158-1-155-201.w90-60.abo.wanadoo.fr) (Remote closed the connection)
- # [02:05] * Quits: dimich (n=dimich@72.14.227.1) (Read error: 110 (Connection timed out))
- # [02:06] * Joins: nessy (n=nessy@124-171-34-59.dyn.iinet.net.au)
- # [02:19] * Quits: MikeSmith (n=MikeSmit@EM114-48-139-96.pool.e-mobile.ne.jp) ("Tomorrow to fresh woods, and pastures new.")
- # [02:19] * Joins: bgalbraith (n=bgalbrai@32.179.17.5)
- # [02:21] * weinig|away is now known as weinig
- # [02:27] * Quits: bgalbraith (n=bgalbrai@32.179.17.5)
- # [02:34] * Joins: dolske (n=dolske@corp-246.mountainview.mozilla.com)
- # [02:42] * Quits: othermaciej_ (n=mjs@c-69-181-43-20.hsd1.ca.comcast.net)
- # [03:04] * Joins: xcombelle (n=chatzill@AToulouse-158-1-155-201.w90-60.abo.wanadoo.fr)
- # [03:09] * Joins: hallvors (n=hallvord@pat-tdc.opera.com)
- # [03:13] * Quits: smedero (n=smedero@pia145-154.pioneernet.net)
- # [03:14] * Joins: annevk (n=annevk@fnttkyo029007.tkyo.fnt.ftth2.ppp.infoweb.ne.jp)
- # [03:14] * Quits: dave_levin (n=dave_lev@72.14.227.1)
- # [03:16] <Hixie> a <section> in a <header>? sheesh
- # [03:17] <Hixie> html5 being abused already :-(
- # [03:17] <Hixie> oh lord, an <h3> in a <footer>, too
- # [03:24] * Joins: smedero (n=smedero@pia145-154.pioneernet.net)
- # [03:24] * Quits: smedero (n=smedero@pia145-154.pioneernet.net) (Client Quit)
- # [03:25] <annevk> Hixie, who is wm?
- # [03:25] <Hixie> wellington
- # [03:25] <Hixie> he pointed out the problem in #content on irc.mozilla.org
- # [03:25] <annevk> ta
- # [03:27] <jcranmer> you can lead a web developer to semantic paradise, but you can't make him write it :-)
- # [03:28] <Hixie> i love that when i edit the websocket part of the spec, the ID gets automatically updated and submitted
- # [03:33] * Joins: MikeSmith (n=MikeSmit@EM114-48-176-36.pool.e-mobile.ne.jp)
- # [03:47] * Joins: eric_carlson (n=ericc@adsl-67-112-12-110.dsl.anhm01.pacbell.net)
- # [03:50] * Quits: dimich_ (n=dimich@72.14.227.1)
- # [03:51] <annevk> yum, Google Search Appliance reminds me of cheese
- # [03:52] * Joins: dave_levin (n=dave_lev@c-98-203-247-78.hsd1.wa.comcast.net)
- # [04:00] * Quits: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [04:01] * Parts: hallvors (n=hallvord@pat-tdc.opera.com)
- # [04:02] * Quits: xcombelle (n=chatzill@AToulouse-158-1-155-201.w90-60.abo.wanadoo.fr) (Remote closed the connection)
- # [04:15] * Joins: dglazkov (n=dglazkov@c-98-207-88-44.hsd1.ca.comcast.net)
- # [04:19] * Joins: dglazkov_ (n=dglazkov@72.14.224.1)
- # [04:22] * Joins: bgalbraith (n=bgalbrai@mobile-166-214-040-202.mycingular.net)
- # [04:23] * Quits: dglazkov (n=dglazkov@c-98-207-88-44.hsd1.ca.comcast.net) (Read error: 60 (Operation timed out))
- # [04:43] <takkaria> crikey, this accessibility hoo-haa over canvas is saddening
- # [04:44] <takkaria> it seems to follow from the idea that all content should be equivalent across viewing media
- # [04:45] <takkaria> s/viewing//; I guess
- # [04:46] <takkaria> but the kinds of things that canvas is there for seem to be basically stuff that can't be equivalent across media
- # [04:52] <roc> I wonder why accessibility people haven't shut down the entire games industry
- # [04:53] * Quits: dolske (n=dolske@firefox/developer/dolske)
- # [04:56] * Joins: dolske (n=dolske@corp-246.mountainview.mozilla.com)
- # [04:59] * Quits: dolske (n=dolske@firefox/developer/dolske) (Client Quit)
- # [05:15] * Quits: dbaron (n=dbaron@corp-246.mountainview.mozilla.com) ("8403864 bytes have been tenured, next gc will be global.")
- # [05:17] <annevk> http://280atlas.com/ is pretty cool
- # [05:19] <heycam> annevk, you have "© 2003-2008" at the bottom of annevankesteren.nl. i guess it should be 2009?
- # [05:19] * Quits: annevk (n=annevk@fnttkyo029007.tkyo.fnt.ftth2.ppp.infoweb.ne.jp) (Remote closed the connection)
- # [05:19] * Joins: annevk (n=annevk@fnttkyo029007.tkyo.fnt.ftth2.ppp.infoweb.ne.jp)
- # [05:19] <heycam> i couldn't play the video properly on 280atlas.com, so i have no idea what the site does :/
- # [05:20] <annevk> it's a WYSIWYG editor for applications
- # [05:20] <annevk> Web applications
- # [05:21] <heycam> so like the cocoa Interface Builder plus a way to add script or something?
- # [05:21] <karlcow> annevk: indeed super impressive. The world of visual basic finally on the Web, with all the bad/good things of it ;)
- # [05:21] <karlcow> heycam: yes
- # [05:21] <heycam> sounds nifty
- # [05:24] <heycam> annevk, in case you missed it just before your irc closed: http://krijnhoetmer.nl/irc-logs/whatwg/20090225#l-184
- # [05:24] <annevk> ah
- # [05:25] * Joins: tantek (n=tantek@adsl-99-137-128-33.dsl.snfc21.sbcglobal.net)
- # [05:25] * Quits: tantek (n=tantek@adsl-99-137-128-33.dsl.snfc21.sbcglobal.net) (Remote closed the connection)
- # [05:29] <annevk> ta, fixed
- # [05:30] * Joins: tantek (n=tantek@adsl-99-137-128-33.dsl.snfc21.sbcglobal.net)
- # [05:41] * Quits: roc (n=roc@202.0.36.64)
- # [05:45] <annevk> heycam, btw, for SVG you could just say that for all SVG elements transform-origin has a different default value, no?
- # [05:46] <annevk> heycam, just like HTML elements have some default style
- # [05:46] <heycam> annevk, yes that could be said
- # [05:46] <heycam> might be confusing though, having some elements (HTML ones) using the centre as the origin, while SVG elements use the viewport origin
- # [05:47] <annevk> with "viewport origin" you mean the x,y of the outermost SVG <svg> element?
- # [05:47] <heycam> i think we will likely make transform a property in SVG, so that we can reuse/unify CSS transforms
- # [05:47] <heycam> annevk, not the outermost, but the closest ancestor
- # [05:47] <annevk> k
- # [05:48] <annevk> ideally transforms are the same in CSS/SVG/<canvas>
- # [05:48] <heycam> yep
- # [05:48] <annevk> with CSS having transforms that affect layout in addition, I suppose
- # [05:49] <heycam> svg definitely needs to have viewport-origin or some way of easily rotating objects about their centre points
- # [05:58] * Quits: tantek (n=tantek@adsl-99-137-128-33.dsl.snfc21.sbcglobal.net)
- # [06:02] * Quits: MikeSmith (n=MikeSmit@EM114-48-176-36.pool.e-mobile.ne.jp) ("Tomorrow to fresh woods, and pastures new.")
- # [06:03] * Joins: MikeSmith (n=MikeSmit@dhcp-246-117.mag.keio.ac.jp)
- # [06:10] * Joins: dbaron (n=dbaron@c-98-234-51-190.hsd1.ca.comcast.net)
- # [06:20] * Quits: hdh (n=hdh@58.187.16.238) (Remote closed the connection)
- # [06:23] * Joins: dave_levin_ (n=dave_lev@72.14.224.1)
- # [06:28] * Joins: dave_levin__ (n=dave_lev@c-98-203-247-78.hsd1.wa.comcast.net)
- # [06:29] * Quits: dave_levin (n=dave_lev@c-98-203-247-78.hsd1.wa.comcast.net) (Read error: 104 (Connection reset by peer))
- # [06:35] * dave_levin__ is now known as dave_levin
- # [06:35] * Quits: heycam (n=cam@vpn-118-138-224-41.its.monash.edu.au) ("bye")
- # [06:38] * Quits: jwalden (n=waldo@corp-246.mountainview.mozilla.com) ("->home")
- # [06:44] * Quits: dave_levin_ (n=dave_lev@72.14.224.1) (Read error: 110 (Connection timed out))
- # [06:48] * Quits: weinig (n=weinig@adsl-99-140-60-47.dsl.scrm01.sbcglobal.net)
- # [06:56] * Joins: eric_carlson_ (n=ericc@adsl-67-112-12-110.dsl.anhm01.pacbell.net)
- # [07:01] * Joins: jwalden (n=waldo@c-76-102-160-171.hsd1.ca.comcast.net)
- # [07:05] * Joins: dglazkov (n=dglazkov@c-98-207-88-44.hsd1.ca.comcast.net)
- # [07:07] * Quits: eric_carlson (n=ericc@adsl-67-112-12-110.dsl.anhm01.pacbell.net) (Read error: 110 (Connection timed out))
- # [07:12] * Quits: dglazkov (n=dglazkov@c-98-207-88-44.hsd1.ca.comcast.net)
- # [07:14] * Joins: heycam (n=cam@124-168-12-212.dyn.iinet.net.au)
- # [07:22] * olliej is now known as fakeolliej
- # [07:25] * Quits: dglazkov_ (n=dglazkov@72.14.224.1) (Read error: 110 (Connection timed out))
- # [07:31] * Joins: eric_carlson (n=ericc@adsl-67-112-12-110.dsl.anhm01.pacbell.net)
- # [07:34] * Joins: dolske (n=dolske@c-76-103-40-203.hsd1.ca.comcast.net)
- # [07:41] * Quits: eric_carlson_ (n=ericc@adsl-67-112-12-110.dsl.anhm01.pacbell.net) (Read error: 110 (Connection timed out))
- # [07:41] * Joins: bgalbraith_ (n=bgalbrai@mobile-166-214-228-255.mycingular.net)
- # [07:54] * Quits: doublec (n=doublec@li30-216.members.linode.com) ("Caught signal 6, Aborted")
- # [07:56] * Joins: doublec (n=doublec@li30-216.members.linode.com)
- # [07:57] * Joins: danbri (n=danbri@unaffiliated/danbri)
- # [07:58] * Quits: bgalbraith (n=bgalbrai@mobile-166-214-040-202.mycingular.net) (Read error: 110 (Connection timed out))
- # [07:59] * Joins: ap (n=ap@194.154.88.43)
- # [08:08] * Quits: bgalbraith_ (n=bgalbrai@mobile-166-214-228-255.mycingular.net)
- # [08:20] * Joins: zalan (n=kvirc@catv-89-133-232-199.catv.broadband.hu)
- # [08:22] * Joins: roc (n=roc@121-72-173-196.dsl.telstraclear.net)
- # [08:29] * Joins: pergj (n=pergj@home.kvaleberg.no)
- # [08:31] * Joins: pesla (n=retep@procurios.xs4all.nl)
- # [08:39] * Quits: dbaron (n=dbaron@c-98-234-51-190.hsd1.ca.comcast.net) ("8403864 bytes have been tenured, next gc will be global.")
- # [08:49] * Joins: Maurice (n=ano@a80-101-46-164.adsl.xs4all.nl)
- # [08:52] <annevk> http://twitter.com/Stormchild/statuses/1248400981
- # [08:54] * Joins: pauld (n=pauld@92.40.182.224.sub.mbb.three.co.uk)
- # [09:06] * Quits: danbri (n=danbri@unaffiliated/danbri)
- # [09:07] * Joins: tndH (n=Rob@james-baillie-pc083-014.student-halls.leeds.ac.uk)
- # [09:09] * Joins: danbri (n=danbri@193.72.18.170)
- # [09:14] * Quits: MikeSmith (n=MikeSmit@dhcp-246-117.mag.keio.ac.jp) ("Tomorrow to fresh woods, and pastures new.")
- # [09:15] * Joins: virtuelv (n=virtuelv@APuteaux-155-1-70-137.w90-2.abo.wanadoo.fr)
- # [09:18] * Joins: pauld_ (n=pauld@92.40.115.116.sub.mbb.three.co.uk)
- # [09:27] * Quits: pauld_ (n=pauld@92.40.115.116.sub.mbb.three.co.uk)
- # [09:29] * Quits: danbri (n=danbri@unaffiliated/danbri) (Read error: 113 (No route to host))
- # [09:30] * Joins: danbri (n=danbri@195.70.5.235)
- # [09:36] <Hixie> shockingly, despite a browser having come out today, my site has stayed up
- # [09:38] * Quits: danbri (n=danbri@unaffiliated/danbri) ("going back to danbri.org")
- # [09:40] * Quits: pauld (n=pauld@92.40.182.224.sub.mbb.three.co.uk) (Read error: 110 (Connection timed out))
- # [09:42] * Joins: MikeSmith (n=MikeSmit@dhcp-246-117.mag.keio.ac.jp)
- # [09:56] * Joins: pesla\work (n=retep@procurios.xs4all.nl)
- # [10:03] * Quits: MikeSmith (n=MikeSmit@dhcp-246-117.mag.keio.ac.jp) ("Tomorrow to fresh woods, and pastures new.")
- # [10:09] * Quits: pesla (n=retep@procurios.xs4all.nl) (Read error: 110 (Connection timed out))
- # [10:09] * Joins: zcorpan_ (n=zcorpan@c83-252-203-80.bredband.comhem.se)
- # [10:14] * Quits: pergj (n=pergj@home.kvaleberg.no) ("Ex-Chat")
- # [10:20] * Quits: zcorpan_ (n=zcorpan@c83-252-203-80.bredband.comhem.se) (Read error: 60 (Operation timed out))
- # [10:21] * Joins: pergj (n=pergj@home.kvaleberg.no)
- # [10:26] * Joins: srushe (n=srushe@81.130.239.199)
- # [10:32] * Joins: ROBOd (n=robod@89.122.216.38)
- # [10:38] <Lachy> Hixie, can you provide a way to turn off that new floating status box in the spec? I'm finding it really irritating
- # [10:38] <Hixie> oh?
- # [10:38] <Hixie> why is it irritating?
- # [10:39] <Lachy> because it doesn't scroll along with everything else and is distracting
- # [10:40] <Hixie> is there some way i can make it less distracting while still making the information available?
- # [10:41] <Lachy> well, one thing you could do is either make them narrower, or increase the left margin on the green element summary boxes, so they don't overlap the edge of them.
- # [10:41] <annevk> maybe only show it after scrolling has finished?
- # [10:43] * Joins: zcorpan (n=zcorpan@c83-252-203-80.bredband.comhem.se)
- # [10:43] <zcorpan> hsivonen: "Error: Required attributes missing on element script." for <script type="text/javascript" charset="utf-8"> ... </script>
- # [10:43] <Philip`> zcorpan: src is missing
- # [10:44] * Joins: pauld (n=pauld@92.40.122.231.sub.mbb.three.co.uk)
- # [10:44] <Lachy> Hixie, maybe make them semi-transparent, and then opaque when they're hovered
- # [10:44] <zcorpan> hsivonen: it would be more helpful if it said that charset is not allowed if there's no src
- # [10:44] <hsivonen> zcorpan: thanks
- # [10:45] <Hixie> oh god, my cat turned on voiceover
- # [10:45] <Hixie> how the heck do you turn it off
- # [10:45] <Lachy> Hixie, in System Preferencs is the only way I know of
- # [10:45] <zcorpan> Hixie: ask the cat
- # [10:45] <Lachy> how did your cat turn it on?
- # [10:46] <Hixie> sat on the keyboard
- # [10:46] <Hixie> command-f5 apparently
- # [10:46] <Hixie> man what a horrifying experience when you're not expecting it
- # [10:46] <Hixie> ok what were y'all talking about
- # [10:46] * Hixie reads up
- # [10:48] <Hixie> annevk: it waits 100ms before showing already
- # [10:48] <Hixie> Lachy: green element summary boxes?
- # [10:49] <Hixie> i suppose i could hide it while scrolling is happening
- # [10:49] <Hixie> and fade it back in
- # [10:50] <annevk> transitions ftw
- # [10:50] <Lachy> Hixie, these big green boxes that summarise the elements http://www.whatwg.org/specs/web-apps/current-work/#the-html-element
- # [10:51] <Hixie> ooh, hmm
- # [10:52] <Hixie> ok let me poke around the css a bit
- # [10:52] <Hixie> this'll give me an opportunity to play with the new transition css stuff, too
- # [10:52] <Hixie> just gonna listen to a bit more developer's commentary in hl2ep2 first
- # [10:53] <zcorpan> Hixie: "I'm not familiar with the Shims browser and didn't find anything worthwhile about it." - http://forums.whatwg.org/viewtopic.php?t=4050#4821
- # [10:53] <Hixie> -_-
- # [10:53] <Hixie> any idea what else to call it?
- # [10:53] <Hixie> Plugins maybe?
- # [10:53] <zcorpan> what do you mean with it?
- # [10:53] <Lachy> Hixie, .status { opacity: .4; -o-transition: 1s; -webkit-transition: 1s; } .status:hover { opacity: 1; }
- # [10:54] <Hixie> it's supposed to be for anything that's not a browser that might help, JS libraries, Gears-like plugins, IE add-ons, whatever
- # [10:54] * Quits: dave_levin (n=dave_lev@c-98-203-247-78.hsd1.wa.comcast.net)
- # [10:54] <zcorpan> Hixie: how about "JS libraries, plugins, etc"
- # [10:55] <Lachy> Hixie, where is the new Shims icon? I can't see it in any of the status boxes
- # [10:55] <Hixie> zcorpan: too long
- # [10:55] <annevk> Shims? wtf
- # [10:55] <Hixie> zcorpan: well
- # [10:55] <Hixie> zcorpan: i guess not
- # [10:55] <Hixie> zcorpan: i can try
- # [10:55] <Hixie> thanks
- # [10:57] * Quits: zcorpan (n=zcorpan@c83-252-203-80.bredband.comhem.se)
- # [11:08] * Joins: pauld_ (n=pauld@92.40.189.142.sub.mbb.three.co.uk)
- # [11:09] * Quits: pauld_ (n=pauld@92.40.189.142.sub.mbb.three.co.uk) (Client Quit)
- # [11:10] * Quits: pauld (n=pauld@92.40.122.231.sub.mbb.three.co.uk) (Read error: 60 (Operation timed out))
- # [11:16] * Joins: pauld (n=pauld@92.40.251.20.sub.mbb.three.co.uk)
- # [11:17] * Quits: pauld (n=pauld@92.40.251.20.sub.mbb.three.co.uk) (Client Quit)
- # [11:18] * Joins: pauld (n=pauld@92.40.124.46.sub.mbb.three.co.uk)
- # [11:23] * Parts: annevk (n=annevk@fnttkyo029007.tkyo.fnt.ftth2.ppp.infoweb.ne.jp)
- # [11:25] * Joins: mpt__ (n=mpt@canonical/launchpad/mpt)
- # [11:26] * Quits: Lachy (n=Lachlan@85.196.122.246) ("This computer has gone to sleep")
- # [11:28] * Quits: pauld (n=pauld@92.40.124.46.sub.mbb.three.co.uk)
- # [11:41] * Quits: mpt_ (n=mpt@nat/canonical/x-0480c058b5a7125a) (Read error: 113 (No route to host))
- # [11:47] * Joins: Lachy (n=Lachlan@pat-tdc.opera.com)
- # [11:48] * Parts: erlehmann (n=erlehman@86.59.25.121)
- # [12:00] <hsivonen> wow. I wrote an interesting bug: the characters in foster-parented text are rotated right by one
- # [12:00] <hsivonen> so "bar" becomes "rba"
- # [12:00] <nessy> don't apply that to real people
- # [12:04] <karlcow> hsivonen: already done by marketing people… :) fcuk
- # [12:12] * mpt__ is now known as mpt
- # [12:13] * Quits: roc (n=roc@121-72-173-196.dsl.telstraclear.net)
- # [12:21] * Joins: xydyx (n=hdh@58.187.18.113)
- # [12:35] * Joins: zcorpan (n=zcorpan@c83-252-203-80.bredband.comhem.se)
- # [12:46] * Quits: zcorpan (n=zcorpan@c83-252-203-80.bredband.comhem.se) (Read error: 60 (Operation timed out))
- # [12:58] <hsivonen> was there a reason why the spec chose to do the taint management thing like Gecko does instead of doing the per flush tainting like WebKit does?
- # [12:58] <Lachy> Hixie, I just got an undeliverable mail error when trying to reply to a thread on whatwg. Has something gone wrong with the mailing list?
- # [12:59] <Hixie> not to my knowledge, what does the message say exactly?
- # [12:59] <Lachy> I'll forward you a copy
- # [13:00] <Lachy> sent.
- # [13:05] * Joins: pesla (n=retep@78-27-53-137.dsl.alice.nl)
- # [13:06] * Joins: myakura (n=myakura@p3020-ipbf505marunouchi.tokyo.ocn.ne.jp)
- # [13:13] * Quits: pesla (n=retep@78-27-53-137.dsl.alice.nl) (Read error: 60 (Operation timed out))
- # [13:23] * Quits: pesla\work (n=retep@procurios.xs4all.nl) (Read error: 110 (Connection timed out))
- # [13:23] <Hixie> Lachy: looks like the mail server in question ran out of disk space, i expect dreamhost will fix it in due course
- # [13:28] <Lachy> ok
- # [13:30] <Hixie> i filed a support ticket just in case
- # [13:30] <Hixie> thanks
- # [13:31] <Hixie> btw try the spec now
- # [13:31] <Hixie> is it still as distracting?
- # [13:33] <Lachy> that's much better. I like how the floating status box doesn't overlap any of the non-floating status boxes any more
- # [13:33] <Lachy> except, I still don't like how they're overlapping the edge of the green element description boxes.
- # [13:34] * Joins: yecril71 (n=giecrilj@piekna-gts.2a.pl)
- # [13:35] <Hixie> yeah the green thing is next
- # [13:35] <yecril71> events in 1923 are already covered, and table of Roman emperors is Wikipedia-specific.
- # [13:36] <Lachy> eek, resizing my browser now with the spec open makes it hang for about 10 seconds
- # [13:36] <Lachy> not sure if that's anything to do with the scripts or just the size of it
- # [13:37] * yecril71 has to wait about 90 sec until he can click out to multipage
- # [13:39] * Joins: rubys (n=rubys@cpe-075-182-092-038.nc.res.rr.com)
- # [13:41] <Hixie> Lachy: calculations for resizing are deferred until 500ms after you stop resizing, so it shouldn't be the script
- # [13:41] <Hixie> yecril71: use http://whatwg.org/html5 as the direct link
- # [13:42] <yecril71> Tell it to W3C.
- # [13:42] <Hixie> ?
- # [13:42] <Hixie> what's the w3c got to do with it
- # [13:42] <yecril71> The spec stored at W3C, in its status section, refers to the single page document.
- # [13:43] <Hixie> so don't read the w3c one :-) it's always going to be slightly more out of date anyway
- # [13:43] <yecril71> I don’t.
- # [13:44] <yecril71> Just the click path for W3C users goes through single-page.
- # [13:44] <Lachy> so?
- # [13:44] <Hixie> i thought you said YOU had to wait 90 seconds
- # [13:44] <yecril71> So,
- # [13:45] <yecril71> Me and the handicapped 60% of the world.
- # [13:45] <Lachy> wtf?
- # [13:45] <yecril71> The people using MSIE.
- # [13:45] <rubys> lol
- # [13:45] <Lachy> yecril71, just load the single or multipage version directly. Don't even try using IE to read teh sepc
- # [13:45] <Lachy> *the spec
- # [13:46] <Hixie> yecril71: i thought you said you didn't read the w3c version.
- # [13:46] <yecril71> I do not.
- # [13:46] <Hixie> so why do you have to wait 90 seconds?
- # [13:46] <yecril71> For the WHATWG version to become clickable.
- # [13:47] <Lachy> Hixie, the floating status box doesn't seem to be working in Opera
- # [13:47] <Hixie> yecril71: why do you go through the single page version?
- # [13:47] <yecril71> Because this is what the W3C version advises to use.
- # [13:48] <yecril71> I am trying to show you the experience of a first-time surfer.
- # [13:48] <Hixie> ok, i am hereby giving you better advice: use http://whatwg.org/html5
- # [13:48] <Lachy> wtf? Why does the W3C version matter if you're not looking at it?
- # [13:48] <yecril71> Give that advice to W3C.
- # [13:48] <yecril71> The W3C version matters because it can be used to go to WHATWG.
- # [13:49] <yecril71> And the W3C version matters because it is stored in the central repository
- # [13:49] <yecril71> for Web technology documents.
- # [13:49] <Hixie> i should stick some google analytics into the spec and see what browsers people really use on the spec
- # [13:49] <Hixie> yecril71: ok, i've updated the link
- # [13:49] <yecril71> Thx
- # [13:53] <hsivonen> whoa! IE8 behavior in cases where I expected foster parenting surprises me
- # [13:53] <Lachy> Hixie, I can't figure out why the status box isn't showing in Opera. there doesn't seem to be any script errors and the CSS looks fine
- # [13:53] <jgraham> Hixie: The load time of the spec is already abysmal without adding in google-cruft
- # [13:53] <hsivonen> apparently the IE8 mode does not foster parent
- # [13:53] <hsivonen> neither in the DOM nor in the CSS box tree
- # [13:54] <Hixie> it creates fake captions
- # [13:54] <Hixie> whose tagname is ''
- # [13:54] <Hixie> iirc
- # [13:54] <Lachy> Hixie, doesn't the Dreamhost panel give you sufficient statistics to get a rough idea, without using google analyitics?
- # [13:54] <Hixie> jgraham: yeah that's the main reason i haven't added anything
- # [13:54] <Hixie> Lachy: that doesn't give me the numbers of the w3c copy
- # [13:55] <hsivonen> and Opera is visually compatible with the IE 5.5 mode
- # [13:55] <hsivonen> Hixie: this whole tainting business seems less and less useful
- # [13:55] <yecril71> The copy at W3C is readable.
- # [13:55] <yecril71> The problem with it is that it is not the latest, of course.
- # [13:56] <Hixie> hsivonen: oh?
- # [13:56] <hsivonen> Hixie: I'll send email
- # [13:56] <Hixie> k
- # [13:57] * Quits: nessy (n=nessy@124-171-34-59.dyn.iinet.net.au) ("This computer has gone to sleep")
- # [13:59] <Hixie> Lachy: i don't know either. it works in firefox and safari, no error messages in opera.
- # [13:59] <Hixie> the editing also seems to not work
- # [14:00] <Hixie> in fact clicking anywhere doesn't seem to work
- # [14:00] <Hixie> wtf
- # [14:09] * Quits: myakura (n=myakura@p3020-ipbf505marunouchi.tokyo.ocn.ne.jp) ("Leaving...")
- # [14:09] * Joins: pauld (n=pauld@217.39.2.13)
- # [14:16] * Joins: myakura (n=myakura@p3020-ipbf505marunouchi.tokyo.ocn.ne.jp)
- # [14:20] * Joins: yael (i=c0647cdb@gateway/web/ajax/mibbit.com/x-abb714478e4ab9e2)
- # [14:21] <Hixie> Lachy: well the boxes no longer overlap the element green boxes anymore... technically...
- # [14:22] <Hixie> i'm actually mildly impressed with myself for the currently look
- # [14:22] <Hixie> not because it looks particularly cool
- # [14:22] <Hixie> but because it's non-trivial to get that effect using css :-)
- # [14:22] <Hixie> or rather, non-obvious
- # [14:24] * Quits: myakura (n=myakura@p3020-ipbf505marunouchi.tokyo.ocn.ne.jp) ("Leaving...")
- # [14:25] * Quits: pauld (n=pauld@217.39.2.13)
- # [14:25] * Joins: remi (n=remi@unaffiliated/remi)
- # [14:26] <Hixie> holy crap, it even worked as is in opera and firefox without my having to do anything
- # [14:26] <Hixie> go standards!
- # [14:26] <Hixie> (i developed it in webkit)
- # [14:28] <jgraham> Hixie: The status blox blinking in and out of slight is really quite annoying.
- # [14:28] <jgraham> *box
- # [14:28] <rubys> slight? <grin>
- # [14:29] <jgraham> :p
- # [14:31] <Hixie> aw man, y'all are hard to please
- # [14:31] <Hixie> lachy said it was annoying when it stayed there
- # [14:32] <jgraham> Hixie: Would it fade in and out if I found a CSS transitions capable browser?
- # [14:32] <Hixie> yeah
- # [14:32] <Hixie> i assume you have firefox
- # [14:32] <Hixie> in opera it doesn't appear at all for some reason
- # [14:32] <jgraham> Oh well I guess I could do that then
- # [14:32] <Lachy> Hixie, have you seen how it looks in Firefox now? It looks broken
- # [14:33] <Hixie> Lachy: does it look different than other browsers?
- # [14:33] <rubys> Just so I understand what we are talking about, we are talking about the box on the left in places such as here: http://www.whatwg.org/specs/web-apps/current-work/multipage/dom.html#sectioning-content
- # [14:33] <Hixie> Lachy: i didn't say it was pretty...
- # [14:33] <Hixie> rubys: yeah, though it now stays on the left wherever you are
- # [14:33] <Lachy> I think WebKit showed the effect you were trying to achieve, with the heading sticking out to the left a little
- # [14:34] * Hixie looks at firefox again
- # [14:34] <Hixie> my gecko trunk build shows it exactly almost pixel for pixel like my webkit trunk build
- # [14:34] <Hixie> are you using some old version of firefox?
- # [14:34] <Lachy> Firefox 3 is broken
- # [14:34] <Hixie> oh well yes, firefox 3 is ancient
- # [14:34] <Hixie> doesn't have abs pos generated content
- # [14:35] <Hixie> i suppose you're going to say i should support the latest official release huh
- # [14:35] <Lachy> well, I don't like using an unstable browser for general use
- # [14:35] <Hixie> ff3 is far less stable than ff trunk imho :-)
- # [14:35] <Lachy> although, it's probably stable enough to start using minefield now
- # [14:35] <rubys> I found that confusing for other reasons. The implementation status is vacant, though if I view the screen from a rather oblique angle I can see that there are supposed to be icons there. The links (e.g. zcorpan) say not implemented, and I have no idea what the triangle at the bottom means.
- # [14:36] <rubys> Of course, it could be that the problem is that I'm using FF 3.0.6.
- # [14:36] <Hixie> rubys: the triangle at the bottom means your browser doesn't support positioned generated content (probably, like lachy, an old firefox build like ff3)
- # [14:36] <Hixie> rubys: the icons being not visible means the browsers don't implement the feature
- # [14:37] <Hixie> rubys: and the links with the people's names give the names of the last person to edit the data, and the link is supposed to show the history, but i haven't implemented that yet
- # [14:37] <Hixie> i guess i can make them not links for now
- # [14:37] <Lachy> In Opera, it looks a little better than FF3, but not quite as good as WebKit
- # [14:37] <rubys> to me, an icon with a red x over it would be clearer... I don't know how to interpret a vacant area
- # [14:37] <hsivonen> Hixie: to amend my email: as far as I can tell, the only case where taint helps is foo<!-- --> <!-- -->bar which isn't exactly the most important concern
- # [14:38] <Hixie> hsivonen: taint was intended to help <table> <tr> <td> vs <table>x y<tr>x y<td>
- # [14:38] <rubys> Any thoughts on what more could be done to prevent h3's in footers?
- # [14:38] <hsivonen> Hixie: the WebKit solution addresses that case
- # [14:38] <Lachy> Hixie, why don't you lost the fancy border and return to having a straight edge that was there before?
- # [14:39] <Hixie> Lachy: because then it would overlap the box like you didn't like
- # [14:39] * Joins: myakura (n=myakura@p3020-ipbf505marunouchi.tokyo.ocn.ne.jp)
- # [14:39] <Hixie> rubys: not sure how to render a red cross using css
- # [14:39] <Lachy> can't you just indent the whole thing?
- # [14:39] <Lachy> why does the heading need to be indented less than the rest?
- # [14:39] <Hixie> Lachy: i can't indent the <h4> because i don't have :matches() in selectors
- # [14:40] <Hixie> Lachy: the class="element" element comes after the heading
- # [14:40] <Lachy> oh, ok. either I have to put up with overlapping or a wonky edge?!
- # [14:42] * Joins: pauld (n=pauld@217.39.2.13)
- # [14:43] <Lachy> Hixie, the other alternative is to make the status boxes slightly narrower instead
- # [14:44] <Lachy> although, perhaps that depends on the width of the icons inside them
- # [14:44] <Lachy> hmm. I will think about it and find a solution later
- # [14:45] <Hixie> hsivonen: at the cost of preventing incremental text, yeah. that was an invariant i was trying not to violate. but i guess maybe we should violate it.
- # [14:46] <jgraham> rubys: Of course we can't break apple.com so we have probably already lost that battle...
- # [14:47] <Hixie> Lachy: i can't make them narrower now that we have five icons without making them disproportionally tall
- # [14:47] <Hixie> Lachy: and making the margin wider, the other option, is something i'd rather avoid
- # [14:47] <Hixie> holy crap, even IE8 renders the wonky borders correctly
- # [14:47] <Hixie> go standards indeed
- # [14:48] <Hixie> IE8 actually handles the spec pretty well compared to earlier versions
- # [14:48] * Quits: pauld (n=pauld@217.39.2.13)
- # [14:49] <hsivonen> Hixie: I think it's ok to violate the incremental text assumption when the element on the stack is table, thead, tbody, tfoot or tr
- # [14:50] <hsivonen> at least for now, I'm not doing incremental text at all
- # [14:50] <Hixie> hm i guess i could buy that
- # [14:50] <Hixie> Lachy: these wonky borders are kinda growing on me
- # [14:51] <Lachy> loading the spec in IE8 is an extremely painful process
- # [14:51] <Hixie> really? wasn't that bad for me
- # [14:51] <Lachy> it's so slow and unresponsive
- # [14:51] <Hixie> and i'm in a low-memory VM
- # [14:51] * Quits: Maurice (n=ano@a80-101-46-164.adsl.xs4all.nl) ("Disconnected...")
- # [14:51] <Lachy> I always find IE slow and unresponsive on every machine I use it on, so it's not really a surprise
- # [14:57] * Joins: Maurice (n=ano@a80-101-46-164.adsl.xs4all.nl)
- # [14:59] <Philip`> hsivonen: Your public-html mail confuses Gmail's content-sensitive ads
- # [14:59] * Joins: zcorpan (n=zcorpan@pat.se.opera.com)
- # [15:00] <Philip`> "World's First Surrogacy Agency Helping make babies since 1979"
- # [15:00] <rubys> jgraham: do we have anybody here who works at apple? :-) I don't presume that apple.com is unchanging...
- # [15:00] <Philip`> "Shampooing a Toddler can be Tough. Lil'Rinser The Hair Washing Helper"
- # [15:01] <rubys> Philip`: another success story for NLP! <ducks>
- # [15:02] <Lachy> Philip`, I'm surprised you don't have an ad blocker enabled so you don't see google's ads.
- # [15:03] * Lachy can't handle using the web without an ad blocker these days. The number of ads everywhere is just too much
- # [15:03] <hsivonen> Philip`: Natural Language Processing FTW
- # [15:04] <Philip`> Lachy: I use Opera's content blocker thing, and I think I do block Google ads (because there was an incredibly irritating giant orange one on the MySQL site), but it doesn't work on Gmail
- # [15:04] <Lachy> really? Why not?
- # [15:05] <Philip`> Probably because they're not served the same way as normal Google ads
- # [15:05] * rubys finds ThunderBird to be pleasantly ad-free
- # [15:05] * Philip` uses Thunderbird too, but prefers Gmail's web interface for mailing lists
- # [15:06] <Lachy> hmm, interesting. Opera's content blocker isn't blocking it for me either, but the AdBlock Firefox plugin does. I must have some differences between my filter lists
- # [15:07] * Philip` doesn't mind since the ones on Gmail are unintrusive
- # [15:07] <rubys> apparently not :-P
- # [15:08] <Philip`> Well, they're not completely invisible, and sometimes I look over in that direction to see how amusingly wrong it is :-)
- # [15:08] <Philip`> but they don't distract me when I'm trying to read mail
- # [15:09] <rubys> I also use gmail for other mailing lists (ASF), but for some reason not this one (yet).
- # [15:10] <rubys> I'm just pleased that I was finally able to stop using my employer provided email address on the W3C list.
- # [15:10] * Philip` also blocks Flash ads as a side-effect of not having worked out how to make the Flash plugin work in Opera
- # [15:11] * hsivonen hopes the inevitable canvas and SVG ads will be less annoying thanks to native integration with the browser event loop
- # [15:12] <Philip`> Don't forget <video>
- # [15:12] <Hixie> anyone know a css hack that targets firefox 3 but not ff trunk?
- # [15:12] <Philip`> I don't see why being integrated with the browser will make them less annoying - the content will be the same, and it's easy to make browsers go horribly slow when making them render animated stuff
- # [15:13] <Hixie> eh screw it, ff3.next will be out soon enough
- # [15:13] <Philip`> Hixie: <script>if(navigator.userAgent=='...')document.write('<style>...')</script>
- # [15:13] <Hixie> sadly this would have to be from within the css file
- # [15:13] <Hixie> i guess if people complain i'll add some script or something
- # [15:14] <Hixie> i'm going to bed now...
- # [15:14] <Hixie> nn
- # [15:14] <hsivonen> nn
- # [15:14] * Philip` complains
- # [15:16] * Quits: eric_carlson (n=ericc@adsl-67-112-12-110.dsl.anhm01.pacbell.net)
- # [15:18] <Philip`> (...just out of principle, not any personal need)
- # [15:22] * Quits: bzed (n=bzed@2001:6f8:118a:0:0:0:0:100) (Read error: 110 (Connection timed out))
- # [15:26] * Joins: taf2 (n=taf2@65.210.82.235)
- # [15:26] * Quits: taf2 (n=taf2@65.210.82.235) (Client Quit)
- # [15:35] * Joins: aroben (n=aroben@unaffiliated/aroben)
- # [15:36] * Joins: taf2 (n=taf2@65.210.82.235)
- # [15:37] <yecril71> Big red cross: <SPAN STYLE="FONT-SIZE: X-LARGE; COLOR: RED" >+</SPAN >
- # [15:37] * Joins: mat_t (n=mattomas@nat/canonical/x-eb944c5900b84744)
- # [15:46] <zcorpan> hsivonen: you have a test case that shows that ie8 doesn't do the foster-parent-emulation?
- # [15:50] * Joins: grimboy_ (n=grimboy@78-86-152-156.zone2.bethere.co.uk)
- # [15:50] * Joins: bzed (n=bzed@devel.recluse.de)
- # [15:51] <hsivonen> zcorpan: IIRC, <table>a<td>b</td>c</table>
- # [15:51] <hsivonen> zcorpan: with <!doctype html>
- # [15:51] <zcorpan> hsivonen: i get a and c above b in live dom viewer
- # [15:52] * hsivonen reopens the VM
- # [15:52] <zcorpan> with "no name" elements as parents of a and c
- # [15:52] <zcorpan> (that are styled as captions)
- # [15:53] <hsivonen> saved as #19
- # [15:55] * zcorpan sees "b" and "d" captioned
- # [15:55] <zcorpan> i.e. rendering order is a b d c e
- # [15:56] <zcorpan> hsivonen: regarding <style>, see my message in http://lists.whatwg.org/htdig.cgi/whatwg-whatwg.org/2008-March/014148.html
- # [15:56] <hsivonen> zcorpan: http://hsivonen.iki.fi/screen/ie8-no-foster-parent.png
- # [15:57] <zcorpan> hsivonen: weird
- # [15:57] * Philip` wonders if zcorpan has compatibility mode switched on
- # [15:58] <zcorpan> nope
- # [15:58] <Philip`> Oh, okay then
- # [15:58] <hsivonen> zcorpan: this is the build that shipped with the public beta of Windows 7
- # [15:58] * Quits: grimboy (n=grimboy@78-86-152-156.zone2.bethere.co.uk) (Read error: 110 (Connection timed out))
- # [15:58] <zcorpan> i have the rc1 build
- # [16:00] <zcorpan> i think the build that shipped with windows 7 was the partner preview build
- # [16:02] <zcorpan> hsivonen: i don't mind changing <table><style> parsing though
- # [16:05] * Quits: zcorpan (n=zcorpan@pat.se.opera.com)
- # [16:06] * Joins: weinig (n=weinig@adsl-99-140-60-47.dsl.scrm01.sbcglobal.net)
- # [16:19] * Joins: mstange (n=markus@pD957939E.dip0.t-ipconnect.de)
- # [16:19] * Joins: dglazkov (n=dglazkov@c-98-207-88-44.hsd1.ca.comcast.net)
- # [16:22] <yecril71> Philip`, do you have IE8 @hand?
- # [16:24] * Quits: Lachy (n=Lachlan@pat-tdc.opera.com) ("Leaving")
- # [16:24] * Joins: Lachy (n=Lachlan@213.236.208.247)
- # [16:26] <Philip`> yecril71: I don't
- # [16:44] * Parts: rubys (n=rubys@cpe-075-182-092-038.nc.res.rr.com)
- # [16:54] * Joins: Lachy_ (n=Lachlan@pat-tdc.opera.com)
- # [16:57] * Quits: karlcow (n=karl@modemcable202.32-81-70.mc.videotron.ca) ("O public road, I say back I am not afraid to leave you, yet I love you, you express me better than I can express myself.")
- # [17:00] * Joins: zcorpan_ (n=zcorpan@c83-252-203-80.bredband.comhem.se)
- # [17:00] * Quits: dglazkov (n=dglazkov@c-98-207-88-44.hsd1.ca.comcast.net)
- # [17:03] * gsnedders headdesks at karlcow
- # [17:04] * Quits: Maurice (n=ano@a80-101-46-164.adsl.xs4all.nl) ("Disconnected...")
- # [17:04] * Quits: Lachy (n=Lachlan@213.236.208.247) (Read error: 110 (Connection timed out))
- # [17:07] * Joins: eric_carlson (n=ericc@adsl-67-112-12-110.dsl.anhm01.pacbell.net)
- # [17:09] * Quits: zcorpan_ (n=zcorpan@c83-252-203-80.bredband.comhem.se) (Read error: 60 (Operation timed out))
- # [17:14] * Joins: dave_levin (n=dave_lev@c-98-203-247-78.hsd1.wa.comcast.net)
- # [17:16] * Joins: zcorpan_ (n=zcorpan@c83-252-203-80.bredband.comhem.se)
- # [17:26] * Quits: zcorpan_ (n=zcorpan@c83-252-203-80.bredband.comhem.se) (Read error: 60 (Operation timed out))
- # [17:26] * Joins: dglazkov (n=dglazkov@nat/google/x-713adc46171718fc)
- # [17:26] * Joins: zdobersek (n=zan@cpe-92-37-76-118.dynamic.amis.net)
- # [17:30] * Joins: zcorpan (n=zcorpan@c83-252-203-80.bredband.comhem.se)
- # [17:30] * Philip` notes in regards to Lachy_'s <![dD][oO][cC][tT][yY][pP][eE]\s+[hH][tT][mM][lL]\s*> complaint that the HTML5 spec itself said (until quite recently) "1) A U+003C LESS-THAN SIGN (<) character. 2) A U+0021 EXCLAMATION MARK (!) character. 3) A U+0044 LATIN CAPITAL LETTER D or U+0064 LATIN SMALL LETTER D character. ..."
- # [17:32] <Philip`> so at least the regexp is simpler than what the spec said (at least for people who understand regexps), which is admittedly a low bar but it's better than nothing :-)
- # [17:39] * Quits: myakura (n=myakura@p3020-ipbf505marunouchi.tokyo.ocn.ne.jp) ("Leaving...")
- # [17:43] * syp is now known as syp_
- # [17:43] <Lachy_> Philip`, the spec doesn't purport to be optimised for web developers, unlike the markup spec
- # [17:44] * Joins: syp (n=sypasche@83.219.116.238)
- # [17:45] * Quits: Lachy_ (n=Lachlan@pat-tdc.opera.com) ("Leaving")
- # [17:45] <Philip`> Lachy_: It does purport to be intended for them (among others)
- # [17:45] <Philip`> ("This specification is intended for authors of documents and scripts that use the features defined in this specificaton ...")
- # [17:46] * Philip` wonders if a specificaton is kind of like a megaton
- # [17:47] * Dashiva wonders if there exist specifications aren't intended for users of the specification
- # [17:47] <Philip`> Hixie: I don't care enough to send email, so if you don't miss this in the log then s/specificaton/specification/ in #audience
- # [17:49] <Philip`> Dashiva: How about e.g. http://www.w3.org/TR/xmlschema-1/ which looks like it's intended for maybe tool authors and not for normal people?
- # [17:50] <Philip`> (and the user-friendly stuff is split into a separate document which is not part of the specification)
- # [17:50] <syp> Hixie: I'm getting the unresponsive dialog script with Firefox 3.1/3.2 on the html5 spec. in status.js, findStatusByPosition the (high-low > 0) condition is never false.
- # [17:51] * Quits: zcorpan (n=zcorpan@c83-252-203-80.bredband.comhem.se) (Read error: 110 (Connection timed out))
- # [17:56] <Dashiva> Philip`: Different use of 'uses' then
- # [17:58] <Philip`> Dashiva: I assume you meant to user the term 'users'?
- # [18:00] <Dashiva> I had already rephrased the question in my head, but the sentence never reached my fingers
- # [18:03] <Philip`> You should type with your nose instead
- # [18:03] <Philip`> Much less distance for the nerve signals to travel
- # [18:03] <Philip`> and correspondingly less chance of them getting lost in transit
- # [18:05] <jgraham> I am slightly freaked out by the fact that I made a post to public-html on @summary and no one has replied within 24 hours.
- # [18:07] <jgraham> I am assuming that the reason was not that my arguments had a undeniable brilliance and so could not be refuted
- # [18:07] * Joins: Maurice (i=copyman@5ED548D4.cable.ziggo.nl)
- # [18:07] <virtuelv> html turns adult this year
- # [18:07] <virtuelv> http://lists.w3.org/Archives/Public/www-talk/1991SepOct/0003.html
- # [18:08] <Philip`> You can't really expect every post to get a reply - it's like a pyramid scheme, and someone has to get stuck at the leaf nodes
- # [18:08] <jgraham> Philip`: You can reply to multiple posts at the same time so preventing the exponential growth
- # [18:08] <jcranmer> Philip`: I take it you've never seen newsgroup threads?
- # [18:08] <Philip`> (I know pyramids don't have leaves but I don't know the term for the blocks you put at the very bottom of a pyramid :-( )
- # [18:09] <jcranmer> cornerstones?
- # [18:09] <jcranmer> one sci.math thread is up past 1.5K messages
- # [18:09] * Joins: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [18:09] <Philip`> I would tend to assume that cornerstones are at corners
- # [18:10] <Philip`> and pyramids only have four corners at the bottom
- # [18:10] <Philip`> which is hardly exponential
- # [18:10] <jcranmer> it's a fractal pyramid :-)
- # [18:10] * Philip` tries to visualise it
- # [18:10] * Philip` fails
- # [18:11] <jcranmer> Sierpinski (sp?) Pyramid!
- # [18:11] <gsnedders> virtuelv: TimBL said at TPAC that it was 18 and a half then
- # [18:11] <Philip`> http://philip.html5.org/demos/apng/sierpinski.png
- # [18:11] <Philip`> Someone needs to make a 3D version of APNG
- # [18:11] * Joins: zcorpan_ (n=zcorpan@c83-252-203-80.bredband.comhem.se)
- # [18:12] <gsnedders> Philip`: A3DPNG?
- # [18:12] * zcorpan_ is glad that the xml core wg seem to be opposed to normalization checking in xml
- # [18:12] <virtuelv> gsnedders: I'm counting public mention, not inception
- # [18:12] <gsnedders> virtuelv: hehe
- # [18:13] * Joins: othermaciej (n=mjs@c-69-181-43-20.hsd1.ca.comcast.net)
- # [18:13] <gsnedders> I did feel rather inappropriate sitting beside timbl when he mentioned that in the HTML WG/TAG joint meeting at TPAC
- # [18:13] <jcranmer> bah, display doesn't like APNG
- # [18:14] * jgraham suggests that HTML might follow wizarding rules and come of age at 17 rather than muggle's rules of 18
- # [18:14] * gsnedders suggests that HTML might follow Scottish law and come of age at 16
- # [18:15] <Philip`> jcranmer: There's this neat image display tool called Firefox that might work better
- # [18:15] * gsnedders tries to come up with a reason for it to be Scottish
- # [18:15] <jcranmer> Philip`: not for 24K×12K images!
- # [18:16] * Quits: dolske (n=dolske@firefox/developer/dolske)
- # [18:17] * ap is now known as ap|away
- # [18:20] * Joins: zdobersek1 (n=zan@cpe-92-37-78-33.dynamic.amis.net)
- # [18:20] * Quits: zdobersek (n=zan@cpe-92-37-76-118.dynamic.amis.net) (Connection timed out)
- # [18:21] * Joins: slightlyoff (n=slightly@nat/google/x-f1ba1c26f2724d42)
- # [18:29] * Joins: Lachy (n=Lachlan@85.196.122.246)
- # [18:30] * Quits: srushe (n=srushe@81.130.239.199)
- # [18:31] * Joins: smedero (n=smedero@mdp-nat251.mdp.com)
- # [18:33] * Quits: taf2 (n=taf2@65.210.82.235)
- # [18:35] * Joins: erlehmann (n=erlehman@86.59.25.121)
- # [18:37] * Joins: virtuelv_ (n=virtuelv@mic92-9-82-236-193-123.fbx.proxad.net)
- # [18:38] * Quits: virtuelv (n=virtuelv@APuteaux-155-1-70-137.w90-2.abo.wanadoo.fr) (Read error: 113 (No route to host))
- # [18:39] * virtuelv_ is now known as virtuelv
- # [18:40] * Quits: mat_t (n=mattomas@nat/canonical/x-eb944c5900b84744) ("This computer has gone to sleep")
- # [18:40] * Joins: xcombelle (n=chatzill@AToulouse-158-1-164-51.w90-60.abo.wanadoo.fr)
- # [18:48] <gsnedders> Is there any easy way to get a graphic RDF graph?
- # [18:48] <gsnedders> (from RDF/XML?)
- # [18:48] * Joins: taf2 (n=taf2@65.210.82.235)
- # [18:49] * Quits: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [18:49] <Philip`> gsnedders: Dump the triples into Graphviz .dot format?
- # [18:50] <gsnedders> Philip`: I don't want to write code that does that
- # [18:50] <jgraham> gsnedders: Surely someone already wriote code to do that?
- # [18:50] <gsnedders> jgraham: Where?
- # [18:50] <Philip`> gsnedders: Isn't it, like, a single print statement?
- # [18:50] <Philip`> in a loop
- # [18:51] <jgraham> http://www.w3.org/2001/11/IsaViz/
- # [18:51] * Joins: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [18:52] <jgraham> http://librdf.org/raptor/
- # [18:53] * Parts: yael (i=c0647cdb@gateway/web/ajax/mibbit.com/x-abb714478e4ab9e2)
- # [18:55] <jgraham> http://www.dfki.uni-kl.de/frodo/RDFSViz/
- # [18:56] * jgraham was coping for adulation for his ability to use Google
- # [18:56] <jgraham> hoping
- # [18:59] <gsnedders> jgraham: thx
- # [18:59] * gsnedders blatantly doesn't know what to search for
- # [19:09] * Joins: pauld (n=pauld@92.40.171.48.sub.mbb.three.co.uk)
- # [19:11] * Joins: dolske (n=dolske@67.111.52.130.ptr.us.xo.net)
- # [19:13] <gsnedders> Wow. Most of these suck for any large graph.
- # [19:26] * Parts: zcorpan_ (n=zcorpan@c83-252-203-80.bredband.comhem.se)
- # [19:26] * Quits: dave_levin (n=dave_lev@c-98-203-247-78.hsd1.wa.comcast.net)
- # [19:27] * Quits: zdobersek1 (n=zan@cpe-92-37-78-33.dynamic.amis.net) ("Leaving.")
- # [19:28] * Joins: zcorpan_ (n=zcorpan@c83-252-203-80.bredband.comhem.se)
- # [19:30] * Joins: zdobersek (n=zan@cpe-92-37-78-33.dynamic.amis.net)
- # [19:31] * Quits: othermaciej (n=mjs@c-69-181-43-20.hsd1.ca.comcast.net)
- # [19:32] * Parts: zcorpan_ (n=zcorpan@c83-252-203-80.bredband.comhem.se)
- # [19:33] * Joins: dimich (n=dimich@72.14.227.1)
- # [19:33] * Joins: zcorpan_ (n=zcorpan@c83-252-203-80.bredband.comhem.se)
- # [19:34] * Quits: pauld (n=pauld@92.40.171.48.sub.mbb.three.co.uk) (Connection timed out)
- # [19:34] * Joins: grimboy (n=grimboy@78-86-152-156.zone2.bethere.co.uk)
- # [19:35] * Joins: svl (n=me@ip565744a7.direct-adsl.nl)
- # [19:39] <gsnedders> RDF and Sparkle are crazy.
- # [19:40] * Parts: erlehmann (n=erlehman@86.59.25.121)
- # [19:41] <gsnedders> s/Sparkle/SPARQL/
- # [19:41] * gsnedders is having thought -> audio -> text loop failing him
- # [19:41] * Quits: virtuelv (n=virtuelv@mic92-9-82-236-193-123.fbx.proxad.net) (Read error: 60 (Operation timed out))
- # [19:49] * Quits: grimboy_ (n=grimboy@78-86-152-156.zone2.bethere.co.uk) (Connection timed out)
- # [19:52] * Joins: sicking (n=chatzill@corp-246.mountainview.mozilla.com)
- # [19:56] * Quits: jwalden (n=waldo@c-76-102-160-171.hsd1.ca.comcast.net) ("->office")
- # [19:56] <yecril71> Dashiva! OpenXML is a specification that is not intended for anyone to use.
- # [20:00] * Quits: Amorphous (i=jan@unaffiliated/amorphous) (Read error: 110 (Connection timed out))
- # [20:03] * Joins: Amorphous (i=jan@unaffiliated/amorphous)
- # [20:06] * Joins: pauld (n=pauld@92.40.76.182.sub.mbb.three.co.uk)
- # [20:09] <zcorpan_> jgraham: does html5lib's sanitizer make things safe for browsers that do a reparse in comments or (r)cdata elements?
- # [20:09] <zcorpan_> jgraham: or title=``onclick=doEvil()
- # [20:09] * Joins: jwalden (n=waldo@corp-246.mountainview.mozilla.com)
- # [20:10] <zcorpan_> (hmm equals sign is not allowed in unquoted attributes)
- # [20:11] <gsnedders> zcorpan_: Due to it being serialized the output will include --> even if the input doesn't
- # [20:11] <gsnedders> Likewise with (R)CDATA
- # [20:12] <zcorpan_> gsnedders: yes but the server could still be DoS-attacked causing an early EOF
- # [20:12] * Joins: ojan (n=ojan@72.14.229.81)
- # [20:12] <gsnedders> Then none of those three things is safe
- # [20:12] <zcorpan_> which is the third thing you're referring to?
- # [20:21] * Joins: dave_levin (n=dave_lev@72.14.227.1)
- # [20:23] * Joins: pauld_ (n=pauld@92.40.55.138.sub.mbb.three.co.uk)
- # [20:24] * Quits: pauld_ (n=pauld@92.40.55.138.sub.mbb.three.co.uk) (Remote closed the connection)
- # [20:28] * Parts: zcorpan_ (n=zcorpan@c83-252-203-80.bredband.comhem.se)
- # [20:28] * Joins: othermaciej (n=mjs@17.246.127.158)
- # [20:29] * Quits: othermaciej (n=mjs@17.246.127.158) (Remote closed the connection)
- # [20:29] * Joins: zcorpan_ (n=zcorpan@c83-252-203-80.bredband.comhem.se)
- # [20:32] * Joins: zcorpan (n=zcorpan@c83-252-203-80.bredband.comhem.se)
- # [20:38] * Parts: zcorpan (n=zcorpan@c83-252-203-80.bredband.comhem.se)
- # [20:38] * Joins: zcorpan (n=zcorpan@c83-252-203-80.bredband.comhem.se)
- # [20:39] * Quits: xydyx (n=hdh@58.187.18.113) (Remote closed the connection)
- # [20:39] * Quits: zcorpan_ (n=zcorpan@c83-252-203-80.bredband.comhem.se) (Read error: 60 (Operation timed out))
- # [20:41] * ap|away is now known as ap
- # [20:46] * Quits: pauld (n=pauld@92.40.76.182.sub.mbb.three.co.uk) (Connection timed out)
- # [20:47] * Joins: rubys (n=rubys@cpe-075-182-092-038.nc.res.rr.com)
- # [20:47] * Quits: Kuruma (n=Kuruman@h116-000-163-146.catv01.catv-yokohama.ne.jp) (Remote closed the connection)
- # [20:51] * Quits: zdobersek (n=zan@cpe-92-37-78-33.dynamic.amis.net) (Read error: 104 (Connection reset by peer))
- # [20:52] * Joins: zdobersek (n=zan@cpe-92-37-78-33.dynamic.amis.net)
- # [20:53] * Joins: Kuruma (n=Kuruman@www1664.sakura.ne.jp)
- # [20:55] * Quits: Kuruma (n=Kuruman@www1664.sakura.ne.jp) (Client Quit)
- # [20:57] * Quits: zcorpan (n=zcorpan@c83-252-203-80.bredband.comhem.se) (Read error: 110 (Connection timed out))
- # [20:57] * Joins: roc (n=roc@202.0.36.64)
- # [20:57] * Joins: Kuruma (n=Kuruman@www1664.sakura.ne.jp)
- # [20:58] * Quits: Kuruma (n=Kuruman@www1664.sakura.ne.jp) (Client Quit)
- # [21:00] * ojan is now known as ojanLunch
- # [21:05] * Joins: dbaron (n=dbaron@corp-246.mountainview.mozilla.com)
- # [21:05] * Joins: Kuruma (n=Kuruman@h116-000-163-146.catv01.catv-yokohama.ne.jp)
- # [21:14] * Joins: nessy (n=nessy@124-171-34-59.dyn.iinet.net.au)
- # [21:22] * Joins: arun_ (n=arun@148.87.13.5)
- # [21:31] * Joins: Kuruma_ (n=Kuruman@www1664.sakura.ne.jp)
- # [21:31] * Quits: Kuruma_ (n=Kuruman@www1664.sakura.ne.jp) (Client Quit)
- # [21:33] * Quits: dglazkov (n=dglazkov@nat/google/x-713adc46171718fc)
- # [21:34] * Joins: kingryan (n=kingryan@adsl-99-27-42-97.dsl.pltn13.sbcglobal.net)
- # [21:36] * Quits: Kuruma (n=Kuruman@h116-000-163-146.catv01.catv-yokohama.ne.jp) ("Tiarra 0.1+svn-24729: SIGTERM received; exit")
- # [21:37] * Joins: Kuruma (n=Kuruman@www1664.sakura.ne.jp)
- # [21:38] * Joins: danbri (n=danbri@193.72.18.170)
- # [21:45] * Quits: Kuruma (n=Kuruman@www1664.sakura.ne.jp) ("Tiarra 0.1+svn-30026: SIGTERM received; exit")
- # [21:45] * Joins: Kuruma (n=Kuruman@www1664.sakura.ne.jp)
- # [21:45] * Quits: Kuruma (n=Kuruman@www1664.sakura.ne.jp) (Client Quit)
- # [21:50] * Quits: ap (n=ap@194.154.88.43)
- # [21:52] * Joins: Kuruma (n=Kuruman@www1664.sakura.ne.jp)
- # [21:59] * fakeolliej is now known as olliej
- # [22:02] * Quits: kingryan (n=kingryan@adsl-99-27-42-97.dsl.pltn13.sbcglobal.net)
- # [22:03] * Quits: Kuruma (n=Kuruman@www1664.sakura.ne.jp) ("Tiarra 0.1+svn-30026: SIGINT received; exit")
- # [22:03] * Joins: Kuruma (n=Kuruman@www1664.sakura.ne.jp)
- # [22:09] * Joins: kingryan (n=kingryan@adsl-99-27-42-97.dsl.pltn13.sbcglobal.net)
- # [22:10] * Joins: othermaciej_ (n=mjs@17.246.16.157)
- # [22:18] * ojanLunch is now known as ojan
- # [22:19] * Quits: mstange (n=markus@pD957939E.dip0.t-ipconnect.de) ("ChatZilla 0.9.84-2009010213 [Firefox 3.2a1pre/20090213020442]")
- # [22:19] * Joins: dglazkov (n=dglazkov@nat/google/x-a8824bdb6cc34ed3)
- # [22:25] * Quits: heycam (n=cam@124-168-12-212.dyn.iinet.net.au) ("bye")
- # [22:28] * weinig is now known as weinig|lunch
- # [22:28] * othermaciej_ is now known as othermaciej
- # [22:30] * Quits: ROBOd (n=robod@89.122.216.38) ("http://www.robodesign.ro")
- # [22:35] * Quits: zdobersek (n=zan@cpe-92-37-78-33.dynamic.amis.net) ("Leaving.")
- # [22:46] * Quits: arun_ (n=arun@148.87.13.5)
- # [22:48] <sicking> Hixie, ping
- # [22:49] * Quits: danbri (n=danbri@unaffiliated/danbri) ("going back to danbri.org")
- # [22:49] <gsnedders> Oh noes, it's sicking
- # [22:49] * gsnedders hides
- # [22:50] * sicking slaps gsnedders with a wet salmon
- # [22:50] * Quits: zalan (n=kvirc@catv-89-133-232-199.catv.broadband.hu) ("KVIrc 3.4.0 Virgo http://www.kvirc.net/")
- # [22:51] * gsnedders grabs the salmon, cooks it, eats it, and thanks sicking for his supper
- # [22:51] <sicking> enjoy :)
- # [22:51] * Joins: arun_ (n=arun@148.87.13.5)
- # [23:19] * Quits: dglazkov (n=dglazkov@nat/google/x-a8824bdb6cc34ed3)
- # [23:28] * Joins: heycam (n=cam@vpn-118-138-224-18.its.monash.edu.au)
- # [23:29] <Hixie> sicking: here
- # [23:31] <sicking> Hixie, so i had a brief talk with Sam about the svg-in-html situation when he was here (a few weeks ago)
- # [23:31] <sicking> and so I had some feedback. However I don't really know what the status of the whole sitation is
- # [23:32] <sicking> don't want to start a war if i can avoid it
- # [23:32] <Hixie> the status is that there's a commented out bit that is getting implemented by some people, and the svg wg is supposed to send feedback on what their requirements are, either commenting on the commented out proposal, or suggesting a new one
- # [23:33] <heycam> we are going to be sending comments based on the commented out version
- # [23:33] <Hixie> they did suggest some proposal at one point but it had issues that i commentd on
- # [23:33] <heycam> that should be sent to the HTML WG within a week, at a guess
- # [23:33] <Hixie> cool
- # [23:34] <gsnedders> Is the SVG WG list member only?
- # [23:34] <heycam> gsnedders, nope
- # [23:34] <heycam> http://lists.w3.org/Archives/Public/public-svg-wg/
- # [23:34] <Hixie> syp: yt?
- # [23:34] * gsnedders wonders whether he should subscribe, knowing he already has way too many subscriptions
- # [23:34] <heycam> :)
- # [23:34] <syp> Hixie: yes
- # [23:34] <Hixie> syp: you still getting that slow script dialog?
- # [23:35] <heycam> gsnedders, in fact i am not sure if it is possible for non-WG members to subscribe to it
- # [23:35] <sicking> Hixie, cool, i'll wait for the svg group to comment first then
- # [23:35] * heycam tries, from a different email address
- # [23:35] <gsnedders> heycam: Yeah, I just noticed that
- # [23:35] * Quits: Maurice (i=copyman@5ED548D4.cable.ziggo.nl) ("Disconnected...")
- # [23:36] <syp> Hixie: yes
- # [23:36] <syp> Hixie: did you change something?
- # [23:37] * syp clears cache
- # [23:37] <Hixie> syp: no... but i can't work out why you're seeing it
- # [23:37] <heycam> hmm, no response to sending mail to public-svg-wg-request
- # [23:37] <Hixie> syp: do you have a slow pc?
- # [23:38] <syp> no, pretty fast (on Linux). I could reproduce it on Windows with Firefox 3.1
- # [23:45] <syp> Hixie: it happens after the document is loaded and you try to scroll somewhere.
- # [23:47] <Hixie> maybe it's a ff3.1 bug fixed on trunk?
- # [23:48] * syp tries trunk
- # [23:49] <syp> yeah maybe, it works there.
- # [23:50] <Hixie> ok weird
- # [23:50] <Hixie> wtf did i use that's ff3.1 only!
- # [23:51] <Hixie> ok my vm has ff2, let's see how it handles it
- # [23:51] <syp> I thought about some floating point behavior that changed with the new js engine.
- # [23:51] <Hixie> no problem in ff2 even
- # [23:51] <Hixie> must be something like that yeah
- # [23:52] <Hixie> while i'm there let me fix the styling issues in ff2
- # [23:56] <syp> hm, works with 3.1 nightly. So it should be fixed on the next beta3.
- # Session Close: Thu Feb 26 00:00:00 2009
The end :)