Options:
- # Session Start: Tue Jul 21 00:00:00 2009
- # Session Ident: #microformats
- # [00:05] * Quits: ebel (n=rory@unaffiliated/ebel) ("bedtime")
- # [00:14] * Quits: memload (n=jamesjef@94-171-217-23.cable.ubr15.wolv.blueyonder.co.uk) (Read error: 110 (Connection timed out))
- # [00:20] * Quits: tim_hwang (n=chatzill@65.112.9.14) (Read error: 110 (Connection timed out))
- # [00:27] * Quits: gsnedders (n=gsnedder@c83-252-193-191.bredband.comhem.se)
- # [00:30] * singpoly1a is now known as singpolyma
- # [00:35] * Joins: georgebrock (n=georgebr@client-86-25-196-115.cht-bng-011.adsl.virginmedia.net)
- # [00:42] * Quits: BobJonkman (n=BobJonkm@206-248-137-186.dsl.teksavvy.com) ("Leaving.")
- # [00:42] * Joins: Dan (n=David@c-76-24-212-221.hsd1.ma.comcast.net)
- # [00:43] <Dan> Hey, I have a question regarding hCard
- # [00:43] <Dan> Is it possible to just have the hCard data rendered in the source, and not on the page
- # [00:43] <Dan> ie, in a comment- so its viewable in the source but not on the page
- # [00:43] <Dan> I cant use the <span> stuff for a bunch of reasons I wont bore you all with :)
- # [00:44] <singpolyma> Dan: no. You could style it invisible, but you cannot put it in a comment or anything like that
- # [00:44] <singpolyma> The idea of microformats is sort of to mark up content that's already in the page anyway
- # [00:44] <Dan> yeah i know
- # [00:44] <Dan> but as google is now supporting it
- # [00:44] <Dan> I would like to add it to my users profile pages
- # [00:45] <Dan> but the existing content wont play nice with that format
- # [00:45] <Dan> so your saying I can just put all the data in a div display none
- # [00:45] <Dan> and that should work
- # [00:45] <Dan> ?
- # [00:45] <Dan> :)
- # [00:45] <singpolyma> Why won't it? You don't already have a name on the profile page?
- # [00:45] <hober> in what way does the current format not play well with hcard?
- # [00:46] <Dan> Its complicated, but lets just say its a major undertaking to try and fix it
- # [00:46] <Dan> so lets just say
- # [00:46] <Dan> Will it validate ok
- # [00:46] <Dan> in a hidden div
- # [00:46] <hober> with the include pattern, you should be able to mark up lots of weird pages correctly
- # [00:46] <singpolyma> Well, why can't you just put the classes on your existing nodes?
- # [00:46] <Dan> because input doesnt always end correctly
- # [00:46] <hober> Dan: invisible data is frowned upon...
- # [00:46] <Dan> trust me, Its just not possible currently
- # [00:46] <Dan> without alot of work
- # [00:47] <singpolyma> "end correctly" ?
- # [00:47] <Dan> :|
- # [00:47] <singpolyma> All you need is a class name on a node, there are no fancy requirements
- # [00:47] <Dan> Will it validate as invisible
- # [00:48] <singpolyma> If you display:none it most parsers will accept it, yes. But I honestly think you think it's more complicated a format than it is
- # [00:48] <hober> AFAIK, there's no official hcard validator, so I'd say "that depends on which validator you use"
- # [00:48] <singpolyma> Any and all HTML with the right data in it should be able to have hCard added
- # [00:48] <singpolyma> That's kind of the point
- # [00:48] <hober> did you have a particular microformat validator in mind?
- # [00:49] <Dan> No
- # [00:49] <Dan> well, google
- # [00:49] <Dan> but im not sure they have one i can try with
- # [00:49] <Dan> let me show you something, as to my issue
- # [00:49] <Dan> <span class="tel">
- # [00:49] <Dan> <span class="type">home</span>:
- # [00:49] <Dan> <span class="value">+1.415.555.1212</span>
- # [00:49] <Dan> </span>
- # [00:49] <Dan> Thats a normal instance of a accepted class
- # [00:49] <singpolyma> Sure, that's an example of a complex case of tel
- # [00:49] <Dan> so with my profiles, I know that a user *might* have a home phone listed
- # [00:49] <Dan> maybe, you dont know
- # [00:50] <Dan> so what I can do, is in my source code
- # [00:50] <Dan> put the first span class before it
- # [00:50] <Dan> and expect that they will list home and phone #
- # [00:50] <Dan> the issue im coming up with
- # [00:50] <singpolyma> Well, likely you would not use span in your code
- # [00:50] <Dan> is that if they dont list it- the first will still display, but then the closign tag wont show up
- # [00:50] <Dan> the div display none seems really easy to do- a elegant solution :D
- # [00:50] <Dan> Honestly, thats good enough for me
- # [00:51] <singpolyma> I'm not sure I understand the problem
- # [00:51] <Dan> Its ok
- # [00:51] <Dan> just trust me that its a bitch
- # [00:51] <Dan> and im lazy
- # [00:51] <singpolyma> You don't know if there is a tel or not, and you're afraid of putting the class on an empty node?
- # [00:51] <Dan> ><
- # [00:51] <Dan> lol
- # [00:51] <singpolyma> Microformats are designed for lazy publishers :)
- # [00:51] <hober> Yeah, I'm having trouble understanding your problem. It sounds like the placement of conditionals in your template need work
- # [00:51] <Dan> Il show you in 15 minutes
- # [00:52] <singpolyma> Like, for one, you seem to think you need to use a <span> tag
- # [00:52] <singpolyma> You don't
- # [00:52] <hober> {if has-a-phone-number}<span class="tel">...</span>{end if}
- # [00:52] <hober> or whatever
- # [00:52] <Dan> dont you need categories also
- # [00:52] <Dan> <span class="tel">
- # [00:52] <Dan> then home
- # [00:52] <Dan> work
- # [00:52] <Dan> etc.
- # [00:52] <singpolyma> Only if you are outputting that data
- # [00:52] <hober> well, I left out the ... :)
- # [00:52] <singpolyma> It's optional
- # [00:53] <singpolyma> If it's actually hard to do microformats right in your template, that might be worth documenting for furthur revisions of hCard
- # [00:53] <singpolyma> It should be easy in any HTML
- # [00:53] <singpolyma> That's the whole point
- # [00:54] * Quits: georgebrock_ (n=georgebr@client-80-4-217-150.cht-bng-011.adsl.virginmedia.net) (Read error: 110 (Connection timed out))
- # [00:58] <Dan> well
- # [00:58] <Dan> in a few
- # [00:58] <Dan> il show ya why
- # [01:13] * Quits: termie (i=andy@208.78.244.32) ("leaving")
- # [01:13] * Joins: termie (i=andy@208.78.244.32)
- # [01:15] * Joins: gsnedders (n=gsnedder@c83-252-193-191.bredband.comhem.se)
- # [01:20] * Quits: gsnedders (n=gsnedder@c83-252-193-191.bredband.comhem.se)
- # [01:35] * Quits: Dan (n=David@c-76-24-212-221.hsd1.ma.comcast.net) (Nick collision from services.)
- # [01:36] * Joins: Daniel__a (n=David@c-76-24-212-221.hsd1.ma.comcast.net)
- # [01:36] <Daniel__a> jesus freenode
- # [01:36] * Daniel__a is now known as Dan_Blake
- # [01:36] <Dan_Blake> Hi, its me
- # [01:37] <singpolyma> "it's me" is not a very descriptive statement ;)
- # [01:38] <Dan_Blake> the guy complaining a few lines back
- # [01:38] <singpolyma> :)
- # [01:38] <Dan_Blake> http://www.techcrunch.com/2009/07/20/cardly-lets-you-create-cool-online-business-cards-in-a-matter-of-minutes/
- # [01:38] <Dan_Blake> There ya go
- # [01:40] <singpolyma> Ok...?
- # [01:41] <Dan_Blake> supporting 50+ themes
- # [01:41] <Dan_Blake> with variable data input
- # [01:41] <Dan_Blake> and unexpected ends, not showing up at all, etc..
- # [01:41] <Dan_Blake> not easy
- # [01:42] * Quits: Hey_neken (n=kaxero@215.Red-213-96-129.staticIP.rima-tde.net) (Read error: 110 (Connection timed out))
- # [01:42] <singpolyma> So... looking at markup at http://card.ly/demo it seems to have hCard in the markup...
- # [01:42] <singpolyma> Supporting themes and supporting hCard should be orthogonal problems
- # [01:53] * Quits: Dan_Blake (n=David@c-76-24-212-221.hsd1.ma.comcast.net)
- # [02:33] * Joins: tim_hwang (n=chatzill@c-71-192-163-225.hsd1.nh.comcast.net)
- # [02:48] * Joins: shigeta (n=shigeta@sakkgw2.sixapart.jp)
- # [03:02] * Quits: leahculver (n=leahculv@204.9.180.30)
- # [03:02] * Joins: to_ (n=to_@AAubervilliers-551-1-166-104.w92-141.abo.wanadoo.fr)
- # [03:09] * Quits: singpolyma (n=singpoly@173-11-94-130-SFBA.hfc.comcastbusiness.net) ("Lost terminal")
- # [03:32] * Joins: memload (n=jamesjef@94-171-217-23.cable.ubr15.wolv.blueyonder.co.uk)
- # [03:40] * Quits: memload (n=jamesjef@94-171-217-23.cable.ubr15.wolv.blueyonder.co.uk) (Client Quit)
- # [03:44] * Joins: memload (n=jamesjef@94-171-217-23.cable.ubr15.wolv.blueyonder.co.uk)
- # [03:51] * Quits: georgebrock (n=georgebr@client-86-25-196-115.cht-bng-011.adsl.virginmedia.net)
- # [04:33] * Joins: leahculver (n=leahculv@c-67-180-197-78.hsd1.ca.comcast.net)
- # [04:40] * Quits: memload (n=jamesjef@94-171-217-23.cable.ubr15.wolv.blueyonder.co.uk) (Success)
- # [04:53] * Joins: memload (n=jamesjef@94-171-217-23.cable.ubr15.wolv.blueyonder.co.uk)
- # [04:54] * Quits: memload (n=jamesjef@94-171-217-23.cable.ubr15.wolv.blueyonder.co.uk) (Read error: 104 (Connection reset by peer))
- # [04:54] * Joins: memload (n=jamesjef@94-171-217-23.cable.ubr15.wolv.blueyonder.co.uk)
- # [06:18] * Quits: memload (n=jamesjef@94-171-217-23.cable.ubr15.wolv.blueyonder.co.uk) (Success)
- # [07:30] * Quits: leahculver (n=leahculv@c-67-180-197-78.hsd1.ca.comcast.net)
- # [07:43] * Joins: benward (n=benward@98.210.154.133)
- # [07:43] * ChanServ sets mode: +o benward
- # [07:45] * Quits: benward_ (n=benward@nat/yahoo/x-329176ea29730d91) (Read error: 131 (Connection reset by peer))
- # [08:03] * Joins: pesla (n=retep@procurios.xs4all.nl)
- # [08:10] * Joins: aux (i=petar@adsl-99-136-217-124.dsl.sfldmi.sbcglobal.net)
- # [08:37] * Quits: tim_hwang (n=chatzill@c-71-192-163-225.hsd1.nh.comcast.net) (Remote closed the connection)
- # [08:39] * Joins: gsnedders (n=gsnedder@c83-252-195-240.bredband.comhem.se)
- # [08:52] * Quits: aux (i=petar@adsl-99-136-217-124.dsl.sfldmi.sbcglobal.net) ("reboot")
- # [09:19] * Quits: gsnedders (n=gsnedder@c83-252-195-240.bredband.comhem.se)
- # [09:46] * Joins: aux (i=petar@adsl-99-136-217-124.dsl.sfldmi.sbcglobal.net)
- # [09:59] * Quits: @benward (n=benward@98.210.154.133) ("Sleep")
- # [10:07] * Joins: tobyink (n=tai@77.89.160.246)
- # [10:14] * Quits: aux (i=petar@adsl-99-136-217-124.dsl.sfldmi.sbcglobal.net) ("Read error: 2.71828182846 (Excessive e)")
- # [10:32] * Joins: ntoll (n=ntoll@88-111-137-153.dynamic.dsl.as9105.com)
- # [10:44] * Joins: emrojo (n=emrojo@163.117.139.228)
- # [10:51] * Joins: aux (n=aux@c-76-112-237-231.hsd1.mi.comcast.net)
- # [10:59] * Joins: Phae (n=phaeness@gatea.mh.bbc.co.uk)
- # [10:59] * ChanServ sets mode: +o Phae
- # [11:13] * Joins: illustir (n=alper@95-36-9-238.dsl.alice.nl)
- # [11:13] * Quits: illustir (n=alper@95-36-9-238.dsl.alice.nl) (Remote closed the connection)
- # [11:21] * Quits: levitation[A] (n=levitati@rubiin.physic.ut.ee) (Remote closed the connection)
- # [11:32] * Joins: georgebrock (n=georgebr@client-86-25-199-39.cht-bng-011.adsl.virginmedia.net)
- # [12:04] * Joins: levitation[A] (n=levitati@rubiin.physic.ut.ee)
- # [12:39] * Joins: memload (n=jamesjef@94-171-217-23.cable.ubr15.wolv.blueyonder.co.uk)
- # [12:44] * Quits: levitation[A] (n=levitati@rubiin.physic.ut.ee) (Remote closed the connection)
- # [12:47] * Quits: shigeta (n=shigeta@sakkgw2.sixapart.jp) ("Leaving...")
- # [13:19] * Quits: aux (n=aux@c-76-112-237-231.hsd1.mi.comcast.net) ("leaving")
- # [13:34] * Quits: Amorphous (i=jan@unaffiliated/amorphous) (Read error: 110 (Connection timed out))
- # [13:37] * Joins: Amorphous (i=jan@unaffiliated/amorphous)
- # [14:01] * Quits: memload (n=jamesjef@94-171-217-23.cable.ubr15.wolv.blueyonder.co.uk) (Read error: 110 (Connection timed out))
- # [14:03] * Joins: ebel (n=rory@unaffiliated/ebel)
- # [14:05] * Quits: pesla (n=retep@procurios.xs4all.nl) ("( www.nnscript.com :: NoNameScript 4.21 :: www.esnation.com )")
- # [14:23] * Joins: pesla (n=retep@procurios.xs4all.nl)
- # [14:37] * Joins: georgebrock_ (n=georgebr@client-80-4-217-56.cht-bng-011.adsl.virginmedia.net)
- # [14:47] * Quits: georgebrock (n=georgebr@client-86-25-199-39.cht-bng-011.adsl.virginmedia.net) (Read error: 110 (Connection timed out))
- # [14:59] * Joins: madness (n=mng@212.44.61.190)
- # [15:05] * Quits: madness (n=mng@212.44.61.190)
- # [15:09] * Joins: csarven (n=csarven@modemcable150.182-202-24.mc.videotron.ca)
- # [15:19] * Quits: to_ (n=to_@AAubervilliers-551-1-166-104.w92-141.abo.wanadoo.fr)
- # [15:21] * Joins: to_ (n=to_@AAubervilliers-551-1-166-104.w92-141.abo.wanadoo.fr)
- # [16:08] * Joins: levitation[A] (n=levitati@rubiin.physic.ut.ee)
- # [16:56] * Joins: adactio (n=adactio@86.132.125.223)
- # [16:56] * ChanServ sets mode: +o adactio
- # [17:50] * Quits: pesla (n=retep@procurios.xs4all.nl) ("( www.nnscript.com :: NoNameScript 4.21 :: www.esnation.com )")
- # [17:51] * Joins: gsnedders (n=gsnedder@c83-252-193-142.bredband.comhem.se)
- # [17:59] * Joins: BobJonkman (n=BobJonkm@206-248-137-186.dsl.teksavvy.com)
- # [18:14] * Joins: singpolyma (n=singpoly@c-67-161-10-171.hsd1.ca.comcast.net)
- # [18:44] * Quits: ebel (n=rory@unaffiliated/ebel) ("going home")
- # [18:50] * Joins: Hey_neken (n=kaxero@215.Red-213-96-129.staticIP.rima-tde.net)
- # [18:58] * Joins: factoryjoe (n=factoryj@c-24-5-68-143.hsd1.ca.comcast.net)
- # [19:05] * Joins: benward (n=benward@nat/yahoo/x-4b352196c30f47bc)
- # [19:05] * ChanServ sets mode: +o benward
- # [19:14] * Quits: @adactio (n=adactio@86.132.125.223)
- # [19:17] * Quits: factoryjoe (n=factoryj@c-24-5-68-143.hsd1.ca.comcast.net) (leguin.freenode.net irc.freenode.net)
- # [19:18] * Joins: McNulty_ (n=mcnulty@87-194-63-145.bethere.co.uk)
- # [19:18] * Quits: McNulty_ (n=mcnulty@87-194-63-145.bethere.co.uk) (Remote closed the connection)
- # [19:22] * Joins: factoryjoe (n=factoryj@c-24-5-68-143.hsd1.ca.comcast.net)
- # [19:29] * Quits: tobyink (n=tai@77.89.160.246) ("Leaving.")
- # [19:42] * Quits: Hey_neken (n=kaxero@215.Red-213-96-129.staticIP.rima-tde.net) (leguin.freenode.net irc.freenode.net)
- # [19:42] * Quits: csarven (n=csarven@modemcable150.182-202-24.mc.videotron.ca) (leguin.freenode.net irc.freenode.net)
- # [19:42] * Quits: theanxy (n=wzajac@student.agh.edu.pl) (leguin.freenode.net irc.freenode.net)
- # [19:42] * Quits: knmurphy (n=knmurphy@newyork.elliotmurphy.com) (leguin.freenode.net irc.freenode.net)
- # [19:42] * Quits: Zeeshan_AFK (i=develope@o.je) (leguin.freenode.net irc.freenode.net)
- # [19:43] * Joins: Hey_neken (n=kaxero@215.Red-213-96-129.staticIP.rima-tde.net)
- # [19:43] * Joins: csarven (n=csarven@modemcable150.182-202-24.mc.videotron.ca)
- # [19:43] * Joins: knmurphy (n=knmurphy@newyork.elliotmurphy.com)
- # [19:43] * Joins: Zeeshan_AFK (i=develope@o.je)
- # [19:43] * Joins: theanxy (n=wzajac@student.agh.edu.pl)
- # [19:52] * Quits: factoryjoe (n=factoryj@c-24-5-68-143.hsd1.ca.comcast.net) (leguin.freenode.net irc.freenode.net)
- # [19:52] * Quits: to_ (n=to_@AAubervilliers-551-1-166-104.w92-141.abo.wanadoo.fr) (leguin.freenode.net irc.freenode.net)
- # [19:54] * Joins: factoryjoe (n=factoryj@c-24-5-68-143.hsd1.ca.comcast.net)
- # [19:54] * Joins: to_ (n=to_@AAubervilliers-551-1-166-104.w92-141.abo.wanadoo.fr)
- # [19:57] * Quits: csarven (n=csarven@modemcable150.182-202-24.mc.videotron.ca) ("Leaving.")
- # [20:00] * Joins: KevinMarks (n=Snak@216.239.45.19)
- # [20:00] * Quits: emrojo (n=emrojo@163.117.139.228) ("Leaving.")
- # [20:02] * Quits: singpolyma (n=singpoly@c-67-161-10-171.hsd1.ca.comcast.net) ("Lost terminal")
- # [20:03] * Quits: Danny_B (n=Danny_B@wikimedia/Danny-B.) (Nick collision from services.)
- # [20:04] * Joins: Danny_B (n=Danny_B@wikimedia/Danny-B.)
- # [20:05] * Quits: georgebrock_ (n=georgebr@client-80-4-217-56.cht-bng-011.adsl.virginmedia.net) (leguin.freenode.net irc.freenode.net)
- # [20:05] * Joins: dwhittle (n=dwhittle@nat/yahoo/x-829c0cb5f125ead3)
- # [20:09] * Joins: georgebrock (n=georgebr@client-80-4-217-56.cht-bng-011.adsl.virginmedia.net)
- # [20:18] * Joins: singpolyma (n=singpoly@173-11-94-130-SFBA.hfc.comcastbusiness.net)
- # [20:26] * Quits: theanxy (n=wzajac@student.agh.edu.pl) (leguin.freenode.net irc.freenode.net)
- # [20:26] * Quits: knmurphy (n=knmurphy@newyork.elliotmurphy.com) (leguin.freenode.net irc.freenode.net)
- # [20:26] * Quits: Zeeshan_AFK (i=develope@o.je) (leguin.freenode.net irc.freenode.net)
- # [20:26] * Quits: Hey_neken (n=kaxero@215.Red-213-96-129.staticIP.rima-tde.net) (leguin.freenode.net irc.freenode.net)
- # [20:27] * Joins: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [20:27] * ChanServ sets mode: +o tantek
- # [20:27] * Joins: leahculver (n=leahculv@216.239.45.19)
- # [20:29] * Joins: mfbot (n=mfbot@69.55.232.130)
- # [20:30] * Joins: knmurphy (n=knmurphy@newyork.elliotmurphy.com)
- # [20:30] <mfbot> Tantek edited Main Page "Reverted edits by [[Special:Contributions/Rigelye|Rigelye]] ([[User talk:Rigelye|Talk]]) to last version by [[User:Angelogladding|Angelogladding]]" (-322) http://is.gd/1GEwQ
- # [20:36] * Joins: csarven (n=csarven@modemcable150.182-202-24.mc.videotron.ca)
- # [20:36] <mfbot> Tantek edited resources "Reverted edits by [[Special:Contributions/Rigelye|Rigelye]] ([[User talk:Rigelye|Talk]]) to last version by [[User:RyanKing|RyanKing]]" (-33) http://is.gd/1GES7
- # [20:38] * Quits: leahculver (n=leahculv@216.239.45.19)
- # [20:40] <@tantek> singpolyma - I've found that I'm working on many diso-conceptually related things recently, went into #diso and found factoryjoe there
- # [20:40] <singpolyma> We have a #diso?
- # [20:40] * singpolyma was unaware
- # [20:40] <factoryjoe> heh
- # [20:40] <factoryjoe> yep
- # [20:42] * Joins: Hey_neken (n=kaxero@215.Red-213-96-129.staticIP.rima-tde.net)
- # [20:49] * Quits: @tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [20:53] * Joins: tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [20:53] * ChanServ sets mode: +o tantek
- # [20:54] * Joins: leahculver (n=leahculv@216.239.45.19)
- # [20:54] * Joins: emrojo (n=emrojo@176.Red-88-8-157.dynamicIP.rima-tde.net)
- # [21:08] <@tantek> leahculver, benward, any interest in doing a microformats dinner tonight?
- # [21:09] <@tantek> maybe some place in the mission?
- # [21:09] <leahculver> tantek: I have plans :(
- # [21:09] <@tantek> factoryjoe - you too, now that you're in the neighborhood
- # [21:09] <factoryjoe> uh
- # [21:09] <factoryjoe> trying to decide whether to go to san jose for identica meetup and open source awards
- # [21:10] * Quits: @Phae (n=phaeness@gatea.mh.bbc.co.uk) (Nick collision from services.)
- # [21:10] * Joins: Phae (n=phaeness@gateb.mh.bbc.co.uk)
- # [21:10] * Joins: frances (n=phaeness@cpc2-acto9-0-0-cust364.brnt.cable.ntl.com)
- # [21:10] <@benward> Pah, San Jose. You live with us now, you'll never need to visit another neighborhood again!
- # [21:10] <leahculver> tantek: oscon stuff is pretty crazy
- # [21:11] <leahculver> I feel like I haven't been to a microformats dinner in FOREVER
- # [21:11] <@benward> tantek I could do. I'm a bit nervous of how much work I have on so can't 100% commit. Might get swept along by end of the day.
- # [21:12] <factoryjoe> i'm in benward's position too
- # [21:12] <factoryjoe> hence the dual hesitancy of going to SJ
- # [21:13] <KevinMarks> San Jose ftw
- # [21:13] <factoryjoe> heh
- # [21:13] <factoryjoe> it's 1 hr if i drive, 2 by caltrain
- # [21:14] <factoryjoe> therefore SJ FTL
- # [21:14] <@benward> You have a parking space, factoryjoe?
- # [21:14] <factoryjoe> i have a garage, yes
- # [21:14] <@benward> Oooooh
- # [21:14] <factoryjoe> @brynn brought her car from San Diego
- # [21:15] <factoryjoe> i'm trying to keep my driving to a minimum though!
- # [21:15] <factoryjoe> and i've already driven to SJ twice this week!
- # [21:15] <factoryjoe> and i have to go back at least two more times... 3 if i go tonight
- # [21:15] <factoryjoe> :(
- # [21:15] <KevinMarks> welcome to my life visiting SF...
- # [21:16] <KevinMarks> it's an hour on Caltrain if you pick the early evening ones
- # [21:17] <factoryjoe> yeah?
- # [21:17] <factoryjoe> hmm ok
- # [21:17] * Joins: ebel (n=rory@unaffiliated/ebel)
- # [21:21] * Quits: dwhittle (n=dwhittle@nat/yahoo/x-829c0cb5f125ead3) (Remote closed the connection)
- # [21:22] <@tantek> benward - I know what you mean - I'm trying to juggle microformats to-do items before microformatsDevCamp
- # [21:22] <KevinMarks> which is exactly when the freeway makes it more than an hour to drive :D
- # [21:23] <@tantek> figuring out what will have the most helpful impact if it is done first etc.
- # [21:23] <@tantek> we can still set one up tentatively, often even a few hours of advance notice is enough to get a few people
- # [21:23] <@tantek> KevinMarks - are you at OSCON this week?
- # [21:24] <KevinMarks> I am fro some of it, yes - talking tomorrow
- # [21:28] <KevinMarks> I'm in the open govt panel, going to be advocating a microformats approach http://en.oreilly.com/oscon2009/public/schedule/detail/8453
- # [21:28] <@tantek> Kevin - that's awesome.
- # [21:29] <@tantek> here's my thinking on opengov so far: http://tr.im/opengov - in case that helps with reference/specific points.
- # [21:29] <@tantek> you've got strong co-panelists as well
- # [21:29] * Quits: frances (n=phaeness@cpc2-acto9-0-0-cust364.brnt.cable.ntl.com) (Read error: 110 (Connection timed out))
- # [21:29] <KevinMarks> excellent - anyone else got good examples?
- # [21:30] <factoryjoe> the newstrust news might be good to cite
- # [21:30] <KevinMarks> I was also going to talk about the mysociety stuff in the UK
- # [21:35] * Joins: Zeeshan_AFK (i=develope@o.je)
- # [21:37] * Joins: theanxy (n=wzajac@student.agh.edu.pl)
- # [21:43] * Joins: innovati (n=innovati@dsl-rb-64-118-16-254.wtccommunications.ca)
- # [21:44] * Quits: to_ (n=to_@AAubervilliers-551-1-166-104.w92-141.abo.wanadoo.fr)
- # [21:45] <innovati> hey guys, I have some questions I haven't seen the answers for on the site - why should I use them on my website? what software currently reads or takes advantage of microformats? what future benefit will using microformats today give me? and is there any way I can publish microformat formatted content using plugins to my existing software or website?
- # [21:45] * Joins: to_ (n=to_@AAubervilliers-551-1-166-104.w92-141.abo.wanadoo.fr)
- # [21:46] <@tantek> innovati - a good place to start is the FAQ
- # [21:46] <@tantek> http://microformats.org/wiki/faq
- # [21:46] <@tantek> for software implementations see: http://microformats.org/wiki/implementations
- # [21:46] * Joins: Frances (n=phaeness@cpc2-acto9-0-0-cust364.brnt.cable.ntl.com)
- # [21:46] <@tantek> for existing plugins and CMS support, see http://microformats.org/wiki/cms
- # [21:46] * Quits: Phae (n=phaeness@gateb.mh.bbc.co.uk) (Nick collision from services.)
- # [21:47] * Frances is now known as Phae
- # [21:47] * ChanServ sets mode: +o Phae
- # [21:47] <factoryjoe> tantek: is there a "getting started with microformats" page on the site?
- # [21:48] <@tantek> http://microformats.org/wiki/ - getting started is right at the top
- # [21:48] <innovati> tantek: aha! the faq looks good, will read that before continuing in here.... this sort of page almost merits a link on the front page of the main site eh?
- # [21:48] <@tantek> innovati - yes, there's definitely some need to update the IA of the main site with better links to resources in the wiki. I've been working on that recently.
- # [21:49] <@tantek> innovati - you may find this useful too: http://microformats.org/wiki/introduction
- # [21:49] * innovati feels like christmas!
- # [21:54] * innovati finally got the pun in 'A Touch of Class' and feels like an idiot *facepalm*
- # [21:55] * Quits: leahculver (n=leahculv@216.239.45.19)
- # [21:57] <innovati> does anybody refer to them as µformats?
- # [21:57] <singpolyma> innovati: µfs or ufs usually
- # [22:01] <innovati> singpolyma: ahh, you're way ahead of me then - good to know
- # [22:03] * Quits: csarven (n=csarven@modemcable150.182-202-24.mc.videotron.ca) ("Leaving.")
- # [22:05] * Quits: @Phae (n=phaeness@cpc2-acto9-0-0-cust364.brnt.cable.ntl.com) (Read error: 110 (Connection timed out))
- # [22:05] * Joins: Phae (n=phaeness@gateb.thls.bbc.co.uk)
- # [22:06] <innovati> tantek: thanks for the links - I've already put hCard on my site yesterday and I like what I see - I'm gonna see if I can add a lot more in the future
- # [22:08] * Joins: csarven (n=csarven@modemcable150.182-202-24.mc.videotron.ca)
- # [22:09] * Joins: leahculver (n=leahculv@216.239.45.19)
- # [22:16] <@tantek> innovati - that's great - add your site to the hCard examples in wild page then: http://microformats.org/wiki/hcard-examples-in-wild
- # [22:16] <mfbot> Tantek edited hcard-supporting-user-profiles "noted one kind of hCard examples in the wild" (+76) http://is.gd/1GJYu
- # [22:19] <innovati> is there a µfs validator anywhere? I'd hate to put it there if it wasn't pure
- # [22:19] <singpolyma> innovati: Optimus
- # [22:19] <singpolyma> Google "Optimus Microformats"
- # [22:20] <@tantek> innovati - most of what you are asking for you can find by searching the wiki
- # [22:20] <@tantek> e.g.
- # [22:20] <@tantek> http://microformats.org/wiki/validators
- # [22:20] <@tantek> and singpolyma - same for Optimus: http://microformats.org/wiki/optimus
- # [22:21] * Joins: georgebrock_ (n=georgebr@client-80-3-171-33.cht-bng-011.adsl.virginmedia.net)
- # [22:25] <innovati> I will add the site to the µfs in the wild when the site goes live instead of being on my dev server
- # [22:26] <@tantek> yes - that's a good idea :)
- # [22:28] <innovati> I'm a trained graphic designer and linux/oss fanboy, and I just got a job doing web design... I need to learn better html/css practices too *cringes*
- # [22:29] <@tantek> hopefully the POSH pages will help with that: http://microformats.org/wiki/posh
- # [22:31] * Quits: georgebrock (n=georgebr@client-80-4-217-56.cht-bng-011.adsl.virginmedia.net) (Read error: 110 (Connection timed out))
- # [22:45] * Joins: georgebrock (n=georgebr@client-80-3-168-223.cht-bng-011.adsl.virginmedia.net)
- # [22:46] * Joins: to__ (n=to_@AAubervilliers-551-1-166-104.w92-141.abo.wanadoo.fr)
- # [22:54] * Quits: to_ (n=to_@AAubervilliers-551-1-166-104.w92-141.abo.wanadoo.fr) (Read error: 110 (Connection timed out))
- # [23:01] * Joins: memload (n=jamesjef@94-171-217-23.cable.ubr15.wolv.blueyonder.co.uk)
- # [23:01] * Quits: georgebrock_ (n=georgebr@client-80-3-171-33.cht-bng-011.adsl.virginmedia.net) (Read error: 110 (Connection timed out))
- # [23:05] * Quits: singpolyma (n=singpoly@173-11-94-130-SFBA.hfc.comcastbusiness.net) ("Lost terminal")
- # [23:11] * Quits: emrojo (n=emrojo@176.Red-88-8-157.dynamicIP.rima-tde.net) ("Leaving.")
- # [23:16] * Quits: gsnedders (n=gsnedder@c83-252-193-142.bredband.comhem.se)
- # [23:17] * Quits: @tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net)
- # [23:37] * Joins: to_ (n=to_@AAubervilliers-551-1-166-104.w92-141.abo.wanadoo.fr)
- # [23:38] * Joins: memload_ (n=jamesjef@94-171-217-23.cable.ubr15.wolv.blueyonder.co.uk)
- # [23:44] * Joins: memload__ (n=jamesjef@94-171-217-23.cable.ubr15.wolv.blueyonder.co.uk)
- # [23:44] * Joins: georgebrock_ (n=georgebr@client-80-3-169-153.cht-bng-011.adsl.virginmedia.net)
- # [23:44] * Quits: to__ (n=to_@AAubervilliers-551-1-166-104.w92-141.abo.wanadoo.fr) (Connection timed out)
- # [23:44] * Quits: georgebrock (n=georgebr@client-80-3-168-223.cht-bng-011.adsl.virginmedia.net) (Read error: 104 (Connection reset by peer))
- # [23:44] * Joins: dwhittle (n=dwhittle@nat/yahoo/x-45bda6370a4fd091)
- # [23:45] * Quits: ntoll (n=ntoll@88-111-137-153.dynamic.dsl.as9105.com) ("this is not a quit message")
- # [23:53] * Quits: memload (n=jamesjef@94-171-217-23.cable.ubr15.wolv.blueyonder.co.uk) (Read error: 110 (Connection timed out))
- # [23:56] * Quits: leahculver (n=leahculv@216.239.45.19)
- # [23:57] * Joins: memload (n=jamesjef@94-171-217-23.cable.ubr15.wolv.blueyonder.co.uk)
- # Session Close: Wed Jul 22 00:00:00 2009
The end :)