<?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/"
	>

<channel>
	<title>ELEVATION Dev Blog</title>
	<atom:link href="http://dev.elevationblog.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dev.elevationblog.com</link>
	<description></description>
	<lastBuildDate>Wed, 06 Oct 2010 21:07:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Filtering the Twitter Widget</title>
		<link>http://dev.elevationblog.com/2010/10/06/filtering-the-twitter-widget/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=filtering-the-twitter-widget</link>
		<comments>http://dev.elevationblog.com/2010/10/06/filtering-the-twitter-widget/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 21:07:24 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dev.elevationblog.com/?p=1631</guid>
		<description><![CDATA[While working on a product blog of ours, I wanted to display our recent tweets in the sidebar, but found that included a lot of extraneous @ replies that I didn&#8217;t want included in the stream.  I&#8217;m not sure it&#8217;s documented anywhere, but the official twitter widget does allow you to pass a variable called [...]]]></description>
			<content:encoded><![CDATA[<p>While working on a <a href="http://blog.albumexposure.com" target="_blank">product blog</a> of ours, I wanted to display our recent tweets in the sidebar, but found that included a lot of extraneous @ replies that I didn&#8217;t want included in the stream.  I&#8217;m not sure it&#8217;s documented anywhere, but the official twitter widget does allow you to pass a variable called filters to do this.  Here&#8217;s how I implemented it:</p>
<pre class="brush: javascript">
<script src="http://widgets.twimg.com/j/2/widget.js" type="text/javascript"></script> <script type="text/javascript">// <![CDATA[
    function isReply(text){
      return text.indexOf('@') == 0
    }

    new TWTR.Widget({
      version: 2,
      type: 'profile',
      rpp: 200,
      interval: 4500,
      title: '',
      subject: '',
      width: 200,
      height: 300,
      theme: {
        shell: {
          background: '#ffffff',
          color: '#666666'
        },
        tweets: {
          background: '#ffffff',
          color: '#666666',
          links: '#235e7a'
        }
      },
      features: {
        scrollbar: false,
        loop: true,
        live: true,
        hashtags: true,
        timestamp: false,
        avatars: false,
        behavior: 'default',
        filters: {negatives: {test: isReply }}
      }
    }).render().setUser('yourtwittername').start();
// ]]&gt;</script>
</pre>
<p>On line 2 is where I added my filtering function, in this case all tweets that start with @, which are replies.  Line 34 is where I pass the filter function to the twitter widget.  Negatives indicates to the twitter script that I want it to remove all tweets that my filter function returns true for.  If you wanted to do the reverse, just change &#8216;negatives&#8217; to &#8216;positives&#8217; and in this case, it would only show the @ replies in the stream.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.elevationblog.com/2010/10/06/filtering-the-twitter-widget/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>refinerycms-blog: comments with DISQUS</title>
		<link>http://dev.elevationblog.com/2010/04/08/refinerycms-blog-comments-with-disqus/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=refinerycms-blog-comments-with-disqus</link>
		<comments>http://dev.elevationblog.com/2010/04/08/refinerycms-blog-comments-with-disqus/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 00:19:25 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://dev.elevationblog.com/?p=1614</guid>
		<description><![CDATA[For adding a blog to your refinery site, there&#8217;s pretty much only one option: the refinerycms-blog plugin. Fortunately like most refinery things, it&#8217;s pretty easy to customize. I wanted to use DISQUS to moderate the comments on this particular blog, and here&#8217;s how I did it (You obviously need a DISQUS account to do this).  [...]]]></description>
			<content:encoded><![CDATA[<p>For adding a blog to your refinery site, there&#8217;s pretty much only one option: the <a href="http://github.com/unixcharles/refinerycms-blog" target="_blank">refinerycms-blog plugin</a>. Fortunately like most refinery things, it&#8217;s pretty easy to customize.</p>
<p>I wanted to use <a href="http://disqus.com">DISQUS</a> to moderate the comments on this particular blog, and here&#8217;s how I did it (You obviously need a DISQUS account to do this).  If a file referred to doesn&#8217;t exist, copy it from vendor/plugins/app/views/blogs to your theme directory.</p>
<ol>
<li><strong>Remove the old comment form:<br />
themes/mysite/views/blogs/show.html.erb</strong><br />
remove the render &#8220;_form&#8221; line since we don&#8217;t need a comment form anymore</li>
<li><strong>Add the Disqus embed code<br />
themes/mytheme/views/blogs/_comments.html.erb</strong><br />
Replace everything in this file with the disqus embed code, replace mysite below with your disqus shortname.</p>
<pre class="brush: plain">&lt;div id='comments'&gt;
 &lt;div id="disqus_thread"&gt;&lt;/div&gt;
 &lt;script type="text/javascript"&gt;
 var disqus_identifier = "&lt;%= @blog.permalink %&gt;";
 &lt;%= "var disqus_developer = 1;" if local_request? %&gt;

 (function() {
 var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
 dsq.src = 'http://mysite.disqus.com/embed.js';
 (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
 })();
 &lt;/script&gt;
 &lt;noscript&gt;Please enable JavaScript to view the &lt;a href="http://disqus.com/?ref_noscript=mysite"&gt;comments powered by Disqus.&lt;/a&gt;&lt;/noscript&gt;
&lt;/div&gt;</pre>
</li>
<li><strong>Add the disqus comment counter code<br />
/themes/mysite/views/blogs/index.html.erb<br />
</strong><br />
Change line 16 to:</p>
<pre class="brush: plain">
  <%= link_to 'Read more', blog_post_url(blog.permalink)+"#disqus_thread" -%>
</pre>
<p>Put this somewhere near the bottom:</p>
<pre class="brush: plain">&lt;% content_for :footer do -%&gt;
 &lt;script type="text/javascript"&gt;
 //&lt;![CDATA[
 (function() {
 var links = document.getElementsByTagName('a');
 var query = '?';
 for(var i = 0; i &lt; links.length; i++) {
 if(links[i].href.indexOf('#disqus_thread') &gt;= 0) {
 query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&amp;';
 }
 }
 document.write('&lt;script charset="utf-8" type="text/javascript" src="http://disqus.com/forums/poetrybooths/get_num_replies.js' + query + '"&gt;&lt;/' + 'script&gt;');
 })();
 //]]&gt;
 &lt;/script&gt;
&lt;% end -%&gt;</pre>
<p><strong>/themes/mysite/views/shared/_footer.html.erb<br />
</strong>add &lt;%= yield :footer %&gt; to your footer file so our comment counter javascript gets placed there.</li>
</ol>
<p>Pretty easy.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.elevationblog.com/2010/04/08/refinerycms-blog-comments-with-disqus/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>refinerycms _blank target nav</title>
		<link>http://dev.elevationblog.com/2010/04/07/refinerycms-_blank-target-nav/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=refinerycms-_blank-target-nav</link>
		<comments>http://dev.elevationblog.com/2010/04/07/refinerycms-_blank-target-nav/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 19:23:37 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[refinery]]></category>
		<category><![CDATA[refinerycms]]></category>

		<guid isPermaLink="false">http://dev.elevationblog.com/?p=1609</guid>
		<description><![CDATA[Recently I&#8217;ve been evaluating refinerycms for a few client projects that it seemed suited for, and I really like that while it&#8217;s not always 100% what I want, it&#8217;s very easy to modify to get it to where I need it. Here&#8217;s an example: My site needs a main nav to link offsite in a [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve been evaluating <a href="http://refinerycms.com">refinerycms</a> for a few client projects that it seemed suited for, and I really like that while it&#8217;s not always 100% what I want, it&#8217;s very easy to modify to get it to where I need it.</p>
<p>Here&#8217;s an example: My site needs a main nav to link offsite in a new window by adding target=&#8221;_blank&#8221; to the link, which is not handled out of the box by refinery.  So I copied vendor/refinery/app/views/shared/_menu_branch.html.erb into my theme directory to override the functionality and modified line 11 to the following:</p>
<pre>&lt;%= link_to menu_branch.title, menu_branch.url, \
:target =&gt; menu_branch.url.include?("http://") ? "_blank" : "" %&gt;
</pre>
<p>Now any link containing http:// is automatically given a blank target. Presto.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.elevationblog.com/2010/04/07/refinerycms-_blank-target-nav/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>autospec/autotest cucumber infinite loop</title>
		<link>http://dev.elevationblog.com/2010/01/18/autospecautotest-cucumber-infinite-loop/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=autospecautotest-cucumber-infinite-loop</link>
		<comments>http://dev.elevationblog.com/2010/01/18/autospecautotest-cucumber-infinite-loop/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 23:16:20 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dev.elevationblog.com/?p=1606</guid>
		<description><![CDATA[Had issue today with autospec never stopping, and found this article, but I did have the autotest-rails gem installed.  Thanks to Mario Aquino&#8217;s article here, I learned that you can pass -v to autospec/autotest and it will print out what triggered it to run.  My culprit was rerun.txt, and then I found buried in the [...]]]></description>
			<content:encoded><![CDATA[<p>Had issue today with autospec never stopping, and found <a href="http://www.ruby-forum.com/topic/183578">this article</a>, but I did have the autotest-rails gem installed.  Thanks to Mario Aquino&#8217;s article <a href="http://marioaquino.blogspot.com/2009/12/my-dot-autotest.html">here</a>, I learned that you can pass -v to autospec/autotest and it will print out what triggered it to run.  My culprit was rerun.txt, and then I found buried in the <a href="http://wiki.github.com/aslakhellesoy/cucumber/autotest-integration">Cucumber documentation</a>:</p>
<blockquote><p>If you find that autotest runs your features continuously, your features may be changing a file which autotest is monitoring as they run. Use a setting like this to ignore such files. You’ll likely need to set autotest to ignore “rerun.txt” as well.</p></blockquote>
<p>So, to your project&#8217;s .autotest or at ~/.autotest, add something like this:</p>
<p><code>Autotest.add_hook :initialize do |at|<br />
	%w{.svn .hg .git vendor rerun.txt}.each {|exception| at.add_exception(exception)}<br />
end</code></p>
<p>At least, that&#8217;s what my ~/.autotest has, and after adding rerun.txt in there, everything is good.</p>
<p>Hopefully this will help someone else googling for the same thing I was with no luck.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.elevationblog.com/2010/01/18/autospecautotest-cucumber-infinite-loop/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>all day events in event calendar</title>
		<link>http://dev.elevationblog.com/2009/12/10/all-day-events-in-event-calendar/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=all-day-events-in-event-calendar</link>
		<comments>http://dev.elevationblog.com/2009/12/10/all-day-events-in-event-calendar/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 20:26:13 +0000</pubDate>
		<dc:creator>Jeff Schuil</dc:creator>
				<category><![CDATA[Home]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://dev.elevationblog.com/?p=1597</guid>
		<description><![CDATA[Some events don&#8217;t start and stop at specific times, but instead last all day. We&#8217;ve had this option when creating events in our application(s), but until now it wasn&#8217;t visually apparent when shown in EventCalendar, a rails plugin. Now we have a new use_all_day option! When set to true, the plugin checks if the event [...]]]></description>
			<content:encoded><![CDATA[<p>Some events don&#8217;t start and stop at specific times, but instead last all day. We&#8217;ve had this option when creating events in our application(s), but until now it wasn&#8217;t visually apparent when shown in <a href="http://github.com/elevation/event_calendar/">EventCalendar</a>, a rails plugin.</p>
<p>Now we have a new <em>use_all_day</em> option!</p>
<p>When set to true, the plugin checks if the event is all day and/or multiple days. If it is, then it will display with the usual background color bar. Otherwise it just shows the event text using its color. (Similar to many popular calendar programs.)</p>
<p>For more info check out: the <a href="http://dev.elevationblog.com/wp-content/uploads/2009/12/cal-times.png">screenshot</a>, <a href="http://dev.elevationblog.com/2009/07/23/event-calendar-rails-plugin/">homepage</a>, and <a href="http://github.com/elevation/event_calendar">github</a> (<a href="http://github.com/elevation/event_calendar/commit/d3acae4586d38a235bc00d0a26f2d6f62f55252d">commit</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.elevationblog.com/2009/12/10/all-day-events-in-event-calendar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Event Calendar HTML Generation Rewrite</title>
		<link>http://dev.elevationblog.com/2009/11/23/event-calendar-html-generation-rewrite/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=event-calendar-html-generation-rewrite</link>
		<comments>http://dev.elevationblog.com/2009/11/23/event-calendar-html-generation-rewrite/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 02:31:23 +0000</pubDate>
		<dc:creator>Jeff Schuil</dc:creator>
				<category><![CDATA[Home]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://dev.elevationblog.com/?p=1587</guid>
		<description><![CDATA[The Event Calendar rails plugin (see: post &#38; github) we created a few months back has been working great and, thanks to all the feedback, the bugs have pretty much been worked out. There was one annoying limitation, however: The width couldn&#8217;t be set arbitrarily. Well, no longer. I completely re-wrote the HTML and CSS [...]]]></description>
			<content:encoded><![CDATA[<p>The Event Calendar rails plugin (see: <a href="http://dev.elevationblog.com/2009/07/23/event-calendar-rails-plugin/">post</a> &amp; <a href="http://github.com/elevation/event_calendar">github</a>) we created a few months back has been working great and, thanks to all the feedback, the bugs have pretty much been worked out. There was one annoying limitation, however:</p>
<p><strong>The width couldn&#8217;t be set arbitrarily</strong>.</p>
<p>Well, no longer. I completely re-wrote the HTML and CSS styling that the helper generates. Events are now table columns which span the calendar days. The calendar grid is also a table, not a background image which needed to be created whenever setting a non-default width.</p>
<p>This means you can give the calendar any width, or don&#8217;t set it at all and let it resize to it&#8217;s containing element. Awesome!</p>
<p>I also took the opportunity to remove some old code, comments, and options that were hanging around from the plugin&#8217;s previous lives. In some ways there is now more flexibility to customize, in a few ways less. One consequence is that some of the options from before the rewrite no longer exist, so update with care.</p>
<p>Overall I&#8217;m very happy with how it turned out. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.elevationblog.com/2009/11/23/event-calendar-html-generation-rewrite/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>wordpress now playing plugin</title>
		<link>http://dev.elevationblog.com/2009/10/20/wordpress-now-playing/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-now-playing</link>
		<comments>http://dev.elevationblog.com/2009/10/20/wordpress-now-playing/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 16:00:09 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dev.elevationblog.com/?p=1581</guid>
		<description><![CDATA[We love music around here, which is why we&#8217;re always showing off what were listening too over on the left. Some time ago I automated the process of looking up album artwork using the Amazon API and posting it on or blog. This approach has a couple advantages over things like last.fm, like being able [...]]]></description>
			<content:encoded><![CDATA[<p>We love music around here, which is why we&#8217;re always showing off what were listening too over on the left.  Some time ago I automated the process of looking up album artwork using the Amazon API and posting it on or blog.</p>
<p>This approach has a couple advantages over things like last.fm, like being able to select exactly what you want shown, and automatic linking to amazon for affiliate commissions.</p>
<p>I&#8217;ve packaged everything up into a wordpress plugin and put it on my github page here:  <a href="http://github.com/jaredmoody/wp_now_playing" target="_blank">http://github.com/jaredmoody/wp_now_playing</a></p>
<p>It also comes with a nice applescript so you can submit what&#8217;s currently playing to your blog with a single click:</p>
<p><img class="alignnone" src="http://github.com/jaredmoody/wp_now_playing/raw/master/screenshot-2.png" alt="" width="560" height="72" /></p>
<p>I&#8217;d love some feedback on it, and patches are also more than welcome.</p>
<p>Please report any issues on the github page, thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.elevationblog.com/2009/10/20/wordpress-now-playing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>renaming files on upload with paperclip</title>
		<link>http://dev.elevationblog.com/2009/10/15/renaming-files-on-upload-with-paperclip/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=renaming-files-on-upload-with-paperclip</link>
		<comments>http://dev.elevationblog.com/2009/10/15/renaming-files-on-upload-with-paperclip/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 22:24:19 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[paperclip rename]]></category>

		<guid isPermaLink="false">http://dev.elevationblog.com/2009/10/15/renaming-files-on-upload-with-paperclip/</guid>
		<description><![CDATA[I hadn&#8217;t done this before and everywhere I googled suggested using a custom interpolation to replace :basename in the default :path and :url params to has_attached_file The problem with this is 1. the actual image_file_name column in the database doesn&#8217;t get replaced 2 whatever you put in your interpolation function gets run every time the [...]]]></description>
			<content:encoded><![CDATA[<p>I hadn&#8217;t done this before and everywhere I googled suggested using a custom interpolation to replace :basename in the default :path and :url params to has_attached_file</p>
<p>The problem with this is 1. the actual image_file_name column in the database doesn&#8217;t get replaced 2 whatever you put in your interpolation function gets run every time the image url gets generated.</p>
<p>The answer is just rename the image_file_name before the model gets saved.</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.elevationblog.com/2009/10/15/renaming-files-on-upload-with-paperclip/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>installing id3lib-ruby on snow leopard</title>
		<link>http://dev.elevationblog.com/2009/09/21/installing-id3lib-ruby-on-snow-leopard/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=installing-id3lib-ruby-on-snow-leopard</link>
		<comments>http://dev.elevationblog.com/2009/09/21/installing-id3lib-ruby-on-snow-leopard/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 05:21:29 +0000</pubDate>
		<dc:creator>Jared</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dev.elevationblog.com/?p=1548</guid>
		<description><![CDATA[I couldn&#8217;t find this anywhere, but pieced it out from the article on riding rails: sudo env ARCHFLAGS="-arch x86_64" gem install id3lib-ruby]]></description>
			<content:encoded><![CDATA[<p>I couldn&#8217;t find this anywhere, but pieced it out from the article on <a href="http://weblog.rubyonrails.org/2009/8/30/upgrading-to-snow-leopard">riding rails</a>:</p>
<pre class="brush: bash">sudo env ARCHFLAGS="-arch x86_64" gem install id3lib-ruby</pre>
]]></content:encoded>
			<wfw:commentRss>http://dev.elevationblog.com/2009/09/21/installing-id3lib-ruby-on-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Event Calendar Rails Plugin</title>
		<link>http://dev.elevationblog.com/2009/07/23/event-calendar-rails-plugin/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=event-calendar-rails-plugin</link>
		<comments>http://dev.elevationblog.com/2009/07/23/event-calendar-rails-plugin/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 03:43:00 +0000</pubDate>
		<dc:creator>Jeff Schuil</dc:creator>
				<category><![CDATA[Home]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://elevationblog.com/2009/07/23/event-calendar-rails-plugin</guid>
		<description><![CDATA[For a recent project we needed to show events on a calendar. The existing Rails plugins we tried didn’t allow us to satisfactorily show multiple, overlapping events across calendar days and rows. I found the same complaint here and began to adapt it to our needs. I’ve extracted the result and put it on github [...]]]></description>
			<content:encoded><![CDATA[<p>For a recent project we needed to show events on a calendar. The existing Rails plugins we tried didn’t allow us to satisfactorily show multiple, overlapping events <em>across</em> calendar days and rows.</p>
<p>I found the same complaint <a href="http://www.cuppadev.co.uk/webdev/making-a-real-calendar-in-rails/">here</a> and began to adapt it to our needs.</p>
<p>I’ve extracted the result and put it on github in the hopes that others might find it useful and/or add improvements.</p>
<p><a href="http://github.com/elevation/event_calendar">http://github.com/elevation/event_calendar</a></p>
<p>The above link has more details, as well as how to install and use the plugin.</p>
<p>Here’s the 1000 word screenshot:</p>
<p style="text-align: center;"><a href="http://dev.elevationblog.com/wp-content/uploads/2009/07/cal.png"><img class="aligncenter size-medium wp-image-1531" title="Event Calendar Screenshot" src="http://dev.elevationblog.com/wp-content/uploads/2009/07/cal-300x270.png" alt="Event Calendar Screenshot" width="300" height="250" /></a></p>
<p>Using the <em>use_all_day</em> option:</p>
<p style="text-align: center;"><a href="http://dev.elevationblog.com/wp-content/uploads/2009/12/cal-times.png"><img class="aligncenter size-medium wp-image-1595" title="Event Calendar using all day option" src="http://dev.elevationblog.com/wp-content/uploads/2009/12/cal-times-300x223.png" alt="Event Calendar using all day option" width="300" height="223" /></a></p>
<p><strong>PLEASE</strong>:</p>
<ul>
<li>Submit bugs or feature requests at <a href="http://github.com/elevation/event_calendar/issues">GitHub Issues</a></li>
<li>Ask questions at the <a href="http://groups.google.com/group/event-calendar-plugin">Google Group</a></li>
</ul>
<p>Thanks and enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://dev.elevationblog.com/2009/07/23/event-calendar-rails-plugin/feed/</wfw:commentRss>
		<slash:comments>196</slash:comments>
		</item>
	</channel>
</rss>

