<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,24 +1,30 @@
+v0.7.1  Renamed the rake task from update_dependencies to rebuild_dependencies.
+
+
 v0.7    Added a new rake task to (re)create the text_asset_dependencies table as
         Some users were having troubles due to bad imports (see below).  Since
         this table is purely calculated values, this new task can be run at any
-        time:  rake [ENV] radaint:extensions:sns:update_dependencies
-
-        Otherwise, this version is bugfixes or resolved issues:
-        
-        Export/export extensions were failing to export text_asset_dependencies
-        as the table and model names were both plural.  I've since submitted
-        patches to those extensions but renamed the model to TextAssetDependency
-        anyway (a bit less accurate but good enough).
-        
-        Rake task radiant:extensions:sns:config was broken.  Fixed and improved
-        it to include a help screen (--help or if no params).
-        
-        Changed TextAsset.filename to TextAsset.name (mostly for the file_system
-        extension but also makes the models more consistent with Radiant models
-        like Snippet and Layout)
+        time:  
         
-        Generally cleaned up and refactored the code.
+            rake [ENV] radaint:extensions:sns:update_dependencies
         
+        NOTE: this rake task renamed in v0.7.1 (now 'rebuild_dependencies').
+
+        The code was has been cleaned up and refactored in places.
+
+        Bugfixes and resolved issues:
+          * Importing/exporting extensions were failing to export the
+            text_asset_dependencies as the matching model names was also plural.
+            I've since submitted patches to those extensions but renamed the
+            model to TextAssetDependency (a bit less accurate but good enough).
+    
+          * Rake task radiant:extensions:sns:config was broken.  Fixed and
+            improved it to include a help screen (--help or if no params).
+    
+          * Changed TextAsset.filename to TextAsset.name (Donde mostly for the
+            file_system extension but also makes the models more consistent with
+            other Radiant models like Snippet and Layout).
+
 
 v0.6.2  Minor, minor fix: Corrected extension versioning and this history file.
 
@@ -29,43 +35,43 @@ v0.6.1  Bug fix:  Text Assets were rendering with no Status header.  Apparently
 v0.6    Change extension code to use &quot;sns&quot; instead of &quot;styles_n_scripts&quot; -- this
         will impact users as they need to move the extension from:
           /vendor/extensions/styles_n_scripts
-        
+
         to:
           /vendor/extensions/sns
-          
+
         Other than that, it's just a drop in replacement.
 
 
 v0.5    Lots of improvements here.  Some new features some just refactoring.
-        
+
         Added Shards to the edit view so now this extension can be extended
         (watch for SnS extension extensions to come soon).
-        
+
         Added support for filters.  The only real one planned is Sass for the
         CSS files but, the way I did it, it's pretty extensible (based on how
         Radiant handles page content filters).  Did I mention that there were
         some SnS extension extensions coming soon...
-        
+
         Changed the way stylesheet and javascript urls were routed and evaluated
         (now its a before_filter hooked into SiteController's show_page method).
         This has the added bonus of allowing the stylesheet and javascript
         directories to be changed during runtime (see next point).
-        
+
         Configurations are now handled differently.  Rather than setting them
         once at load-time, they are changed dynamically via Rake tasks.  The
         only exception is the caching directory -- you really don't want to do
         that one dynamcially -- so it's been pulled out of the config and made a
         constant.
-        
+
         Caching is more better.  No more caching the whole url path -- just the
         file, thank you.  This makes it possible to change the directory name
         on the fly.
-            
+
         Bug fixes:
           * Added a 'url' definition (just &quot;&quot;) to the extension to fix an issue
             with a change in Radiant 0.6.7 behavior (I really shoulda done that
             all along).
-            
+
           * Corrected an issue where this extension is included as part of a new
             Radiant install.  The RAKE db:bootstrap task would initialize the
             extension which would then try to write the default settings to a
@@ -89,70 +95,70 @@ v0.3.1  Moved Templates to Haml -- now requires Radiant 0.6.7 (or 0.6.6 and
         can create an external link like:
 
             &lt;r:stylesheet name=&quot;my_file.css&quot; as=&quot;link&quot; /&gt;
-            
+
             or
-            
+
             &lt;r:javascript name=&quot;my_file.js&quot; as=&quot;link&quot; /&gt;
-            
+
         Also made the as=&quot;inline&quot; option XHTML compliant by replacing the
         commenting (&lt;!-- --&gt;) with a proper CDATA wrapper.
- 
+
         See the documentation in 'available tags' on the page-edit page for more
         (now more readable).
 
 
 v0.3    Big new features plus code refactoring and a bug fix.  First, the new
         fetures include:
-        
+
           * Added &lt;r:stylesheet&gt; and &lt;r:javascript&gt; tags for use in pages.  This
-            lets you inject your stylesheet or javascript code into your Page 
+            lets you inject your stylesheet or javascript code into your Page
             much like using a snippet or just render the URL to the referenced
             CSS or JS file (see the readme for more on this).
-            
+
           * Added &lt;r:stylesheet&gt; and &lt;r:javascript&gt; tags for use in other
             Stylesheets or Javascripts.  This lets you maintain mulitple files
             yet just serve one master-stylesheet or master-javascript to your
             end users (cut down on server requests)
-            
+
             Along with this, I did a fancy trick with tracking dependencies so
             that the cache knows when to update (add, edit, or remove a file
             referenced by a &lt;r:stylesheet&gt; or &lt;r:javascript&gt; tag and the
             dependant file's effectively_updated_at time changes to reflect it).
-            
+
           * Added file upload button to the index pages.  Now instead of just
             creating new stylesheets or javascripts, you can upload a file into
             Radiant
-        
+
         The bugfix includes the completion of the one addressed in v0.2.1 by
         adding the form helper to the remove.html.erb template.
-            
-            
+
+
 v0.2.2  Bug fixes:
           * I added the UserActionObserver behavior and accompanying specs
-            to the Stylesheet and Javascript models 
+            to the Stylesheet and Javascript models
 
 
 v0.2.1  Bug fixes:
           * I corrected the ActionController::InvalidAuthenticityToken that
             comes from my not using the form helpers in my templates.  I also
             weakly spec-ed it.
-        
+
             NOTE: This was only a partial fix.  I corrected the edit.html.erb
-            template but not the remove.html.erb one.  See v0.3 for the 
+            template but not the remove.html.erb one.  See v0.3 for the
             completely fixed version.
 
 
 v0.2    Initial public release.  Complete rebuild of the extension to work with
         Rails 2.0 and Radiant 0.6.6.  Added *lots* of specs and focused on
         making this thing robust.
-        
+
         Basic functionality included:
-        
+
           * Stores stylesheet and javascript files
-          
+
           * Caches them with their own, improved response cache (improved in
             that it handles this file type better)
-            
+
           * Configuration management utility to allow extension users to adjust
             default settings
 </diff>
      <filename>HISTORY</filename>
    </modified>
    <modified>
      <diff>@@ -10,7 +10,7 @@ class AddDependenciesToTextAssets &lt; ActiveRecord::Migration
       puts &quot;         which now won't have associated text_asset_dependency records.&quot;
       puts &quot;\n          To solve this, you will need to run the following rake task&quot;
       puts &quot;                  once you've fully migrated your database:&quot;
-      puts &quot;       rake #{RAILS_ENV} radiant:extensions:sns:update_dependencies&quot;
+      puts &quot;       rake #{RAILS_ENV} radiant:extensions:sns:rebuild_dependencies&quot;
       puts &quot;\n                          * * * * * *  * * * * * *\n\n&quot;
       puts &quot;Press 'enter' to acknowledge and proceed with the migration(s):&quot;
       STDIN.gets</diff>
      <filename>db/migrate/002_add_dependencies_to_text_assets.rb</filename>
    </modified>
    <modified>
      <diff>@@ -35,7 +35,7 @@ namespace :radiant do
 
 
       desc &quot;(Re)calculates values for all TextAssetDependencies&quot;
-      task :update_dependencies =&gt; :environment do
+      task :rebuild_dependencies =&gt; :environment do
         puts &quot;&quot;, &quot;== Setting/Correcting TextAssetDependency Values ==============================&quot;
         TextAsset.find(:all, :order =&gt; 'id ASC').each do |text_asset|
           puts &quot;&quot;, &quot;-- setting values for #{text_asset.class.to_s.downcase}: #{text_asset.name}&quot;</diff>
      <filename>lib/tasks/sns_extension_tasks.rake</filename>
    </modified>
    <modified>
      <diff>@@ -9,10 +9,10 @@ require 'ostruct'
 
 
 class SnsExtension &lt; Radiant::Extension
-  version &quot;0.7&quot;
+  version &quot;0.7.1&quot;
   extension_name &quot;Styles 'n Scripts&quot;
   description &quot;Adds CSS and JS file management to Radiant&quot;
-  url &quot;&quot;
+  url &quot;http://github.com/SwankInnovations/radiant-sns-extension&quot;
 
 
   define_routes do |map|</diff>
      <filename>sns_extension.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>10a41963af5c8af5cc3b11501d38d8ec27351e17</id>
    </parent>
  </parents>
  <author>
    <name>Chris Parrish</name>
    <email>chris.parrish-gitmail@swankinnovations.com</email>
  </author>
  <url>http://github.com/SwankInnovations/radiant-sns-extension/commit/7113e2ffbeb9f5a2232e4bd27cd56c7a7d0302cd</url>
  <id>7113e2ffbeb9f5a2232e4bd27cd56c7a7d0302cd</id>
  <committed-date>2008-11-24T09:56:30-08:00</committed-date>
  <authored-date>2008-11-24T09:56:30-08:00</authored-date>
  <message>Renamed Rake task: update_dependencies to rebuild_dependencies. v0.7.1</message>
  <tree>d3c75f6bdcb779947f3620b7bfc6464ca4d6edb4</tree>
  <committer>
    <name>Chris Parrish</name>
    <email>chris.parrish-gitmail@swankinnovations.com</email>
  </committer>
</commit>
