<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>actionpack/test/fixtures/test/backup_files/item.html.erb.orig</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -255,6 +255,12 @@ module RenderTestCases
       assert_equal Encoding::UTF_8, result.encoding
     end
   end
+
+  def test_render_with_backup_files
+    result = @view.render :file =&gt; &quot;/test/backup_files/item&quot;
+    assert_equal &quot;The correct item.erb was loaded.\n&quot;, result
+  end
+
 end
 
 module TemplatesSetupTeardown</diff>
      <filename>actionpack/test/template/render_test.rb</filename>
    </modified>
    <modified>
      <diff>@@ -19,6 +19,8 @@ class TemplateTest &lt; Test::Unit::TestCase
       t.assert_parses_template_path 'abc',                    :extension =&gt; nil, :format =&gt; nil, :name =&gt; nil
       t.assert_parses_template_path 'abc.xxx',                :extension =&gt; nil, :format =&gt; 'xxx', :name =&gt; 'abc'
       t.assert_parses_template_path 'abc.html.xxx',           :extension =&gt; nil, :format =&gt; 'xxx', :name =&gt; 'abc'
+
+      t.assert_parses_template_path 'abc.html.erb.orig',      :format =&gt; 'orig', :extension =&gt; nil
     end
   end
 </diff>
      <filename>actionpack/test/template/template_test.rb</filename>
    </modified>
    <modified>
      <diff>@@ -27,6 +27,11 @@ module ActiveSupport
                 Thread.current[:#{thread_local_key}] = nil
               end
             EOS
+
+            def klass.to_s
+              &quot;ActiveSupport::Cache::Strategy::LocalCache&quot;
+            end
+
             klass
           end
         end</diff>
      <filename>activesupport/lib/active_support/cache/strategy/local_cache.rb</filename>
    </modified>
    <modified>
      <diff>@@ -56,7 +56,12 @@ module Rails
         returning table = '&lt;table&gt;' do
           properties.each do |(name, value)|
             table &lt;&lt; %(&lt;tr&gt;&lt;td class=&quot;name&quot;&gt;#{CGI.escapeHTML(name.to_s)}&lt;/td&gt;)
-            table &lt;&lt; %(&lt;td class=&quot;value&quot;&gt;#{CGI.escapeHTML(value.to_s)}&lt;/td&gt;&lt;/tr&gt;)
+            formatted_value = if value.kind_of?(Array)
+                  &quot;&lt;ul&gt;&quot; + value.map { |v| &quot;&lt;li&gt;#{CGI.escapeHTML(v.to_s)}&lt;/li&gt;&quot; }.join + &quot;&lt;/ul&gt;&quot;
+                else
+                  CGI.escapeHTML(value.to_s)
+                end
+            table &lt;&lt; %(&lt;td class=&quot;value&quot;&gt;#{formatted_value}&lt;/td&gt;&lt;/tr&gt;)
           end
           table &lt;&lt; '&lt;/table&gt;'
         end
@@ -102,6 +107,10 @@ module Rails
       end
     end
 
+    property 'Middleware' do
+      ActionController::Dispatcher.middleware.active.map(&amp;:inspect)
+    end
+
     # The Rails Git revision, if it's checked out into vendor/rails.
     property 'Edge Rails revision' do
       edge_rails_revision</diff>
      <filename>railties/builtin/rails_info/rails/info.rb</filename>
    </modified>
    <modified>
      <diff>@@ -99,7 +99,12 @@
       }
       #about-content td.name  {color: #555}
       #about-content td.value {color: #000}
-      
+
+      #about-content ul {
+        padding: 0;
+        list-style-type: none;
+      }
+
       #about-content.failure {
         background-color: #fcc;
         border: 1px solid #f00;</diff>
      <filename>railties/html/index.html</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>6abeba535ae03d1997f979eb2485cf0d22b5bcff</id>
    </parent>
    <parent>
      <id>0e9efae4745e232b1c778fda69ee110e42a223a7</id>
    </parent>
  </parents>
  <author>
    <name>Lourens Naude</name>
    <email>lourens@methodmissing.com</email>
  </author>
  <url>http://github.com/methodmissing/rails/commit/106ff8f552240b8f3bf2b29c90952e7f11c4b032</url>
  <id>106ff8f552240b8f3bf2b29c90952e7f11c4b032</id>
  <committed-date>2009-04-04T03:00:31-07:00</committed-date>
  <authored-date>2009-04-04T03:00:31-07:00</authored-date>
  <message>Merge branch 'master' of git://github.com/rails/rails</message>
  <tree>ddcafdcd7a007180e633d69fa173d1ceb82798ee</tree>
  <committer>
    <name>Lourens Naude</name>
    <email>lourens@methodmissing.com</email>
  </committer>
</commit>
