IRC Log for #microformats on 2006-07-30

Timestamps are in UTC.

  1. [00:00:01] <factoryjoe> that's true
  2. [00:00:18] <factoryjoe> one <dt> to many <dd>'s
  3. [00:00:29] <factoryjoe> or one <dt> to one or more <dd>'s
  4. [00:00:58] <bewes1> so <dd> refers to the most recent <dt>
  5. [00:01:21] <bewes1> so for example if you wanted to do hAtom feeds
  6. [00:01:56] <bewes1> <dt class="hfeed"> <dd class="hentry></dd> <!-- many more <dd> --> </dt> would be good
  7. [00:02:25] * shaponagota (n=shaponag@c-67-173-183-155.hsd1.il.comcast.net) has joined #microformats
  8. [00:03:07] <qid> er... I'm not sure that's how it's structured
  9. [00:03:21] <bewes1> better than say <dl> <dt><dd> <ul> <li class="hentry"> </li> <!-- many more <li>-- > </dd></dt> </dl> and then wondering if the <dt> or <ul> should be the hfeed
  10. [00:03:29] <qid> isn't dt closed before any dd's?
  11. [00:03:38] <bewes1> yes
  12. [00:03:46] <bewes1> ah
  13. [00:03:58] <bewes1> so it is better the way I just suggested?
  14. [00:04:00] <bewes1> hmm
  15. [00:04:07] <qid> and why do you want your weblog entries in a definition list?
  16. [00:04:20] <bewes1> erm
  17. [00:04:23] <qid> wouldn't an ol be more appropriate?
  18. [00:04:32] <bewes1> hmm
  19. [00:04:37] <bewes1> no, not in this case
  20. [00:04:52] <bewes1> this isn't truly a blog
  21. [00:05:06] <qid> oh
  22. [00:05:21] <bewes1> I'm working on this note taking system
  23. [00:05:27] <bewes1> I have a daemon that takes notes
  24. [00:05:35] <bewes1> a note is a very simple plain text file
  25. [00:05:43] <bewes1> a parseable date, a tag, and a message
  26. [00:06:00] <bewes1> they get parsed, and then filed away according to a dictionary file
  27. [00:06:15] <bewes1> that contains a map of tag -> project path
  28. [00:06:23] <bewes1> and saved as /path/to/project/.project
  29. [00:06:31] <bewes1> they also get put in ~/.plain
  30. [00:06:33] <bewes1> erm
  31. [00:06:39] <bewes1> ~/.plan
  32. [00:06:59] <bewes1> I also have a script that searches the project areas and can output the notes
  33. [00:07:05] <bewes1> json, xhtml, or plain text formatting
  34. [00:07:21] <bewes1> I figued while i'm doing XHTML might as well try for hAtom
  35. [00:07:43] <bewes1> then I have some javascript which transcludes it on a wiki page
  36. [00:07:56] <qid> interesting
  37. [00:08:24] <bewes1> unfortunately it's all work stuff and behind lots of firewalls
  38. [00:08:47] <bewes1> anyway, the xhtml listing lists several categories/tags
  39. [00:08:51] <bewes1> hence the<dl>
  40. [00:09:22] <bewes1> <dl> <dt>tag</dt> <dd> list of entries for that tag </dd>
  41. [00:09:34] <bewes1> so I suppose <dd> should be the hfeed
  42. [00:09:36] <bewes1> erm
  43. [00:09:42] <bewes1> or rather I should us a <ul> in the dd
  44. [00:09:49] <bewes1> and either the <dd> or the <ul> is the hfeed
  45. [00:10:15] <bewes1> was thinking for a moment that it could be mutliple <dd>'s mapped to it's <dt>
  46. [00:10:28] <bewes1> but as you said, if hentries must be contained by the hfeed that won't work
  47. [00:11:58] <bewes1> actually, I don't see anything in the wiki supporting that proposition
  48. [00:12:06] <bewes1> seems logical though
  49. [00:12:36] <bewes1> is the constraint of an hentry being contained by an hfeed just missing from the wiki or not a requirement?
  50. [00:13:41] <briansuda> if there is no hfeed then it is assumed to be the <body>
  51. [00:14:24] <bewes1> if there is an hfeed, must the hentries belonging to the feed be enclosed by it?
  52. [00:15:25] <briansuda> if they are not enclosed, then they are not entries, they are just CSS styles with the same name
  53. [00:15:36] <bewes1> <dt class="hfeed"><h3>My Project</h3></dt> <dd class="hentry">post 1</dd> <dd class="hentry">post 2</dd>
  54. [00:15:38] <briansuda> the only way around it is to use the include-pattern
  55. [00:15:44] <bewes1> so that won't work?
  56. [00:16:00] * bewes1 checks on legitemacy of h3 inside dt
  57. [00:16:14] <briansuda> no
  58. [00:16:23] <briansuda> that won't work
  59. [00:16:31] <bewes1> pity
  60. [00:16:32] <briansuda> if you put the class="hfeed" on the dl then it would
  61. [00:16:57] <bewes1> ok but I've got a list of hfeed's
  62. [00:17:24] <briansuda> then you could have multiple DLs?
  63. [00:17:54] <bewes1> qid: (in my case the order is implied by the date, but other than that the order of entries listed is unspecified, which is why no <ol>)
  64. [00:18:20] <bewes1> or rather, I could attempt to parse the date and put them in order, but I'm too lazy for that just yet
  65. [00:19:23] <bewes1> multiple dl's seems lame
  66. [00:20:09] <bewes1> think I'll go with dl dt dd ul(hfeed) li(hentry) type of thing
  67. [00:21:15] <bewes1> I also tried putting some stuff in CDATA blocks to ensure that it would look the same in plain text and rended XML, but the wiki serves the document as text/html
  68. [00:21:28] <bewes1> which evidently means CDATA gets converted to a comment
  69. [00:21:51] <bewes1> as in viewing selected source reveals <!-- instead of <![CDATA
  70. [00:21:58] <briansuda> i can't help you on that one...
  71. [00:21:58] <bewes1> wild...
  72. [00:23:07] <bewes1> could try an alternative approach like <span class="encode-me"> <haha bad ></span>
  73. [00:23:19] <bewes1> and fix it before insertion
  74. [00:29:59] * shaponagota (n=shaponag@c-67-173-183-155.hsd1.il.comcast.net) has left #microformats
  75. [00:30:46] * shaponagota (n=shaponag@c-67-173-183-155.hsd1.il.comcast.net) has joined #microformats
  76. [00:32:37] * shaponagota (n=shaponag@c-67-173-183-155.hsd1.il.comcast.net) has left #microformats
  77. [00:37:44] * Harry_Slaughter (n=harry@ip68-8-170-38.sd.sd.cox.net) has joined #microformats
  78. [00:38:52] * alexandermuse (n=alexande@c-67-162-230-24.hsd1.tx.comcast.net) has joined #microformats
  79. [00:43:40] * alexandermuse (n=alexande@c-67-162-230-24.hsd1.tx.comcast.net) Quit (Client Quit)
  80. [00:53:20] * briansuda (n=briansud@AC810369.ipt.aol.com) Quit ()
  81. [01:17:13] * alexandermuse (n=alexande@c-67-162-230-24.hsd1.tx.comcast.net) has joined #microformats
  82. [01:18:25] * shaponagota (n=shaponag@c-67-173-183-155.hsd1.il.comcast.net) has joined #microformats
  83. [01:22:50] * AdamCraven (n=Gr1m@bb-87-81-108-8.ukonline.co.uk) Quit ()
  84. [01:34:05] * Jedi_ (n=Jedi@jedi.iem.nctu.edu.tw) Quit (Read error: 110 (Connection timed out))
  85. [01:51:44] * shaponagota (n=shaponag@c-67-173-183-155.hsd1.il.comcast.net) Quit ()
  86. [01:59:15] * carlbt (n=chatzill@adsl-75-2-145-155.dsl.pltn13.sbcglobal.net) has joined #microformats
  87. [01:59:24] <carlbt> .
  88. [02:28:55] * Jonnay (n=jonny@d199-126-185-156.abhsia.telus.net) Quit ("Leaving.")
  89. [02:43:12] * carlbt (n=chatzill@adsl-75-2-145-155.dsl.pltn13.sbcglobal.net) Quit (Connection timed out)
  90. [02:44:28] * pnhChris (n=cac6982@c-68-39-65-171.hsd1.nj.comcast.net) Quit ()
  91. [02:46:43] <alexandermuse> ...
  92. [03:08:36] * ryanlowe (n=chatzill@CPE00045a734098-CM001225d89e7c.cpe.net.cable.rogers.com) Quit ("Chatzilla 0.9.73 [Firefox 1.5.0.5/2006071912]")
  93. [03:10:37] * carlbt (n=chatzill@adsl-75-2-145-155.dsl.pltn13.sbcglobal.net) has joined #microformats
  94. [03:18:26] <mfbot> [[User:AndrewTurner]] http://microformats.org/wiki?title=User:AndrewTurner&diff=0&oldid=7806 * AndrewTurner * (+22)
  95. [03:18:42] <mfbot> [[User:AndrewTurner]] http://microformats.org/wiki?title=User:AndrewTurner&diff=0&oldid=7807 * AndrewTurner * (+16)
  96. [03:18:53] <mfbot> [[User:AndrewTurner]] http://microformats.org/wiki?title=User:AndrewTurner&diff=0&oldid=7808 * AndrewTurner * (+6)
  97. [03:18:59] <mfbot> [[User:AndrewTurner]] http://microformats.org/wiki?title=User:AndrewTurner&diff=0&oldid=7809 * AndrewTurner * (-2)
  98. [03:21:55] <mfbot> [[picoformats]] http://microformats.org/wiki?title=picoformats&diff=0&oldid=7810 * AndrewTurner * (+1580) Add picoformats "Problem Statement" from Mailing list ideas
  99. [03:22:15] * carlbt (n=chatzill@adsl-75-2-145-155.dsl.pltn13.sbcglobal.net) Quit (Read error: 60 (Operation timed out))
  100. [03:28:31] <mfbot> [[picoformats]] http://microformats.org/wiki?title=picoformats&diff=0&oldid=7811 * AndrewTurner * (+149) Added contributors section
  101. [03:30:18] * factoryjoe (n=cmessina@dsl081-246-197.sfo1.dsl.speakeasy.net) Quit ()
  102. [03:33:40] * amette__ (n=amette@pD9E6ADAE.dip0.t-ipconnect.de) has joined #microformats
  103. [03:34:44] * amette (n=amette@pD9E69EC9.dip0.t-ipconnect.de) Quit (Read error: 110 (Connection timed out))
  104. [04:09:24] * alexandermuse (n=alexande@c-67-162-230-24.hsd1.tx.comcast.net) Quit ()
  105. [04:17:24] <mfbot> [[hcard]] http://microformats.org/wiki?title=hcard&diff=0&oldid=7812 * Leadegroot * (+169) Examples in the wild -
  106. [04:26:34] * carlbt (n=chatzill@adsl-75-2-145-155.dsl.pltn13.sbcglobal.net) has joined #microformats
  107. [04:47:48] * vant (n=vant@FLH1Abe103.isk.mesh.ad.jp) has joined #microformats
  108. [04:52:50] * alexandermuse (n=alexande@c-67-162-230-24.hsd1.tx.comcast.net) has joined #microformats
  109. [05:22:58] * alexandermuse (n=alexande@c-67-162-230-24.hsd1.tx.comcast.net) Quit ()
  110. [05:43:04] * alexandermuse (n=alexande@c-67-162-230-24.hsd1.tx.comcast.net) has joined #microformats
  111. [05:43:18] * Harry_Slaughter (n=harry@ip68-8-170-38.sd.sd.cox.net) Quit ("http://devbee.com/")
  112. [05:43:54] * Jonnay (n=jonny@d199-126-185-156.abhsia.telus.net) has joined #microformats
  113. [05:43:55] <jibot> Jonnay is a programmer, graphic designer and musician. He blogs at http://blog.jonnay.net and his music is at http://www.jonnay.net
  114. [05:44:08] * alexandermuse (n=alexande@c-67-162-230-24.hsd1.tx.comcast.net) Quit (Client Quit)
  115. [06:18:22] * remi (n=remi@c207.134.31-221.clta.globetrotter.net) Quit ()
  116. [06:26:30] * carlbt (n=chatzill@adsl-75-2-145-155.dsl.pltn13.sbcglobal.net) Quit (Connection timed out)
  117. [09:04:36] * izo_ (n=izo_@boi59-1-82-66-128-84.fbx.proxad.net) has joined #microformats
  118. [09:55:31] * vant (n=vant@FLH1Abe103.isk.mesh.ad.jp) Quit ("Leaving...")
  119. [10:01:00] * dc__ (n=dctanner@bb-87-81-165-34.ukonline.co.uk) has joined #microformats
  120. [10:17:09] * vant (n=vant@FLH1Abe103.isk.mesh.ad.jp) has joined #microformats
  121. [10:45:04] * Phae (n=phae@85-210-23-226.dsl.pipex.com) has joined #microformats
  122. [10:45:04] <jibot> Phae is Frances Berriman of http://www.fberriman.com/
  123. [10:51:43] * trovster (n=trovster@host86-137-126-192.range86-137.btcentralplus.com) has joined #microformats
  124. [10:51:43] <jibot> trovster is a web developer from the UK who writes on http://www.trovster.com and helps with www.multipack.co.uk
  125. [11:02:07] * trovster (n=trovster@host86-137-126-192.range86-137.btcentralplus.com) Quit (Remote closed the connection)
  126. [11:04:28] * trovster (n=trovster@host86-137-126-192.range86-137.btcentralplus.com) has joined #microformats
  127. [11:19:02] * amette__ is now known as amette
  128. [11:37:14] * gsnedders (n=gsnedder@host81-156-237-58.range81-156.btcentralplus.com) has joined #microformats
  129. [11:37:14] <jibot> gsnedders is a 14 year old idiot from Scotland and pretends to have a website at http://geoffers.uni.cc/
  130. [11:56:04] * tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net) has joined #microformats
  131. [11:56:04] <jibot> tantek is Tantek <http://tantek.com> and works on Technorati and develops microformats <http://microformats.org>
  132. [11:56:21] * ChanServ sets mode +o tantek
  133. [13:03:32] * maexweg is now known as [HAM]BlueMaex
  134. [13:06:19] * Phae (n=phae@85-210-23-226.dsl.pipex.com) Quit ("Peace and Protection 4.22")
  135. [13:07:06] * BenjaminCarlyle (n=fuzzy@c210-49-74-2.rochd2.qld.optusnet.com.au) has joined #microformats
  136. [13:07:07] <jibot> BenjaminCarlyle is http://soundadvice.id.au/blog/, GMT 1000
  137. [13:41:58] * remi (n=remi@c207.134.31-221.clta.globetrotter.net) has joined #microformats
  138. [13:41:59] <jibot> remi is Remi Prevost, a web developper (yeah, that's how we spell "developer" in french) from Quebec and blogs about web stuff at <http://remiprevost.com/>
  139. [13:42:54] * shaponagota (n=shaponag@c-67-173-183-155.hsd1.il.comcast.net) has joined #microformats
  140. [13:51:06] * alexandermuse (n=alexande@c-67-162-230-24.hsd1.tx.comcast.net) has joined #microformats
  141. [13:52:32] * BenjaminCarlyle (n=fuzzy@c210-49-74-2.rochd2.qld.optusnet.com.au) Quit ("Download Gaim: http://gaim.sourceforge.net/")
  142. [14:21:52] * drewinthebed is now known as drewinthehead
  143. [14:52:16] * vant_ (n=vant@FLH1Abe103.isk.mesh.ad.jp) has joined #microformats
  144. [14:57:10] * vant (n=vant@FLH1Abe103.isk.mesh.ad.jp) Quit (Read error: 60 (Operation timed out))
  145. [15:27:27] * gsnedders (n=gsnedder@host81-156-237-58.range81-156.btcentralplus.com) Quit (Read error: 104 (Connection reset by peer))
  146. [15:33:44] * alexandermuse (n=alexande@c-67-162-230-24.hsd1.tx.comcast.net) Quit ()
  147. [15:51:49] * gsnedders (n=gsnedder@host81-156-237-58.range81-156.btcentralplus.com) has joined #microformats
  148. [15:51:50] <jibot> gsnedders is a 14 year old idiot from Scotland and pretends to have a website at http://geoffers.uni.cc/
  149. [16:42:34] <mfbot> [[citation-faq]] http://microformats.org/wiki?title=citation-faq&diff=0&oldid=7813 * Tantek * (+937) added some formatting and implied questions and answered one too
  150. [16:50:08] * alexandermuse (n=alexande@c-67-162-230-24.hsd1.tx.comcast.net) has joined #microformats
  151. [17:10:40] * Enric (n=Enric@c-67-188-10-66.hsd1.ca.comcast.net) has joined #microformats
  152. [17:10:41] <jibot> Enric is a media Software Developer and Videoblogger located at http://www.cirne.com
  153. [17:11:31] * Enric (n=Enric@c-67-188-10-66.hsd1.ca.comcast.net) Quit (Client Quit)
  154. [17:19:53] * vant_ (n=vant@FLH1Abe103.isk.mesh.ad.jp) Quit ("Leaving...")
  155. [17:35:02] * briansuda (n=briansud@AC90C493.ipt.aol.com) has joined #microformats
  156. [17:35:03] * ChanServ sets mode +o briansuda
  157. [17:35:03] <jibot> briansuda is brian suda of http://suda.co.uk/ and http://claimid.com/briansuda in his freetime he works on the X2V microformats parser (-0600 CST)
  158. [17:35:34] * Harry_Slaughter (n=harry@ip68-8-170-38.sd.sd.cox.net) has joined #microformats
  159. [17:35:46] <briansuda> wow, i get-up and check my email and there has been a flurry of activity on the mailing list!
  160. [17:38:26] * Harry_Slaughter (n=harry@ip68-8-170-38.sd.sd.cox.net) Quit (Client Quit)
  161. [17:39:43] * Harry_Slaughter (n=harry@ip68-8-170-38.sd.sd.cox.net) has joined #microformats
  162. [17:49:52] <mfbot> [[hreview-fr]] M http://microformats.org/wiki?title=hreview-fr&diff=0&oldid=7814 * ChristopheDucamp * (-6275)
  163. [17:55:23] <mfbot> [[hreview-fr]] M http://microformats.org/wiki?title=hreview-fr&diff=0&oldid=7815 * ChristopheDucamp * (-176)
  164. [17:56:36] * ryanlowe (n=chatzill@CPE00045a734098-CM001225d89e7c.cpe.net.cable.rogers.com) has joined #microformats
  165. [17:56:37] <jibot> ryanlowe is Ryan Lowe, http://www.fanconcert.com
  166. [17:56:39] <mfbot> [[hreview-fr]] M http://microformats.org/wiki?title=hreview-fr&diff=0&oldid=7816 * ChristopheDucamp * (+6277)
  167. [18:01:25] <mfbot> [[hreview-fr]] M http://microformats.org/wiki?title=hreview-fr&diff=0&oldid=7817 * ChristopheDucamp * (+1273) Q&R -
  168. [18:03:42] <mfbot> [[hreview-fr]] M http://microformats.org/wiki?title=hreview-fr&diff=0&oldid=7818 * ChristopheDucamp * (-225)
  169. [18:18:28] <mfbot> [[hreview-parsing-fr]] MN http://microformats.org/wiki/hreview-parsing-fr * ChristopheDucamp * (+2999)
  170. [18:19:39] * tantek (n=tantek@adsl-63-195-114-133.dsl.snfc21.pacbell.net) Quit ()
  171. [18:21:19] <mfbot> [[hreview-brainstorming-fr]] MN http://microformats.org/wiki/hreview-brainstorming-fr * ChristopheDucamp * (+3513)
  172. [18:21:37] * whereisbot (n=whereisb@d14-69-64-67.try.wideopenwest.com) Quit (Read error: 110 (Connection timed out))
  173. [18:23:07] * alexandermuse (n=alexande@c-67-162-230-24.hsd1.tx.comcast.net) Quit ()
  174. [18:25:01] * alexandermuse (n=alexande@c-67-162-230-24.hsd1.tx.comcast.net) has joined #microformats
  175. [18:38:10] <mfbot> [[hreview-brainstorming-fr]] M http://microformats.org/wiki?title=hreview-brainstorming-fr&diff=0&oldid=7819 * ChristopheDucamp * (+594) Idées hReview 0.3 -
  176. [18:39:07] <mfbot> [[hreview-brainstorming-fr]] M http://microformats.org/wiki?title=hreview-brainstorming-fr&diff=0&oldid=7820 * ChristopheDucamp * (+4)
  177. [18:44:23] <mfbot> [[hcard-fr]] M http://microformats.org/wiki?title=hcard-fr&diff=0&oldid=7821 * ChristopheDucamp * (-4539) Exemples "dans la jungle" -
  178. [18:49:34] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) Quit (Remote closed the connection)
  179. [18:51:19] <mfbot> [[hcard-fr]] M http://microformats.org/wiki?title=hcard-fr&diff=0&oldid=7822 * ChristopheDucamp * (+731) [fr : sync with hCard]
  180. [18:51:57] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) has joined #microformats
  181. [18:52:07] * tantek (n=tantek@adsl-75-2-173-127.dsl.pltn13.sbcglobal.net) has joined #microformats
  182. [18:52:08] <jibot> tantek is Tantek <http://tantek.com> and works on Technorati and develops microformats <http://microformats.org>
  183. [18:52:28] * ChanServ sets mode +o tantek
  184. [18:54:00] <mfbot> [[what-are-microformats]] M http://microformats.org/wiki?title=what-are-microformats&diff=0&oldid=7823 * ChristopheDucamp * (-1912)
  185. [18:55:45] * shaponagota (n=shaponag@c-67-173-183-155.hsd1.il.comcast.net) has left #microformats
  186. [18:56:21] <mfbot> [[what-are-microformats-fr]] M http://microformats.org/wiki?title=what-are-microformats-fr&diff=0&oldid=7824 * ChristopheDucamp * (-498)
  187. [18:58:35] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) Quit (Remote closed the connection)
  188. [19:02:47] <mfbot> [[Main Page-fr]] M http://microformats.org/wiki?title=Main_Page-fr&diff=0&oldid=7825 * ChristopheDucamp * (+119) Discussions Exploratoires -
  189. [19:04:38] <mfbot> [[Main Page-fr]] M http://microformats.org/wiki?title=Main_Page-fr&diff=0&oldid=7826 * ChristopheDucamp * (-57) Discussions Exploratoires -
  190. [19:08:34] <mfbot> [[events-fr]] M http://microformats.org/wiki?title=events-fr&diff=0&oldid=7827 * ChristopheDucamp * (+833)
  191. [19:08:50] <mfbot> [[events-fr]] M http://microformats.org/wiki?title=events-fr&diff=0&oldid=7828 * ChristopheDucamp * (-15)
  192. [19:12:31] <mfbot> [[what-are-microformats]] M http://microformats.org/wiki?title=what-are-microformats&diff=0&oldid=7829 * ChristopheDucamp * (+1937) [fr:revert previous version]
  193. [19:13:42] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) has joined #microformats
  194. [19:13:42] <jibot> ajturner is Andrew Turner, a simulation and geolocation nut who blogs at http://highearthorbit.com
  195. [19:14:02] * tantek (n=tantek@adsl-75-2-173-127.dsl.pltn13.sbcglobal.net) Quit ()
  196. [19:16:42] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) Quit (Remote closed the connection)
  197. [19:17:15] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) has joined #microformats
  198. [19:19:53] <mfbot> [[what-are-microformats-fr]] M http://microformats.org/wiki?title=what-are-microformats-fr&diff=0&oldid=7830 * ChristopheDucamp * (+1832)
  199. [19:20:19] <mfbot> [[what-are-microformats-fr]] M http://microformats.org/wiki?title=what-are-microformats-fr&diff=0&oldid=7831 * ChristopheDucamp * (-1)
  200. [19:20:59] * briansuda (n=briansud@AC90C493.ipt.aol.com) Quit ()
  201. [19:23:04] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) Quit (Remote closed the connection)
  202. [19:27:22] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) has joined #microformats
  203. [19:28:35] <mfbot> [[hresume-fr]] M http://microformats.org/wiki?title=hresume-fr&diff=0&oldid=7832 * ChristopheDucamp * (+548) Implémentations -
  204. [19:30:23] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) Quit (Remote closed the connection)
  205. [19:33:26] <mfbot> [[hresume-fr]] M http://microformats.org/wiki?title=hresume-fr&diff=0&oldid=7833 * ChristopheDucamp * (+35)
  206. [19:35:52] <mfbot> [[implementations-fr]] M http://microformats.org/wiki?title=implementations-fr&diff=0&oldid=7834 * ChristopheDucamp * (-7749) [fr:add Citycita]
  207. [19:36:13] <mfbot> [[implementations-fr]] M http://microformats.org/wiki?title=implementations-fr&diff=0&oldid=7835 * ChristopheDucamp * (+0) Citycita -
  208. [19:37:29] <mfbot> [[implementations-fr]] M http://microformats.org/wiki?title=implementations-fr&diff=0&oldid=7836 * ChristopheDucamp * (+2) Citycita -
  209. [19:42:56] * factoryjoe (n=cmessina@dsl081-246-197.sfo1.dsl.speakeasy.net) has joined #microformats
  210. [19:44:40] <mfbot> [[hresume]] http://microformats.org/wiki?title=hresume&diff=0&oldid=7837 * Sardinia * (+123)
  211. [19:48:42] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) has joined #microformats
  212. [19:48:43] <jibot> ajturner is Andrew Turner, a simulation and geolocation nut who blogs at http://highearthorbit.com
  213. [19:49:21] <mfbot> [[hcalendar-fr]] M http://microformats.org/wiki?title=hcalendar-fr&diff=0&oldid=7838 * ChristopheDucamp * (+513)
  214. [19:55:12] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) Quit (Remote closed the connection)
  215. [19:55:48] <mfbot> [[presentations-fr]] M http://microformats.org/wiki?title=presentations-fr&diff=0&oldid=7839 * ChristopheDucamp * (+188) 2006 -
  216. [19:57:19] <mfbot> [[presentations-fr]] M http://microformats.org/wiki?title=presentations-fr&diff=0&oldid=7840 * ChristopheDucamp * (+201) 2006 -
  217. [20:00:10] <mfbot> [[geo-fr]] M http://microformats.org/wiki?title=geo-fr&diff=0&oldid=7841 * ChristopheDucamp * (+383) Implémentations -
  218. [20:12:58] * pnhChris (n=cac6982@c-68-39-65-171.hsd1.nj.comcast.net) has joined #microformats
  219. [20:12:58] <jibot> pnhChris is Chris Casciano, blogs at http://placenamehere.com/ , and a member of the Web Standards Project.
  220. [20:14:36] <mfbot> [[picoformats-fr]] M http://microformats.org/wiki?title=picoformats-fr&diff=0&oldid=7842 * ChristopheDucamp * (+1875)
  221. [20:15:37] <mfbot> [[picoformats]] M http://microformats.org/wiki?title=picoformats&diff=0&oldid=7843 * ChristopheDucamp * (+1) typo
  222. [20:16:23] <mfbot> [[picoformats-fr]] M http://microformats.org/wiki?title=picoformats-fr&diff=0&oldid=7844 * ChristopheDucamp * (+207)
  223. [20:21:45] * tantek (n=tantek@c-67-188-209-237.hsd1.ca.comcast.net) has joined #microformats
  224. [20:21:46] <jibot> tantek is Tantek <http://tantek.com> and works on Technorati and develops microformats <http://microformats.org>
  225. [20:22:06] * ChanServ sets mode +o tantek
  226. [20:46:47] * briansuda (n=briansud@AC9176CD.ipt.aol.com) has joined #microformats
  227. [20:46:47] * ChanServ sets mode +o briansuda
  228. [20:46:48] <jibot> briansuda is brian suda of http://suda.co.uk/ and http://claimid.com/briansuda in his freetime he works on the X2V microformats parser (-0600 CST)
  229. [21:08:13] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) has joined #microformats
  230. [21:08:13] <jibot> ajturner is Andrew Turner, a simulation and geolocation nut who blogs at http://highearthorbit.com
  231. [21:09:06] * trovster (n=trovster@host86-137-126-192.range86-137.btcentralplus.com) has left #microformats
  232. [21:10:33] <factoryjoe> hey ajturner
  233. [21:10:37] <factoryjoe> how goes it?
  234. [21:11:54] <ajturner> hi factoryjoe!
  235. [21:12:16] <ajturner> well, the internet is slower than a mule in the artic (or something like that)
  236. [21:12:19] <ajturner> up and down
  237. [21:12:31] <ajturner> did you see my message re: picoformats to the mf list?
  238. [21:13:03] <factoryjoe> yep
  239. [21:13:09] <factoryjoe> i sent it on to andy stack
  240. [21:13:16] <alexandermuse> Hola!
  241. [21:13:44] <ajturner> ah, good deal - I see Mozes already does a lot of similar stuff
  242. [21:15:01] <mfbot> [[citation-formats]] http://microformats.org/wiki?title=citation-formats&diff=0&oldid=7845 * FredStutzman * (+1181) BibTeX - Adding practical examples of software that supports the bib format.
  243. [21:15:11] <factoryjoe> right
  244. [21:15:49] <ajturner> so how goes it with you?
  245. [21:17:28] <briansuda> Is FredStutzman in IRC?
  246. [21:18:32] <factoryjoe> fstutzman
  247. [21:18:33] <factoryjoe> somewhere
  248. [21:18:40] <factoryjoe> ajturner: busy busy
  249. [21:18:41] <factoryjoe> ;)
  250. [21:18:43] <factoryjoe> you?
  251. [21:22:56] * tantek (n=tantek@c-67-188-209-237.hsd1.ca.comcast.net) Quit ()
  252. [21:23:04] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) Quit (Remote closed the connection)
  253. [21:38:00] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) has joined #microformats
  254. [21:38:00] <jibot> ajturner is Andrew Turner, a simulation and geolocation nut who blogs at http://highearthorbit.com
  255. [21:41:01] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) Quit (Remote closed the connection)
  256. [21:43:19] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) has joined #microformats
  257. [21:48:43] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) Quit (Remote closed the connection)
  258. [21:58:01] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) has joined #microformats
  259. [22:01:13] <mfbot> [[chat-formats-fr]] MN http://microformats.org/wiki/chat-formats-fr * ChristopheDucamp * (+14897)
  260. [22:01:55] * tantek (n=tantek@adsl-67-120-92-166.dsl.pltn13.pacbell.net) has joined #microformats
  261. [22:01:55] <jibot> tantek is Tantek <http://tantek.com> and works on Technorati and develops microformats <http://microformats.org>
  262. [22:02:12] * ChanServ sets mode +o tantek
  263. [22:10:09] <mfbot> [[chat-brainstorming-fr]] MN http://microformats.org/wiki/chat-brainstorming-fr * ChristopheDucamp * (+2333)
  264. [22:11:00] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) Quit (Remote closed the connection)
  265. [22:11:45] <mfbot> [[chat-brainstorming-fr]] M http://microformats.org/wiki?title=chat-brainstorming-fr&diff=0&oldid=7846 * ChristopheDucamp * (+3)
  266. [22:13:56] * briansuda (n=briansud@AC9176CD.ipt.aol.com) Quit ()
  267. [22:14:10] * tantek (n=tantek@adsl-67-120-92-166.dsl.pltn13.pacbell.net) Quit ()
  268. [22:14:46] * tantek (n=tantek@adsl-67-120-92-166.dsl.pltn13.pacbell.net) has joined #microformats
  269. [22:15:03] * ChanServ sets mode +o tantek
  270. [22:15:46] <mfbot> [[resume-brainstorming-fr]] M http://microformats.org/wiki?title=resume-brainstorming-fr&diff=0&oldid=7847 * ChristopheDucamp * (+31) Analyse -
  271. [22:16:04] * argolon (n=argolon@83-70-109-194.b-ras1.chf.cork.eircom.net) has joined #microformats
  272. [22:16:28] * gsnedders (n=gsnedder@host81-156-237-58.range81-156.btcentralplus.com) Quit ()
  273. [22:19:32] * peck2dot0 (n=alex@m51.net81-66-173.noos.fr) has joined #microformats
  274. [22:20:03] <peck2dot0> but well, you're right. html *is* a more pragmatic approach to it
  275. [22:20:10] <factoryjoe> ok
  276. [22:20:14] <factoryjoe> yes
  277. [22:20:19] <factoryjoe> and in terms of getting adoption
  278. [22:20:22] <factoryjoe> html already wins
  279. [22:20:26] <peck2dot0> but it's like 2001-php vs 2005-ror you know ?
  280. [22:20:33] <factoryjoe> standardizing on xml is nearly impossible across the web
  281. [22:20:36] <jibot> WildFox is Mr. KDOM. Co-author of kdom, ksvg and kcanvas.
  282. [22:20:49] <factoryjoe> RR is the ideal proponent of mF
  283. [22:20:53] <factoryjoe> since it deals w/ data views
  284. [22:21:00] <factoryjoe> each mF is essentially a view
  285. [22:22:12] <peck2dot0> indeed. in my mind it's more of a model...
  286. [22:23:02] <factoryjoe> well
  287. [22:23:07] <factoryjoe> i guess it spans the two
  288. [22:23:08] <factoryjoe> heh
  289. [22:23:13] <factoryjoe> it's a "model-view"
  290. [22:23:32] <peck2dot0> it's an app :)
  291. [22:23:58] <mfbot> [[resume-brainstorming-fr]] M http://microformats.org/wiki?title=resume-brainstorming-fr&diff=0&oldid=7848 * ChristopheDucamp * (+389) Application des microformats actuels -
  292. [22:25:44] <factoryjoe> hrm
  293. [22:25:46] <factoryjoe> not really
  294. [22:25:55] <factoryjoe> well, i mean the mF part
  295. [22:27:03] <peck2dot0> yeah sure. it's a stupid joke. we said just a minute ago that the *tool* was the good part of mFs - making in the "controller" maybe ? :p now there's your app.
  296. [22:27:12] <peck2dot0> s/in/it
  297. [22:29:51] <factoryjoe> ;)
  298. [22:29:52] <factoryjoe> btw
  299. [22:29:55] <factoryjoe> check this out: http://www.giannim.com/blog/index.php?page_id=13
  300. [22:31:36] <peck2dot0> woo, sexy
  301. [22:36:05] <factoryjoe> ok, well have to run
  302. [22:38:05] <peck2dot0> k. see ya
  303. [22:39:52] * factoryjoe is now known as factoryjoe_away
  304. [22:40:15] * argolon (n=argolon@83-70-109-194.b-ras1.chf.cork.eircom.net) has left #microformats
  305. [22:44:19] <mfbot> [[resume-brainstorming-fr]] M http://microformats.org/wiki?title=resume-brainstorming-fr&diff=0&oldid=7849 * ChristopheDucamp * (+654) Brainstorming Session 2005-11-10 -
  306. [22:51:20] <mfbot> [[resume-brainstorming-fr]] M http://microformats.org/wiki?title=resume-brainstorming-fr&diff=0&oldid=7850 * ChristopheDucamp * (+262) Plan de Strawman -
  307. [22:55:18] * amette is now known as n00b
  308. [22:55:28] * n00b is now known as amette
  309. [23:02:55] * peck2dot0 (n=alex@m51.net81-66-173.noos.fr) Quit ()
  310. [23:08:27] <mfbot> [[resume-brainstorming-fr]] M http://microformats.org/wiki?title=resume-brainstorming-fr&diff=0&oldid=7851 * ChristopheDucamp * (+471)
  311. [23:13:43] <mfbot> [[resume-brainstorming-fr]] M http://microformats.org/wiki?title=resume-brainstorming-fr&diff=0&oldid=7852 * ChristopheDucamp * (+193) Titres de Job -
  312. [23:15:29] * dc__ (n=dctanner@bb-87-81-165-34.ukonline.co.uk) Quit (Read error: 104 (Connection reset by peer))
  313. [23:16:13] * dc__ (n=dctanner@bb-87-81-165-34.ukonline.co.uk) has joined #microformats
  314. [23:17:39] <mfbot> [[resume-brainstorming-fr]] M http://microformats.org/wiki?title=resume-brainstorming-fr&diff=0&oldid=7853 * ChristopheDucamp * (+53)
  315. [23:28:08] * dc__ (n=dctanner@bb-87-81-165-34.ukonline.co.uk) Quit ()
  316. [23:33:51] <mfbot> [[citation-fr]] MN http://microformats.org/wiki/citation-fr * ChristopheDucamp * (+4311)
  317. [23:34:12] <mfbot> [[citation-fr]] M http://microformats.org/wiki?title=citation-fr&diff=0&oldid=7854 * ChristopheDucamp * (+0) Modularité -
  318. [23:37:52] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) has joined #microformats
  319. [23:37:52] <jibot> ajturner is Andrew Turner, a simulation and geolocation nut who blogs at http://highearthorbit.com
  320. [23:40:20] * peck2dot0 (n=alex@m51.net81-66-173.noos.fr) has joined #microformats
  321. [23:45:33] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) Quit (Remote closed the connection)
  322. [23:46:06] * ajturner (n=ajturner@d14-69-64-67.try.wideopenwest.com) has joined #microformats
  323. [23:57:37] * shaponagota (n=shaponag@c-67-173-183-155.hsd1.il.comcast.net) has joined #microformats
  324. [23:57:59] * briansuda (n=briansud@ACA123F7.ipt.aol.com) has joined #microformats
  325. [23:57:59] * ChanServ sets mode +o briansuda
  326. [23:58:00] <jibot> briansuda is brian suda of http://suda.co.uk/ and http://claimid.com/briansuda in his freetime he works on the X2V microformats parser (-0600 CST)

These logs were automatically created by mflogbot on chat.freenode.net using a modified version of the Java IRC LogBot.

See http://microformats.org/wiki/mflogbot for more information.