<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,5 +1,5 @@
 if defined?(Dependencies)
-  Dependencies.load_paths.unshift(&quot;#{RAILS_ROOT}/app/streamlined&quot;)
+  ActiveSupport::Dependencies.load_paths.unshift(&quot;#{RAILS_ROOT}/app/streamlined&quot;)
 end
 
 require 'extensions/array_conversions'</diff>
      <filename>init.rb</filename>
    </modified>
    <modified>
      <diff>@@ -22,15 +22,15 @@ class Streamlined::Context::ControllerContext
   end
   
   def model_symbol
-    Inflector.underscore(model_name).to_sym
+    ActiveSupport::Inflector.underscore(model_name).to_sym
   end
   
   def model_table
-    Inflector.tableize(model_name)
+    ActiveSupport::Inflector.tableize(model_name)
   end
   
   def model_underscore
-    Inflector.underscore(model_name)
+    ActiveSupport::Inflector.underscore(model_name)
   end
     
   def model_ui</diff>
      <filename>lib/streamlined/context/controller_context.rb</filename>
    </modified>
    <modified>
      <diff>@@ -81,7 +81,7 @@ module Streamlined::Controller::ClassMethods
       include Streamlined::Controller::InstanceMethods
       before_filter :initialize_request_context
       Dir[&quot;#{RAILS_ROOT}/app/streamlined/*.rb&quot;].each do |name|
-        Dependencies.depend_on name, true
+        ActiveSupport::Dependencies.depend_on name, true
       end
       # GETs should be safe (see http://www.w3.org/2001/tag/doc/whenToUseGet.html)
       verify :method =&gt; :post, :only =&gt; [ :destroy, :create, :update ],</diff>
      <filename>lib/streamlined/controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -38,7 +38,7 @@ module Streamlined::Controller::CrudMethods
     end
 
     self.instance_variable_set(&quot;@#{model_name.variableize}_pages&quot;, model_pages)
-    self.instance_variable_set(&quot;@#{Inflector.tableize(model_name)}&quot;, models)
+    self.instance_variable_set(&quot;@#{ActiveSupport::Inflector.tableize(model_name)}&quot;, models)
     @streamlined_items = models
     @streamlined_item_pages = model_pages
     find_columns_for_export if exporting
@@ -181,7 +181,7 @@ module Streamlined::Controller::CrudMethods
   def export_xml_file 
     @xml_file = true
     headers[&quot;Content-Type&quot;] = &quot;text/xml&quot;
-    headers[&quot;Content-Disposition&quot;] = &quot;attachment; filename=\&quot;#{Inflector.tableize(model_name)}_#{Time.now.strftime('%Y%m%d')}.xml\&quot;&quot;
+    headers[&quot;Content-Disposition&quot;] = &quot;attachment; filename=\&quot;#{ActiveSupport::Inflector.tableize(model_name)}_#{Time.now.strftime('%Y%m%d')}.xml\&quot;&quot;
     render_streamlined_file '/generic_views/list.rxml', :layout =&gt; false
   end
 </diff>
      <filename>lib/streamlined/controller/crud_methods.rb</filename>
    </modified>
    <modified>
      <diff>@@ -16,7 +16,7 @@ module Streamlined::Helpers::FilterHelper
         if model_ui.column(association_name, :crud_context =&gt; :list).show_view.fields
           model_ui.column(association_name, :crud_context =&gt; :list).show_view.fields.each do |field|
             if model.reflect_on_association(association_name).klass.column_names.index(field.to_s) 
-              filter_columns[Inflector.humanize(association_name.to_s) + &quot; (&quot; + Inflector.humanize(field) + &quot;)&quot;] = &quot;rel::&quot; + association_name.to_s + &quot;::&quot; + &quot;#{field}&quot;
+              filter_columns[ActiveSupport::Inflector.humanize(association_name.to_s) + &quot; (&quot; + ActiveSupport::Inflector.humanize(field) + &quot;)&quot;] = &quot;rel::&quot; + association_name.to_s + &quot;::&quot; + &quot;#{field}&quot;
             end
           end
         else  
@@ -24,7 +24,7 @@ module Streamlined::Helpers::FilterHelper
           no_name_yet = true
           names.each do |name|
             if no_name_yet &amp;&amp; model.reflect_on_association(association_name).klass.column_names.index(name) 
-              filter_columns[Inflector.humanize(association_name.to_s) + &quot; (&quot; + Inflector.humanize(name) + &quot;)&quot;] = &quot;rel::&quot; + association_name.to_s + &quot;::&quot; + &quot;#{name}&quot;
+              filter_columns[ActiveSupport::Inflector.humanize(association_name.to_s) + &quot; (&quot; + ActiveSupport::Inflector.humanize(name) + &quot;)&quot;] = &quot;rel::&quot; + association_name.to_s + &quot;::&quot; + &quot;#{name}&quot;
               no_name_yet = false
             end
           end    </diff>
      <filename>lib/streamlined/helpers/filter_helper.rb</filename>
    </modified>
    <modified>
      <diff>@@ -19,13 +19,13 @@ class Streamlined::View::Base
   # Returns the string representation used to create JavaScript IDs for this relationship type.
   # Fragile: might be a problem with modules or anonymous subclasses
   def id_fragment
-    return Inflector.demodulize(self.class.name)
+    return ActiveSupport::Inflector.demodulize(self.class.name)
   end
   
   # Returns the path to the partial that will be used to render this relationship type.
   def partial
     mod = self.class.name.split(&quot;::&quot;)[-2]
-    partial_name = Inflector.underscore(Inflector.demodulize(self.class.name))
+    partial_name = ActiveSupport::Inflector.underscore(ActiveSupport::Inflector.demodulize(self.class.name))
     File.join(STREAMLINED_TEMPLATE_ROOT, &quot;relationships/#{mod.underscore}/_#{partial_name}.rhtml&quot;)
   end
     </diff>
      <filename>lib/streamlined/view/base.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 module Streamlined::View::EditViews
   def self.create_relationship(sym, options = {})
     raise ArgumentError unless Symbol === sym
-    Class.class_eval(Inflector.camelize(sym.to_s)).new options
+    Class.class_eval(ActiveSupport::Inflector.camelize(sym.to_s)).new options
   end  
 
   # Factory method for creating a relationship View given the name of a view.</diff>
      <filename>lib/streamlined/view/edit_views.rb</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@ module Streamlined::View::ShowViews
   # Factory method for creating a relationship Summary given the name of a summary.
   def self.create_summary(sym, options = {})
     raise ArgumentError unless Symbol === sym
-    Class.class_eval(Inflector.camelize(sym.to_s)).new options
+    Class.class_eval(ActiveSupport::Inflector.camelize(sym.to_s)).new options
   end
 
   # TODO: this is not very dry!</diff>
      <filename>lib/streamlined/view/show_views.rb</filename>
    </modified>
    <modified>
      <diff>@@ -9,7 +9,7 @@
 &lt;p&gt; 
 &lt;% if show_columns_to_export -%&gt;
   &lt;% model_ui.list_columns.each do |column| -%&gt;
-    &lt;%= content_tag(:label, check_box_tag(&quot;export_columns[#{column.name}]&quot;, 1, !export_config.default_deselected_column?(column.name.to_sym)) + &quot;&amp;nbsp;#{Inflector.humanize(column.name)}&quot;) %&gt;
+    &lt;%= content_tag(:label, check_box_tag(&quot;export_columns[#{column.name}]&quot;, 1, !export_config.default_deselected_column?(column.name.to_sym)) + &quot;&amp;nbsp;#{ActiveSupport::Inflector.humanize(column.name)}&quot;) %&gt;
   &lt;% end -%&gt;  
 &lt;% end -%&gt;  
 &lt;/p&gt;</diff>
      <filename>templates/generic_views/_show_export.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -9,7 +9,7 @@
 &lt;p&gt; 
 &lt;% if show_columns_to_export -%&gt;
   &lt;% model_ui.list_columns.each do |column| -%&gt;
-    &lt;%= content_tag(:label, check_box_tag(&quot;export_columns[#{column.name}]&quot;, 1, !export_config.default_deselected_column?(column.name.to_sym)) + &quot;&amp;nbsp;#{Inflector.humanize(column.name)}&quot;) %&gt;
+    &lt;%= content_tag(:label, check_box_tag(&quot;export_columns[#{column.name}]&quot;, 1, !export_config.default_deselected_column?(column.name.to_sym)) + &quot;&amp;nbsp;#{ActiveSupport::Inflector.humanize(column.name)}&quot;) %&gt;
   &lt;% end -%&gt;  
 &lt;% end -%&gt;  
 &lt;/p&gt;</diff>
      <filename>templates/generic_views/_show_export.rhtml</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 xml.instruct!
 xml.instruct! :&quot;xml-stylesheet&quot;, :type =&gt; &quot;text/xsl&quot;, :href =&gt; &quot;#{model_underscore}.xsl&quot; if @xml_file
 
-xml.tag! Inflector.pluralize(model_name) do
+xml.tag! ActiveSupport::Inflector.pluralize(model_name) do
   for item in @streamlined_items 
     xml.tag! model_name do
       # model columns</diff>
      <filename>templates/generic_views/list.rxml</filename>
    </modified>
    <modified>
      <diff>@@ -4,16 +4,16 @@ xml.tag! :&quot;xsl:stylesheet&quot;, :version =&gt; &quot;1.0&quot;, :&quot;xmlns:xsl&quot; =&gt; &quot;http://www.w3.or
   xml.tag! :&quot;xsl:template&quot;, :match =&gt; &quot;/&quot; do
     xml.tag! &quot;html&quot; do
       xml.tag! &quot;body&quot; do
-        xml.tag! &quot;h2&quot;, Inflector.pluralize(model_name)
+        xml.tag! &quot;h2&quot;, ActiveSupport::Inflector.pluralize(model_name)
         xml.tag! &quot;table&quot;, :border =&gt; &quot;1&quot; do
           xml.tag! &quot;tr&quot;, :bgcolor =&gt; &quot;#9acd32&quot; do
             @export_columns.each do |column|
               xml.tag! &quot;th&quot;, :align=&gt;&quot;left&quot; do 
-                xml.text! &quot;#{Inflector.humanize(column.name)}&quot; 
+                xml.text! &quot;#{ActiveSupport::Inflector.humanize(column.name)}&quot; 
               end
             end
           end  
-          xml.tag! &quot;xsl:for-each&quot;, :select =&gt; &quot;#{Inflector.pluralize(model_name)}/#{model_name}&quot; do
+          xml.tag! &quot;xsl:for-each&quot;, :select =&gt; &quot;#{ActiveSupport::Inflector.pluralize(model_name)}/#{model_name}&quot; do
             xml.tag! &quot;tr&quot; do
               @export_columns.each do |column|
                 xml.tag! &quot;td&quot; do</diff>
      <filename>templates/generic_views/stylesheet.rxml</filename>
    </modified>
    <modified>
      <diff>@@ -97,8 +97,8 @@ module ActionController
             &quot;Unknown options: #{unknown_option_keys.join(', ')}&quot; unless
               unknown_option_keys.empty?
 
-      options[:singular_name] ||= Inflector.singularize(collection_id.to_s)
-      options[:class_name]  ||= Inflector.camelize(options[:singular_name])
+      options[:singular_name] ||= ActiveSupport::Inflector.singularize(collection_id.to_s)
+      options[:class_name]  ||= ActiveSupport::Inflector.camelize(options[:singular_name])
     end
 
     # Returns a paginator and a collection of Active Record model instances</diff>
      <filename>vendor/plugins/classic_pagination/lib/pagination.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>0a759b33e3575eb67924fe1ad0074537f86c5a44</id>
    </parent>
  </parents>
  <author>
    <name>Lawrence Karnowski</name>
    <email>larry@thinkrelevance.com</email>
  </author>
  <url>http://github.com/relevance/streamlined/commit/5d4f38f9c3901bcc32b783534a5001bcb5f12bff</url>
  <id>5d4f38f9c3901bcc32b783534a5001bcb5f12bff</id>
  <committed-date>2008-09-28T11:24:04-07:00</committed-date>
  <authored-date>2008-09-28T11:24:04-07:00</authored-date>
  <message>removed several deprecation warnings while running in Rails 2.1.1</message>
  <tree>af71d4013a41de076bc94cde83e226ddc461ba0e</tree>
  <committer>
    <name>Lawrence Karnowski</name>
    <email>larry@thinkrelevance.com</email>
  </committer>
</commit>
