<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>fixtures/public/javascripts/all.js</filename>
    </added>
    <added>
      <filename>public/javascripts/all.js</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,6 +1,11 @@
 = Changelog
 
 
+== master
+
+* REMOVED: ContentHelper#sidebar method. It was nothing special and just a wrapper for a simple Rails execution.
+
+
 == Release 0.4.0
 
 * ADDED: javascript and stylesheet AssetTag Helpers.</diff>
      <filename>CHANGELOG.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -127,19 +127,6 @@ The &lt;tt&gt;tradedoubler_verification_tag&lt;/tt&gt; helper method returns the site verifi
 
 Provides a set of helpers for capturing and working with your page content in a more effective way.
 
-The &lt;tt&gt;sidebar&lt;/tt&gt; helper method is a syntactic sugar addition to store content for your website sidebars.
-
-  &lt;% sidebar do %&gt;
-    &lt;div&gt;This is a sidebar module.&lt;/div&gt;
-  &lt;% end %&gt;
-  &lt;% sidebar do %&gt;
-    &lt;div&gt;This is an other sidebar module.&lt;/div&gt;
-  &lt;% end %&gt;
-  
-  &lt;%= yield :sidebar # Produces the following output %&gt;
-  &lt;div&gt;This is an other sidebar module.&lt;/div&gt;
-  &lt;div&gt;This is a sidebar module.&lt;/div&gt;
-
 The &lt;tt&gt;has_content?&lt;/tt&gt; helper is a natural fulfillment for the original &lt;tt&gt;content_for&lt;/tt&gt; helper.
 
   &lt;% content_for :foo do %&gt;</diff>
      <filename>README.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -39,27 +39,6 @@ module Helperful
       end
     end
     
-    # 
-    # Evaluates the content of &lt;tt&gt;block&lt;/tt&gt; and stores the result as &lt;tt&gt;content_for :sidebar&lt;/tt&gt;.
-    # 
-    # Because &lt;tt&gt;content_for&lt;/tt&gt; concatenates the block, you can call &lt;tt&gt;sidebar&lt;/tt&gt; multiple time
-    # and yield all the final content once.
-    # 
-    # See &lt;tt&gt;ActionView::Helpers::CaptureHelper#content_for&lt;/tt&gt; for the full API documentation.
-    # 
-    # ==== Examples
-    # 
-    #   &lt;% sidebar do %&gt;
-    #     &lt;p&gt;Sidebar&lt;/p&gt;
-    #   &lt;% end %&gt;
-    #   
-    #   &lt;%= yield :sidebar %&gt;
-    #   # =&gt; &lt;p&gt;Sidebar&lt;/p&gt;
-    # 
-    def sidebar(&amp;block)
-      content_for :sidebar, &amp;block
-    end
-    
     #
     # Returns &lt;tt&gt;true&lt;/tt&gt; if &lt;tt&gt;name&lt;/tt&gt; has any content,
     # in other workds if content_for(name) has ever been called.</diff>
      <filename>lib/helperful/content_helper.rb</filename>
    </modified>
    <modified>
      <diff>@@ -6,14 +6,6 @@ class ContentController &lt; ActionController::Base
   
   helperful &quot;content&quot;
   
-  def sidebar
-    render :layout =&gt; &quot;sidebar&quot;
-  end
-  
-  def sidebar_concatenate
-    render :layout =&gt; &quot;sidebar&quot;
-  end
-  
   def has_content
     render :layout =&gt; &quot;has_content&quot;
   end
@@ -38,16 +30,6 @@ class ContentTest &lt; ActiveSupport::TestCase
     @request.host = &quot;test.host&quot;
   end
 
-  def test_sidebar
-    get :sidebar
-    assert_equal expected_sidebar_content_for_output, @response.body
-  end
-
-  def test_sidebar_concatenate
-    get :sidebar_concatenate
-    assert_equal expected_sidebar_content_for_output, @response.body
-  end
-
   def test_has_content
     get :has_content
     assert_equal %Q{
@@ -63,19 +45,5 @@ class ContentTest &lt; ActiveSupport::TestCase
     assert_response :success
     assert_equal('bar', @response.body)
   end
-
-  protected
-  
-    def expected_sidebar_content_for_output
-&lt;&lt;-EOS
-&lt;title&gt;This is the title&lt;/title&gt;
-&lt;div id=&quot;first&quot;&gt;
-  &lt;p&gt;First Sidebar&lt;/p&gt;
-&lt;/div&gt;
-&lt;div id=&quot;second&quot;&gt;
-  &lt;p&gt;Second Sidebar&lt;/p&gt;
-&lt;/div&gt;
-EOS
-    end
     
 end</diff>
      <filename>test/content_helper_test.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>test/fixtures/content/sidebar.html.erb</filename>
    </removed>
    <removed>
      <filename>test/fixtures/content/sidebar_concatenate.html.erb</filename>
    </removed>
    <removed>
      <filename>test/fixtures/layouts/sidebar.html.erb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>9cf5a99a2f924c2b47cbd33159362fc4b21b731c</id>
    </parent>
  </parents>
  <author>
    <name>Simone Carletti</name>
    <email>weppos@weppos.net</email>
  </author>
  <url>http://github.com/weppos/helperful/commit/b16a5f37ae226e2414fce4bd46b066e78adb462c</url>
  <id>b16a5f37ae226e2414fce4bd46b066e78adb462c</id>
  <committed-date>2009-07-03T01:31:38-07:00</committed-date>
  <authored-date>2009-07-03T01:29:44-07:00</authored-date>
  <message>Removed ContentHelper#sidebar method. It was nothing special and just a wrapper for a simple Rails execution.</message>
  <tree>c923662512c52a5228cc785318a37ed2d722db3d</tree>
  <committer>
    <name>Simone Carletti</name>
    <email>weppos@weppos.net</email>
  </committer>
</commit>
