<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>app/views/admin/pages/_edit_page_event.html.erb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -7,43 +7,35 @@ Page Event is a simple page-based event calendar for associating time-based even
 
 INSTALLATION
 
-NOTE: The extension is tested against 6.6  through 6.9 though it might work for some of the older 6 releases.  If you use a version older than 6.7 you'll need the shards extension installed and configured properly.  I have no intention of adding support for any release prior to 6.6.  The following instructions assume you have Radiant 6.7 installed and configured properly.
+NOTE:  This assumes you're on 0.8.1.  It most likely will not be backwards compatible with older versions of Radiant.  If you need to make this work with an older version then I'd suggest you look at an older version of the extension.
 
-1) Install the Calendar Date Select plugin with the following command:
+1) Install the Calendar Date Select plugin
 
-git clone git://github.com/timcharper/calendar_date_select.git vendor/plugins/calendar_date_select
+# install the gem
+  sudo gem install calendar_date_select
 
-OR
+# add gem dependency to environment.rb
+  config.gem &quot;calendar_date_select&quot;
 
-svn export http://calendardateselect.googlecode.com/svn/tags/calendar_date_select vendor/plugins/calendar_date_select
+# though optional, I recommend unpacking the gem
+  rake gems:unpack
 
 You can read more about it here:
 http://code.google.com/p/calendardateselect/ 
 
-
 2) Install the Page Event Extension
 
-If you're only 6.9 or newer:
-
 script/extension install page_event
 
-OR the old way:
-
-git clone git://github.com/mghaught/radiant-page-event.git vendor/extensions/page_event
-
-** Github has a download button that will give you a tarball of the extension.  If you don't want to use git then go this route and expand the tarball in the vendor/extensions/page_event directory of your Radiant app.
-
-
 3) run migration*
 
 rake production radiant:extensions:page_event:migrate
 
-
 4) run rake update for extension*
 
 rake radiant:extensions:page_event:update
 
-*Both 3 and 4 are unnecessary if you used the script/extension install command
+* Both 3 and 4 are unnecessary if you used the script/extension install command
 
 5) Start (or restart) your server
 
@@ -84,10 +76,3 @@ OR
 &lt;r:event:duration /&gt;
 
 They will simply output the date or time, respectively, in a human formatted version.  The &lt;r:date/&gt; and &lt;r:time/&gt; tags accept a format attribute that specifies a strftime pattern for formatting the date or time.
-
-
-
-
-FUTURE RELEASES
-
-In the immediate future, I will focus styling and bug fixes.  There are several refactoring opportunities as well as UI enhancements on both sides that might happen.  The biggest change I'm anticipating is upgrading the event data from a simple timestamp to a true model with time ranges.  Feedback welcome!</diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -1,19 +1,11 @@
 class ConvertEventDatetimeToStartAndEnd &lt; ActiveRecord::Migration
   def self.up
-    add_column :pages, :event_datetime_start, :datetime
+    rename_column :pages, :event_datetime, :event_datetime_start 
     add_column :pages, :event_datetime_end, :datetime
-    Page.find(:all).each do |page|
-      page.update_attributes :event_datetime_start =&gt; page.event_datetime
-    end
-    remove_column :pages, :event_datetime
   end
 
   def self.down
-    add_column :pages, :event_datetime, :datetime
-    Page.find(:all).each do |page|
-      page.update_attributes :event_datetime =&gt; page.event_datetime_start
-    end
-    remove_column :pages, :event_datetime_start
     remove_column :pages, :event_datetime_end
+    rename_column :pages, :event_datetime_start, :event_datetime
   end
 end</diff>
      <filename>db/migrate/002_convert_event_datetime_to_start_and_end.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 
 class PageEventExtension &lt; Radiant::Extension
-  version &quot;0.4&quot;
+  version &quot;0.5&quot;
   description &quot;Allows you to add event dates to your pages that can be viewed on a site-wide calendar&quot;
   url &quot;http://github.com/mghaught/radiant-page-event/tree/master&quot;
   </diff>
      <filename>page_event_extension.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>app/views/admin/pages/_edit_page_event.rhtml</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>4823e62895eb8d7bdb496d8ae2bf0427475a52c5</id>
    </parent>
  </parents>
  <author>
    <name>Marty Haught</name>
    <email>mghaught@gmail.com</email>
  </author>
  <url>http://github.com/mghaught/radiant-page-event/commit/284c6000a7cee5606fb41749bf2297d2e7e9a103</url>
  <id>284c6000a7cee5606fb41749bf2297d2e7e9a103</id>
  <committed-date>2009-10-29T13:13:56-07:00</committed-date>
  <authored-date>2009-10-29T13:13:56-07:00</authored-date>
  <message>Fixed the migration that was losing existing dates
Tested and got the extension working with 0.8.1</message>
  <tree>000e3bf9004946ec36c7666e82f72666729ccc57</tree>
  <committer>
    <name>Marty Haught</name>
    <email>mghaught@gmail.com</email>
  </committer>
</commit>
