<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>app/views/index/index.atom.builder</filename>
    </added>
    <added>
      <filename>public/feed.atom</filename>
    </added>
    <added>
      <filename>public/images/opensource.png</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,17 +1,15 @@
 class IndexController &lt; ApplicationController
   
-  caches_action :feed, :cache_path =&gt; {:time =&gt; Time.now.hour / 15}
-  caches_page :index, :topics
-  after_filter :clear_cache, :only =&gt; :feed
+  caches_action :index, :format =&gt; :atom, :cache_path =&gt; {:time =&gt; Time.now.hour / 15}
+  caches_action :topics, :format =&gt; :atom, :cache_path =&gt; {:time =&gt; Time.now.hour / 15}
+  caches_page :index, :format =&gt; :html
+  caches_page :topics, :format =&gt; :html
+  after_filter :clear_cache, :only =&gt; :index
+  after_filter :clear_cache, :only =&gt; :topics
   
   def index
     respond_to do |format|
       format.html 
-    end
-  end
-  
-  def feed
-    respond_to do |format|
       format.atom { @stories = Digg.new.stories('stories/popular', :count =&gt; 100) }
     end
   end</diff>
      <filename>app/controllers/index_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -3,6 +3,7 @@
 &lt;div id=&quot;tagline&quot;&gt;
 	&lt;p&gt;The Ultimate Digg News Feed (Digg just got even better)&lt;/p&gt;
 	&lt;a href=&quot;http://feeds.feedburner.com/Diggfeedr&quot;&gt;&lt;img src=&quot;/images/subscribe.png&quot; id=&quot;subscribe&quot; alt=&quot;Subscribe Today&quot; /&gt;&lt;/a&gt;
+	&lt;br /&gt;&lt;br /&gt;&lt;a href='/topics'&gt;or get individual topics here&lt;/a&gt;
 &lt;/div&gt;
 &lt;div id=&quot;screen&quot;&gt;
 	&lt;p&gt;&lt;img src=&quot;/images/screen.png&quot; alt=&quot;digg.com Screenshot&quot; title=&quot;Digg.com&quot; /&gt;&lt;/p&gt;
@@ -21,8 +22,8 @@
 		&lt;p&gt;These new feeds are &lt;b&gt;100 stories&lt;/b&gt; long rather than the regular 40 so you&#8217;ll never miss another story.&lt;/p&gt;
 	&lt;/div&gt;
 	&lt;div class=&quot;item&quot;&gt;
-		&lt;h2&gt;Powered by the Best&lt;/h2&gt;
-		&lt;p&gt;Feeddit is riding on &lt;a href=&quot;http://rubyonrails.org&quot;&gt;Ruby on Rails&lt;/a&gt;, it grabs the latest stories via the &lt;a href=&quot;http://apidoc.digg.com/&quot;&gt;Digg API&lt;/a&gt; and syndicates it via &lt;a href=&quot;http://feedburner.com&quot;&gt;Feedburner&lt;/a&gt;.&lt;/p&gt;
+		&lt;h2&gt;Open Sourceable&lt;/h2&gt;
+		&lt;p&gt;Feeddit is 100% free and open source, anyone can get the code under an MIT License. &lt;a href='/opensource'&gt;Grab it here!&lt;/a&gt;&lt;/p&gt;
 	&lt;/div&gt;
 &lt;/div&gt;
 </diff>
      <filename>app/views/index/index.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1,13 @@
-&lt;p&gt;Open source blerb will go here&lt;/p&gt;
\ No newline at end of file
+&lt;div class='opensource'&gt;
+    &lt;%= image_tag('opensource.png') %&gt;
+
+    &lt;h2&gt;Open Source for the People&lt;/h2&gt;
+
+    &lt;p&gt;Feeddit is so free that we are actually giving away the source code, go on, take it! Do whatever you like with it!&lt;/p&gt;
+    
+    &lt;p&gt;If you think Feeddit is missing that killer feature then add it and send a pull request, you never know it might get merged back in and put live on the site.&lt;/p&gt;
+
+    &lt;p class='download'&gt;Get the latest version from github: &lt;a href='http://github.com/andrew/feeddit/tree/master'&gt;http://github.com/andrew/feeddit/tree/master&lt;/a&gt;&lt;/p&gt;
+
+    
+&lt;/div&gt;
\ No newline at end of file</diff>
      <filename>app/views/index/opensource.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -22,7 +22,7 @@
 		&lt;div id=&quot;content&quot;&gt;
 			&lt;div id=&quot;header&quot;&gt;
 				&lt;div id=&quot;logo&quot;&gt;&lt;/div&gt;
-				&lt;div id=&quot;title&quot;&gt;&lt;h1&gt;Feeddit &lt;span class=&quot;note&quot;&gt;Formerly DiggFeedr&lt;/span&gt;&lt;/h1&gt;&lt;/div&gt;
+				&lt;div id=&quot;title&quot;&gt;&lt;h1&gt;&lt;a href='/'&gt;Feeddit&lt;/a&gt; &lt;span class=&quot;note&quot;&gt;Formerly DiggFeedr&lt;/span&gt;&lt;/h1&gt;&lt;/div&gt;
 			&lt;/div&gt;
 			&lt;div id='middle'&gt;
 				&lt;div id='logopadder'&gt;&lt;/div&gt;</diff>
      <filename>app/views/layouts/application.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -5,7 +5,7 @@
 # ENV['RAILS_ENV'] ||= 'production'
 
 # Specifies gem version of Rails to use when vendor/rails is not present
-RAILS_GEM_VERSION = '2.0.2' unless defined? RAILS_GEM_VERSION
+RAILS_GEM_VERSION = '2.0.991' unless defined? RAILS_GEM_VERSION
 
 # Bootstrap the Rails environment, frameworks, and default configuration
 require File.join(File.dirname(__FILE__), 'boot')</diff>
      <filename>config/environment.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 ActionController::Routing::Routes.draw do |map|
-  map.rss '/feed.rss', :controller =&gt; 'index', :action =&gt; 'feed', :format =&gt; 'atom' # legacy routes
-  map.atom '/feed.atom', :controller =&gt; 'index', :action =&gt; 'feed', :format =&gt; 'atom' # legacy routes
+  map.rss '/feed.rss', :controller =&gt; 'index', :action =&gt; 'index', :format =&gt; 'atom' # legacy routes
+  map.atom '/feed.atom', :controller =&gt; 'index', :action =&gt; 'index', :format =&gt; 'atom' # legacy routes
 
   map.topic '/topics/:topic.atom', :controller =&gt; 'index', :action =&gt; 'topics', :format =&gt; 'atom'
 </diff>
      <filename>config/routes.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,3 @@
-/* Feeddit CSS */
-/* TODO better formatting and compress with asset packager */
 body{background:#eee;font:normal normal 0.9em &quot;Lucida Grande&quot;, Geneva, Arial, Verdana, sans-serif;}
 #wrapper{width:895px;margin:50px auto 0 auto;}
 #header{position:absolute;}
@@ -12,7 +10,8 @@ body{background:#eee;font:normal normal 0.9em &quot;Lucida Grande&quot;, Geneva, Arial, Ve
 a img{border:none;}
 #logo{width:128px; height:128px;background:url('/images/Feeds.png') no-repeat;float:left;margin:0 15px 0 0;}
 #title{margin:0 0 0 15px;border-bottom:1px solid #eee;float:left;width:550px;}
-#title h1{margin:10px 0;color:#222;font-weight:bold;}
+#title h1{margin:10px 0;color:#222;font-weight:bold; font-size:3.0em; line-height:0.5em;}
+h1 a, h1 a:visited{color:#000; text-decoration:none;}
 #title .note{font-size:10px;color:#999;font-weight:normal;}
 #screen{width:438px;height:390px;overflow:hidden;position:absolute;margin:0 0 0 410px;top:-70px;}
 #tagline{background:url('/images/tagline.png') no-repeat;width:415px;height:86px;position:absolute;top:85px;text-align:center;}
@@ -21,7 +20,7 @@ a img{border:none;}
 #blurb{clear:both; position:absolute; top:345px; width:835px;}
 .item{width:20%;float:left;margin:0 20px 0 10px;}
 .item h2, .item p{color:#333;}
-.item b, .item a, .item a:visited{color:#4578B1; font-weight:bold;}
+.item b, a, a:visited{color:#4578B1; font-weight:bold;}
 h2{font-size:1.1em;margin:2px 0;padding:0;}
 p{margin:3px 0;}
 #legal{clear:both;color:#aaa;font-size:0.7em;padding:30px 10px 0 10px; position:absolute; width:835px; top:620px; }
@@ -32,18 +31,8 @@ p{margin:3px 0;}
 #middle{position:absolute; top:160px; width:800px; margin:0 0 0 10px; font-size:0.8em;}
 #topics-list{ margin:20px 0 0 0; padding:0; }
 #topics-list li{ list-style:none; }
-#topics-list a{
-  background:#F6F6F6;
-  display:block; 
-  text-decoration:none; 
-  color:#555; 
-  background:; 
-  border:1px solid #ddd; 
-  width:138px; 
-  float:left;  
-  text-align:center;
-  margin:3px 5px;
-  padding:4px 5px;
-  height:25px;
-  }
-#topics-list a:hover{font-weight:bold; background:#FBFBC3;}
\ No newline at end of file
+#topics-list a{background:#F6F6F6;display:block; text-decoration:none; color:#555; border:1px solid #ddd; width:138px; float:left; text-align:center;margin:3px 5px;padding:4px 5px;height:25px;}
+#topics-list a:hover{font-weight:bold; background:#FBFBC3;}
+.opensource{width:500px; margin:0 auto;}
+.opensource h2, p{margin:0 0 10px 0;}
+.opensource .download{background:#eee; border:1px solid #ddd; padding:5px;}
\ No newline at end of file</diff>
      <filename>public/stylesheets/style.css</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>app/views/index/feed.atom.builder</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>2343f964ca8967f72f98e9df00b7283f4442f2cb</id>
    </parent>
  </parents>
  <author>
    <name>Andrew Nesbitt</name>
    <email>andrewnez@gmail.com</email>
  </author>
  <url>http://github.com/andrew/feeddit/commit/109d1e94985fa335bc9ba4ced4855b0ef01ec4da</url>
  <id>109d1e94985fa335bc9ba4ced4855b0ef01ec4da</id>
  <committed-date>2008-05-25T13:43:16-07:00</committed-date>
  <authored-date>2008-05-25T13:43:16-07:00</authored-date>
  <message>improved and refactored views</message>
  <tree>0ab1fe30f567c9075e085586f4337b37d05917d2</tree>
  <committer>
    <name>Andrew Nesbitt</name>
    <email>andrewnez@gmail.com</email>
  </committer>
</commit>
