<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>app/views/shared/_box.html.haml</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -2,6 +2,10 @@
 * haml/sass propagation (desert)
 * upgrade documentation/rake tasks to fix old migrations
 
+= 1.0.3
+* Photo albums
+* Static pages
+
 = 1.0.2
 * Rails 2.3 compatibility
 * RedCloth no longer required
@@ -10,6 +14,7 @@
 * allow moderators/activity owners to delete activities
 * only track login activity once per day
 * allow anonymous commenters to choose whether they want to receive follow-up comment notices by e-mail
+* refactor views to use 'box' helper for logical content modules, allowing better flexibility when trying to customize layouts
 
 = 1.0.1
 * fixed error when cropping photos using file system storage</diff>
      <filename>CHANGELOG</filename>
    </modified>
    <modified>
      <filename>LICENSE</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,4 @@
-CommunityEngine [v1.0.0]: Modifications to  edge branch
-================
+CommunityEngine [v1.0.3]
 
 Information at: [http://www.communityengine.org](http://www.communityengine.org)
 
@@ -21,7 +20,7 @@ Getting CommunityEngine Running
 
 SHORT VERSION: 
 
-        rails your_app_name -m http://www.communityengine.org/install_template.rb
+        rails your_app_name -m http://www.communityengine.org/edge_install_template.rb
 
 LONG VERSION:
 </diff>
      <filename>README.markdown</filename>
    </modified>
    <modified>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <filename>UPGRADING.markdown</filename>
    </modified>
    <modified>
      <diff>@@ -4,4 +4,4 @@ homepage: http://www.missingmethod.com
 summary: A social networking engine
 description: Adds basic social networking capabilities to your existing application, including users, blogs, photos, clippings, favorites, and more.
 license: MIT
-version: 1.0.2
\ No newline at end of file
+version: 1.0.3
\ No newline at end of file</diff>
      <filename>about.yml</filename>
    </modified>
    <modified>
      <filename>app/controllers/activities_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/admin_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/ads_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/albums_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/application_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/base_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/categories_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/clippings_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/comment_sweeper.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/comments_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/contests_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/events_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/favorite_sweeper.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/favorites_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/forums_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/friendships_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/homepage_features_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/invitations_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/messages_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/metro_areas_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/moderators_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/monitorships_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/offerings_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/photo_manager_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/photos_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/post_sweeper.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/posts_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/sb_posts_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/sessions_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/sitemap_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/skills_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/static_pages_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -6,8 +6,8 @@ class StatisticsController &lt; BaseController
   def index
     @total_users = User.count(:conditions =&gt; ['activated_at IS NOT NULL'])
     @unactivated_users = User.count(:conditions =&gt; ['activated_at IS NULL'])
-    @yesterday_new_users = find_new_users(1.day.ago.midnight, Time.today.midnight)
-    @today_new_users = find_new_users(Time.today.midnight, Time.today.tomorrow.midnight)  
+    @yesterday_new_users = find_new_users(1.day.ago.midnight, Date.today.midnight)
+    @today_new_users = find_new_users(Date.today.midnight, Date.today.tomorrow.midnight)  
 #    @active_users_count = Activity.find(:all, :group =&gt; &quot;user_id&quot;, :conditions =&gt; [&quot;created_at &gt; ?&quot;, 1.month.ago]).size
     @active_users_count = Activity.count(:all, :group =&gt; &quot;user_id&quot;, :conditions =&gt; [&quot;created_at &gt; ?&quot;, 1.month.ago]).size
 </diff>
      <filename>app/controllers/statistics_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/taggable_sweeper.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/tags_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/theme_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/topics_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -409,7 +409,7 @@ class UsersController &lt; BaseController
       date = Date.new(params[:date][:year].to_i, params[:date][:month].to_i)
       @month = Time.parse(date.to_s)
     else
-      @month = Time.today    
+      @month = Date.today    
     end
     
     start_date  = @month.beginning_of_month</diff>
      <filename>app/controllers/users_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/vote_sweeper.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/votes_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/controllers/xmlrpc_controller.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/ads_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/albums_helper.rb</filename>
    </modified>
    <modified>
      <diff>@@ -50,8 +50,15 @@ module BaseHelper
     yield(content)
     concat('&lt;br class=&quot;clear&quot; /&gt;&lt;div class=&quot;box_bottom&quot;&gt;&lt;/div&gt;&lt;/div&gt;')
   end
+  
+  def block_to_partial(partial_name, html_options = {}, &amp;block)
+    concat(render(:partial =&gt; partial_name, :locals =&gt; {:body =&gt; capture(&amp;block), :html_options =&gt; html_options}))
+  end
 
-
+  def box(html_options = {}, &amp;block)
+    block_to_partial('shared/box', html_options, &amp;block)
+  end  
+  
   def tag_cloud(tags, classes)
     max, min = 0, 0
     tags.each { |t|
@@ -259,7 +266,11 @@ module BaseHelper
     	end
     end
     
-    content_tag(:div, pagination_info_for(paginator), :class =&gt; 'pagination_info') + (links || '')
+    if options[:show_info].eql?(false)
+      (links || '')
+    else
+      content_tag(:div, pagination_info_for(paginator), :class =&gt; 'pagination_info') + (links || '')
+    end
   end  
   
   def pagination_info_for(paginator, options = {})</diff>
      <filename>app/helpers/base_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/categories_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/clippings_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/comments_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/contests_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/forums_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/friendships_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/homepage_features_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/invitations_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/metro_areas_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/moderators_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/monitorships_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/offerings_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/photos_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/posts_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/sb_posts_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/sessions_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/sitemap_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/skills_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/statistics_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/tags_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/topics_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/helpers/users_helper.rb</filename>
    </modified>
    <modified>
      <filename>app/models/ad.rb</filename>
    </modified>
    <modified>
      <filename>app/models/album.rb</filename>
    </modified>
    <modified>
      <filename>app/models/asset.rb</filename>
    </modified>
    <modified>
      <filename>app/models/category.rb</filename>
    </modified>
    <modified>
      <filename>app/models/choice.rb</filename>
    </modified>
    <modified>
      <filename>app/models/clipping.rb</filename>
    </modified>
    <modified>
      <filename>app/models/clipping_image.rb</filename>
    </modified>
    <modified>
      <filename>app/models/comment.rb</filename>
    </modified>
    <modified>
      <filename>app/models/contest.rb</filename>
    </modified>
    <modified>
      <filename>app/models/country.rb</filename>
    </modified>
    <modified>
      <filename>app/models/event.rb</filename>
    </modified>
    <modified>
      <filename>app/models/favorite.rb</filename>
    </modified>
    <modified>
      <filename>app/models/forum.rb</filename>
    </modified>
    <modified>
      <filename>app/models/friendship.rb</filename>
    </modified>
    <modified>
      <filename>app/models/friendship_status.rb</filename>
    </modified>
    <modified>
      <filename>app/models/homepage_feature.rb</filename>
    </modified>
    <modified>
      <filename>app/models/invitation.rb</filename>
    </modified>
    <modified>
      <filename>app/models/message.rb</filename>
    </modified>
    <modified>
      <filename>app/models/metro_area.rb</filename>
    </modified>
    <modified>
      <filename>app/models/moderatorship.rb</filename>
    </modified>
    <modified>
      <filename>app/models/monitorship.rb</filename>
    </modified>
    <modified>
      <filename>app/models/offering.rb</filename>
    </modified>
    <modified>
      <diff>@@ -61,6 +61,16 @@ class Photo &lt; ActiveRecord::Base
     self.user.photos.find(:first, :conditions =&gt; ['created_at &gt; ?', created_at], :order =&gt; 'created_at ASC')
   end
 
+  def previous_in_album
+    return nil unless self.album
+    self.user.photos.find(:first, :conditions =&gt; ['created_at &lt; ? and album_id = ?', created_at, self.album.id], :order =&gt; 'created_at DESC')
+  end
+  def next_in_album
+    return nil unless self.album    
+    self.user.photos.find(:first, :conditions =&gt; ['created_at &gt; ? and album_id = ?', created_at, self.album_id], :order =&gt; 'created_at ASC')
+  end
+
+
   def self.find_recent(options = {:limit =&gt; 3})
     self.new_this_week.find(:all, :limit =&gt; options[:limit])
   end</diff>
      <filename>app/models/photo.rb</filename>
    </modified>
    <modified>
      <filename>app/models/poll.rb</filename>
    </modified>
    <modified>
      <filename>app/models/post.rb</filename>
    </modified>
    <modified>
      <filename>app/models/role.rb</filename>
    </modified>
    <modified>
      <filename>app/models/sb_post.rb</filename>
    </modified>
    <modified>
      <filename>app/models/skill.rb</filename>
    </modified>
    <modified>
      <filename>app/models/state.rb</filename>
    </modified>
    <modified>
      <filename>app/models/static_page.rb</filename>
    </modified>
    <modified>
      <filename>app/models/tag.rb</filename>
    </modified>
    <modified>
      <filename>app/models/topic.rb</filename>
    </modified>
    <modified>
      <diff>@@ -17,8 +17,8 @@ class User &lt; ActiveRecord::Base
   before_save   :encrypt_password, :whitelist_attributes
   before_create :make_activation_code
   after_create  :update_last_login
-  after_create {|user| UserNotifier.deliver_signup_notification(user) }
-  after_save   {|user| UserNotifier.deliver_activation(user) if user.recently_activated? }  
+  after_create  :deliver_signup_notification
+  after_save    :deliver_activation
   before_save   :generate_login_slug
   after_save    :recount_metro_area_users
   after_destroy :recount_metro_area_users
@@ -351,7 +351,15 @@ class User &lt; ActiveRecord::Base
   
   # before filter
   def generate_login_slug
-    self.login_slug = self.login.gsub(/[^a-z1-9]+/i, '-')
+    self.login_slug = self.login.gsub(/[^a-z0-9]+/i, '-')
+  end
+  
+  def deliver_activation
+    UserNotifier.deliver_activation(self) if self.recently_activated?
+  end
+  
+  def deliver_signup_notification
+    UserNotifier.deliver_signup_notification(self)    
   end
 
   def update_last_login</diff>
      <filename>app/models/user.rb</filename>
    </modified>
    <modified>
      <filename>app/models/user_notifier.rb</filename>
    </modified>
    <modified>
      <filename>app/models/user_observer.rb</filename>
    </modified>
    <modified>
      <filename>app/models/vote.rb</filename>
    </modified>
    <modified>
      <filename>app/views/activities/_activity.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/activities/_icon.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/activities/_unhandled_item.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/activities/destroy.js.rjs</filename>
    </modified>
    <modified>
      <diff>@@ -1,12 +1,12 @@
 .yui-gc
   .yui-u.first
-    .box.fresh
+    -box :class =&gt; &quot;fresh&quot; do 
       %h3=&quot;What's fresh&quot;.l
       =render :partial =&gt; &quot;activities/activity&quot;, :collection =&gt; @activities
       .pagination=paginating_links @activities if @activities.page_count &gt; 1      
       
   .yui-u
-    .box
+    -box do 
       %h3=&quot;Tags&quot;.l
       - tag_cloud @popular_tags, %w(nube1 nube2 nube3 nube4 nube5) do |name, css_class|
         = link_to name, tag_path(URI.escape(name, /[\/.?#]/)), :class =&gt; css_class</diff>
      <filename>app/views/activities/index.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
   =render :partial =&gt; 'users/dashboard_nav'
   
 #yui-main
-  .yui-b.box.fresh
+  -box :class =&gt; 'yui-b fresh' do
     -unless @activities.empty?
       %h3=:activity_from_your_network.l
       %table{:width =&gt; &quot;100%&quot;}</diff>
      <filename>app/views/activities/network.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -4,7 +4,7 @@
 
 - form_tag delete_selected_comments_path, :id =&gt; 'comments' do
   #yui-main
-    .yui-b.box
+    -box :class =&gt; &quot;yui-b&quot; do
       %h3
         = AppConfig.community_name
         = :comments.l</diff>
      <filename>app/views/admin/comments.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 
 #yui-main
   .yui-b
-    .box
+    -box do 
       %h3= :contests.l
       = link_to :new_contest.l, new_contest_path
 </diff>
      <filename>app/views/admin/contests.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/admin/messages.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
   = render :partial =&gt; 'shared/admin_nav'
 
 #yui-main
-  .yui-b.box
+  -box :class =&gt; &quot;yui-b&quot; do
     %h3
       = AppConfig.community_name
       = :members.l
@@ -25,7 +25,7 @@
         %th=:actions.l
         
       - @users.each do |user|
-        %tr
+        %tr{:id =&gt; &quot;user_#{user.id}&quot;}
           %td
             = link_to h(user.login), user_path(user)
           %td
@@ -35,6 +35,7 @@
           %td
             = link_to( :assume_id.l , assume_user_path(user) )
             = (&quot; | &quot; + link_to(:activate.l, :controller =&gt; &quot;/admin&quot;, :action =&gt; &quot;activate_user&quot;, :id =&gt; user.id)) unless user.active?
+            = link_to_remote(image_tag('icons/delete.png', :plugin =&gt; 'community_engine'), {:url =&gt; user_path(user), :method =&gt; :delete, :success =&gt; visual_effect(:fade, &quot;user_#{user.id}&quot;), :confirm =&gt; &quot;Are you sure you want to permanently delete this user&quot;} )                                                
 
     -if @users.page_count &gt; 1
       .pagination= paginating_links @users, :link_to_current_page =&gt; true</diff>
      <filename>app/views/admin/users.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   %h3=:editing_ad.l
   = error_messages_for :ad
   - form_for(:ad, :url =&gt; ad_path(@ad), :html =&gt; { :method =&gt; :put, :class =&gt; &quot;MainForm&quot; }) do |f|</diff>
      <filename>app/views/ads/edit.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
   = render :partial =&gt; 'shared/admin_nav'
 
 #yui-main
-  .yui-b.box
+  -box :class =&gt; &quot;yui-b&quot; do
     %h3= :ads.l
     %table{&quot;width&quot;=&gt;&quot;100%&quot;}
       %tr</diff>
      <filename>app/views/ads/index.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   %h3=:new_ad.l
   = error_messages_for :ad
   - form_for(:ad, :url =&gt; ads_path, :html =&gt; {:class =&gt; &quot;MainForm&quot; }) do |f|</diff>
      <filename>app/views/ads/new.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   %h3=:showing_ad.l
   %p
     %b</diff>
      <filename>app/views/ads/show.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/albums/_form.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/albums/edit.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/albums/new.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/albums/show.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 .yui-b
-  .box
+  -box do 
     %h3=:about_site.l :site =&gt; AppConfig.community_name
     %ul.list.checks
       %li
@@ -9,7 +9,7 @@
       %li 
         %a{:href=&gt;&quot;/advertise&quot;} 
           =:advertise.l
-  .box.alt
+  -box :class =&gt; &quot;alt&quot; do 
     %h3=:need_to_contact_us.l
     %p
       =:dont_wait_its.l</diff>
      <filename>app/views/base/_about_nav.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 #welcome
   .yui-gc
     .yui-u.first
-      .box
+      -box do 
         %h2
           =:get_started_banner.l :site=&gt;AppConfig.community_name
         %p
@@ -10,7 +10,7 @@
           %a{:href=&gt;&quot;http://www.missingmethod.com/projects/community_engine&quot;}
             =:homepage_banner_download_msg.l
     .yui-u
-      .box
+      -box do 
         %h2
           =:homepage_banner_signup_prompt.l
         %p</diff>
      <filename>app/views/base/_homepage_banner_message.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,5 +2,5 @@
 
 #yui-main
   .yui-b
-    .box
+    -box do 
       %h3=:your_about_text_goes_here.l
\ No newline at end of file</diff>
      <filename>app/views/base/about.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
 
 #yui-main
   .yui-b
-    .box
+    -box do 
       %h3
         =:advertise_on.l
         =&quot; #{AppConfig.community_name}&quot;
\ No newline at end of file</diff>
      <filename>app/views/base/advertise.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
 
 #yui-main
   .yui-b
-    .box
+    -box do 
       %h3=:frequently_asked_questions.l
 
       %h4#what_is_it
@@ -17,8 +17,4 @@
 
       %h4#images_and_flash How do I embed images and flash using the rich text editor?
       %p 
-        You can add images or flash media to your profile and your blog posts by using the image 
-        %img{:src=&gt;&quot;/plugin_assets/community_engine/javascripts/tiny_mce/themes/advanced/images/image.gif&quot;}
-        and media 
-        %img{:src=&gt;&quot;/plugin_assets/community_engine/javascripts/tiny_mce/plugins/media/images/media.gif&quot;}
-        buttons on the rich text editor.
\ No newline at end of file
+        You can add images or flash media to your profile and your blog posts by using the image and media buttons on the rich text editor.</diff>
      <filename>app/views/base/faq.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/base/plaxo.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -5,13 +5,13 @@
 
 #yui-main
   .yui-b
-    .box.hfeed
+    -box :class =&gt; &quot;hfeed&quot; do 
       %h3
         =:recent_posts.l
       = render :partial =&gt; 'posts/post', :collection =&gt; @posts
 
 .yui-b  
-  .box
+  -box do 
     %h3= :explore_site.l :site =&gt; AppConfig.community_name
     %ul.list.checks
       - Category.find(:all).each do |c|
@@ -19,7 +19,7 @@
       %li= link_to :whats_popular.l, popular_url, {:class =&gt; 'popular'}
       %li= link_to :find_an_expert.l, skills_path, {:class =&gt; 'users'}
 
-  .box.alt
+  -box :class =&gt; &quot;alt&quot; do 
     %h3
       = :whats_hot.l
       
@@ -29,13 +29,13 @@
     %h6.all
       %a{:href=&gt;&quot;/popular&quot;}= :see_all.l
 
-  .box.alt
+  -box :class =&gt; &quot;alt&quot; do 
     %h3
       =:featured_writer.l
     -@featured_writers.each do |user|
       =render :partial =&gt; &quot;users/sidebar_user&quot;, :locals =&gt; {:user =&gt; user}
 
-  .box.alt
+  -box :class =&gt; &quot;alt&quot; do 
     %h3= :active_users.l
     -@active_users.each do |user|    
       =render :partial =&gt; &quot;users/sidebar_user&quot;, :locals =&gt; {:user =&gt; user}      </diff>
      <filename>app/views/base/site_index.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/base/teaser.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/categories/_tips.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
   = render :partial =&gt; 'shared/admin_nav'
 
 #yui-main
-  .yui-b.box
+  -box :class =&gt; &quot;yui-b&quot; do
     %h3=:editing_category.l
     - form_for(:category, :url =&gt; category_path(@category), :html =&gt; { :method =&gt; :put, :class =&gt; &quot;MainForm&quot; }) do |f|
 </diff>
      <filename>app/views/categories/edit.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 
 #yui-main
   .yui-b
-    .box
+    -box do 
       %h3=:categories.l
 
       %table{:width=&gt;&quot;100%&quot;}</diff>
      <filename>app/views/categories/index.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   %h3= :new_category.l
 
   - form_for(:category, :url =&gt; categories_path, :html =&gt; {:class =&gt; &quot;MainForm&quot;}) do |f|</diff>
      <filename>app/views/categories/new.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
 - @section = @category.name
 
 .yui-b
-  .box
+  -box do 
     - if logged_in?
       %h3.signup=:have_something_to_contribute.l
       %ul.list.checks
@@ -17,12 +17,12 @@
               =:have_an_account.l
               %a{:href=&gt;&quot;/login&quot;, :title=&gt;:log_in_to_your.l+&quot; #{AppConfig.community_name} &quot;+:account.l}=&quot;&amp;raquo; &quot; + :login.l
 
-  .box.alt
+  -box :class =&gt; &quot;alt&quot; do 
     %h3=:top_writers.l
     - @active_users.each do |user|
       = render :partial =&gt; &quot;users/sidebar_user&quot;, :locals =&gt; {:user =&gt; user} 
       
-  .box.alt
+  -box :class =&gt; &quot;alt&quot; do 
     %h3=:popular_catgory.l(:name =&gt; @category.name)
     %ul.list.page    
       - @popular_posts.each do |post|
@@ -31,7 +31,7 @@
 
 #yui-main
   .yui-b
-    .box.hfeed
+    -box :class =&gt; &quot;hfeed&quot; do 
       %h3      
         =:show_category.l :category =&gt; @category.name
         %ul.subnav</diff>
      <filename>app/views/categories/show.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/clippings/_clipping.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/clippings/_images.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/clippings/_meta.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,11 +1,11 @@
 .yui-b
-  .box
+  -box do 
     %h3= :help.l
     %p= :tags_are_keywords_you_use_to_organize_your_clippings_separate_multiple_tags_with_commas.l
 
 #yui-main
   .yui-b
-    .box
+    -box do 
       %h3= :editing_clipping.l
       %img{&quot;src&quot;=&gt;&quot;#{h @clipping.image_uri}&quot;}
       - form_for(:clipping, :url =&gt; user_clipping_path(@user, @clipping), :html =&gt; { :method =&gt; :put, :class =&gt; &quot;MainForm&quot; }) do |f|</diff>
      <filename>app/views/clippings/edit.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -3,19 +3,20 @@
   =render :partial =&gt; 'posts/author_profile', :locals =&gt; {:user =&gt; @user}
 
   - if @is_current_user
-    .box.alt
+    -box :class =&gt; &quot;alt&quot; do 
       %h3=:help.l
       %p=:clippings_let_you_to_save_cool_images_from_around_the_web.l
       %p=:drag_the_bookmarklet.l :site =&gt; AppConfig.community_name
       %p=:when_you_see_an_image_you_like_on_the_web.l :site =&gt; AppConfig.community_name
-    #clipping_tools.box.alt
+      
+    -box :class =&gt; 'alt', :id =&gt; 'clipping_tools' do
       %h3=:bookmarklet.l
       %p=:drag_this_to_your_bookmarks_toolbar.l
       %p= link_to &quot;#{AppConfig.community_name} it!&quot;, clippings_link, :style=&gt;&quot;border:1px solid #ccc; background:#efefef; padding: 5px;&quot;, :title=&gt;&quot;#{AppConfig.community_name} &quot;+:scrapbook.l
 
 #yui-main
   .yui-b
-    #clippings.box.hfeed
+    -box :class =&gt; &quot;hfeed&quot;, :id =&gt; 'clippings' do
       %h3= link_to &quot;#{:user_clippings.l :user =&gt;@user.login}&quot;, user_clippings_path(@user)
       - if @clippings.any?
         -if @clippings.page_count &gt; 1
@@ -27,7 +28,7 @@
       - else
         %p= @is_current_user ? :you_have_no_clippings_use_the_bookmarklet_on_the_right_to_add_some.l : :no_clippings_yet.l
 
-    .box.alt#tag_list
+    -box :class =&gt; 'alt', :id =&gt; 'tag_list' do
       %h3=:tags.l
       - tag_cloud @tags, %w(nube1 nube2 nube3 nube4 nube5) do |name, css_class|
         - css_class = css_class + (name.eql?(params[:tag_name]) ? &quot; selected&quot;: &quot;&quot;)</diff>
      <filename>app/views/clippings/index.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/clippings/load_images_from_uri.js.rjs</filename>
    </modified>
    <modified>
      <diff>@@ -1,11 +1,11 @@
 .yui-b
-  .box
+  -box do 
     %h3= :help.l
     %p= :clippings_are_a_way_to_save_images_you_like_from_around_the_web.l
 
 #yui-main
   .yui-b
-    .box
+    -box do 
       %h3= :new_clipping.l
       %img{&quot;src&quot;=&gt;&quot;#{h @clipping.image_uri}&quot;}
       - form_for(:clipping, :url =&gt; user_clippings_path(@user), :html =&gt; { :class =&gt; &quot;MainForm&quot; }) do |f|</diff>
      <filename>app/views/clippings/new.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -40,7 +40,7 @@
     #doc3
       #bd
         .yui-g
-          .yui-u.first.box
+          -box :class =&gt; &quot;yui-u first&quot; do
             %h3 
               =:create_a_clipping.l
             %p
@@ -86,7 +86,7 @@
             }
             return;
             });
-          .yui-u.box
+          -box :class =&gt; &quot;yui-u&quot; do
             %h3=:create_a_post.l
             - form_for(:post, :url =&gt; user_posts_path(current_user), :html =&gt; {:class =&gt; &quot;MainForm&quot;}) do |f|
               = hidden_field_tag 'post[published_as]', 'live'</diff>
      <filename>app/views/clippings/new_clipping.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -5,12 +5,12 @@
   =render :partial =&gt; 'posts/author_profile', :locals =&gt; {:user =&gt; @user}
 
   - if @previous || @next
-    .box.alt
+    -box :class =&gt; &quot;alt&quot; do 
       = link_to &quot;&lt;img src='#{@previous.image_uri(:thumb)}' /&gt;&lt;br /&gt;&amp;laquo; #{:previous.l} &quot;, user_clipping_path(@user, @previous), :class =&gt; 'left' if @previous
       = link_to &quot;&lt;img src='#{@next.image_uri(:thumb)}' /&gt;&lt;br /&gt;#{:next.l} &amp;raquo;&quot;, user_clipping_path(@user, @next), :class =&gt; 'right' if @next
 
   - if @related.any?
-    .box.alt
+    -box :class =&gt; &quot;alt&quot; do 
       %h3=:related_clippings_all_members.l
       .centered
         - @related.each do |clipping|
@@ -18,7 +18,7 @@
 
 #yui-main
   .yui-b
-    .box.hfeed
+    -box :class =&gt; &quot;hfeed&quot; do 
       %h3= link_to :user_clippings.l(:user =&gt;@user.login)
       .hentry.main
         - if @is_current_user
@@ -47,7 +47,7 @@
           - @clipping.tags.each do |t|
             %li=link_to( t.name, tag_url(t), :rel =&gt; 'tag')
 
-    #comments.box.hfeed.comments
+    -box :class =&gt; 'hfeed comments', :id =&gt; 'comments' do
       %h3=:clipping_comments.l
       %h2=:add_your_comment.l
       %p= render :partial =&gt; 'comments/comment_form', :locals =&gt; {:commentable =&gt; @clipping}</diff>
      <filename>app/views/clippings/show.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
 
 #yui-main
   .yui-b    
-    .box
+    -box do 
       %h3
         = params[:recent] ? :recent.l : :popular.l
         Clippings
@@ -21,7 +21,7 @@
       %br
           
 .yui-b  
-  .box
+  -box do 
     %h3 &amp;nbsp;
     
     =:clippings_let_you_to_save_cool_images_from_around_the_web.l
@@ -30,5 +30,5 @@
     -else
       =:to_get_started_with_clippings_first.l+&quot; &quot; 
       =link_to :create_an_account.l, signup_path
-  .box.alt
+  -box :class =&gt; &quot;alt&quot; do 
     =link_to :view.l+&quot; #{params[:recent] ? :popular.l : :recent.l} &quot;+:clippings.l, site_clippings_path(:recent =&gt; !params[:recent])
\ No newline at end of file</diff>
      <filename>app/views/clippings/site_index.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/comments/_comment.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/comments/_comment_form.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/comments/create.js.rjs</filename>
    </modified>
    <modified>
      <diff>@@ -3,8 +3,8 @@
 
 #yui-main
   - if @comments.empty?
-    #emptycomments= :no_comments_yet.l_with_args(:type =&gt; @commentable.class.to_s.underscore)
-  .yui-b#comments.box.hfeed.comments
+    #emptycomments= :no_comments_found.l_with_args(:type =&gt; @commentable.class.to_s.underscore)
+  -box :class =&gt; 'yui-b hfeed comments', :id =&gt; 'comments' do
     %h3
       = :comments.l + &quot; -&quot;
       = link_to @title, @back_url</diff>
      <filename>app/views/comments/index.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/contests/edit.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 
 #yui-main
   .yui-b
-    .box
+    -box do 
       %h3= :contests.l
       - @contests.each do |contest|
         %h2</diff>
      <filename>app/views/contests/index.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/contests/new.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/contests/show.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   %h3= :edit_event.l
   = error_messages_for :event
   - form_for(:event, :url =&gt; event_path(@event), :html =&gt; {:method =&gt; :put, :class =&gt; &quot;MainForm&quot;} ) do |f|</diff>
      <filename>app/views/events/edit.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,16 +2,16 @@
 
 .yui-b
   - if @is_admin_user
-    .box.alt.first_alt
+    -box :class =&gt; &quot;alt first_alt&quot; do 
       = link_to :post_an_event.l, new_event_path
 
-  .box
+  -box do 
     %h3= :events.l
     = :find_out_where_to_be_and_when_to_be_there.l
 
 #yui-main
   .yui-b
-    .box
+    -box do 
     
       .pagination=paginating_links @events if @events.page_count &gt; 1      
 </diff>
      <filename>app/views/events/index.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   %h3= :new_event.l
   = error_messages_for :event
   - form_for(:event, :url =&gt; events_path, :html =&gt; {:class =&gt; &quot;MainForm&quot;} ) do |f|</diff>
      <filename>app/views/events/new.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,13 +1,13 @@
 - @section = 'events'
 
 .yui-b
-  .box.alt.first_alt
+  -box :class =&gt; &quot;alt first_alt&quot; do 
     - if @is_admin_user
       = link_to :new_event.l, new_event_path
     = link_to :see_all_events.l, events_path
 
 #yui-main
-  .yui-b.box
+  -box :class =&gt; &quot;yui-b&quot; do
     %h3= @event.name
     - if @event.user.eql?(current_user)
       = link_to :edit_this_event.l, edit_event_path(@event)</diff>
      <filename>app/views/events/show.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/favorites/_favorite.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/favorites/create.js.rjs</filename>
    </modified>
    <modified>
      <filename>app/views/favorites/destroy.js.rjs</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.favorites.box
+-box :class =&gt; 'favorites' do
   %h3= link_to &quot;#{@user.login}'s &quot;+:favorites.l, user_favorites_path(@user)        
 
   - @favorites.to_a.in_groups_of(2) do |group|</diff>
      <filename>app/views/favorites/index.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/favorites/show.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/forums/_form.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   %h3= :edit_forum.l
   
   %p= link_to :delete_this_forum.l, forum_path(@forum), :method =&gt; :delete, :class =&gt; &quot;utility&quot;, :confirm =&gt; :are_you_sure.l</diff>
      <filename>app/views/forums/edit.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,11 +2,11 @@
 -@section = 'forums'
 
 -if admin?
-  .box.alt.first_alt
+  -box :class =&gt; &quot;alt first_alt&quot; do 
     %h3= :admin.l
     %p= link_to :create_new_forum.l, new_forum_path, :class =&gt; &quot;utility&quot;
 
-.box
+-box do 
 
   .right=link_to :recent_posts.l, recent_forum_posts_path
   %h3= :forums.l</diff>
      <filename>app/views/forums/index.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   %h3= :new_forum.l
   - form_for :forum, :url =&gt; forums_path, :html =&gt; {:class =&gt; &quot;MainForm&quot;} do |f|
     = render :partial =&gt; &quot;form&quot;, :object =&gt; f</diff>
      <filename>app/views/forums/new.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,13 +2,13 @@
 - @section = 'forums'
 - @page_title = @forum.name
 
-.box.alt.first_alt
+-box :class =&gt; &quot;alt first_alt&quot; do 
   = link_to :forums.l, forum_home_path
   %span.arrow
     &amp;rarr;
   = h @forum.name   
 
-.box
+-box do 
   %p.subtitle
     = feed_icon_tag @forum.name, forum_sb_posts_path(@forum, :format =&gt; :rss)
     = pluralize @forum.topics_count, 'topic'.l </diff>
      <filename>app/views/forums/show.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/friendships/_friendship.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/friendships/_friendships.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
 
 #yui-main
   .yui-b
-    #friends.box
+    -box :id =&gt; &quot;friends&quot; do
       %h3
         = @friend_count
         =:accepted_friendships.l</diff>
      <filename>app/views/friendships/accepted.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
 
 #yui-main
   .yui-b
-    #friends.box
+    -box :id =&gt; &quot;friends&quot; do
       %h3
         =:denied_friendships.l
       .user_list= render :partial =&gt; &quot;friendships/friendship&quot;, :collection =&gt; @friendships
\ No newline at end of file</diff>
      <filename>app/views/friendships/denied.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/friendships/index.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/friendships/index.xml.builder</filename>
    </modified>
    <modified>
      <diff>@@ -2,6 +2,6 @@
 
 #yui-main
   .yui-b
-    #friends.box
+    -box :id =&gt; &quot;friends&quot; do
       %h3= :pending_friendships.l
       .user_list= render :partial =&gt; &quot;friendships/friendship&quot;, :collection =&gt; @friendships</diff>
      <filename>app/views/friendships/pending.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   %h3=:friendship_request_detail.l
   - if @friendship.initiator? &amp;&amp; @friendship.pending?
     =:waiting_for.l </diff>
      <filename>app/views/friendships/show.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/homepage_features/edit.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
   
 #yui-main
   .yui-b
-    .box
+    -box do 
       %h3= :homepage_features.l
       = link_to :new_homepage_feature.l, new_homepage_feature_path 
 </diff>
      <filename>app/views/homepage_features/index.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/homepage_features/new.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/homepage_features/show.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/invitations/index.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %script{&quot;type&quot;=&gt;&quot;text/javascript&quot;, &quot;src&quot;=&gt;&quot;http://www.plaxo.com/css/m/js/abc_launcher.js&quot;}
 
 .yui-b
-  .box.alt.first_alt
+  -box :class =&gt; &quot;alt first_alt&quot; do 
     %h3=:spread_the_word.l
     %p
       =:the_more_people_you_invite_the_better.l
@@ -16,7 +16,7 @@
 
 #yui-main
   .yui-b
-    .box
+    -box do 
       %h3=:invite_your_friends_to_join.l
       - form_for(:invitation, :url =&gt; user_invitations_path(:user_id =&gt; @user.id ), :html =&gt; {:class =&gt; &quot;MainForm&quot;} ) do |f|
         .right</diff>
      <filename>app/views/invitations/new.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/layouts/_post.xml.builder</filename>
    </modified>
    <modified>
      <filename>app/views/layouts/application.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/layouts/beta.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/messages/_form.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
 
 #yui-main
   .yui-b
-    .box
+    -box do 
       %h3= :inbox.l
 
       %table.messages{:border =&gt; 0, :width =&gt; '100%'}</diff>
      <filename>app/views/messages/_inbox.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 #yui-main
   .yui-b
-    .box
+    -box do 
 
       %h3= :sent_messages.l
       %table.messages{:border =&gt; 0, :width =&gt; '100%'}</diff>
      <filename>app/views/messages/_sent.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 .yui-b.sidebar
-  .box
+  -box do 
     %h3= :links.l
     %ul.message_nav
       %li{:class =&gt; &quot;inbox#{@user.unread_messages? ? '_new': ''}&quot;}</diff>
      <filename>app/views/messages/_sidebar_nav.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/messages/index.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
 
 #yui-main
   .yui-b
-    .box
+    -box do 
       %h3= :compose_message.l
       
       = error_messages_for :message</diff>
      <filename>app/views/messages/new.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
 
 #yui-main
   .yui-b
-    .box
+    -box do 
       %h3
         = :subject.l + &quot;:&quot;
         =h @message.subject</diff>
      <filename>app/views/messages/show.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   %h3= :editing_metro_area.l
 
   = error_messages_for :metro_area</diff>
      <filename>app/views/metro_areas/edit.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 
 #yui-main
   .yui-b
-    .box
+    -box do 
       %h3= :metro_areas.l
 
       .pagination= paginating_links @metro_areas if @metro_areas.page_count &gt; 1</diff>
      <filename>app/views/metro_areas/index.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   %h3= :new_metro_area.l
 
   = error_messages_for :metro_area</diff>
      <filename>app/views/metro_areas/new.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
 
   %h3=:showing_metro_area_details.l
   </diff>
      <filename>app/views/metro_areas/show.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/moderators/_toggle.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/moderators/create.js.rjs</filename>
    </modified>
    <modified>
      <filename>app/views/moderators/destroy.js.rjs</filename>
    </modified>
    <modified>
      <filename>app/views/monitorships/create.js.rjs</filename>
    </modified>
    <modified>
      <filename>app/views/monitorships/destroy.js.rjs</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 - @user_skills = @user.offerings.collect{|o| o.skill}
 - @skills = Skill.find(:all) - @user_skills
 
-.yui-g.box
+-box :class =&gt; &quot;yui-g&quot; do
   %h3= :my_skills
   .yui-u.first
     %ul#skills.sortable</diff>
      <filename>app/views/offerings/_chooser.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/photo_manager/index.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/photos/_manage_photos.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/photos/_show_image_list.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 .yui-b
-  .box
+  -box do 
     %h3= :help.l
     %p
       = :tags_are_keywords_you_use_to_organize_your_photos.l
@@ -7,10 +7,11 @@
     |
     = link_to :back_to_my_photos.l, user_photos_path(@user)
 
-  .box.alt= link_to :delete_this_photo.l, user_photo_path(@user, @photo), :method =&gt; :delete, :confirm =&gt; :are_you_sure_you_want_to_delete_this_photo.l
+  -box :class =&gt; 'alt' do
+    = link_to :delete_this_photo.l, user_photo_path(@user, @photo), :method =&gt; :delete, :confirm =&gt; :are_you_sure_you_want_to_delete_this_photo.l
 
 #yui-main
-  .yui-b.box
+  -box :class =&gt; &quot;yui-b&quot; do
     %h3= :editing_photo.l  
 
     = error_messages_for :photo</diff>
      <filename>app/views/photos/edit.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -4,7 +4,7 @@
 #yui-main
   .yui-b
     .yui-gd
-      #tag_list.yui-u.box.first
+      -box :id =&gt; 'tag_list', :class =&gt; 'yui-u first' do
         %h3=:tags.l
         %ul.tags        
         - @tags.each do |tag|
@@ -14,7 +14,7 @@
             - else
               = link_to tag.name, user_photos_path(:user_id =&gt; @user, :tag_name =&gt; tag.name)    
     
-      #photos.yui-u.box
+      -box :id =&gt; &quot;photos.yui-u&quot; do
         %h3= link_to :users_photos.l(:user=&gt;@user.login), user_photos_path(@user)
         = link_to( :new_photo.l, new_user_photo_path(@user), {:class =&gt; 'right'})  if @is_current_user
 </diff>
      <filename>app/views/photos/index.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/photos/index.xml.builder</filename>
    </modified>
    <modified>
      <filename>app/views/photos/manage_photos.js.rjs</filename>
    </modified>
    <modified>
      <diff>@@ -1,15 +1,16 @@
 .yui-b
-  .box
+  -box do 
     %h3 Tips
     %p 
       =:photo_tip_1.l
     %p 
       =:photo_tip_2.l
 
-  .box.alt= link_to &quot;&amp;raquo; &quot; + :back_to_my_photos.l, user_photos_path(@user)
+  -box :class =&gt; 'alt' do
+    = link_to &quot;&amp;raquo; &quot; + :back_to_my_photos.l, user_photos_path(@user)
 
 #yui-main
-  #single_upload.yui-b.box
+  -box :id =&gt; &quot;single_upload&quot;, :class =&gt; &quot;.yui-b&quot; do
     %h3 
       =:new_photo.l
 
@@ -48,7 +49,7 @@
         = :or.l
         = link_to :cancel_and_go_back_to_photo_manager.l, user_photo_manager_index_path(current_user)
 
-  #multiple_upload.yui-b.box{&quot;style&quot;=&gt;&quot;display:none;&quot;}
+  -box :class =&gt; 'yui-b', :id =&gt; 'multiple_upload', :style =&gt; &quot;display:none;&quot; do
     %h3 
       =:new_photos_multiple_uploader.l
 </diff>
      <filename>app/views/photos/new.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   %h3=:recent_photos.l
 
   .pagination= paginating_links @photos if @photos.page_count &gt; 1</diff>
      <filename>app/views/photos/recent.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,13 +2,18 @@
   .yui-b
     = render :partial =&gt; 'posts/author_profile', :locals =&gt; {:user =&gt; @user}
 
-    - if @previous || @next
-      .photo_nav.box.alt
+    - if @photo.album
+      -box :class =&gt; &quot;photo_nav alt&quot; do
+        %h3= &quot;#{:album.l}: #{link_to @photo.album.title, user_album_path(@user, @photo.album)}&quot;
+        = link_to &quot;&lt;img src='#{@photo.previous_in_album.public_filename(:thumb)}' /&gt;&lt;br /&gt;&amp;laquo; &quot; + :previous.l, user_photo_path(@user, @photo.previous_in_album), :class =&gt; 'left' if @photo.previous_in_album
+        = link_to &quot;&lt;img src='#{@photo.next_in_album.public_filename(:thumb)}' /&gt;&lt;br /&gt;&quot; + :next.l + &quot;&amp;raquo;&quot;, user_photo_path(@user, @photo.next_in_album), :class =&gt; 'right' if @photo.next_in_album    
+    - elsif @previous || @next
+      -box :class =&gt; &quot;photo_nav alt&quot; do
         = link_to &quot;&lt;img src='#{@previous.public_filename(:thumb)}' /&gt;&lt;br /&gt;&amp;laquo; &quot; + :previous.l, user_photo_path(@user, @previous), :class =&gt; 'left' if @previous
         = link_to &quot;&lt;img src='#{@next.public_filename(:thumb)}' /&gt;&lt;br /&gt;&quot; + :next.l + &quot;&amp;raquo;&quot;, user_photo_path(@user, @next), :class =&gt; 'right' if @next
 
     - if @related.any?
-      .box.alt
+      -box :class =&gt; &quot;alt&quot; do 
         %h3=:related_photos_all_members.l
         .centered
           - @related.each do |photo|
@@ -16,13 +21,13 @@
 
   #yui-main
     .yui-b
-      .box.hfeed
+      -box :class =&gt; &quot;hfeed&quot; do 
         %h3
           = link_to :users_photos.l_with_args(:user =&gt; @user.login), user_photos_path(@user)
           \:
           = link_to h(@photo.display_name), user_photo_path(@user, @photo)
         - if @is_current_user
-          .box.alt
+          -box :class =&gt; &quot;alt&quot; do 
             = link_to :make_this_my_profile_photo.l, change_profile_photo_user_path({:id =&gt; @user, :photo_id =&gt; @photo}), :method =&gt; :put
             |
             = link_to :edit_this_photo_details.l, edit_user_photo_path(@user, @photo) if @is_current_user
@@ -32,10 +37,8 @@
         %p.centered= image_tag( @photo.public_filename, :class =&gt; &quot;polaroid&quot; )
         %p= h @photo.description
         %p= @photo.tags.collect{|t| link_to( h(t.name), tag_url(t), :class =&gt; 'tag') }.join(&quot; &quot;)
-        - unless @photo.album.blank?
-          %p= link_to @photo.album.title, user_album_path(@user, @photo.album)
-          
-      #comments.box.hfeed.comments
+
+      -box :class =&gt; &quot;hfeed comments&quot;, :id =&gt; 'comments' do
         %h3=:photo_comments.l
         %h2=:add_your_comment.l
         %p= render :partial =&gt; 'comments/comment_form', :locals =&gt; {:commentable =&gt; @photo}</diff>
      <filename>app/views/photos/show.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/photos/slideshow.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/polls/_edit.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/polls/_excerpt.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/polls/_new.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/polls/_poll_ui.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/polls/_polls_sidebar.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box :class =&gt; 'alt first_alt' do
   %h3=:author.l
   %dl.vcard
     %dt.photo</diff>
      <filename>app/views/posts/_author_profile.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/posts/_favorited_post.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/posts/_post.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/posts/_send_to_friend.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/posts/_sidebar_post.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 .yui-b
-  .box#category_tips
+  -box :id =&gt; 'category_tips' do
     - if @post.contest
       = render :partial =&gt; &quot;contest&quot;
     - elsif @post.category
@@ -9,7 +9,7 @@
 
 #yui-main
   .yui-b
-    .box
+    -box do 
       %h3=:editing_post.l
 
       = error_messages_for :post</diff>
      <filename>app/views/posts/edit.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,14 +2,14 @@
 
 .yui-b
 
-  .box.alt.first_alt
+  -box :class =&gt; &quot;alt first_alt&quot; do 
     %h3= :featured_writers.l
     - @featured_writers.each do |user|
       = render :partial =&gt; &quot;users/sidebar_user&quot;, :locals =&gt; {:user =&gt; user}
 
 #yui-main
   .yui-b
-    .box.hfeed
+    -box :class =&gt; &quot;hfeed&quot; do 
       %h3=:featured_posts.l
 
       .pagination=paginating_links @posts if @posts.page_count &gt; 1</diff>
      <filename>app/views/posts/featured.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
   = render :partial =&gt; 'author_profile', :locals =&gt; {:user =&gt; @user}
 
   - unless @popular_posts.empty?
-    #posts.box.alt
+    -box :id =&gt; &quot;posts&quot;, :class =&gt; 'alt' do
       %h3=:popular_posts.l
       %ul.list.page
         - @popular_posts.each do |post|
@@ -10,7 +10,7 @@
 
 #yui-main
   .yui-b
-    .box.posts.hfeed
+    -box :class =&gt; &quot;posts hfeed&quot; do 
       %h3
         = link_to :users_blog.l(:user =&gt; @user.login), user_posts_path(@user)
         = @category ? &quot;&amp;raquo; &quot; + link_to(@category.name.upcase, users_posts_in_category_path(@user, @category.name)) : ''</diff>
      <filename>app/views/posts/index.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 .yui-b.sidebar
-  .box
+  -box do 
     %h3=:links.l
     %ul.checks
       %li=link_to :view_my_blog.l, user_posts_path(current_user)
@@ -7,7 +7,7 @@
 
 #yui-main
   .yui-b
-    .box
+    -box do 
       %h3 
         =:manage_posts.l
       %p=:posts_saved_with_draft_status_wont_appear_in_your_blog_until_you_publish_them.l</diff>
      <filename>app/views/posts/manage.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 .yui-b
-  .box#category_tips
+  -box :id =&gt; 'category_tips' do
     -if @post.contest
       = render :partial =&gt; &quot;contest&quot;
     -elsif @post.category
@@ -7,12 +7,12 @@
     - else 
       = render :partial =&gt; &quot;/categories/tips&quot;, :locals =&gt; {:category =&gt; nil}
 
-  .box.alt
+  -box :class =&gt; &quot;alt&quot; do 
     %a.button.positive{:href =&gt; '#', :onclick =&gt; &quot;tinyMCE.execCommand('mceCurblyAdvImage');return false;&quot;}=&quot;Upload an image for your post&quot;.l
     
 #yui-main
   .yui-b
-    .box
+    -box do 
       %h3
         =@post.category ? (:new_post_for_category.l :category =&gt; @post.category.name) : :new_post.l
 </diff>
      <filename>app/views/posts/new.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
 - @section = 'popular'
 
 .yui-b
-  .box
+  -box do 
     - if logged_in?
       %h3.signup= :get_popular.l
       %ul.list.checks
@@ -19,7 +19,7 @@
                 &amp;raquo;
                 =:log_in.l
 
-  .box.alt
+  -box :class =&gt; &quot;alt&quot; do 
     %h3= :this_month_best.l 
     %ul.list.page    
       - @monthly_popular_posts.each do |post|
@@ -27,7 +27,7 @@
 
 #yui-main
   .yui-b
-    .box.hfeed
+    -box :class =&gt; &quot;hfeed&quot; do 
       %h3 
         =:what_is_popular.l
         %ul.subnav</diff>
      <filename>app/views/posts/popular.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/posts/preview.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 - @section = 'posts'
 .yui-b
-  .box
+  -box do 
     - if logged_in?
       %h3= :get_popular.l
       %ul.list.checks
@@ -18,7 +18,7 @@
                 =:log_in.l
 #yui-main
   .yui-b
-    .box.hfeed
+    -box :class =&gt; &quot;hfeed&quot; do 
       %h3
         =:recent_posts.l
         %ul.subnav</diff>
      <filename>app/views/posts/recent.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -7,7 +7,7 @@
 
 #yui-main
   .yui-b
-    .box.hfeed
+    -box :class =&gt; 'hfeed' do  
       %h3=:users_blog.l :user=&gt;  @user.login
       .hentry.main
         %h4.entry-title= link_to @post.title, user_post_path(@user, @post), :rel =&gt; 'bookmark'
@@ -51,7 +51,7 @@
                 %li=link_to( t.name, tag_url(t), :rel =&gt; 'tag')
         / entry-content
       / ends hentry
-    #comments.box.hfeed.comments
+    -box :class =&gt; 'hfeed comments', :id =&gt; 'comments' do      
       %h3= :post_comments.l 
       %h2= :add_your_comment.l
       %p= render :partial =&gt; 'comments/comment_form', :locals =&gt; {:commentable =&gt; @post}
@@ -66,14 +66,14 @@
   =render :partial =&gt; 'author_profile', :locals =&gt; {:user =&gt; @user}
 
   - unless @related.empty?
-    .box.alt
+    -box :class =&gt; 'alt' do
       %h3=:related_posts.l
       %ul.list.page
         - @related.each do |post|
           %li=link_to truncate(post.title, :length =&gt; 75), user_post_path(post.user, post)      
 
   - unless @popular_posts.empty?
-    .box.alt
+    -box :class =&gt; 'alt' do
       %h3=:popular_posts.l
       %ul.list.page
         - @popular_posts.each do |post|</diff>
      <filename>app/views/posts/show.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/sb_posts/_dummy_forum_post.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/sb_posts/_edit.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/sb_posts/edit.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/sb_posts/edit.js.rjs</filename>
    </modified>
    <modified>
      <diff>@@ -1,13 +1,13 @@
 -@section = 'forums'
 - @page_title = search_posts_title
 
-.box.alt.first_alt
+-box :class =&gt; &quot;alt first_alt&quot; do 
   = link_to :forums.l, forum_home_path
   %span.arrow
     &amp;rarr;
   = h @page_title
 
-.box
+-box do 
 
   .right=link_to :forums.l, forums_path
   %h3</diff>
      <filename>app/views/sb_posts/index.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/sb_posts/index.xml.builder</filename>
    </modified>
    <modified>
      <filename>app/views/sb_posts/monitored.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/sb_posts/monitored.xml.builder</filename>
    </modified>
    <modified>
      <filename>app/views/sb_posts/update.js.rjs</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
   
 #yui-main
   .yui-b.main_column
-    .box
+    -box do
       %h3
         =:log_in_to_site.l(:site =&gt; AppConfig.community_name)
       - form_tag sessions_path, :class =&gt; 'MainForm' do</diff>
      <filename>app/views/sessions/new.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   %h3=:admin.l
 
   %ul.list</diff>
      <filename>app/views/shared/_admin_nav.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/shared/_bio_help.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,11 +1,11 @@
 .yui-u.first
-  .box.fresh
+  -box :class =&gt; &quot;fresh&quot; do 
     %h3=:whats_fresh.l
     - @recent_activity.each do |activity|
       =render :partial =&gt; &quot;activities/activity&quot;, :locals =&gt; {:activity =&gt; activity }
 
 .yui-u
-  .box
+  -box do 
     %h3=:tags.l
     - tag_cloud @popular_tags, %w(nube1 nube2 nube3 nube4 nube5) do |name, css_class|
       = link_to name, tag_path(URI.escape(name, /[\/.?#]/)), :class =&gt; css_class</diff>
      <filename>app/views/shared/_footer_content.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/shared/_header.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/shared/_location_chooser.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   %h3=:help.l
   %p
     =:dont_have_an_account.l</diff>
      <filename>app/views/shared/_login_sidebar.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/shared/_messages.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/shared/_scripts_and_styles.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/shared/_user_menu.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 .col_full.sitemap
-  -rounded do 
+  -box do
     %h2= &quot;#{AppConfig.community_name} Sitemap&quot;
     
     .yui-g</diff>
      <filename>app/views/sitemap/index.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/sitemap/index.xml.builder</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box.alt.first_alt
+-box :class =&gt; 'alt first_alt' do
   %h3= link_to :find_an_expert.l, skills_path
   = :get_help_from_someone_who_knows.l  
 </diff>
      <filename>app/views/skills/_sidebar_menu.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   %h3= :editing_skill
 
   - form_for(:skill, :url =&gt; skill_path(@skill), :html =&gt; { :method =&gt; :put, :class =&gt; &quot;MainForm&quot; }) do |f|</diff>
      <filename>app/views/skills/edit.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,19 +2,19 @@
   = render :partial =&gt; &quot;skills/sidebar_menu&quot;
   
   - unless logged_in?
-    .box.alt
+    -box :class =&gt; &quot;alt&quot; do 
       = :want_to_list_your_services_on.l+&quot; #{AppConfig.community_name}?&quot;
       = link_to :sign_up.l, '/signup?user[vendor]=true'
 
   -if @active_users.any?
-    .box.alt
+    -box :class =&gt; &quot;alt&quot; do 
       %h3= :top_pros.l
       - @active_users.each do |user|
         = render :partial =&gt; &quot;users/sidebar_user&quot;, :locals =&gt; {:user =&gt; user}
 
 #yui-main
   .yui-b
-    .box.user_list
+    -box :class =&gt; &quot;user_list&quot; do 
       %h3= &quot;#{AppConfig.community_name} &quot;+:pros.l
 
       .pagination= paginating_links @users if @users.page_count &gt; 1</diff>
      <filename>app/views/skills/index.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   %h3= :new_skill.l
   - form_for(:skill, :url =&gt; skills_path, :html =&gt; {:class =&gt; &quot;MainForm&quot; }) do |f|
     %label= :name.l+&quot;:&quot;</diff>
      <filename>app/views/skills/new.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
   = render :partial =&gt; &quot;skills/sidebar_menu&quot;
 
 #yui-main
-  .yui-b.box.user_list
+  -box :class =&gt; &quot;yui-b user_list&quot; do
     %h3
       = AppConfig.community_name
       =:pros_skilled_in.l</diff>
      <filename>app/views/skills/show.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/static_pages/_form.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/static_pages/edit.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/static_pages/index.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/static_pages/new.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/static_pages/show.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/static_pages/show_web.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/statistics/activities.xml.builder</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 .yui-b.sidebar= render :partial =&gt; 'shared/admin_nav'
 
 #yui-main
-  .yui-b.main_column.box
+  -box :class =&gt; &quot;yui-b main_column&quot; do
     %h3= :statistics.l
     = ziya_chart( activities_chart_statistics_url(:range =&gt; params[:range]), {:bgcolor =&gt; '#ffffff', :width =&gt; 600, :height =&gt; 400, :id =&gt; &quot;Activities&quot;, :swf_path =&gt; &quot;/plugin_assets/community_engine/charts/&quot;} )
     %h3</diff>
      <filename>app/views/statistics/index.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 .yui-b
-  .box
+  -box do 
     %h3= :what_are_tags.l
     %p
       %strong= :tags_are_one_word_descriptors_users_assign_to_blog_posts_pictures_and_clippings_on.l+&quot; #{AppConfig.community_name}.&quot;
@@ -10,7 +10,7 @@
       = link_to :faq.l, faq_url
       =:page.l
       
-  .box.alt
+  -box :class =&gt; &quot;alt&quot; do 
     %h3= :search.l
     %form.MainForm{&quot;action&quot;=&gt;&quot;/search/tags/&quot;, &quot;method&quot;=&gt;&quot;get&quot;}
       %label= :tag_name.l+&quot;:&quot;
@@ -22,7 +22,7 @@
 
 
 #yui-main
-  .yui-b.box
+  -box :class =&gt; &quot;yui-b&quot; do
     %h3= :browse_content_by_tags.l
     - tag_cloud @tags, %w(nube1 nube2 nube3 nube4 nube5) do |name, css_class|
       =link_to name, tag_url(URI.escape(name.to_s, /[\/.?#]/)), :class =&gt; css_class</diff>
      <filename>app/views/tags/index.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,13 +1,13 @@
 .yui-b.sidebar
   .yui-u
-    .box.alt.first_alt
+    -box :class =&gt; &quot;alt first_alt&quot; do 
       %h3
         = params[:type] ? h((params[:type]+'s').l) : :items.l
         =:tagged.l+&quot;:&quot;
         - @tags.each do |tag|
           = link_to h(tag.name), tag_path(tag)
         
-    .box
+    -box do 
       %h3.tags=:related_tags.l
       %ul
         - tag_cloud @related_tags, %w(nube1 nube2 nube3 nube4 nube5) do |name, css_class|
@@ -17,7 +17,7 @@
       %h6.all= link_to :all_tags.l, tags_path
 
 #yui-main
-  .yui-b.box
+  -box :class =&gt; &quot;yui-b&quot; do
 
     - if @posts.any?
       -unless params[:type]
@@ -29,10 +29,9 @@
                 = link_to( truncate(post.display_title, :length =&gt; 75), user_post_path(post.user, post), :title =&gt; :by.l+&quot; #{post.user.login}&quot; )
                 %p.post_excerpt= truncate_words(post.post, 35, '...' )
           %h6.all= link_to :all_posts_tagged.l(:tag_name =&gt; @tags_raw), show_tag_type_path(:id =&gt; @tags_raw, :type =&gt; 'Post') unless params[:type]
-        -else 
-          .box.first_alt.hfeed= render :partial =&gt; 'posts/post', :collection =&gt; @posts      
-      
-
+      -else 
+        -box :class =&gt; 'first_alt hfeed' do
+          = render :partial =&gt; 'posts/post', :collection =&gt; @posts      
 
     - if @photos.any?
       %br.clear
@@ -41,7 +40,6 @@
         = link_to image_tag(photo.public_filename(:thumb), :title =&gt; &quot;#{photo.description} (&quot;+:uploaded_by.l+&quot; #{photo.user.login})&quot;, :class =&gt; &quot;polaroid&quot;), user_photo_path(photo.user, photo)
       %h6.all= link_to :all_photos_tagged.l(:tag_name =&gt; @tags_raw), show_tag_type_path(:id =&gt; @tags_raw, :type =&gt; 'Photo') unless params[:type]
       
-      
     - if @users.any?
       .user
         %h3=:users.l</diff>
      <filename>app/views/tags/show.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/topics/_form.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/topics/_recent_topics_sidebar.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   %h3= :edit_topic.l
 
 = error_messages_for :topic</diff>
      <filename>app/views/topics/edit.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,11 +1,11 @@
-.box.alt.first_alt
+-box :class =&gt; 'alt first_alt' do
   = link_to :forums.l, forum_home_path
   %span.arrow &amp;rarr;
   = link_to h(@forum.name), forum_path(@forum)
   %span.arrow &amp;rarr;
   = :new_topic.l
 
-.box
+-box do 
   %h3#new_topic= :new_topic.l
   %p.subtitle
     = :by.l</diff>
      <filename>app/views/topics/new.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -12,7 +12,7 @@
   }}
 
 
-.box.alt.first_alt
+-box :class =&gt; &quot;alt first_alt&quot; do 
   - if logged_in?
     - form_tag forum_topic_monitorship_path(@forum, @topic), :style =&gt; 'margin-top:0em; float:right;' do
       #monitor_topic
@@ -32,7 +32,7 @@
   
     
     
-.box.forum
+-box :class =&gt; &quot;forum&quot; do 
   %h3#topic-title
     = h @topic.title
     - if @topic.locked?
@@ -126,7 +126,7 @@
   - else
     %p= link_to :log_in_to_reply_to_this_topic.l, new_forum_topic_sb_post_path(@topic.forum, @topic), :class =&gt; &quot;utility&quot;
 
-.box.alt
+-box :class =&gt; &quot;alt&quot; do 
   = link_to :forums.l, forum_home_path
   %span.arrow &amp;rarr;
   = link_to h(@topic.forum.name), forum_path(@topic.forum)</diff>
      <filename>app/views/topics/show.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/topics/show.xml.builder</filename>
    </modified>
    <modified>
      <filename>app/views/user_notifier/activation.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/user_notifier/comment_notice.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/user_notifier/follow_up_comment_notice.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/user_notifier/follow_up_comment_notice_anonymous.rhtml</filename>
    </modified>
    <modified>
      <filename>app/views/user_notifier/forgot_username.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/user_notifier/friendship_accepted.rhtml</filename>
    </modified>
    <modified>
      <filename>app/views/user_notifier/friendship_request.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/user_notifier/message_notification.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/user_notifier/new_forum_post_notice.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/user_notifier/post_recommendation.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/user_notifier/reset_password.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/user_notifier/signup_invitation.html.erb</filename>
    </modified>
    <modified>
      <filename>app/views/user_notifier/signup_notification.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 .yui-b
-  .box
+  -box do 
     %h3=:dashboard.l
     .yui-g
       .yui-u.first
@@ -22,7 +22,7 @@
             %li=link_to :admin_dashboard.l, admin_dashboard_path
                
   
-  .box.alt
+  -box :class =&gt; &quot;alt&quot; do 
     %h3=:stats.l
     %ul
       %li=:you_last_logged_in_on.l+&quot; #{@user.last_login_at &amp;&amp; @user.last_login_at.strftime(&quot;%m/%d/%y&quot;)}&quot;</diff>
      <filename>app/views/users/_dashboard_nav.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/users/_profile_completeness.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 - if current_user &amp;&amp; current_user.admin?
-  .box.first_alt.alt
+  -box :class =&gt; &quot;first_alt alt&quot; do 
     %h3
       =:admin_controls.l
     = link_to( &quot;&amp;raquo; #{:assume_user_id.l}&quot;, assume_user_path(@user) )
@@ -10,7 +10,7 @@
     %br/
     = link_to( &quot;&amp;raquo; #{:assign_role.l}: #{@user.moderator? ? :member.l : :moderator.l}&quot;, toggle_moderator_user_path(@user), {:method =&gt; :put} )
 
-#profile_details.box.hentry
+-box :class =&gt; 'hentry', :id =&gt; 'profile_details' do
   %h3
     = link_to @user.login, user_path(@user)
     = &quot; &lt;small&gt;(#{:featured_writer.l})&lt;/small&gt;&quot; if @user.featured_writer?</diff>
      <filename>app/views/users/_profile_user_info_sidebar.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box.alt.first_alt
+-box :class =&gt; 'alt first_alt' do
   = link_to( &quot;&amp;raquo; #{:back_to_all_users.l}&quot;, users_path) if params['login'] || params['tag_list']
   - form_tag users_path, :method =&gt; :get , :class =&gt; 'MainForm' do
     %label= :user_login.l+&quot;:&quot;
@@ -10,12 +10,12 @@
       %input{&quot;type&quot;=&gt;&quot;submit&quot;, &quot;value&quot;=&gt;:search_users.l}
 
 
-.box.alt
+-box :class =&gt; 'alt' do
   %h3= :metro_areas.l
   - city_cloud @metro_areas_for_cloud, %w(nube1 nube2 nube3 nube4 nube5) do |city, css_class|
     = link_to city.name, users_path(:metro_area_id =&gt; city.id), :class =&gt; css_class
 
 - if current_user
-  .box.alt
+  -box :class =&gt; &quot;alt&quot; do 
     %h3= :share_the_love.l
     = link_to :invite_your_friends_to_join.l, invite_user_path(current_user)
\ No newline at end of file</diff>
      <filename>app/views/users/_search_options.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/users/_sidebar_user.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/users/_skill.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/users/_user.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -3,16 +3,16 @@
       
 .yui-b
 
-  .box.alt.first_alt
+  -box :class =&gt; &quot;alt first_alt&quot; do 
     = link_to :profile_photo_change.l, upload_profile_photo_user_path(@user)
     
-  .box
+  -box do 
     %h3=:profile_photo.l
     #previewWrap
     
 
 #yui-main
-  .yui-b.box
+  -box :class =&gt; &quot;yui-b&quot; do
     %h3= :profile_photo_crop.l  
 
     = image_tag( @photo.public_filename, :id =&gt; 'photo' )</diff>
      <filename>app/views/users/crop_profile_photo.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
   
 #yui-main
   .yui-b
-    .box
+    -box do 
       %h3= random_greeting(@user)
     
       -if @user.pending_friendships.any?
@@ -29,7 +29,7 @@
     
       -unless @network_activity.empty?
         %h2=:activity_from_your_network.l
-        .box.fresh
+        -box :class =&gt; &quot;fresh&quot; do 
           =render :partial =&gt; &quot;activities/activity&quot;, :collection =&gt; @network_activity
           %h6.all= link_to :see_all_activity.l, network_user_activities_path(current_user)
 </diff>
      <filename>app/views/users/dashboard.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 - form_tag user_url(@user), :method =&gt; 'put', :multipart =&gt;true, :class =&gt; 'MainForm' do
-  .box.alt.first_alt
+  -box :class =&gt; &quot;alt first_alt&quot; do 
     %h3=:you_are_editing_your_profile.l
     = link_to &quot;&amp;raquo; &quot; + :edit_your_account_settings_instead.l, edit_account_user_path(@user)
   
@@ -7,7 +7,7 @@
 
   %p= submit_tag :save_changes.l  
   .yui-b
-    #profile_details.box
+    -box :id =&gt; &quot;profile_details&quot; do
       %h3=:profile_photo.l
       = @user.vendor ? &quot;&lt;div class='right_corner'&gt;&lt;div class='community_pro'&gt;&lt;/div&gt;&lt;/div&gt;&quot; : ''
       = image_tag( @user.avatar_photo_url(:medium), :class =&gt; &quot;polaroid&quot; )
@@ -40,12 +40,12 @@
       
   #yui-main
     .yui-b
-      .box
+      -box do 
         %h3=:about_me.l
         = text_area :user, :description, :class =&gt; &quot;rich_text_editor&quot;, :style =&gt; &quot;width:100%&quot;
         
-      .box.alt
-        =:tips.l + &quot;:&quot;
+      -box :class =&gt; &quot;alt&quot; do 
+        =:tips.l
         = render :partial =&gt; 'shared/bio_help'
         =:feel_free_to_embed_images_or_videos.l + &quot;(&quot;
         %a{&quot;href&quot;=&gt;&quot;/faq#images_and_flash&quot;, &quot;target&quot;=&gt;&quot;new&quot;} 
@@ -55,7 +55,7 @@
       - if @user.vendor? 
         = render :partial =&gt; 'offerings/chooser'
       
-      .box
+      -box do 
         %h3= :tags.l
         #user_tags
           = text_field_tag 'tag_list', @user.tag_list, {:autocomplete =&gt; &quot;off&quot;}</diff>
      <filename>app/views/users/edit.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,11 +1,11 @@
 - form_tag update_account_user_url(@user), :method =&gt; 'put', :class =&gt; &quot;MainForm&quot;, :multipart =&gt; true do
-  .box.alt.first_alt
+  -box :class =&gt; &quot;alt first_alt&quot; do 
     %h3=:you_are_editing_your_account.l
     = link_to :edit_your_user_profile.l, edit_user_path(@user)
 
   = error_messages_for :user
 
-  .yui-b.box
+  -box :class =&gt; &quot;yui-b&quot; do
     %h3=:username.l
     = text_field :user, :login, :size =&gt; &quot;28&quot;
 
@@ -19,7 +19,7 @@
     = password_field :user, :password_confirmation, :size =&gt; &quot;28&quot;
 
   #yui-main
-    .yui-b.box
+    -box :class =&gt; &quot;yui-b&quot; do
       %h3=:e_mail_notification.l
 
       %fieldset</diff>
      <filename>app/views/users/edit_account.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 
 #yui-main
   .yui-b.main_column
-    .box
+    -box do
       %h3=:forgot_your_password.l
 
       - form_tag '/forgot_password', :class =&gt; 'MainForm' do</diff>
      <filename>app/views/users/forgot_password.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 
 #yui-main
   .yui-b.main_column
-    .box
+    -box do
       %h3=:forgot_your_username.l
 
       - form_tag '/forgot_username', :class =&gt; 'MainForm' do</diff>
      <filename>app/views/users/forgot_username.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -5,7 +5,7 @@
 
 #yui-main
   .yui-b
-    .box.user_list
+    -box :class =&gt; &quot;user_list&quot; do
       %h3=:site_members.l :site =&gt; AppConfig.community_name
 
       .pagination= paginating_links @users, :params =&gt; params if @users.page_count &gt; 1</diff>
      <filename>app/views/users/index.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %script{&quot;type&quot;=&gt;&quot;text/javascript&quot;, &quot;src&quot;=&gt;&quot;http://www.plaxo.com/css/m/js/abc_launcher.js&quot;}
 
 .yui-b
-  .box.alt.first_alt
+  -box :class =&gt; &quot;alt first_alt&quot; do 
     %h3=:spread_the_word.l
     %p
       =:the_more_people_you_invite_the_better.l
@@ -14,7 +14,7 @@
 
 #yui-main
   .yui-b
-    .box
+    -box do 
       %h3=:invite_your_friends_to_join.l
       - form_for(:invitation, :url =&gt; user_invitations_path(:user_id =&gt; @user.id ), :html =&gt; {:class =&gt; &quot;MainForm&quot;} ) do |f|
         .right</diff>
      <filename>app/views/users/invite.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 .yui-b
-  .box
+  -box do
     %h3
       =:why_sign_up.l
     %ul.list.checks
@@ -8,7 +8,7 @@
     %li 
       = :sign_up_reason_2.l
 
-  .box.alt
+  -box :class =&gt; 'alt' do
     %h3=:tips.l
     %p
       =:after_signing_up_youll_receive_an_e_mail_confirmation_message.l
@@ -18,7 +18,7 @@
 
 #yui-main
   .yui-b
-    .box
+    -box do
       %h3=:sign_up.l
       = error_messages_for :user
       - form_for :user, :url =&gt; users_path, :html =&gt; {:class =&gt; 'MainForm'} do |f|</diff>
      <filename>app/views/users/new.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 
 #yui-main
   .yui-b.main_column
-    .box
+    -box do 
       %h3=:resend_your_activation_e_mail.l
 
       - form_tag '/resend_activation', :class =&gt; 'MainForm' do</diff>
      <filename>app/views/users/resend_activation.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -13,16 +13,16 @@
 
 
 .yui-b
-  .box
+  -box do 
     = render :partial =&gt; 'profile_user_info_sidebar', :locals =&gt; {:user =&gt; @user}
 
   - if @user.description
-    #about_me.box
+    -box :id =&gt; &quot;about_me&quot; do
       %h3
         =:about_me.l
       %p= @user.description
 
-  #friends.box.alt
+  -box :class =&gt; 'alt', :id =&gt; 'friends' do
     %h3
       =:my_friends.l
       = link_to &quot;(#{@friend_count})&quot;, accepted_user_friendships_path(@user) if @friend_count &gt; 5
@@ -38,7 +38,7 @@
         =link_to :see_all.l, accepted_user_friendships_path(@user)
 
   - unless @users_comments.empty?
-    #photo_comments.yui-g.box.alt
+    -box :class =&gt; 'yui-g alt', :id =&gt; 'photo_comments' do
       %h3=:my_recent_comments.l
       - @users_comments.each do |comment|
         %dl.vcard
@@ -55,7 +55,7 @@
             %p= &quot;\&quot;#{truncate_words( comment.comment, 10, '...')}\&quot;&quot;
 
   - unless @photo_comments.empty?
-    #photo_comments.yui-g.box.alt
+    -box :class =&gt; 'yui-g alt', :id =&gt; 'photo_comments' do
       %h3=:photo_comments.l
       - @photo_comments.each do |comment|
         %dl.vcard
@@ -70,11 +70,11 @@
 #yui-main
   .yui-b
     - if @photos.empty? and @recent_posts.empty?
-      .box.alt.first_alt
+      -box :class =&gt; &quot;alt first_alt&quot; do 
         %h3= :small_profile.l :user =&gt; @user.login
 
     - unless @photos.empty?
-      #photos.box
+      -box :id =&gt; &quot;photos&quot; do
         %h3=:photos.l
         - @photos.each do |photo|
           = link_to image_tag( photo.public_filename(:thumb), :class =&gt; &quot;polaroid&quot;), user_photo_path(@user, photo)
@@ -83,20 +83,20 @@
         = &quot;#{link_to(:add_a_photo.l, new_user_photo_path(@user))}&quot; if @is_current_user
 
     - unless @recent_posts.empty?
-      #posts.box
+      -box :id =&gt; &quot;posts&quot; do
         %h3=:recent_blog_posts.l
         = render :partial =&gt; 'posts/post', :collection =&gt; @recent_posts
         %h6.right.all= link_to :view_my_blog.l, user_posts_path(@user)
 
     - unless @clippings.empty?
-      #clippings.box
+      -box :id =&gt; &quot;clippings&quot; do
         %h3=:clippings.l
         - @clippings.each do |clipping|
           %a{&quot;href&quot;=&gt;&quot;#{h user_clipping_url(@user, clipping)}&quot;}
             %img.clipping.polaroid{&quot;src&quot;=&gt;&quot;#{h clipping.image_uri(:thumb)}&quot;, :width =&gt; '100', :height =&gt; '100'}
         %h6.all.right= link_to :view_all_my_clippings.l, user_clippings_path(@user)
 
-    #comments.box.hfeed.comments
+    -box :class =&gt; 'hfeed comments', :id =&gt; 'comments' do
       %h3=:profile_comments.l
       %h2=:add_your_comment.l
       %p= render :partial =&gt; 'comments/comment_form', :locals =&gt; {:commentable =&gt; @user}</diff>
      <filename>app/views/users/show.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   %h3=:go_check_your_e_mail.l
   %ul.list.checks
     %li= :look_for_a_message_from.l :from =&gt; AppConfig.community_name</diff>
      <filename>app/views/users/signup_completed.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   - form_tag( statistics_user_path(@user), :class =&gt; &quot;MainForm&quot;) do
     %label= :month.l+&quot;:&quot;
     = select_month(@month)</diff>
      <filename>app/views/users/statistics.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 - form_tag upload_profile_photo_user_url(@user), :method =&gt; 'put', :multipart =&gt;true, :class =&gt; 'MainForm' do
 
   = error_messages_for :avatar
-  #profile_details.box
+  -box :id =&gt; &quot;profile_details&quot; do
     %h3=:profile_photo.l
     = @user.vendor ? &quot;&lt;div class='right_corner'&gt;&lt;div class='community_pro'&gt;&lt;/div&gt;&lt;/div&gt;&quot; : ''
     = image_tag( @user.avatar_photo_url(:medium), :class =&gt; &quot;polaroid&quot; )</diff>
      <filename>app/views/users/upload_profile_photo.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 .yui-b
-  .box.alt.first_alt
+  -box :class =&gt; &quot;alt first_alt&quot; do 
     %h3
       =:get_started_tell_us_about_yourself.l
     = render :partial =&gt; 'shared/bio_help'
@@ -11,7 +11,7 @@
       = link_to &quot;&amp;raquo; &quot; + :go_to_your_profile.l, user_path(@user)
 
   - if @user.avatar_photo_url
-    .box.alt
+    -box :class =&gt; &quot;alt&quot; do 
       %h3=:your_profile_photo.l
       .centered
         = @user.vendor ? &quot;&lt;div class='right_corner'&gt;&lt;div class='community_pro'&gt;&lt;/div&gt;&lt;/div&gt;&quot; : ''
@@ -19,7 +19,7 @@
       =link_to :profile_photo_crop.l, crop_profile_photo_user_path(@user)        
 
 #yui-main
-  .yui-b.box
+  -box :class =&gt; &quot;yui-b&quot; do
     - form_tag user_path(:welcome =&gt; 'invite'), :method =&gt; 'put', :multipart =&gt;true, :class =&gt; &quot;MainForm&quot; do
       %h3=:about_you.l
       = text_area :user, :description, :rows =&gt; 30, :style =&gt; 'width:100%', :class =&gt; &quot;rich_text_editor&quot;
@@ -39,7 +39,7 @@
       %h3=:more_about_you.l
       .yui-g
         .yui-u.first
-          .box.alt
+          -box :class =&gt; &quot;alt&quot; do 
             %h3
               =:choose_your_location.l
             %br
@@ -50,7 +50,7 @@
             %br
             = render :partial =&gt; 'shared/location_chooser', :locals =&gt; {:selected_country =&gt; @user.country_id, :selected_state =&gt; @user.state_id, :selected_metro_area =&gt; @user.metro_area_id, :states =&gt; @states, :metro_areas =&gt; @metro_areas}
         .yui-u
-          .box.alt
+          -box :class =&gt; &quot;alt&quot; do 
             %h3= :tag_yourself.l
             = text_field_tag 'tag_list', @user.tag_list, {:autocomplete =&gt; &quot;off&quot;}
             #tag_list_auto_complete.auto_complete/</diff>
      <filename>app/views/users/welcome_about.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.box
+-box do
   %h3
     =:get_started_invite_some_friends.l
     = :invite_some_customers.l if @user.vendor?</diff>
      <filename>app/views/users/welcome_invite.html.haml</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 .yui-b
-  .box.alt.first_alt
+  -box :class =&gt; &quot;alt first_alt&quot; do 
     %h3=:get_started_upload_a_profile_photo.l
     %p
       =:photo_message.l :site =&gt; AppConfig.community_name
@@ -9,7 +9,7 @@
 
 #yui-main
   .yui-b
-    .box
+    -box do 
       - form_tag( user_path(:welcome =&gt; 'about'), :method =&gt; 'put', :multipart =&gt;true, :class =&gt; &quot;MainForm&quot;) do
         %h3=:profile_photo.l
         %p.centered</diff>
      <filename>app/views/users/welcome_photo.html.haml</filename>
    </modified>
    <modified>
      <filename>app/views/votes/create.js.rjs</filename>
    </modified>
    <modified>
      <diff>@@ -81,7 +81,7 @@ plugin 'community_engine', :git =&gt; ce_git_repo, :submodule =&gt; true
 # Initialize submodules
 git :submodule =&gt; &quot;init&quot; 
 git :submodule =&gt; &quot;update&quot;   
-checkout_ce_branch('edge')
+# checkout_ce_branch('edge')
 
 # Add CE routes 
 route &quot;map.routes_from_plugin :community_engine&quot;</diff>
      <filename>community_engine_setup_template.rb</filename>
    </modified>
    <modified>
      <filename>config/application.yml</filename>
    </modified>
    <modified>
      <diff>@@ -11,3 +11,10 @@ if AppConfig.theme
   theme_view_path = &quot;#{RAILS_ROOT}/themes/#{AppConfig.theme}/views&quot;
   ActionController::Base.view_paths = ActionController::Base.view_paths.dup.unshift(theme_view_path)
 end
+
+
+EnginesHelper::Assets.propagate if EnginesHelper.autoload_assets
+ 
+# # If the app is using Haml/Sass, propagate sass directories too
+# EnginesHelper::Assets.update_sass_directories
+</diff>
      <filename>config/boot.rb</filename>
    </modified>
    <modified>
      <filename>config/desert_routes.rb</filename>
    </modified>
    <modified>
      <filename>config/initializers/attachment_fu_patch.rb</filename>
    </modified>
    <modified>
      <filename>config/initializers/date_formats.rb</filename>
    </modified>
    <modified>
      <filename>config/initializers/globalite.rb</filename>
    </modified>
    <modified>
      <filename>config/initializers/mce_options.rb</filename>
    </modified>
    <modified>
      <filename>config/initializers/mimes.rb</filename>
    </modified>
    <modified>
      <filename>config/initializers/paginating_find_fix.rb</filename>
    </modified>
    <modified>
      <filename>config/initializers/recaptcha_constants.rb</filename>
    </modified>
    <modified>
      <filename>config/initializers/sessions_middleware.rb</filename>
    </modified>
    <modified>
      <filename>config/initializers/white_list.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/001_create_users.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/002_add_activation_code_to_user.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/003_create_photos.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/004_add_tag_support.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/005_create_friendships.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/006_add_comments_tables.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/007_create_friendship_statuses.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/008_add_friendship_statuses.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/009_create_clippings.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/010_create_invitations.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/011_create_homepage_features.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/012_create_posts.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/013_create_states.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/014_add_states.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/015_create_metro_areas.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/016_add_metro_areas.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/017_add_sessions_table.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/018_create_categories.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/019_change_comment_to_text_field.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/020_create_login_slug.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/021_add_category_names.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/022_create_contests.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/023_add_denied_friendship_status.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/024_add_notification_preferences.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/025_create_countries.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/026_add_countries.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/027_add_us_to_existing_metro_areas.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/028_add_country_id_to_users.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/029_add_us_to_users_with_states.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/030_add_users_counter_cache.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/031_news_to_talk.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/032_add_contest_fields.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/033_featured_users.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/034_add_last_login.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/035_track_emailed.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/036_create_skills.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/037_create_offerings.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/038_add_zag_to_users.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/039_create_activities_table.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/040_add_category_tips.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/041_create_events_table.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/042_add_privacy_to_users.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/043_sql_session_store_setup.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/044_category_improvements.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/045_adding_indexes.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/046_adding_ads.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/047_add_polls.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/049_add_activities_count.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/050_create_initial_schema.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/051_add_audience_limitation_to_ads.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/052_create_assets.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/053_create_favoritables.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/054_add_published_as_to_posts.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/055_add_published_at_to_posts.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/056_create_roles.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/057_add_more_indexes.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/058_add_anonymous_commenting_fields.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/059_create_messages.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/060_still_more_indexes.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/061_postgres_compatibility_changes.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/062_add_notify_to_comments.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/063_create_albums.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/064_add_album_id_to_photos.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/065_add_view_count_to_albums.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/066_add_view_count_to_photos.rb</filename>
    </modified>
    <modified>
      <filename>db/migrate/067_create_static_pages.rb</filename>
    </modified>
    <modified>
      <filename>generators/plugin_migration/plugin_migration_generator.rb</filename>
    </modified>
    <modified>
      <filename>generators/plugin_migration/templates/plugin_migration.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,11 +1,18 @@
-#some more hacks
+#reload CE in development
+config.after_initialize do
+  if RAILS_ENV == 'development'
+    ActiveSupport::Dependencies.load_once_paths = ActiveSupport::Dependencies.load_once_paths.select {|path| (path =~ /(community_engine)/).nil? }  
+  end
+end 
+
+
 
+#Alias Desert's routing method to preserve compatibility with Engine's
 Desert::Rails::RouteSet.module_eval do
   alias_method :from_plugin, :routes_from_plugin  
 end
 
-
-#hack the desert plugin to allow generating plugin migrations
+#Hack Desert to allow generating plugin migrations
 Desert::Plugin.class_eval do
   def latest_migration
     migrations.last
@@ -17,6 +24,7 @@ Desert::Plugin.class_eval do
     migrations.map { |p| File.basename(p).match(/0*(\d+)\_/)[1].to_i }.sort
   end    
 end
+
 # Fix Desert's 'current_version' which tries to order by version desc, but version is a string type column, so it breaks
 # sort the rows in ruby instead to make sure we get the highest numbered version
 Desert::PluginMigrations::Migrator.class_eval do</diff>
      <filename>init.rb</filename>
    </modified>
    <modified>
      <filename>install.rb</filename>
    </modified>
    <modified>
      <filename>lang/base.yml</filename>
    </modified>
    <modified>
      <filename>lang/readme.txt</filename>
    </modified>
    <modified>
      <filename>lang/ui/de-DE.yml</filename>
    </modified>
    <modified>
      <filename>lang/ui/en-US.yml</filename>
    </modified>
    <modified>
      <filename>lang/ui/es-AR.yml</filename>
    </modified>
    <modified>
      <filename>lang/ui/es-ES.yml</filename>
    </modified>
    <modified>
      <filename>lang/ui/es-MX.yml</filename>
    </modified>
    <modified>
      <filename>lang/ui/fr-FR.yml</filename>
    </modified>
    <modified>
      <filename>lang/ui/ru-RU.yml</filename>
    </modified>
    <modified>
      <filename>lang/ui/sr-CP.yml</filename>
    </modified>
    <modified>
      <diff>@@ -310,7 +310,7 @@ sv:
   #en: delete_this_user: Delete this user
   delete_this_user: Ta bort den h&#228;r anv&#228;ndaren
   #en: deny: Deny
-  deny: Avly
+  deny: Avsl&#229;
   #en: denied: denied
   denied: avslagen
   #en: denied_friendships: Denied Friendships
@@ -388,7 +388,7 @@ sv:
   #en: end: end
   end: slut
   #en: end_date: End date
-  end_date: Sluttdatum
+  end_date: Slutdatum
   #en: end_required: end (required)
   end_required: slut (obligatoriskt)
   #en: end_tome: End time</diff>
      <filename>lang/ui/sv-SE.yml</filename>
    </modified>
    <modified>
      <filename>lib/apis/meta_weblog_api.rb</filename>
    </modified>
    <modified>
      <filename>lib/apis/meta_weblog_service.rb</filename>
    </modified>
    <modified>
      <filename>lib/authenticated_system.rb</filename>
    </modified>
    <modified>
      <filename>lib/authenticated_test_helper.rb</filename>
    </modified>
    <modified>
      <filename>lib/community_engine.rb</filename>
    </modified>
    <modified>
      <filename>lib/flash_session_cookie_middleware.rb</filename>
    </modified>
    <modified>
      <filename>lib/globalite_extensions.rb</filename>
    </modified>
    <modified>
      <filename>lib/localized_application.rb</filename>
    </modified>
    <modified>
      <filename>lib/mime/types.rb</filename>
    </modified>
    <modified>
      <diff>@@ -125,12 +125,7 @@ module AssetHelpers
 end
 
 module ::ActionView::Helpers::AssetTagHelper
-  include AssetHelpers
-end
-
-
-EnginesHelper::Assets.propagate if EnginesHelper.autoload_assets
- 
-# # If the app is using Haml/Sass, propagate sass directories too
-# EnginesHelper::Assets.update_sass_directories
-
+  if !self.included_modules.include? AssetHelpers
+    include AssetHelpers
+  end
+end
\ No newline at end of file</diff>
      <filename>lib/rails_asset_extensions.rb</filename>
    </modified>
    <modified>
      <filename>lib/s3-driver.rb</filename>
    </modified>
    <modified>
      <filename>lib/s3-test.rb</filename>
    </modified>
    <modified>
      <filename>lib/s3.rb</filename>
    </modified>
    <modified>
      <filename>lib/s3_cache_control.rb</filename>
    </modified>
    <modified>
      <filename>lib/url_upload.rb</filename>
    </modified>
    <modified>
      <filename>lib/viewable.rb</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/README</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/Rakefile</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/generators/activity_migration/USAGE</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/generators/activity_migration/activity_migration_generator.rb</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/generators/activity_migration/templates/migration.rb</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/install.rb</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/lib/activity.rb</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/lib/activity_tracker.rb</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/tasks/activity_tracker_tasks.rake</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/test/abstract_unit.rb</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/test/activity_tracker_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/test/database.yml</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/test/debug.log</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/test/fixtures/test_post.rb</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/test/fixtures/test_posts.yml</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/test/fixtures/test_user.rb</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/test/fixtures/test_users.yml</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/test/schema.rb</filename>
    </modified>
    <modified>
      <filename>plugins/activity_tracker/uninstall.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_commentable/MIT-LICENSE</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_commentable/README</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_commentable/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_commentable/install.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_commentable/lib/acts_as_commentable.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_commentable/tasks/acts_as_commentable_tasks.rake</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_commentable/test/acts_as_commentable_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_list/README</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_list/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_list/lib/active_record/acts/list.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_list/test/list_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_publishable/README</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_publishable/Rakefile</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_publishable/generators/publishing/publishing_generator.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_publishable/generators/publishing/templates/migration.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_publishable/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_publishable/install.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_publishable/lib/acts_as_publishable.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_publishable/test/acts_as_publishable_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_publishable/uninstall.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/CHANGELOG</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/MIT-LICENSE</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/README</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/Rakefile</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/generators/acts_as_taggable_migration/acts_as_taggable_migration_generator.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/generators/acts_as_taggable_migration/templates/migration.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/lib/acts_as_taggable.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/lib/tag.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/lib/tag_counts_extension.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/lib/tag_list.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/lib/tagging.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/lib/tags_helper.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/abstract_unit.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/acts_as_taggable_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/database.yml</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/fixtures/magazine.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/fixtures/magazines.yml</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/fixtures/photo.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/fixtures/photos.yml</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/fixtures/post.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/fixtures/posts.yml</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/fixtures/special_post.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/fixtures/subscription.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/fixtures/subscriptions.yml</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/fixtures/taggings.yml</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/fixtures/tags.yml</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/fixtures/user.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/fixtures/users.yml</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/schema.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/tag_list_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/tag_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/tagging_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/acts_as_taggable_on_steroids/test/tags_helper_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/CHANGELOG</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/README</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/Rakefile</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/amazon_s3.yml.tpl</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/install.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/lib/geometry.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/lib/technoweenie/attachment_fu.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/db_file_backend.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/file_system_backend.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/s3_backend.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/core_image_processor.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/gd2_processor.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/image_science_processor.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/mini_magick_processor.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/rmagick_processor.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/backends/db_file_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/backends/file_system_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/backends/remote/s3_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/base_attachment_tests.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/basic_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/database.yml</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/extra_attachment_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/fixtures/attachment.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/fixtures/files/fake/rails.png</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/fixtures/files/foo.txt</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/fixtures/files/rails.png</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/geometry_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/processors/core_image_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/processors/gd2_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/processors/image_science_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/processors/mini_magick_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/processors/rmagick_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/schema.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/test_helper.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/test/validation_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/vendor/red_artisan/core_image/filters/color.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/vendor/red_artisan/core_image/filters/effects.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/vendor/red_artisan/core_image/filters/perspective.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/vendor/red_artisan/core_image/filters/quality.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/vendor/red_artisan/core_image/filters/scale.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/vendor/red_artisan/core_image/filters/watermark.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu/vendor/red_artisan/core_image/processor.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu_hacks/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/attachment_fu_hacks/lib/attachment_fu_hacks.rb</filename>
    </modified>
    <modified>
      <filename>plugins/auto_complete/README</filename>
    </modified>
    <modified>
      <filename>plugins/auto_complete/Rakefile</filename>
    </modified>
    <modified>
      <filename>plugins/auto_complete/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/auto_complete/lib/auto_complete.rb</filename>
    </modified>
    <modified>
      <filename>plugins/auto_complete/lib/auto_complete_macros_helper.rb</filename>
    </modified>
    <modified>
      <filename>plugins/auto_complete/test/auto_complete_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/browser_filters/README</filename>
    </modified>
    <modified>
      <filename>plugins/browser_filters/lib/browser_filters.rb</filename>
    </modified>
    <modified>
      <filename>plugins/browser_filters/lib/link_prefetching_block.rb</filename>
    </modified>
    <modified>
      <filename>plugins/browser_filters/lib/safari_unicode_fix.rb</filename>
    </modified>
    <modified>
      <filename>plugins/browser_filters/lib/unicode_content_type.rb</filename>
    </modified>
    <modified>
      <filename>plugins/enumerations_mixin/LICENSE</filename>
    </modified>
    <modified>
      <filename>plugins/enumerations_mixin/README_ENUMERATIONS</filename>
    </modified>
    <modified>
      <filename>plugins/enumerations_mixin/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/enumerations_mixin/lib/active_record/acts/enumerated.rb</filename>
    </modified>
    <modified>
      <filename>plugins/enumerations_mixin/lib/active_record/aggregations/has_enumerated.rb</filename>
    </modified>
    <modified>
      <filename>plugins/enumerations_mixin/lib/active_record/virtual_enumerations.rb</filename>
    </modified>
    <modified>
      <filename>plugins/enumerations_mixin/virtual_enumerations_sample.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ez_where/README.txt</filename>
    </modified>
    <modified>
      <filename>plugins/ez_where/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ez_where/lib/caboose/clause.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ez_where/lib/caboose/condition.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ez_where/lib/caboose/ez.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ez_where/lib/caboose/hash.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ez_where/test/database.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ez_where/test/ez_where_tests.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ez_where/test/fixtures/articles.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ez_where/test/fixtures/authors.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ez_where/test/fixtures/comments.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ez_where/test/schema.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ez_where/test/test_helper.rb</filename>
    </modified>
    <modified>
      <filename>plugins/haml/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/mimetype-fu/MIT-LICENSE</filename>
    </modified>
    <modified>
      <filename>plugins/mimetype-fu/README</filename>
    </modified>
    <modified>
      <filename>plugins/mimetype-fu/Rakefile</filename>
    </modified>
    <modified>
      <filename>plugins/mimetype-fu/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/mimetype-fu/install.rb</filename>
    </modified>
    <modified>
      <filename>plugins/mimetype-fu/lib/extensions_const.rb</filename>
    </modified>
    <modified>
      <filename>plugins/mimetype-fu/lib/mime_types.yml</filename>
    </modified>
    <modified>
      <filename>plugins/mimetype-fu/lib/mimetype_fu.rb</filename>
    </modified>
    <modified>
      <filename>plugins/mimetype-fu/spec/fixtures/file.jpg</filename>
    </modified>
    <modified>
      <filename>plugins/mimetype-fu/spec/fixtures/file.rb</filename>
    </modified>
    <modified>
      <filename>plugins/mimetype-fu/spec/fixtures/file.unknown</filename>
    </modified>
    <modified>
      <filename>plugins/mimetype-fu/spec/mime_type_spec.rb</filename>
    </modified>
    <modified>
      <filename>plugins/mimetype-fu/spec/spec_helper.rb</filename>
    </modified>
    <modified>
      <filename>plugins/mimetype-fu/tasks/mimetype_fu_tasks.rake</filename>
    </modified>
    <modified>
      <filename>plugins/mimetype-fu/test/mimetype_fu_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/mimetype-fu/uninstall.rb</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/CHANGELOG</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/README</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/lib/paginating_find.rb</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/lib/paging_enumerator.rb</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/lib/paging_helper.rb</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/test_app/Rakefile</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/test_app/app/controllers/application.rb</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/test_app/config/boot.rb</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/test_app/config/database.yml</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/test_app/config/environment.rb</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/test_app/config/environments/test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/test_app/config/routes.rb</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/test_app/db/schema.rb</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/test_app/test/fixtures/articles.yml</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/test_app/test/fixtures/authors.yml</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/test_app/test/fixtures/edits.yml</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/test_app/test/fixtures/models.rb</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/test_app/test/test_helper.rb</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/test_app/test/unit/abstract_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/test_app/test/unit/group_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/test_app/test/unit/paginating_find_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/paginating_find/test_app/test/unit/paging_enumerator_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/query_trace/MIT-LICENSE</filename>
    </modified>
    <modified>
      <filename>plugins/query_trace/README</filename>
    </modified>
    <modified>
      <filename>plugins/query_trace/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/query_trace/lib/query_trace.rb</filename>
    </modified>
    <modified>
      <filename>plugins/resource_feeder/README</filename>
    </modified>
    <modified>
      <filename>plugins/resource_feeder/Rakefile</filename>
    </modified>
    <modified>
      <filename>plugins/resource_feeder/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/resource_feeder/lib/resource_feeder.rb</filename>
    </modified>
    <modified>
      <filename>plugins/resource_feeder/lib/resource_feeder/atom.rb</filename>
    </modified>
    <modified>
      <filename>plugins/resource_feeder/lib/resource_feeder/rss.rb</filename>
    </modified>
    <modified>
      <filename>plugins/resource_feeder/test/atom_feed_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/resource_feeder/test/rss_feed_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/resource_feeder/test/test_helper.rb</filename>
    </modified>
    <modified>
      <filename>plugins/resource_hacks/MIT-LICENSE</filename>
    </modified>
    <modified>
      <filename>plugins/resource_hacks/README</filename>
    </modified>
    <modified>
      <filename>plugins/resource_hacks/Rakefile</filename>
    </modified>
    <modified>
      <filename>plugins/resource_hacks/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/resource_hacks/install.rb</filename>
    </modified>
    <modified>
      <filename>plugins/resource_hacks/lib/resource_hacks.rb</filename>
    </modified>
    <modified>
      <filename>plugins/resource_hacks/tasks/resource_hacks_tasks.rake</filename>
    </modified>
    <modified>
      <filename>plugins/resource_hacks/test/resource_hacks_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/resource_hacks/test/test_helper.rb</filename>
    </modified>
    <modified>
      <filename>plugins/resource_hacks/uninstall.rb</filename>
    </modified>
    <modified>
      <filename>plugins/responds_to_parent/MIT-LICENSE</filename>
    </modified>
    <modified>
      <filename>plugins/responds_to_parent/README</filename>
    </modified>
    <modified>
      <filename>plugins/responds_to_parent/Rakefile</filename>
    </modified>
    <modified>
      <filename>plugins/responds_to_parent/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/responds_to_parent/lib/parent_selector_assertion.rb</filename>
    </modified>
    <modified>
      <filename>plugins/responds_to_parent/lib/responds_to_parent.rb</filename>
    </modified>
    <modified>
      <filename>plugins/responds_to_parent/test/assert_select_parent_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/responds_to_parent/test/responds_to_parent_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/MIT-LICENSE</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/README</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/Rakefile</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/generators/private_message_model/USAGE</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/generators/private_message_model/private_message_model_generator.rb</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/generators/private_message_model/templates/migration.rb</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/generators/private_message_model/templates/model.rb</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/generators/private_message_scaffold/USAGE</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/generators/private_message_scaffold/private_message_scaffold_generator.rb</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/generators/private_message_scaffold/templates/controller.rb</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/generators/private_message_scaffold/templates/view_index.html.erb</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/generators/private_message_scaffold/templates/view_index_inbox.html.erb</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/generators/private_message_scaffold/templates/view_index_sent.html.erb</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/generators/private_message_scaffold/templates/view_new.html.erb</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/generators/private_message_scaffold/templates/view_show.html.erb</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/lib/professionalnerd/simple_private_messages/has_private_messages_extensions.rb</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/lib/professionalnerd/simple_private_messages/private_message_extensions.rb</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/tasks/simple_private_messages_tasks.rake</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/test/database.yml</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/test/fixtures/message.rb</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/test/fixtures/user.rb</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/test/schema.rb</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/test/test_helper.rb</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/test/unit/message_model.rb</filename>
    </modified>
    <modified>
      <filename>plugins/simple_private_messages/test/unit/user_model.rb</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/README</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/Rakefile</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/TODO</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/langs/en.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/license.txt</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/advhr/css/advhr.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/advhr/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/advhr/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/advhr/js/rule.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/advhr/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/advhr/rule.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/advimage/css/advimage.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/advimage/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/advimage/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/advimage/image.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/advimage/img/sample.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/advimage/js/image.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/advimage/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/advlink/css/advlink.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/advlink/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/advlink/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/advlink/js/advlink.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/advlink/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/advlink/link.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/autosave/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/autosave/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/bbcode/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/bbcode/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/compat2x/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/compat2x/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/contextmenu/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/curblyadvimage/js/functions.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/directionality/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/directionality/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/emotions.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/img/smiley-cool.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/img/smiley-cry.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/img/smiley-frown.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/img/smiley-smile.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/img/smiley-wink.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/img/smiley-yell.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/js/emotions.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/emotions/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/example/dialog.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/example/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/example/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/example/img/example.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/example/js/dialog.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/example/langs/en.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/example/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/fullpage/css/fullpage.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/fullpage/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/fullpage/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/fullpage/fullpage.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/fullpage/js/fullpage.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/fullpage/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/fullscreen/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/fullscreen/fullscreen.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/iespell/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/iespell/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/inlinepopups/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/inlinepopups/template.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/insertdatetime/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/insertdatetime/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/layer/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/layer/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/media/css/content.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/media/css/media.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/media/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/media/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/media/img/flash.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/media/img/flv_player.swf</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/media/img/quicktime.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/media/img/realmedia.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/media/img/shockwave.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/media/img/trans.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/media/img/windowsmedia.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/media/js/embed.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/media/js/media.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/media/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/media/media.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/noneditable/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/noneditable/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/pagebreak/css/content.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/pagebreak/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/pagebreak/img/pagebreak.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/pagebreak/img/trans.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/paste/blank.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/paste/css/blank.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/paste/css/pasteword.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/paste/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/paste/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/paste/js/pastetext.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/paste/js/pasteword.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/paste/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/paste/pastetext.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/paste/pasteword.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/preview/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/preview/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/preview/example.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/preview/jscripts/embed.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/preview/preview.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/print/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/print/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/safari/blank.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/safari/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/safari/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/save/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/save/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/searchreplace/css/searchreplace.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/searchreplace/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/searchreplace/js/searchreplace.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/searchreplace/searchreplace.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/spellchecker/css/content.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/spellchecker/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/spellchecker/img/wline.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/style/css/props.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/style/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/style/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/style/js/props.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/style/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/style/props.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/tabfocus/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/table/cell.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/table/css/cell.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/table/css/row.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/table/css/table.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/table/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/table/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/table/js/cell.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/table/js/merge_cells.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/table/js/row.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/table/js/table.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/table/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/table/merge_cells.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/table/row.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/table/table.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/template/blank.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/template/css/template.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/template/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/template/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/template/js/template.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/template/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/template/template.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/visualchars/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/visualchars/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/xhtmlxtras/abbr.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/xhtmlxtras/acronym.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/xhtmlxtras/attributes.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/xhtmlxtras/cite.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/xhtmlxtras/css/attributes.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/xhtmlxtras/css/popup.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/xhtmlxtras/del.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/xhtmlxtras/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/xhtmlxtras/ins.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/xhtmlxtras/js/cite.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/xhtmlxtras/js/del.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/xhtmlxtras/js/ins.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/about.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/anchor.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/charmap.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/color_picker.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/editor_template.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/editor_template_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/image.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/img/colorpicker.jpg</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/img/icons.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/js/about.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/js/anchor.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/js/charmap.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/js/color_picker.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/js/image.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/js/link.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/js/source_editor.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/langs/en.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/link.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/skins/default/content.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/skins/default/dialog.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/skins/default/img/buttons.png</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/skins/default/img/items.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/skins/default/img/progress.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/skins/default/ui.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/content.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui_black.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/advanced/source_editor.htm</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/simple/editor_template.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/simple/editor_template_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/simple/img/icons.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/simple/langs/en.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/simple/skins/default/content.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/simple/skins/default/ui.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/simple/skins/o2k7/content.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/themes/simple/skins/o2k7/ui.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/tiny_mce.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/tiny_mce_popup.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/tiny_mce_src.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/utils/editable_selects.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/utils/form_utils.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/utils/mctabs.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/assets/javascripts/tiny_mce/utils/validate.js</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/changelog</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/about.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/compatiblity_chart.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/credits.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/css/screen.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/customization_language_packs.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/customization_plugins.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/customization_themes.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/faq.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/images/moxiecode.gif</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/index.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/installation_example_00.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/installation_example_01.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/installation_example_02.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/installation_example_03.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/installing.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/license.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_accessibility_focus.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_accessibility_warnings.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_add_form_submit_trigger.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_add_unload_trigger.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_apply_source_formatting.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_ask.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_auto_focus.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_auto_reset_designmode.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_auto_resize.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_browsers.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_button_tile_map.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_cleanup.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_cleanup_callback.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_cleanup_on_startup.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_content_css.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_convert_fonts_to_spans.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_convert_newlines_to_brs.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_convert_urls.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_custom_shortcuts.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_custom_undo_redo.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_custom_undo_redo_keyboard_shortcuts.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_custom_undo_redo_levels.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_custom_undo_redo_restore_selection.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_debug.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_dialog_type.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_directionality.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_display_tab_class.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_docs_language.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_doctype.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_document_base_url.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_editor_css.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_editor_deselector.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_editor_selector.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_elements.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_encoding.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_entities.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_entity_encoding.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_event_elements.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_execcommand_callback.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_extended_valid_elements.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_external_image_list_url.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_external_link_list_url.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_file_browser_callback.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_fix_content_duplication.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_fix_list_elements.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_fix_table_elements.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_focus_alert.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_font_size_classes.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_font_size_style_values.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_force_br_newlines.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_force_hex_style_colors.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_force_p_newlines.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_handle_event_callback.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_height.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_hidden_tab_class.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_init_instance_callback.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_inline_styles.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_insertimage_callback.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_insertlink_callback.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_invalid_elements.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_language.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_merge_styles_invalid_parents.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_mode.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_nowrap.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_object_resizing.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_onchange_callback.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_oninit.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_onpageload.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_plugins.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_popups_css.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_preformatted.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_relative_urls.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_remove_linebreaks.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_remove_script_host.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_save_callback.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_setupcontent_callback.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_strict_loading_mode.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_submit_patch.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_table_inline_editing.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_textarea_trigger.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_blockformats.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_buttons_n.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_buttons_n_add.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_buttons_n_add_before.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_container.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_container_align.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_container_class.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_containers.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_containers_default_align.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_containers_default_class.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_custom_layout.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_disable.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_fonts.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_layout_manager.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_link_targets.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_path.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_path_location.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_resize_horizontal.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_resizing.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_resizing_use_cookie.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_source_editor_height.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_source_editor_width.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_source_editor_wrap.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_statusbar_location.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_styles.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_toolbar_align.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_theme_advanced_toolbar_location.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_trim_span_elements.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_urlconverter_callback.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_valid_elements.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_verify_css_classes.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_verify_html.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_visual.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_visual_table_class.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/option_width.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_advhr.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_advimage.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_advlink.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_autosave.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_contextmenu.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_directionality.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_emotions.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_flash.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_fullpage.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_fullscreen.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_iespell.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_inlinepopups.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_insertdatetime.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_layer.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_noneditable.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_paste.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_preview.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_print.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_save.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_searchreplace.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_spellchecker.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_style.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_table.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/plugin_zoom.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/reference_buttons.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/reference_configuration.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/reference_javascript_functions.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/reference_plugins.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/GLOBALS.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/TinyMCE_Cleanup.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/TinyMCE_Control.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/TinyMCE_Engine.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/TinyMCE_Layer.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/TinyMCE_Popup.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/TinyMCE_Selection.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/TinyMCE_UndoRedo.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/allclasses-frame.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/allclasses-noframe.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/help-doc.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/index-all.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/index.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-TinyMCE_Array.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-TinyMCE_Cleanup.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-TinyMCE_Control.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-TinyMCE_DOMUtils.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-TinyMCE_Debug.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-TinyMCE_Engine.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-TinyMCE_Event.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-TinyMCE_ForceParagraphs.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-TinyMCE_Layer.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-TinyMCE_Menu.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-TinyMCE_Popup.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-TinyMCE_Selection.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-TinyMCE_URL.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-TinyMCE_UndoRedo.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-frame.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-summary-TinyMCE_Array.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-summary-TinyMCE_Cleanup.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-summary-TinyMCE_Control.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-summary-TinyMCE_DOMUtils.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-summary-TinyMCE_Debug.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-summary-TinyMCE_Engine.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-summary-TinyMCE_Event.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-summary-TinyMCE_ForceParagraphs.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-summary-TinyMCE_Layer.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-summary-TinyMCE_Menu.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-summary-TinyMCE_Popup.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-summary-TinyMCE_Selection.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-summary-TinyMCE_URL.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-summary-TinyMCE_UndoRedo.class.js.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-summary.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/overview-tree.html</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/docs/tinymce_api/stylesheet.css</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/install.rb</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/lib/tiny_mce.rb</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/lib/tiny_mce_helper.rb</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/tasks/tiny_mce.rake</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/test/helper_testcase.rb</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/test/tiny_mce_helper_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/test/tiny_mce_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/tiny_mce/tiny_mce_options.yml</filename>
    </modified>
    <modified>
      <filename>plugins/validates_date_time/CHANGELOG</filename>
    </modified>
    <modified>
      <filename>plugins/validates_date_time/MIT-LICENSE</filename>
    </modified>
    <modified>
      <filename>plugins/validates_date_time/README</filename>
    </modified>
    <modified>
      <filename>plugins/validates_date_time/Rakefile</filename>
    </modified>
    <modified>
      <filename>plugins/validates_date_time/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/validates_date_time/lib/validates_date_time.rb</filename>
    </modified>
    <modified>
      <filename>plugins/validates_date_time/test/abstract_unit.rb</filename>
    </modified>
    <modified>
      <filename>plugins/validates_date_time/test/database.yml</filename>
    </modified>
    <modified>
      <filename>plugins/validates_date_time/test/date_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/validates_date_time/test/date_time_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/validates_date_time/test/fixtures/people.yml</filename>
    </modified>
    <modified>
      <filename>plugins/validates_date_time/test/fixtures/person.rb</filename>
    </modified>
    <modified>
      <filename>plugins/validates_date_time/test/schema.rb</filename>
    </modified>
    <modified>
      <filename>plugins/validates_date_time/test/time_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/white_list/README</filename>
    </modified>
    <modified>
      <filename>plugins/white_list/Rakefile</filename>
    </modified>
    <modified>
      <filename>plugins/white_list/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/white_list/lib/white_list_helper.rb</filename>
    </modified>
    <modified>
      <filename>plugins/white_list/test/white_list_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/CHANGELOG</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/MIT-LICENSE</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/README</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/Rakefile</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/charts/charts.swf</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/charts/charts_library/arno.swf</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/charts/charts_library/arst.swf</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/charts/charts_library/brfl.swf</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/charts/charts_library/brno.swf</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/charts/charts_library/brst.swf</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/charts/charts_library/cl3d.swf</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/charts/charts_library/clfl.swf</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/charts/charts_library/clno.swf</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/charts/charts_library/clp3.swf</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/charts/charts_library/cls3.swf</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/charts/charts_library/clst.swf</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/charts/charts_library/cnno.swf</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/charts/charts_library/lnno.swf</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/charts/charts_library/mxno.swf</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/charts/charts_library/pi3d.swf</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/charts/charts_library/pino.swf</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/charts/charts_library/pono.swf</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/charts/charts_library/scno.swf</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/commando/bar_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/commando/base_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/commando/column_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/commando/column_threed_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/commando/parallel_threed_column_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/commando/pie_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/commando/pie_threed_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/commando/polar_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/commando/stacked_bar_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/commando/stacked_column_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/commando/stacked_threed_column_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/default/bar_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/default/base_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/default/column_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/default/column_threed_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/default/parallel_threed_column_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/default/pie_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/default/pie_threed_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/default/polar_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/default/stacked_bar_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/default/stacked_column_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/default/stacked_threed_column_chart.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/artifacts/themes/default/test.yml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/init.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/install.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts/area.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts/bar.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts/base.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts/candlestick.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts/column.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts/column_threed.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts/floating_bar.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts/floating_column.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts/line.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts/mixed.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts/parallel_threed_column.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts/pie.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts/pie_threed.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts/polar.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts/scatter.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts/stacked_area.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts/stacked_bar.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts/stacked_column.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/charts/stacked_threed_column.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/area.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/axis_category.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/axis_ticks.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/axis_value.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/base.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/chart_border.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/chart_grid_h.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/chart_grid_v.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/chart_pref.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/chart_rect.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/chart_transition.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/chart_value.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/circle.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/draw.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/image.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/legend_label.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/legend_rect.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/legend_transition.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/line.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/link.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/link_data.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/live_update.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/rect.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/series_color.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/series_explode.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/series_gap.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/series_switch.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/components/text.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/helpers/base_helper.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/utils.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya/utils/text.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya_charting.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/lib/ziya_helper.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/spec/charts/base_chart_spec.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/spec/charts/rspec_helper.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/tasks/swf_charts_tasks.rake</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/charts/base_chart_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/prefs/axis_category_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/prefs/axis_ticks_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/prefs/axis_value_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/prefs/chart_border_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/prefs/chart_grid_h.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/prefs/chart_grid_v.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/prefs/chart_pref_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/prefs/chart_rect_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/prefs/chart_transition_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/prefs/chart_value_test.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/test_helper.rb</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/xmls/advanced.xml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/xmls/axis_category.xml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/xmls/axis_ticks.xml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/xmls/axis_value.xml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/xmls/basic.xml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/xmls/chart_border.xml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/xmls/chart_grid_h.xml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/xmls/chart_grid_v.xml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/xmls/chart_pref.xml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/xmls/chart_rect.xml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/xmls/chart_transition.xml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/xmls/chart_value.xml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/xmls/override.xml</filename>
    </modified>
    <modified>
      <filename>plugins/ziya/test/xmls/rspec1.xml</filename>
    </modified>
    <modified>
      <filename>public/charts/charts.swf</filename>
    </modified>
    <modified>
      <filename>public/charts/charts_library/arno.swf</filename>
    </modified>
    <modified>
      <filename>public/charts/charts_library/arst.swf</filename>
    </modified>
    <modified>
      <filename>public/charts/charts_library/brfl.swf</filename>
    </modified>
    <modified>
      <filename>public/charts/charts_library/brno.swf</filename>
    </modified>
    <modified>
      <filename>public/charts/charts_library/brst.swf</filename>
    </modified>
    <modified>
      <filename>public/charts/charts_library/cl3d.swf</filename>
    </modified>
    <modified>
      <filename>public/charts/charts_library/clfl.swf</filename>
    </modified>
    <modified>
      <filename>public/charts/charts_library/clno.swf</filename>
    </modified>
    <modified>
      <filename>public/charts/charts_library/clp3.swf</filename>
    </modified>
    <modified>
      <filename>public/charts/charts_library/cls3.swf</filename>
    </modified>
    <modified>
      <filename>public/charts/charts_library/clst.swf</filename>
    </modified>
    <modified>
      <filename>public/charts/charts_library/cnno.swf</filename>
    </modified>
    <modified>
      <filename>public/charts/charts_library/lnno.swf</filename>
    </modified>
    <modified>
      <filename>public/charts/charts_library/mxno.swf</filename>
    </modified>
    <modified>
      <filename>public/charts/charts_library/pi3d.swf</filename>
    </modified>
    <modified>
      <filename>public/charts/charts_library/pino.swf</filename>
    </modified>
    <modified>
      <filename>public/charts/charts_library/pono.swf</filename>
    </modified>
    <modified>
      <filename>public/charts/charts_library/scno.swf</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/commando/bar_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/commando/base_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/commando/column_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/commando/column_threed_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/commando/parallel_threed_column_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/commando/pie_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/commando/pie_threed_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/commando/polar_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/commando/stacked_bar_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/commando/stacked_column_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/commando/stacked_threed_column_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/default/bar_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/default/base_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/default/column_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/default/column_threed_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/default/parallel_threed_column_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/default/pie_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/default/pie_threed_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/default/polar_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/default/stacked_bar_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/default/stacked_column_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/default/stacked_threed_column_chart.yml</filename>
    </modified>
    <modified>
      <filename>public/charts/themes/default/test.yml</filename>
    </modified>
    <modified>
      <filename>public/contest_enter.png</filename>
    </modified>
    <modified>
      <filename>public/favicon.ico</filename>
    </modified>
    <modified>
      <filename>public/images/bg_h6btn.gif</filename>
    </modified>
    <modified>
      <filename>public/images/bg_navbar.gif</filename>
    </modified>
    <modified>
      <filename>public/images/close.gif</filename>
    </modified>
    <modified>
      <filename>public/images/cropper/marqueeHoriz.gif</filename>
    </modified>
    <modified>
      <filename>public/images/cropper/marqueeVert.gif</filename>
    </modified>
    <modified>
      <filename>public/images/feed.png</filename>
    </modified>
    <modified>
      <filename>public/images/icon_missing_medium.gif</filename>
    </modified>
    <modified>
      <filename>public/images/icon_missing_thumb.gif</filename>
    </modified>
    <modified>
      <filename>public/images/icons/31.png</filename>
    </modified>
    <modified>
      <filename>public/images/icons/52.png</filename>
    </modified>
    <modified>
      <filename>public/images/icons/bullet_arrow_down_50.png</filename>
    </modified>
    <modified>
      <filename>public/images/icons/clipping.png</filename>
    </modified>
    <modified>
      <filename>public/images/icons/delete.png</filename>
    </modified>
    <modified>
      <filename>public/images/icons/heart.png</filename>
    </modified>
    <modified>
      <filename>public/images/icons/heart_off.png</filename>
    </modified>
    <modified>
      <filename>public/images/icons/post.png</filename>
    </modified>
    <modified>
      <filename>public/images/icons/slides.png</filename>
    </modified>
    <modified>
      <filename>public/images/icons/vote.png</filename>
    </modified>
    <modified>
      <filename>public/images/logo.gif</filename>
    </modified>
    <modified>
      <filename>public/images/reply_background.png</filename>
    </modified>
    <modified>
      <filename>public/images/search.gif</filename>
    </modified>
    <modified>
      <filename>public/images/spinner.gif</filename>
    </modified>
    <modified>
      <filename>public/images/spinner_black.gif</filename>
    </modified>
    <modified>
      <filename>public/images/spinner_bounce.gif</filename>
    </modified>
    <modified>
      <filename>public/images/swf/choose.png</filename>
    </modified>
    <modified>
      <filename>public/images/swf/line_grapher.swf</filename>
    </modified>
    <modified>
      <filename>public/images/thumb.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/AC_RunActiveContent.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/application.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/builder.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/controls.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/cropper.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/cropper.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/dragdrop.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/effects.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/event-selectors.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/forum.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/lowpro.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/prototype.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/rounder.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/scrapbooker.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/scriptaculous.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/slider.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/slideshow/info.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/slideshow/loading.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/slideshow/next.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/slideshow/prev.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/slideshow/slideshow.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/slideshow/slideshow.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/sound.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/swfupload.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/langs/en.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/license.txt</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/advhr/css/advhr.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/advhr/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/advhr/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/advhr/js/rule.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/advhr/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/advhr/rule.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/advimage/css/advimage.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/advimage/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/advimage/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/advimage/image.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/advimage/img/sample.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/advimage/js/image.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/advimage/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/advlink/css/advlink.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/advlink/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/advlink/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/advlink/js/advlink.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/advlink/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/advlink/link.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/autosave/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/autosave/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/bbcode/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/bbcode/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/compat2x/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/compat2x/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/contextmenu/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <diff>@@ -27,7 +27,7 @@ function formElement() {
         return document.forms[1];
         }
 function ts_onload(){
-        $('dynamic_images_list').update(&quot;Uploading...&lt;br /&gt;&lt;img src='/images/spinner.gif'&gt;&quot;);
+        $('dynamic_images_list').update(&quot;Uploading...&lt;br /&gt;&lt;img src='/plugin_assets/community_engine/images/spinner.gif'&gt;&quot;);
         mcTabs.displayTab('dynamic_select_tab','dynamic_select_panel');
 
         var iframe1=ts_ce('iframe','html_editor_image_upload_frame');</diff>
      <filename>public/javascripts/tiny_mce/plugins/curblyadvimage/js/functions.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/curblyadvimage/langs/en.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/directionality/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/directionality/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/emotions.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/img/smiley-cool.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/img/smiley-cry.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/img/smiley-frown.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/img/smiley-smile.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/img/smiley-wink.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/img/smiley-yell.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/js/emotions.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/emotions/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/example/dialog.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/example/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/example/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/example/img/example.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/example/js/dialog.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/example/langs/en.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/example/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/fullpage/css/fullpage.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/fullpage/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/fullpage/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/fullpage/fullpage.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/fullpage/js/fullpage.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/fullpage/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/fullscreen/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/fullscreen/fullscreen.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/iespell/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/iespell/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/inlinepopups/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/inlinepopups/template.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/insertdatetime/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/insertdatetime/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/layer/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/layer/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/media/css/content.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/media/css/media.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/media/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/media/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/media/img/flash.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/media/img/flv_player.swf</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/media/img/quicktime.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/media/img/realmedia.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/media/img/shockwave.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/media/img/trans.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/media/img/windowsmedia.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/media/js/embed.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/media/js/media.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/media/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/media/media.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/noneditable/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/noneditable/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/pagebreak/css/content.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/pagebreak/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/pagebreak/img/pagebreak.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/pagebreak/img/trans.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/paste/blank.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/paste/css/blank.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/paste/css/pasteword.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/paste/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/paste/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/paste/js/pastetext.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/paste/js/pasteword.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/paste/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/paste/pastetext.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/paste/pasteword.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/preview/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/preview/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/preview/example.html</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/preview/jscripts/embed.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/preview/preview.html</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/print/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/print/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/safari/blank.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/safari/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/safari/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/save/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/save/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/searchreplace/css/searchreplace.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/searchreplace/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/searchreplace/js/searchreplace.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/searchreplace/searchreplace.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/spellchecker/css/content.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/spellchecker/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/spellchecker/img/wline.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/style/css/props.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/style/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/style/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/style/js/props.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/style/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/style/props.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/tabfocus/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/table/cell.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/table/css/cell.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/table/css/row.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/table/css/table.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/table/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/table/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/table/js/cell.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/table/js/merge_cells.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/table/js/row.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/table/js/table.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/table/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/table/merge_cells.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/table/row.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/table/table.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/template/blank.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/template/css/template.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/template/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/template/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/template/js/template.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/template/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/template/template.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/visualchars/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/visualchars/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/xhtmlxtras/abbr.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/xhtmlxtras/acronym.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/xhtmlxtras/attributes.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/xhtmlxtras/cite.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/xhtmlxtras/css/attributes.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/xhtmlxtras/css/popup.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/xhtmlxtras/del.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/xhtmlxtras/editor_plugin.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/xhtmlxtras/ins.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/xhtmlxtras/js/cite.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/xhtmlxtras/js/del.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/xhtmlxtras/js/ins.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/about.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/anchor.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/charmap.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/color_picker.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/editor_template.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/editor_template_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/image.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/img/colorpicker.jpg</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/img/icons.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/js/about.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/js/anchor.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/js/charmap.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/js/color_picker.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/js/image.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/js/link.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/js/source_editor.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/langs/en.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/langs/en_dlg.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/link.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/skins/default/content.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/skins/default/dialog.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/skins/default/img/buttons.png</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/skins/default/img/items.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/skins/default/img/progress.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/skins/default/ui.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/skins/o2k7/content.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui_black.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/advanced/source_editor.htm</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/simple/editor_template.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/simple/editor_template_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/simple/img/icons.gif</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/simple/langs/en.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/simple/skins/default/content.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/simple/skins/default/ui.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/simple/skins/o2k7/content.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/themes/simple/skins/o2k7/ui.css</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/tiny_mce.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/tiny_mce_popup.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/tiny_mce_src.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/utils/editable_selects.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/utils/form_utils.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/utils/mctabs.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/tiny_mce/utils/validate.js</filename>
    </modified>
    <modified>
      <filename>public/javascripts/uploader.js</filename>
    </modified>
    <modified>
      <filename>public/open_search.xml</filename>
    </modified>
    <modified>
      <diff>@@ -123,7 +123,6 @@ ul.talking li span {
 ul.flat li {
 	display:block;
 	float: left;
-	background:url(/plugin_assets/community_engine/images/small_circle.gif) no-repeat 5px 6px;
 	padding-left:15px;
 	}
 	ul.flat li.label {
@@ -603,4 +602,4 @@ div.editbox ul.help {
 	} 
 	#monitor_topic a {
 	  color: #666;
-		}
\ No newline at end of file
+		}</diff>
      <filename>public/stylesheets/forum.css</filename>
    </modified>
    <modified>
      <filename>public/stylesheets/print.css</filename>
    </modified>
    <modified>
      <filename>public/stylesheets/reset-fonts-grids.css</filename>
    </modified>
    <modified>
      <filename>public/stylesheets/screen.css</filename>
    </modified>
    <modified>
      <filename>sample_files/amazon_s3.yml</filename>
    </modified>
    <modified>
      <filename>sample_files/deployment_templates/database.erb</filename>
    </modified>
    <modified>
      <filename>sample_files/deployment_templates/deploy.erb</filename>
    </modified>
    <modified>
      <filename>sample_files/deployment_templates/god.erb</filename>
    </modified>
    <modified>
      <filename>sample_files/deployment_templates/mongrel.erb</filename>
    </modified>
    <modified>
      <filename>sample_files/deployment_templates/mysql.erb</filename>
    </modified>
    <modified>
      <filename>sample_files/deployment_templates/nginx.erb</filename>
    </modified>
    <modified>
      <filename>sample_files/s3.yml</filename>
    </modified>
    <modified>
      <filename>sample_files/sample_themes/dappled/images/header.jpg</filename>
    </modified>
    <modified>
      <filename>sample_files/sample_themes/dappled/stylesheets/screen.css</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #welcome
-  .box
+  -box do 
     %h2 
       Welcome to 
       =AppConfig.community_name</diff>
      <filename>sample_files/sample_themes/dappled/views/base/_homepage_banner_message.html.haml</filename>
    </modified>
    <modified>
      <filename>sample_files/sample_themes/dappled/views/shared/_header.html.haml</filename>
    </modified>
    <modified>
      <filename>sample_files/sample_themes/dappled/views/shared/_scripts_and_styles.html.haml</filename>
    </modified>
    <modified>
      <filename>tasks/community_engine_tasks.rake</filename>
    </modified>
    <modified>
      <filename>tasks/deployment.rake</filename>
    </modified>
    <modified>
      <filename>tasks/s3.rake</filename>
    </modified>
    <modified>
      <filename>test/all_tests.rb</filename>
    </modified>
    <modified>
      <filename>test/fixtures/ads.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/albums.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/categories.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/clippings.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/comments.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/contests.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/countries.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/events.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/files/Granite.bmp</filename>
    </modified>
    <modified>
      <filename>test/fixtures/files/library.jpg</filename>
    </modified>
    <modified>
      <filename>test/fixtures/forums.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/friendship_statuses.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/friendships.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/homepage_features.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/invitations.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/metro_areas.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/moderatorships.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/monitorships.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/offerings.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/photos.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/posts.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/roles.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/sb_posts.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/skills.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/states.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/static_pages.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/taggings.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/tags.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/topics.yml</filename>
    </modified>
    <modified>
      <filename>test/fixtures/users.yml</filename>
    </modified>
    <modified>
      <filename>test/functional/activities_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/admin_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/ads_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/albums_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/base_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/categories_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/clippings_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/comments_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/contests_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/events_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/favorites_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/forums_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/friendships_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/homepage_features_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/invitations_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/messages_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/metro_areas_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/moderators_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/monitorships_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/offerings_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/photo_manager_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/photos_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/posts_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/sb_posts_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/sessions_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/sitemap_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/skills_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/static_pages_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/statistics_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/tags_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/theme_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/topics_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/users_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/functional/votes_controller_test.rb</filename>
    </modified>
    <modified>
      <filename>test/test_helper.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/ad_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/asset_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/category_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/choice_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/clipping_image_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/clipping_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/comment_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/contest_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/country_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/event_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/favorite_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/forum_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/friendship_status_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/friendship_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/homepage_feature_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/invitation_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/message_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/metro_area_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/moderatorship_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/monitorships_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/offering_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/photo_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/poll_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/post_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/sb_post_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/skill_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/state_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/topic_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/user_notifier_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/user_test.rb</filename>
    </modified>
    <modified>
      <filename>test/unit/vote_test.rb</filename>
    </modified>
    <modified>
      <filename>uninstall.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>7228fb92a79c8543df2f2846e9345cb5fc35fa64</id>
    </parent>
  </parents>
  <author>
    <name>Juan de Fr&#237;as</name>
    <email>juafrlo@gmail.com</email>
  </author>
  <url>http://github.com/bborn/communityengine/commit/fe067355f37b727aecad12a67ff83683a9029bb1</url>
  <id>fe067355f37b727aecad12a67ff83683a9029bb1</id>
  <committed-date>2009-06-29T14:13:17-07:00</committed-date>
  <authored-date>2009-06-29T14:13:17-07:00</authored-date>
  <message>testing albums branch</message>
  <tree>510e0c9d053ed41078875846c247e28867355d6a</tree>
  <committer>
    <name>Juan de Fr&#237;as</name>
    <email>juafrlo@gmail.com</email>
  </committer>
</commit>
