<?xml version="1.0" encoding="UTF-8"?>
<commits type="array">
  <commit>
    <parents type="array">
      <parent>
        <id>f31651bd6ac8c3d887a43ee8f71ed7a9bc7877cb</id>
      </parent>
    </parents>
    <author>
      <name>Chris Eppstein</name>
      <email>chris@eppsteins.net</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/ea9be5989b5eb4465d9e057f2d7b77a9a7292e50</url>
    <id>ea9be5989b5eb4465d9e057f2d7b77a9a7292e50</id>
    <committed-date>2008-06-16T21:37:19-07:00</committed-date>
    <authored-date>2008-06-16T18:59:58-07:00</authored-date>
    <message>Default Routing

This is an Search Engine Optimization enabling change that allows you to specify that one or more nested routes will not have
a path segment added to their url.  When combined with pretty urls, this results in nice tight urls without any redundant
folders in them in the cases where the nesting resource member is primarily a container for a collection of nested resources.

This plugin adds new new routing options:
* :default - When true, causes the resource to not generate a namespace prefix
* :show - a symbol identifying a nested resource whose index action should *replace* this resources show action.

It's important to note that using a :default nesting results in a url collision that hides the index action of the nested
resource. If routing to the index action is more desirable, use the :show option on the parent resource instead.

Example
=======

map.namespace :forum do |forum|
  forum.resources :boards, :default =&gt; true, :show =&gt; :threads do |boards|
    boards.resources :threads, :show =&gt; posts do |threads|
      threads.resources :posts
    end
  end
end

% rake routes | grep forum | grep -v format

                forum_boards GET    /forum
                             POST   /forum
             new_forum_board GET    /forum/new
            edit_forum_board GET    /forum/:id/edit
                             PUT    /forum/:id
                             DELETE /forum/:id
         forum_board_threads GET    /forum/:board_id             # prevents recognition of forum_board
                             POST   /forum/:board_id
      new_forum_board_thread GET    /forum/:board_id/new
     edit_forum_board_thread GET    /forum/:board_id/:id/edit
                             PUT    /forum/:board_id/:id
                             DELETE /forum/:board_id/:id
    forum_board_thread_posts GET    /forum/:board_id/:thread_id  # prevents recognition of forum_board_thread
                             POST   /forum/:board_id/:thread_id
 new_forum_board_thread_post GET    /forum/:board_id/:thread_id/new
edit_forum_board_thread_post GET    /forum/:board_id/:thread_id/:id/edit
     forum_board_thread_post GET    /forum/:board_id/:thread_id/:id
                             PUT    /forum/:board_id/:thread_id/:id
                             DELETE /forum/:board_id/:thread_id/:id
          forum_board_thread GET    /forum/:board_id/:id
                 forum_board GET    /forum/:id

% script/console
&gt;&gt; app.forum_board_thread_post_path(Board.first, Thread.first, Post.first)
=&gt; &quot;/forum/star-wars/droids/r2d2-rocks-c3po-sucks&quot;

Copyright (c) 2008 Chris Eppstein, released under the MIT license</message>
    <tree>545ca9f78948664e05b2f8bb7c52ba294df290a7</tree>
    <committer>
      <name>Chris Eppstein</name>
      <email>chris@eppsteins.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>b415538b5dbf017d20226411a9d25a149f87eb51</id>
      </parent>
    </parents>
    <author>
      <name>Pratik Naik</name>
      <email>pratiknaik@gmail.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/f31651bd6ac8c3d887a43ee8f71ed7a9bc7877cb</url>
    <id>f31651bd6ac8c3d887a43ee8f71ed7a9bc7877cb</id>
    <committed-date>2008-06-15T09:20:31-07:00</committed-date>
    <authored-date>2008-06-15T09:20:31-07:00</authored-date>
    <message>Reload cached templates when a new handler is registered</message>
    <tree>57cc2e2c1e63a8a1e77275630a09a8e6b0fa35fa</tree>
    <committer>
      <name>Pratik Naik</name>
      <email>pratiknaik@gmail.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>ba0f38f89e8473490270957849d7d5b06f6ee65b</id>
      </parent>
    </parents>
    <author>
      <name>Joshua Peek</name>
      <email>josh@joshpeek.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/b415538b5dbf017d20226411a9d25a149f87eb51</url>
    <id>b415538b5dbf017d20226411a9d25a149f87eb51</id>
    <committed-date>2008-06-14T13:18:55-07:00</committed-date>
    <authored-date>2008-06-14T13:18:55-07:00</authored-date>
    <message>Updated bundled TZInfo gem to version 0.3.9 for Ruby 1.9 compat</message>
    <tree>19dc7808f4392dd95c923eb5127c5223c8b45954</tree>
    <committer>
      <name>Joshua Peek</name>
      <email>josh@joshpeek.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>eea4fe4c902e71249d77b3103eade3dec905f98a</id>
      </parent>
    </parents>
    <author>
      <name>David Heinemeier Hansson</name>
      <email>david@loudthinking.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/ba0f38f89e8473490270957849d7d5b06f6ee65b</url>
    <id>ba0f38f89e8473490270957849d7d5b06f6ee65b</id>
    <committed-date>2008-06-13T15:34:17-07:00</committed-date>
    <authored-date>2008-06-13T15:34:17-07:00</authored-date>
    <message>Change Enumberal#several? to Enumberal#many?</message>
    <tree>6bf2d17d3b4081ec432095a6442f7b8ee30024f3</tree>
    <committer>
      <name>David Heinemeier Hansson</name>
      <email>david@loudthinking.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>d62382afa39d7ea413b24cf33a6dbb55d8cc1f1c</id>
      </parent>
    </parents>
    <author>
      <name>Pratik Naik</name>
      <email>pratiknaik@gmail.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/eea4fe4c902e71249d77b3103eade3dec905f98a</url>
    <id>eea4fe4c902e71249d77b3103eade3dec905f98a</id>
    <committed-date>2008-06-13T15:23:44-07:00</committed-date>
    <authored-date>2008-06-13T15:23:44-07:00</authored-date>
    <message>Make rescue template xhtml compatible [Sam Ruby] [#415 status:resolved]</message>
    <tree>4f815027776d0f5d96c8d094374d478d73bc557e</tree>
    <committer>
      <name>Pratik Naik</name>
      <email>pratiknaik@gmail.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>579086047e4989a95533cd61d4ef1002239dd784</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Kemper</name>
      <email>jeremy@bitsweat.net</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/d62382afa39d7ea413b24cf33a6dbb55d8cc1f1c</url>
    <id>d62382afa39d7ea413b24cf33a6dbb55d8cc1f1c</id>
    <committed-date>2008-06-12T18:22:30-07:00</committed-date>
    <authored-date>2008-06-12T18:22:30-07:00</authored-date>
    <message>Ruby 1.9 compat: instance_methods are symbols instead of strings. Use the quicker instance_method(sym) rescue false check.</message>
    <tree>5f6a7ed9c1c7ca63703fe77aef125bb93425beb6</tree>
    <committer>
      <name>Jeremy Kemper</name>
      <email>jeremy@bitsweat.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>e536d4d8881263d1d0c26a9d5ff69e1a2875c63f</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Kemper</name>
      <email>jeremy@bitsweat.net</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/579086047e4989a95533cd61d4ef1002239dd784</url>
    <id>579086047e4989a95533cd61d4ef1002239dd784</id>
    <committed-date>2008-06-12T18:19:40-07:00</committed-date>
    <authored-date>2008-06-12T18:19:34-07:00</authored-date>
    <message>Remove superfluous test_process require</message>
    <tree>2a96b519086409221a2488bbe35326360974fc06</tree>
    <committer>
      <name>Jeremy Kemper</name>
      <email>jeremy@bitsweat.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>f74ba37f4e4175d5a1b31da59d161b0020b58e94</id>
      </parent>
    </parents>
    <author>
      <name>David Heinemeier Hansson</name>
      <email>david@loudthinking.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/e536d4d8881263d1d0c26a9d5ff69e1a2875c63f</url>
    <id>e536d4d8881263d1d0c26a9d5ff69e1a2875c63f</id>
    <committed-date>2008-06-12T18:10:50-07:00</committed-date>
    <authored-date>2008-06-12T18:10:50-07:00</authored-date>
    <message>Changed all generated tests to use the test/do declaration style [DHH]</message>
    <tree>5a51c05937430cfe211665464998b26d344300a9</tree>
    <committer>
      <name>David Heinemeier Hansson</name>
      <email>david@loudthinking.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>048ac3604cd46479002eaf7b1bb32770289580fc</id>
      </parent>
    </parents>
    <author>
      <name>David Heinemeier Hansson</name>
      <email>david@loudthinking.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/f74ba37f4e4175d5a1b31da59d161b0020b58e94</url>
    <id>f74ba37f4e4175d5a1b31da59d161b0020b58e94</id>
    <committed-date>2008-06-12T18:10:38-07:00</committed-date>
    <authored-date>2008-06-12T18:10:38-07:00</authored-date>
    <message>Added test/do declaration style testing to ActiveSupport::TestCase [DHH via Jay Fields]</message>
    <tree>fee4f0c757d26e5c0355f7ed5c086b1f81c9617a</tree>
    <committer>
      <name>David Heinemeier Hansson</name>
      <email>david@loudthinking.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>6573f6a4bc1c2ebd26e0b4b3ef9fe1cde3219354</id>
      </parent>
    </parents>
    <author>
      <name>David Heinemeier Hansson</name>
      <email>david@loudthinking.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/048ac3604cd46479002eaf7b1bb32770289580fc</url>
    <id>048ac3604cd46479002eaf7b1bb32770289580fc</id>
    <committed-date>2008-06-12T17:52:44-07:00</committed-date>
    <authored-date>2008-06-12T17:52:44-07:00</authored-date>
    <message>Revert &quot;Ensure MemCacheStore is required when using CompressedMemCacheStore since they are lazy load now.&quot;

This reverts commit dd4181f47dc0f166eb5d3e47a4a0dc1594cc5669.</message>
    <tree>977433a1018915474f625eb0bffc12bf9ffab2ca</tree>
    <committer>
      <name>David Heinemeier Hansson</name>
      <email>david@loudthinking.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>a3caf28da3a22c1326d3d98dcf71483a8edaa55a</id>
      </parent>
    </parents>
    <author>
      <name>David Heinemeier Hansson</name>
      <email>david@loudthinking.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/6573f6a4bc1c2ebd26e0b4b3ef9fe1cde3219354</url>
    <id>6573f6a4bc1c2ebd26e0b4b3ef9fe1cde3219354</id>
    <committed-date>2008-06-12T17:52:33-07:00</committed-date>
    <authored-date>2008-06-12T17:52:33-07:00</authored-date>
    <message>Revert &quot;Lazy load cache and session stores&quot;

This reverts commit 19895f087c338d8385dff9d272d30fb87cb10330.</message>
    <tree>3285bde79403e99cdf773f5a3d8467a59b0ed648</tree>
    <committer>
      <name>David Heinemeier Hansson</name>
      <email>david@loudthinking.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>ea3a7e1bb1efc8b3ca10c4163bc116f3d5e23af1</id>
      </parent>
    </parents>
    <author>
      <name>David Heinemeier Hansson</name>
      <email>david@loudthinking.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/a3caf28da3a22c1326d3d98dcf71483a8edaa55a</url>
    <id>a3caf28da3a22c1326d3d98dcf71483a8edaa55a</id>
    <committed-date>2008-06-12T16:30:56-07:00</committed-date>
    <authored-date>2008-06-12T16:30:56-07:00</authored-date>
    <message>Added Object#present? which is equivalent to !Object#blank? [DHH]</message>
    <tree>ffdee041bedbc1d57eba9cd3dcd4b0879a305158</tree>
    <committer>
      <name>David Heinemeier Hansson</name>
      <email>david@loudthinking.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>556204abaf95f7c995576cb1358f13de406682ab</id>
      </parent>
      <parent>
        <id>dd4181f47dc0f166eb5d3e47a4a0dc1594cc5669</id>
      </parent>
    </parents>
    <author>
      <name>David Heinemeier Hansson</name>
      <email>david@loudthinking.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/ea3a7e1bb1efc8b3ca10c4163bc116f3d5e23af1</url>
    <id>ea3a7e1bb1efc8b3ca10c4163bc116f3d5e23af1</id>
    <committed-date>2008-06-12T15:48:30-07:00</committed-date>
    <authored-date>2008-06-12T15:48:30-07:00</authored-date>
    <message>Merge branch 'master' of git@github.com:rails/rails</message>
    <tree>a3cce25be0c613a8e1444e1d0ff53aaed3497057</tree>
    <committer>
      <name>David Heinemeier Hansson</name>
      <email>david@loudthinking.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>ed0cb91a830f317e3a8192a90294c1005f6156c2</id>
      </parent>
    </parents>
    <author>
      <name>David Heinemeier Hansson</name>
      <email>david@loudthinking.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/556204abaf95f7c995576cb1358f13de406682ab</url>
    <id>556204abaf95f7c995576cb1358f13de406682ab</id>
    <committed-date>2008-06-12T15:46:15-07:00</committed-date>
    <authored-date>2008-06-12T15:46:15-07:00</authored-date>
    <message>Added Enumberable#several? to encapsulate collection.size &gt; 1 [DHH]</message>
    <tree>a84387ac04af8377b25c4c283a522dc82639bb53</tree>
    <committer>
      <name>David Heinemeier Hansson</name>
      <email>david@loudthinking.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>d4c58c7928374c1deb533d69252fecd4068a8c11</id>
      </parent>
    </parents>
    <author>
      <name>Joshua Peek</name>
      <email>josh@joshpeek.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/dd4181f47dc0f166eb5d3e47a4a0dc1594cc5669</url>
    <id>dd4181f47dc0f166eb5d3e47a4a0dc1594cc5669</id>
    <committed-date>2008-06-12T12:20:30-07:00</committed-date>
    <authored-date>2008-06-12T12:20:30-07:00</authored-date>
    <message>Ensure MemCacheStore is required when using CompressedMemCacheStore since they are lazy load now.</message>
    <tree>23ecb592850c0ef2e09402f84bc53c4cc93d9603</tree>
    <committer>
      <name>Joshua Peek</name>
      <email>josh@joshpeek.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>5ed162d7c1fc2cd6495249fbaf8692fc1ab5a1eb</id>
      </parent>
    </parents>
    <author>
      <name>Joshua Peek</name>
      <email>josh@joshpeek.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/d4c58c7928374c1deb533d69252fecd4068a8c11</url>
    <id>d4c58c7928374c1deb533d69252fecd4068a8c11</id>
    <committed-date>2008-06-11T20:22:05-07:00</committed-date>
    <authored-date>2008-06-11T20:22:05-07:00</authored-date>
    <message>Opps, I forgot to add template_handlers.rb to my index.</message>
    <tree>bcb5ce1a23cf94f614c273cc440b9f33a5276677</tree>
    <committer>
      <name>Joshua Peek</name>
      <email>josh@joshpeek.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>2275b8daab924a8e26afbd4048d8ab9530e7c792</id>
      </parent>
    </parents>
    <author>
      <name>Joshua Peek</name>
      <email>josh@joshpeek.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/5ed162d7c1fc2cd6495249fbaf8692fc1ab5a1eb</url>
    <id>5ed162d7c1fc2cd6495249fbaf8692fc1ab5a1eb</id>
    <committed-date>2008-06-11T20:05:36-07:00</committed-date>
    <authored-date>2008-06-11T20:05:36-07:00</authored-date>
    <message>Moved template handler registration into a mix-in module.</message>
    <tree>4b92b8474d1941359ebb5bedff56f81b8d175bcb</tree>
    <committer>
      <name>Joshua Peek</name>
      <email>josh@joshpeek.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>ddab9d7fdf49eb064f3f669bbf6ebb41e75e9fb5</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Kemper</name>
      <email>jeremy@bitsweat.net</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/2275b8daab924a8e26afbd4048d8ab9530e7c792</url>
    <id>2275b8daab924a8e26afbd4048d8ab9530e7c792</id>
    <committed-date>2008-06-11T19:21:47-07:00</committed-date>
    <authored-date>2008-06-11T19:21:47-07:00</authored-date>
    <message>Fix quoting in test_counting_with_single_conditions</message>
    <tree>4e8e7c0c8710eec8d76026bb790c2b2f214c1c04</tree>
    <committer>
      <name>Jeremy Kemper</name>
      <email>jeremy@bitsweat.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>e170d34a634c93efef471f9c0c1dac7377f1fc40</id>
      </parent>
    </parents>
    <author>
      <name>Ben Munat</name>
      <email>bmunat@gmail.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/ddab9d7fdf49eb064f3f669bbf6ebb41e75e9fb5</url>
    <id>ddab9d7fdf49eb064f3f669bbf6ebb41e75e9fb5</id>
    <committed-date>2008-06-11T18:07:57-07:00</committed-date>
    <authored-date>2008-06-11T16:26:35-07:00</authored-date>
    <message>Add :from option to calculations.  [#397 state:resolved]</message>
    <tree>9fd10026edaf41bb723f8fa06c3ee0c880d2c212</tree>
    <committer>
      <name>Jeremy Kemper</name>
      <email>jeremy@bitsweat.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>e6c1f46eb0fe637195bdf95647dd3aee72467580</id>
      </parent>
    </parents>
    <author>
      <name>Antonio Cangiano</name>
      <email>acangiano@gmail.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/e170d34a634c93efef471f9c0c1dac7377f1fc40</url>
    <id>e170d34a634c93efef471f9c0c1dac7377f1fc40</id>
    <committed-date>2008-06-11T17:25:39-07:00</committed-date>
    <authored-date>2008-06-11T12:25:19-07:00</authored-date>
    <message>Fixed non-standard SQL generated by preloading has_and_belongs_to_many association</message>
    <tree>eb5d9566044aa3600c1dbee9c61019a702a3f933</tree>
    <committer>
      <name>Jeremy Kemper</name>
      <email>jeremy@bitsweat.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>65bc8f33de03d2aa919b54141f707d650c2fbf61</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Kemper</name>
      <email>jeremy@bitsweat.net</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/e6c1f46eb0fe637195bdf95647dd3aee72467580</url>
    <id>e6c1f46eb0fe637195bdf95647dd3aee72467580</id>
    <committed-date>2008-06-11T13:17:23-07:00</committed-date>
    <authored-date>2008-06-11T13:17:23-07:00</authored-date>
    <message>Silence scope resolution warnings</message>
    <tree>f1c5a92aa8f780891e9c8570e9e59c1eda02fc76</tree>
    <committer>
      <name>Jeremy Kemper</name>
      <email>jeremy@bitsweat.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>23df8befcd557a3294b8a87cf68fd21b1a9d9a49</id>
      </parent>
    </parents>
    <author>
      <name>Pratik Naik</name>
      <email>pratiknaik@gmail.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/65bc8f33de03d2aa919b54141f707d650c2fbf61</url>
    <id>65bc8f33de03d2aa919b54141f707d650c2fbf61</id>
    <committed-date>2008-06-11T09:11:34-07:00</committed-date>
    <authored-date>2008-06-11T09:11:11-07:00</authored-date>
    <message>Silence TimeZone warning</message>
    <tree>ec6570b394ecdb087382d011745178f7c1888846</tree>
    <committer>
      <name>Pratik Naik</name>
      <email>pratiknaik@gmail.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>d0b3685a0e221b54fdf3c27326564950a419d823</id>
      </parent>
    </parents>
    <author>
      <name>Jeremy Kemper</name>
      <email>jeremy@bitsweat.net</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/23df8befcd557a3294b8a87cf68fd21b1a9d9a49</url>
    <id>23df8befcd557a3294b8a87cf68fd21b1a9d9a49</id>
    <committed-date>2008-06-11T09:06:36-07:00</committed-date>
    <authored-date>2008-06-11T09:06:36-07:00</authored-date>
    <message>supports_insert_with_returning? caches false result also</message>
    <tree>0e3f6253be86b06c9a3a28f5d86f64851eb90561</tree>
    <committer>
      <name>Jeremy Kemper</name>
      <email>jeremy@bitsweat.net</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>ca9641f8a7ca1142d0ea99405a079c8699bd443c</id>
      </parent>
    </parents>
    <author>
      <name>Jan De Poorter</name>
      <email>jan@defv.be</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/d0b3685a0e221b54fdf3c27326564950a419d823</url>
    <id>d0b3685a0e221b54fdf3c27326564950a419d823</id>
    <committed-date>2008-06-11T05:18:54-07:00</committed-date>
    <authored-date>2008-06-03T02:06:59-07:00</authored-date>
    <message>Added some has_many tests

Signed-off-by: Pratik Naik &lt;pratiknaik@gmail.com&gt;</message>
    <tree>1fadcad6671d517747bdd003cd5abb5b4bfadd21</tree>
    <committer>
      <name>Pratik Naik</name>
      <email>pratiknaik@gmail.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>3e07f320c10b53ec21b947d949d0063e724c5fd8</id>
      </parent>
    </parents>
    <author>
      <name>Jan De Poorter</name>
      <email>jan@defv.be</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/ca9641f8a7ca1142d0ea99405a079c8699bd443c</url>
    <id>ca9641f8a7ca1142d0ea99405a079c8699bd443c</id>
    <committed-date>2008-06-11T05:17:40-07:00</committed-date>
    <authored-date>2008-06-11T05:17:40-07:00</authored-date>
    <message>Fix FormOptionsHelper tests.

Signed-off-by: Pratik Naik &lt;pratiknaik@gmail.com&gt;</message>
    <tree>98b241fed24674e18829eb1d2eabcdce9c41a3a8</tree>
    <committer>
      <name>Pratik Naik</name>
      <email>pratiknaik@gmail.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>6fd73442d83ee162af622b722b1e1b7356fa9fcb</id>
      </parent>
    </parents>
    <author>
      <name>Jonathan del Strother</name>
      <email>jon.delStrother@bestbefore.tv</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/3e07f320c10b53ec21b947d949d0063e724c5fd8</url>
    <id>3e07f320c10b53ec21b947d949d0063e724c5fd8</id>
    <committed-date>2008-06-11T05:15:01-07:00</committed-date>
    <authored-date>2008-03-06T03:50:44-08:00</authored-date>
    <message>Improve ActionCaching's format-handling

Make ActionCaching more aware of different mimetype formats.
It will now use request.format to look up the cache type, in addition to the path extension.
When expiring caches, the request format no longer affects which cache is expired.

Signed-off-by: Pratik Naik &lt;pratiknaik@gmail.com&gt;</message>
    <tree>b487ccc99c3ae179aa57671e939d9e42b112ccde</tree>
    <committer>
      <name>Pratik Naik</name>
      <email>pratiknaik@gmail.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>71bf756ea21f338771b53d02951d6654bd295649</id>
      </parent>
    </parents>
    <author>
      <name>Pratik Naik</name>
      <email>pratiknaik@gmail.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/6fd73442d83ee162af622b722b1e1b7356fa9fcb</url>
    <id>6fd73442d83ee162af622b722b1e1b7356fa9fcb</id>
    <committed-date>2008-06-11T04:57:19-07:00</committed-date>
    <authored-date>2008-06-11T04:57:19-07:00</authored-date>
    <message>Update docs to reflect 71bf75</message>
    <tree>636a183e39ce1f3664ba5855749f01897bae7e69</tree>
    <committer>
      <name>Pratik Naik</name>
      <email>pratiknaik@gmail.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>7f140bbddaf70abc61570f6cfdcbfba5771ffc78</id>
      </parent>
    </parents>
    <author>
      <name>Pratik Naik</name>
      <email>pratiknaik@gmail.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/71bf756ea21f338771b53d02951d6654bd295649</url>
    <id>71bf756ea21f338771b53d02951d6654bd295649</id>
    <committed-date>2008-06-11T04:39:56-07:00</committed-date>
    <authored-date>2008-06-11T04:39:56-07:00</authored-date>
    <message>Disable validations for associated belongs_to record by default</message>
    <tree>ffb56f79a6c3230028e2ecc3fcd221f42ca670f0</tree>
    <committer>
      <name>Pratik Naik</name>
      <email>pratiknaik@gmail.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>f728e57d2204a429f5282856ec89d4e047e72957</id>
      </parent>
    </parents>
    <author>
      <name>Jan De Poorter</name>
      <email>jan@defv.be</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/7f140bbddaf70abc61570f6cfdcbfba5771ffc78</url>
    <id>7f140bbddaf70abc61570f6cfdcbfba5771ffc78</id>
    <committed-date>2008-06-11T04:21:57-07:00</committed-date>
    <authored-date>2008-06-11T04:08:35-07:00</authored-date>
    <message>Add :validate option to associations. [#301 state:resolved]

Signed-off-by: Pratik Naik &lt;pratiknaik@gmail.com&gt;</message>
    <tree>6c3622bd7951295b58ec5c5bbfceeb7ffb6def21</tree>
    <committer>
      <name>Pratik Naik</name>
      <email>pratiknaik@gmail.com</email>
    </committer>
  </commit>
  <commit>
    <parents type="array">
      <parent>
        <id>3f594299c85ef111ac479b845fa8c7e37563ff66</id>
      </parent>
    </parents>
    <author>
      <name>Pratik Naik</name>
      <email>pratiknaik@gmail.com</email>
    </author>
    <url>http://github.com/chriseppstein/rails/commit/f728e57d2204a429f5282856ec89d4e047e72957</url>
    <id>f728e57d2204a429f5282856ec89d4e047e72957</id>
    <committed-date>2008-06-11T01:36:41-07:00</committed-date>
    <authored-date>2008-06-11T01:11:08-07:00</authored-date>
    <message>Make sure cache_template_loading works and don't use to_prepare callback</message>
    <tree>aadaafc6e6ee750a8d380753a9f7e53aa71817f8</tree>
    <committer>
      <name>Pratik Naik</name>
      <email>pratiknaik@gmail.com</email>
    </committer>
  </commit>
</commits>
