<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,66 +1,11 @@
 Mack::Routes.build do |r|
 
-  r.resource &quot;admin/users&quot;
-  
-  r.with_options(:controller =&gt; :tst_home_page) do |map|
-    map.connect &quot;/&quot;
-    map.connect &quot;foo&quot;, :action =&gt; :foo
-    map.connect &quot;hello_from_render_text&quot;, :action =&gt; :hello_from_render_text
-    map.connect &quot;/foo_from_render_action&quot;, :action =&gt; :foo_from_render_action
-    map.connect &quot;/blow_from_bad_render_action&quot;, :action =&gt; :blow_from_bad_render_action
-    map.connect &quot;blow_up_from_double_render&quot;, :action =&gt; :blow_up_from_double_render
-    map.connect '/sess_test', :action =&gt; :read_param_from_session
-    map.hello_world &quot;/hello/world&quot;, :action =&gt; :hello_world
-  end
-  
-  r.with_options(:controller =&gt; :tst_another) do |map|
-    map.pickles &quot;/pickles&quot;, :action =&gt; :foo, :method =&gt; :post
-    map.env '/env', :action =&gt; :env
-    map.kill_kenny_no_meth &quot;/tst_another/kill_kenny&quot;, :action =&gt; :kill_kenny
-    map.kill_kenny_bad &quot;/tst_another/kill_kenny_bad&quot;, :action =&gt; :kill_kenny_bad
-  end
-  
   r.with_options(:controller =&gt; &quot;vtt/view_template&quot;) do |map|
-    map.bart_html_erb_with_layout &quot;/vtt/bart_html_erb_with_layout&quot;, :action =&gt; :bart_html_erb_with_layout
-    map.bart_html_erb_without_layout &quot;/vtt/bart_html_erb_without_layout&quot;, :action =&gt; :bart_html_erb_without_layout
-    map.bart_html_erb_with_special_layout &quot;/vtt/bart_html_erb_with_special_layout&quot;, :action =&gt; :bart_html_erb_with_special_layout
-    map.marge_html_markaby_with_layout &quot;/vtt/marge_html_markaby_with_layout&quot;, :action =&gt; :marge_html_markaby_with_layout
-    map.marge_html_markaby_without_layout &quot;/vtt/marge_html_markaby_without_layout&quot;, :action =&gt; :marge_html_markaby_without_layout
-    map.marge_html_markaby_with_special_layout &quot;/vtt/marge_html_markaby_with_special_layout&quot;, :action =&gt; :marge_html_markaby_with_special_layout
     map.maggie_html_haml_with_layout &quot;/vtt/maggie_html_haml_with_layout&quot;, :action =&gt; :maggie_html_haml_with_layout
     map.maggie_html_haml_without_layout &quot;/vtt/maggie_html_haml_without_layout&quot;, :action =&gt; :maggie_html_haml_without_layout
     map.maggie_html_haml_with_special_layout &quot;/vtt/maggie_html_haml_with_special_layout&quot;, :action =&gt; :maggie_html_haml_with_special_layout
-    map.lisa_inline_erb_with_layout &quot;/vtt/lisa_inline_erb_with_layout&quot;, :action =&gt; :lisa_inline_erb_with_layout
-    map.lisa_inline_erb_without_layout &quot;/vtt/lisa_inline_erb_without_layout&quot;, :action =&gt; :lisa_inline_erb_without_layout
-    map.lisa_inline_erb_with_special_layout &quot;/vtt/lisa_inline_erb_with_special_layout&quot;, :action =&gt; :lisa_inline_erb_with_special_layout
-    map.homer_xml_with_layout &quot;/vtt/homer_xml_with_layout&quot;, :action =&gt; :homer_xml_with_layout
-    map.homer_xml_without_layout &quot;/vtt/homer_xml_without_layout&quot;, :action =&gt; :homer_xml_without_layout
-    map.homer_xml_with_special_layout &quot;/vtt/homer_xml_with_special_layout&quot;, :action =&gt; :homer_xml_with_special_layout
-    map.good_url_get &quot;/vtt/good_get&quot;, :action =&gt; :good_get_url
-    map.bad_url_get &quot;/vtt/bad_get&quot;, :action =&gt; :bad_get_url
-    map.bad_url_get_with_raise &quot;/vtt/bad_with_raise&quot;, :action =&gt; :bad_with_raise_url
-    map.with_options(:method =&gt; :post) do |x|
-      x.good_url_post &quot;/vtt/good_post&quot;, :action =&gt; :good_post_url
-      x.bad_url_post &quot;/vtt/bad_post&quot;, :action =&gt; :bad_post_url
-      x.bad_url_post_with_raise &quot;/vtt/bad_post_with_raise&quot;, :action =&gt; :bad_post_with_raise_url
-    end
-    map.good_url_put &quot;/vtt/good_put&quot;, :action =&gt; :good_put_url, :method =&gt; :put
-    map.good_url_delete &quot;/vtt/good_delete&quot;, :action =&gt; :good_delete_url, :method =&gt; :delete
-    map.connect '/vtt/say_hi', :action =&gt; &quot;say_hi&quot;
-    map.public_found '/vtt/public_found', :action =&gt; :public_found
-    map.public_not_found '/vtt/public_not_found', :action =&gt; :public_not_found
-    map.public_found_nested '/vtt/public_found_nested', :action =&gt; :public_found_nested
-    map.public_with_extension '/vtt/public_with_extension', :action =&gt; :public_with_extension
-    map.partial_local '/vtt/partial_local', :action =&gt; :partial_local
-    map.partial_outside '/vtt/partial_outside', :action =&gt; :partial_outside
   end
   
-  r.old_foo &quot;/my_old_foo&quot;, :redirect_to =&gt; &quot;/tst_another/foo/:id&quot;, :status =&gt; 301
-  
-  r.kill_kenny_good &quot;/tst_users/kill_kenny_good&quot;, :controller =&gt; :tst_users, :action =&gt; :kill_kenny_good
-  r.resource :tst_users
-  r.resource :tst_resources
-  
   r.defaults
   
 end</diff>
      <filename>mack-haml_renderer/spec/fake_application/config/routes.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,62 +2,12 @@ Mack::Routes.build do |r|
 
   r.resource &quot;admin/users&quot;
   
-  r.with_options(:controller =&gt; :tst_home_page) do |map|
-    map.connect &quot;/&quot;
-    map.connect &quot;foo&quot;, :action =&gt; :foo
-    map.connect &quot;hello_from_render_text&quot;, :action =&gt; :hello_from_render_text
-    map.connect &quot;/foo_from_render_action&quot;, :action =&gt; :foo_from_render_action
-    map.connect &quot;/blow_from_bad_render_action&quot;, :action =&gt; :blow_from_bad_render_action
-    map.connect &quot;blow_up_from_double_render&quot;, :action =&gt; :blow_up_from_double_render
-    map.connect '/sess_test', :action =&gt; :read_param_from_session
-    map.hello_world &quot;/hello/world&quot;, :action =&gt; :hello_world
-  end
-  
-  r.with_options(:controller =&gt; :tst_another) do |map|
-    map.pickles &quot;/pickles&quot;, :action =&gt; :foo, :method =&gt; :post
-    map.env '/env', :action =&gt; :env
-    map.kill_kenny_no_meth &quot;/tst_another/kill_kenny&quot;, :action =&gt; :kill_kenny
-    map.kill_kenny_bad &quot;/tst_another/kill_kenny_bad&quot;, :action =&gt; :kill_kenny_bad
-  end
-  
   r.with_options(:controller =&gt; &quot;vtt/view_template&quot;) do |map|
-    map.bart_html_erb_with_layout &quot;/vtt/bart_html_erb_with_layout&quot;, :action =&gt; :bart_html_erb_with_layout
-    map.bart_html_erb_without_layout &quot;/vtt/bart_html_erb_without_layout&quot;, :action =&gt; :bart_html_erb_without_layout
-    map.bart_html_erb_with_special_layout &quot;/vtt/bart_html_erb_with_special_layout&quot;, :action =&gt; :bart_html_erb_with_special_layout
     map.marge_html_markaby_with_layout &quot;/vtt/marge_html_markaby_with_layout&quot;, :action =&gt; :marge_html_markaby_with_layout
     map.marge_html_markaby_without_layout &quot;/vtt/marge_html_markaby_without_layout&quot;, :action =&gt; :marge_html_markaby_without_layout
     map.marge_html_markaby_with_special_layout &quot;/vtt/marge_html_markaby_with_special_layout&quot;, :action =&gt; :marge_html_markaby_with_special_layout
-    map.lisa_inline_erb_with_layout &quot;/vtt/lisa_inline_erb_with_layout&quot;, :action =&gt; :lisa_inline_erb_with_layout
-    map.lisa_inline_erb_without_layout &quot;/vtt/lisa_inline_erb_without_layout&quot;, :action =&gt; :lisa_inline_erb_without_layout
-    map.lisa_inline_erb_with_special_layout &quot;/vtt/lisa_inline_erb_with_special_layout&quot;, :action =&gt; :lisa_inline_erb_with_special_layout
-    map.homer_xml_with_layout &quot;/vtt/homer_xml_with_layout&quot;, :action =&gt; :homer_xml_with_layout
-    map.homer_xml_without_layout &quot;/vtt/homer_xml_without_layout&quot;, :action =&gt; :homer_xml_without_layout
-    map.homer_xml_with_special_layout &quot;/vtt/homer_xml_with_special_layout&quot;, :action =&gt; :homer_xml_with_special_layout
-    map.good_url_get &quot;/vtt/good_get&quot;, :action =&gt; :good_get_url
-    map.bad_url_get &quot;/vtt/bad_get&quot;, :action =&gt; :bad_get_url
-    map.bad_url_get_with_raise &quot;/vtt/bad_with_raise&quot;, :action =&gt; :bad_with_raise_url
-    map.with_options(:method =&gt; :post) do |x|
-      x.good_url_post &quot;/vtt/good_post&quot;, :action =&gt; :good_post_url
-      x.bad_url_post &quot;/vtt/bad_post&quot;, :action =&gt; :bad_post_url
-      x.bad_url_post_with_raise &quot;/vtt/bad_post_with_raise&quot;, :action =&gt; :bad_post_with_raise_url
-    end
-    map.good_url_put &quot;/vtt/good_put&quot;, :action =&gt; :good_put_url, :method =&gt; :put
-    map.good_url_delete &quot;/vtt/good_delete&quot;, :action =&gt; :good_delete_url, :method =&gt; :delete
-    map.connect '/vtt/say_hi', :action =&gt; &quot;say_hi&quot;
-    map.public_found '/vtt/public_found', :action =&gt; :public_found
-    map.public_not_found '/vtt/public_not_found', :action =&gt; :public_not_found
-    map.public_found_nested '/vtt/public_found_nested', :action =&gt; :public_found_nested
-    map.public_with_extension '/vtt/public_with_extension', :action =&gt; :public_with_extension
-    map.partial_local '/vtt/partial_local', :action =&gt; :partial_local
-    map.partial_outside '/vtt/partial_outside', :action =&gt; :partial_outside
   end
-  
-  r.old_foo &quot;/my_old_foo&quot;, :redirect_to =&gt; &quot;/tst_another/foo/:id&quot;, :status =&gt; 301
-  
-  r.kill_kenny_good &quot;/tst_users/kill_kenny_good&quot;, :controller =&gt; :tst_users, :action =&gt; :kill_kenny_good
-  r.resource :tst_users
-  r.resource :tst_resources
-  
+    
   r.defaults
   
 end</diff>
      <filename>mack-markaby_renderer/spec/fake_application/config/routes.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>622a64f739b334cf98fa28021f2490ce836fd7a6</id>
    </parent>
  </parents>
  <author>
    <name>dsutedja</name>
    <email>dsutedja@helium.com</email>
  </author>
  <url>http://github.com/markbates/mack-more/commit/cacf6387310237e1a68c0f975c86dfd4a4566b5c</url>
  <id>cacf6387310237e1a68c0f975c86dfd4a4566b5c</id>
  <committed-date>2008-06-26T08:28:54-07:00</committed-date>
  <authored-date>2008-06-26T08:28:54-07:00</authored-date>
  <message>routes cleanup for markaby and haml renderer</message>
  <tree>14964f2d0fdea8666b4da18a7f2a861d1e4a3a9d</tree>
  <committer>
    <name>dsutedja</name>
    <email>dsutedja@helium.com</email>
  </committer>
</commit>
