<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Calagator &#187; howto</title>
	<atom:link href="http://calagator.wordpress.com/tag/howto/feed/" rel="self" type="application/rss+xml" />
	<link>http://calagator.wordpress.com</link>
	<description>Calendar aggregation with teeth!</description>
	<lastBuildDate>Wed, 13 May 2009 15:48:42 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='calagator.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/9182ef2fa514566a01fc45b5fcd76661?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Calagator &#187; howto</title>
		<link>http://calagator.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://calagator.wordpress.com/osd.xml" title="Calagator" />
		<item>
		<title>Adopting hCal</title>
		<link>http://calagator.wordpress.com/2008/02/02/adopting-hcal/</link>
		<comments>http://calagator.wordpress.com/2008/02/02/adopting-hcal/#comments</comments>
		<pubDate>Sat, 02 Feb 2008 22:41:28 +0000</pubDate>
		<dc:creator>selenamarie</dc:creator>
				<category><![CDATA[calagator]]></category>
		<category><![CDATA[hcalendar]]></category>
		<category><![CDATA[microformats]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://calagator.wordpress.com/?p=10</guid>
		<description><![CDATA[We&#8217;re using hCalendar (or hCal) for importing events. If you would like to share your events with calagator.org right away, here’s an example, followed by a short explanation of the markup needed.

&#60;div class=&#34;vevent&#34;&#62;
   &#60;a class=&#34;url&#34; href=&#34;http://calagator.wordpress.com&#34;&#62;http://calagator.wordpress.com&#60;/a&#62;
   &#60;abbr class=&#34;dtstart&#34; title=&#34;20080216T10:00&#34;&#62;February 16, 2008, 10am&#60;/abbr&#62;-
   &#60;abbr class=&#34;dtend&#34; title=&#34;20080216T18:00&#34;&#62;6pm&#60;/abbr&#62;
   &#60;span class=&#34;summary&#34;&#62;Calagator [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=calagator.wordpress.com&blog=2565174&post=10&subd=calagator&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>We&#8217;re using <a href="http://microformats.org/wiki/hcalendar" title="hCalendar">hCalendar</a> (or hCal) for importing events. If you would like to share your events with <a href="http://www.calagator.org/">calagator.org</a> right away, here’s an example, followed by a short explanation of the markup needed.</p>
<pre class="brush: xml;">
&lt;div class=&quot;vevent&quot;&gt;
   &lt;a class=&quot;url&quot; href=&quot;http://calagator.wordpress.com&quot;&gt;http://calagator.wordpress.com&lt;/a&gt;
   &lt;abbr class=&quot;dtstart&quot; title=&quot;20080216T10:00&quot;&gt;February 16, 2008, 10am&lt;/abbr&gt;-
   &lt;abbr class=&quot;dtend&quot; title=&quot;20080216T18:00&quot;&gt;6pm&lt;/abbr&gt;
   &lt;span class=&quot;summary&quot;&gt;Calagator Codesprint&lt;/span&gt; -  at
   &lt;span class=&quot;location&quot;&gt;Cubespace&lt;/span&gt;, 622 SE Grand Ave. Portland, OR 97214
   &lt;div class=&quot;geo&quot;&gt;:
      &lt;span class=&quot;latitude&quot;&gt;45.51845&lt;/span&gt;
      &lt;span class=&quot;longitude&quot;&gt;-122.66056&lt;/span&gt;For more information, check with:
      &lt;span class=&quot;contact&quot;&gt;Audrey Eschright&lt;/span&gt;
   &lt;/div&gt;&lt;!-- end geo --&gt;

Tags:
   &lt;span class=&quot;category&quot;&gt;calendaring&lt;/span&gt;
   &lt;span class=&quot;category&quot;&gt;aggregation&lt;/span&gt;
   &lt;span class=&quot;category&quot;&gt;alligators &lt;/span&gt;

   &lt;div class=&quot;description&quot;&gt;
The Calagator Development Team is meeting every 2 weeks to create a calendar aggregator for local technical events. We're working with Ruby On Rails, writing documentation, gathering information about standards, and trying to increase the use of calendar standards like hCalendar.
    &lt;/div&gt;
&lt;/div&gt;&lt;!-- end vevent --&gt;
</pre>
<p>Today, Calagator recognizes the following classes: </p>
<ul>
<li>vevent
<ul>
<li>dtstart (without timezone information)</li>
<li>summary</li>
<li>url</li>
</ul>
</li>
</ul>
<p>The import routine also recognizes multiple events on a single page. </p>
<p>Venues can be added through the web interface. The hackers will be working on recognition of the &#8216;location&#8217; class soon.</p>
<p>*******</p>
<p>To make a valid hCal markup, you need to define three classes at a minimun:</p>
<ul>
<li> vevent
<ul>
<li>summary</li>
<li>dtstart</li>
</ul>
</li>
</ul>
<p>These classes can be added to any HTML tag and do not need to be styled.  Once you&#8217;ve added these basic tags, Calagator will recognize the event.</p>
<p>Other tags you might consider using include:</p>
<ul>
<li>location</li>
<li>geo (use http://www.batchgeocode.com/lookup/ to find lat and long for an address)
<ul>
<li>latitude</li>
<li>longitude</li>
</ul>
</li>
<li>dtend</li>
<li>url</li>
<li>contact</li>
<li>category (may occur more than once)</li>
</ul>
<p>Once you’ve done that, you can test our import at <a href="http://calagator.org/sources">http://calagator.org/sources</a>.  If there’s a bug, click the <a href="http://code.google.com/p/calagator/issues/list">Bugs</a> link in the upper right hand corner and let us know what went wrong.</p>
<p>If you’d like to test your hCal before submitting to the Calagator, there is a Firefox plugin called <a href="https://addons.mozilla.org/en-US/firefox/addon/4106">Operator</a>.  Operator detects many different microformats in a webpage.</p>
<p>If you’re interested in learning more about what hCal has to offer, have a look at the <a href="http://microformats.org/wiki/hcalendar">microformats.org hcalendar explanation</a>.  There&#8217;s also a <a href="http://microformats.org/wiki/hcalendar-cheatsheet">cheatsheet</a>, and a list of <a href="http://microformats.org/wiki/hcalendar-implementations">hCalendar implementations</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/calagator.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/calagator.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/calagator.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/calagator.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/calagator.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/calagator.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/calagator.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/calagator.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/calagator.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/calagator.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/calagator.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/calagator.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=calagator.wordpress.com&blog=2565174&post=10&subd=calagator&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://calagator.wordpress.com/2008/02/02/adopting-hcal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">selenamarie</media:title>
		</media:content>
	</item>
	</channel>
</rss>