<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>www/content/articles/spotlight_on_laziness.txt</filename>
    </added>
    <added>
      <filename>www/content/news.rss</filename>
    </added>
    <added>
      <filename>www/templates/news.erb</filename>
    </added>
    <added>
      <filename>www/templates/spotlight.erb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -16,9 +16,9 @@
 
 load 'tasks/setup.rb'
 
-task :default =&gt; :build
+task :default =&gt; :rebuild
 
 desc 'deploy the site to the webserver'
-task :deploy =&gt; [:build, 'deploy:rsync']
+task :deploy =&gt; [:rebuild, 'deploy:rsync']
 
 # EOF</diff>
      <filename>www/Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -4,7 +4,7 @@ title: 0.3.0 Gem Released!
 created_at: 2008-03-18T15:55:50-05:00
 summary: DataMapper 0.3.0 has been released.
 release_type: important
-author: Sam
+author: ssmoot
 filter:
   - erb
   - textile</diff>
      <filename>www/content/articles/gem_030_released.txt</filename>
    </modified>
    <modified>
      <diff>@@ -4,7 +4,7 @@ title: Spotlight on... Composite Keys
 created_at: 2008-03-29T19:09:07-05:00
 summary: When a Primary Key Just Isn't Enough
 release_type: blog
-author: Adam and Sam
+author: afrench and ssmoot
 filter:
   - erb
   - textile</diff>
      <filename>www/content/articles/spotlight_on_cpk.txt</filename>
    </modified>
    <modified>
      <diff>@@ -4,7 +4,7 @@ title: The Great Refactoring
 created_at: 2008-03-22T15:55:50-05:00
 summary: Change is afoot
 release_type: blog
-author: Adam
+author: afrench and ssmoot
 filter:
   - erb
   - textile</diff>
      <filename>www/content/articles/the_great_refactoring.txt</filename>
    </modified>
    <modified>
      <diff>@@ -8,14 +8,14 @@ filter:
 
 DataMapper is a &quot;Object Relational Mapper&quot;:http://en.wikipedia.org/wiki/Object-relational_mapping written in &quot;Ruby.&quot;:http://ruby-lang.org/ The goal is to create an ORM which is fast, thread-safe and feature rich.
 
-To learn a little more about this project and why you should be interested, read the &quot;Why Datamapper?&quot;:/why.html page.
+To learn a little more about this project and why you should be interested,&lt;br&gt; read the &quot;Why Datamapper?&quot;:/why.html page.
 
 &lt;% update = @pages.find(1, :in_directory =&gt; &quot;articles&quot;, :sort_by =&gt; &quot;created_at&quot;, :reverse =&gt; true, :release_type =&gt; 'important')
 %&gt;
 
-h2(latestRelease). &lt;%= update.title %&gt;
-  
-p(latestRelease). &lt;%= update.summary %&gt; &lt;a href=&quot;&lt;%= update.url %&gt;&quot; class=&quot;read_more&quot;&gt;Read More&lt;/a&gt;
+h2(latestRelease). Recent News
+
+p(latestRelease). &lt;%= update.title %&gt; &lt;br&gt; &lt;%= update.summary %&gt; &lt;a href=&quot;&lt;%= update.url %&gt;&quot; class=&quot;read_more&quot;&gt;Read More&lt;/a&gt;
   
 &lt;div id=&quot;help&quot;&gt;
 
@@ -29,9 +29,9 @@ If you're having trouble, don't forget to check the documentation, which has bot
 
 &lt;div id=&quot;bugs&quot;&gt;
 
-h2. Report Bugs
+h2. Issues
 
-Imperfect creature that it is, DataMapper will unfortunately contain a few bugs, but with your help, we'll sort &#8216;em out!
+If you're still having trouble, or you think you came across something you think might be a bug, let us know.
 
 &quot;Log a ticket&quot;:http://wm.lighthouseapp.com/projects/4819-datamapper/overview
 </diff>
      <filename>www/content/index.txt</filename>
    </modified>
    <modified>
      <diff>@@ -9,9 +9,10 @@ filter:
 h1. &lt;%= @page.title %&gt;
 
 &lt;dl&gt;
-&lt;%
-  articles = @pages.find(:limit =&gt; :all, :in_directory =&gt; &quot;articles&quot;, :sort_by =&gt; 'created_at', :reverse =&gt; true)
-  paginate(articles, 20) do |page|
+&lt;% 
+  articles = @pages.find(:limit =&gt; :all, :in_directory =&gt; 'articles') {|a| a.release_type != 'draft'}.sort{|a, b| b.created_at &lt;=&gt; a.created_at}
+  
+   paginate(articles, 20) do |page|
 %&gt;
 
   &lt;dt&gt;</diff>
      <filename>www/content/news.txt</filename>
    </modified>
    <modified>
      <diff>@@ -13,6 +13,9 @@ filter:    erb
      &lt;link rel=&quot;stylesheet&quot; href=&quot;/css/coderay.css&quot; type=&quot;text/css&quot; media=&quot;screen, projection&quot; /&gt;
      &lt;!--[if lt IE 7]&gt; &lt;link rel=&quot;stylesheet&quot; href=&quot;css/ie_hacks.css&quot; type=&quot;text/css&quot; media=&quot;screen, projection&quot; /&gt; &lt;![endif]--&gt;
      &lt;script src=&quot;/js/jquery-1.2.3.pack.js&quot; type=&quot;text/javascript&quot; charset=&quot;utf-8&quot;&gt;&lt;/script&gt;
+     &lt;link rel=&quot;alternate&quot; type=&quot;application/rss+xml&quot;
+              title=&quot;News and Notes feed&quot;
+              href=&quot;/news.rss&quot; /&gt;
   &lt;/head&gt;
   
   &lt;body id=&quot;&lt;%= @page.body_id %&gt;&quot;&gt;</diff>
      <filename>www/layouts/default.rhtml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,6 @@
 
 Rake::WebbyTask.new
 
+
+
 # EOF</diff>
      <filename>www/tasks/create.rake</filename>
    </modified>
    <modified>
      <diff>@@ -5,7 +5,7 @@ filter:
   - erb
   - textile
 ---
-p(title). &lt;%= h(@page.title) %&gt;
+p(title). &lt;%%= h(@page.title) %&gt;
 
 Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nunc congue ipsum vestibulum libero. Aenean vitae justo. Nam eget tellus. Etiam convallis, est eu lobortis mattis, lectus tellus tempus felis, a ultricies erat ipsum at metus.
 </diff>
      <filename>www/templates/page.erb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>8f6134b825d9b7590523e8876adaf4effce7b82d</id>
    </parent>
  </parents>
  <author>
    <name>Adam French</name>
    <email>adam@wieck.com</email>
  </author>
  <url>http://github.com/wycats/dm-core/commit/89e5238ce07293a092b37767ddb9ec33be51aa0d</url>
  <id>89e5238ce07293a092b37767ddb9ec33be51aa0d</id>
  <committed-date>2008-04-05T18:09:40-07:00</committed-date>
  <authored-date>2008-04-05T18:09:40-07:00</authored-date>
  <message>rss feed, new spotlight article, couple new templates, and redefining rake deploy to rebuild first</message>
  <tree>8828178914c565de30b2a49c56373b05d4e350c7</tree>
  <committer>
    <name>Adam French</name>
    <email>adam@wieck.com</email>
  </committer>
</commit>
