<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>Classes/test.h</filename>
    </added>
    <added>
      <filename>Classes/test.m</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -3,7 +3,7 @@
 	&lt;data&gt;
 		&lt;int key=&quot;IBDocument.SystemTarget&quot;&gt;512&lt;/int&gt;
 		&lt;string key=&quot;IBDocument.SystemVersion&quot;&gt;9E17&lt;/string&gt;
-		&lt;string key=&quot;IBDocument.InterfaceBuilderVersion&quot;&gt;670&lt;/string&gt;
+		&lt;string key=&quot;IBDocument.InterfaceBuilderVersion&quot;&gt;672&lt;/string&gt;
 		&lt;string key=&quot;IBDocument.AppKitVersion&quot;&gt;949.33&lt;/string&gt;
 		&lt;string key=&quot;IBDocument.HIToolboxVersion&quot;&gt;352.00&lt;/string&gt;
 		&lt;object class=&quot;NSMutableArray&quot; key=&quot;IBDocument.EditedObjectIDs&quot;&gt;
@@ -49,6 +49,7 @@
 						&lt;bool key=&quot;IBUIAdjustsFontSizeToFit&quot;&gt;YES&lt;/bool&gt;
 						&lt;float key=&quot;IBUIMinimumFontSize&quot;&gt;1.700000e+01&lt;/float&gt;
 						&lt;object class=&quot;IBUITextInputTraits&quot; key=&quot;IBUITextInputTraits&quot;&gt;
+							&lt;int key=&quot;IBUIAutocapitalizationType&quot;&gt;1&lt;/int&gt;
 							&lt;int key=&quot;IBUIReturnKeyType&quot;&gt;9&lt;/int&gt;
 							&lt;bool key=&quot;IBUIEnablesReturnKeyAutomatically&quot;&gt;YES&lt;/bool&gt;
 						&lt;/object&gt;
@@ -143,7 +144,7 @@
 					&lt;bool key=&quot;EncodedWithXMLCoder&quot;&gt;YES&lt;/bool&gt;
 					&lt;string&gt;AddDogViewController&lt;/string&gt;
 					&lt;string&gt;UIResponder&lt;/string&gt;
-					&lt;string&gt;{{354, 412}, {320, 480}}&lt;/string&gt;
+					&lt;string&gt;{{354, 276}, {320, 480}}&lt;/string&gt;
 					&lt;string&gt;com.apple.InterfaceBuilder.IBCocoaTouchPlugin&lt;/string&gt;
 					&lt;string&gt;com.apple.InterfaceBuilder.IBCocoaTouchPlugin&lt;/string&gt;
 				&lt;/object&gt;
@@ -189,14 +190,14 @@
 					&lt;string key=&quot;className&quot;&gt;NSObject&lt;/string&gt;
 					&lt;object class=&quot;IBClassDescriptionSource&quot; key=&quot;sourceIdentifier&quot;&gt;
 						&lt;string key=&quot;majorKey&quot;&gt;IBProjectSource&lt;/string&gt;
-						&lt;string key=&quot;minorKey&quot;&gt;Classes/NSObject+PropertySupport.h&lt;/string&gt;
+						&lt;string key=&quot;minorKey&quot;&gt;Classes/lib/NSObject+PropertySupport.h&lt;/string&gt;
 					&lt;/object&gt;
 				&lt;/object&gt;
 				&lt;object class=&quot;IBPartialClassDescription&quot;&gt;
 					&lt;string key=&quot;className&quot;&gt;NSObject&lt;/string&gt;
 					&lt;object class=&quot;IBClassDescriptionSource&quot; key=&quot;sourceIdentifier&quot;&gt;
 						&lt;string key=&quot;majorKey&quot;&gt;IBProjectSource&lt;/string&gt;
-						&lt;string key=&quot;minorKey&quot;&gt;Classes/NSObject+XMLSerializableSupport.h&lt;/string&gt;
+						&lt;string key=&quot;minorKey&quot;&gt;Classes/lib/NSObject+XMLSerializableSupport.h&lt;/string&gt;
 					&lt;/object&gt;
 				&lt;/object&gt;
 			&lt;/object&gt;</diff>
      <filename>AddDogView.xib</filename>
    </modified>
    <modified>
      <diff>@@ -12,8 +12,13 @@
 	
 	NSString *name;
   NSString *dogId;
+  NSDate   * updatedAt;
+  NSDate   * createdAt;
+  
 }
 
+@property (nonatomic , retain) NSDate * createdAt;
+@property (nonatomic , retain) NSDate * updatedAt;
 @property (nonatomic , retain) NSString  *dogId;
 @property (nonatomic , retain) NSString *name;
 @end</diff>
      <filename>Classes/Dog.h</filename>
    </modified>
    <modified>
      <diff>@@ -11,7 +11,7 @@
 
 @implementation Dog
 
-@synthesize name, dogId;
+@synthesize name, dogId , createdAt , updatedAt;
 
 static NSString *site = @&quot;http://localhost:3000/&quot;;
 </diff>
      <filename>Classes/Dog.m</filename>
    </modified>
    <modified>
      <diff>@@ -13,15 +13,17 @@
 
 @interface DogViewController : UIViewController &lt;UITableViewDelegate, UITableViewDataSource&gt; {
 
-	NSArray *dogs;
+	NSMutableArray *dogs;
 	AddDogViewController *addController;
 	IBOutlet UITableView *tableView;
+  IBOutlet UIBarButtonItem * addButton;
 	
 }
 
-@property(nonatomic,retain) NSArray *dogs;
-@property(nonatomic,retain) AddDogViewController *addController;
-@property(nonatomic,retain) UITableView *tableView;
+@property(nonatomic , retain) NSArray *dogs;
+@property(nonatomic , retain) AddDogViewController *addController;
+@property(nonatomic , retain) UITableView *tableView;
+@property(nonatomic , retain) UIBarButtonItem * addButton;
 
 - (IBAction) addDogButtonClicked:(id) sender;
 </diff>
      <filename>Classes/DogViewController.h</filename>
    </modified>
    <modified>
      <diff>@@ -20,7 +20,7 @@
 
 @implementation DogViewController
 
-@synthesize dogs, addController, tableView;
+@synthesize dogs, addController, tableView , addButton;
 
 - (IBAction) addDogButtonClicked:(id) sender {
 	[self.navigationController pushViewController:addController animated:YES];
@@ -35,6 +35,7 @@
 
 - (void)viewDidLoad {
 	self.addController = [[[AddDogViewController alloc] initWithNibName:@&quot;AddDogView&quot; bundle:nil] autorelease];
+  self.navigationItem.leftBarButtonItem = self.editButtonItem;
 }
 
 
@@ -44,6 +45,24 @@
 
 #pragma mark UITableViewDataSource methods
 
+- (void)setEditing:(BOOL)editing animated:(BOOL)animated {
+  
+  [super setEditing:editing animated:animated];
+  
+  [tableView setEditing:editing animated:YES];
+  
+  if (editing) {
+   
+    addButton.enabled = NO;
+    
+  } else {
+    
+    addButton.enabled = YES;
+    
+  }
+  
+}
+
 - (NSInteger)tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section {
 	return [dogs count];
 }
@@ -53,6 +72,7 @@
 	UITableViewCell *cell = [aTableView dequeueReusableCellWithIdentifier:cellId];
 	if (cell == nil) {
 		cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero] autorelease];
+    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
 	}
 	cell.text = ((Dog *)[dogs objectAtIndex:indexPath.row]).name;
 	return cell;
@@ -67,16 +87,27 @@
   
 }
 
+- (void)tableView:(UITableView *)aTableView  commitEditingStyle:(UITableViewCellEditingStyle)editingStyle 
+                                            forRowAtIndexPath:(NSIndexPath *)indexPath { 
+  [tableView beginUpdates]; 
+  if (editingStyle == UITableViewCellEditingStyleDelete) { 
 
-
-
+    [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES]; 
+    [(Dog *)[dogs objectAtIndex:indexPath.row] destroy];
+    [dogs removeObjectAtIndex:indexPath.row];
+  } 
+  [tableView endUpdates];   
+}
 
 #pragma mark cleanup
 - (void)dealloc {
+  
+  [addButton release];
 	[tableView release];
 	[addController release];
 	[dogs release];
 	[super dealloc];
+
 }
 
 </diff>
      <filename>Classes/DogViewController.m</filename>
    </modified>
    <modified>
      <diff>@@ -52,6 +52,8 @@
   [dog update];
   aViewController.dog = dog;
   [self.navigationController popViewControllerAnimated:YES];
+  aViewController.title = dog.name;
+  [ aViewController.tableView reloadData];
   return YES; 
 } 
 </diff>
      <filename>Classes/EditDogViewController.m</filename>
    </modified>
    <modified>
      <diff>@@ -21,7 +21,6 @@
 
 @property (nonatomic , retain) UIBarButtonItem * editDogButton;
 @property (nonatomic , retain) Dog * dog;
-@property (nonatomic , retain) UITableView * tableView;
 
 
 </diff>
      <filename>Classes/ViewDogController.h</filename>
    </modified>
    <modified>
      <diff>@@ -16,7 +16,7 @@
 
 @implementation ViewDogController
 
-@synthesize dog , tableView , editDogButton;
+@synthesize dog , editDogButton;
 
 - (id)initWithStyle:(UITableViewStyle)style {
     // Override initWithStyle: if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
@@ -38,7 +38,6 @@
   [super viewDidLoad];
 }
 
-
 -(void) editDogButtonPressed {
  
   EditDogViewController * aEditDogViewController = [[EditDogViewController alloc] 
@@ -52,7 +51,7 @@
 
 
 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
-    return 1;
+    return 4;
 }
 
 
@@ -74,8 +73,22 @@
     [dateFormatter setDateStyle:NSDateFormatterMediumStyle];
     [dateFormatter setTimeStyle:NSDateFormatterNoStyle];
   
-  
-    cell.text = [dateFormatter stringFromDate:dog.createdAt];
+    switch (indexPath.section) {
+      case 0:
+        cell.text = dog.name;
+        break;
+      case 1:
+        cell.text = dog.dogId;
+        break;
+      case 2:
+        cell.text = [dateFormatter stringFromDate:dog.createdAt];
+        break;
+      case 3:
+        cell.text = [dateFormatter stringFromDate:dog.updatedAt];
+        break;        
+      default:
+        break;
+    }
     // Configure the cell
     return cell;
 }
@@ -84,7 +97,23 @@
   
   // The header for the section is the region name -- get this from the dictionary at the section index
   
-  return @&quot;Name&quot;;
+  switch (section) {
+    case 0:
+      return @&quot;Dog's Name&quot;;
+      break;
+    case 1:
+      return @&quot;Model Id&quot;;
+      break;
+    case 2:
+      return @&quot;Created At&quot;;
+      break;
+    case 3:
+      return @&quot;Updated At&quot;;
+      break;        
+    default:
+      return @&quot;&quot;;
+      break;
+  }
   
 }
 
@@ -92,7 +121,6 @@
 - (void)dealloc {
   [dog release];
   [editDogButton release];
-  [tableView release];
   [super dealloc];
 }
 </diff>
      <filename>Classes/ViewDogController.m</filename>
    </modified>
    <modified>
      <diff>@@ -117,7 +117,7 @@ static NSString *_activeResourcePassword = nil;
 }
 
 - (BOOL)createAtPath:(NSString *)path {
-	Response *res = [Connection post:[self toXMLElement] to:path withUser:[[self class]  getUser] andPassword:[[self class]  getPassword]];
+	Response *res = [Connection post:[self toXMLElementExcluding:[NSArray arrayWithObject:[self classIdName]]] to:path withUser:[[self class]  getUser] andPassword:[[self class]  getPassword]];
 	if ([res isSuccess]) {
 		NSDictionary *newProperties = [[[self class] fromXMLData:res.body] properties];
 		[self setProperties:newProperties];
@@ -170,8 +170,6 @@ static NSString *_activeResourcePassword = nil;
 
 - (void) dealloc
 {
-  [createdAt release];
-	[updatedAt release];
 	[super dealloc];
 }
 </diff>
      <filename>Classes/lib/ActiveResource+Base.m</filename>
    </modified>
    <modified>
      <diff>@@ -6,14 +6,6 @@
 //  Copyright 2008 yFactorial, LLC. All rights reserved.
 //
 
-@interface ActiveResource : NSObject {
-  
-  NSDate * updatedAt;
-  NSDate * createdAt;
-  
-}
-
-@property (nonatomic , retain) NSDate * createdAt;
-@property (nonatomic , retain) NSDate * updatedAt;
+@interface ActiveResource : NSObject 
 
 @end
\ No newline at end of file</diff>
      <filename>Classes/lib/ActiveResource.h</filename>
    </modified>
    <modified>
      <diff>@@ -10,6 +10,4 @@
 
 @implementation ActiveResource
 
-@synthesize updatedAt , createdAt;
-
 @end
\ No newline at end of file</diff>
      <filename>Classes/lib/ActiveResource.m</filename>
    </modified>
    <modified>
      <diff>@@ -140,6 +140,14 @@
 					&lt;/object&gt;
 					&lt;int key=&quot;connectionID&quot;&gt;21&lt;/int&gt;
 				&lt;/object&gt;
+				&lt;object class=&quot;IBConnectionRecord&quot;&gt;
+					&lt;object class=&quot;IBCocoaTouchOutletConnection&quot; key=&quot;connection&quot;&gt;
+						&lt;string key=&quot;label&quot;&gt;addButton&lt;/string&gt;
+						&lt;reference key=&quot;source&quot; ref=&quot;116467219&quot;/&gt;
+						&lt;reference key=&quot;destination&quot; ref=&quot;154151195&quot;/&gt;
+					&lt;/object&gt;
+					&lt;int key=&quot;connectionID&quot;&gt;22&lt;/int&gt;
+				&lt;/object&gt;
 			&lt;/object&gt;
 			&lt;object class=&quot;IBMutableOrderedSet&quot; key=&quot;objectRecords&quot;&gt;
 				&lt;object class=&quot;NSArray&quot; key=&quot;orderedObjects&quot;&gt;
@@ -246,7 +254,7 @@
 					&lt;bool key=&quot;EncodedWithXMLCoder&quot;&gt;YES&lt;/bool&gt;
 					&lt;string&gt;UIApplication&lt;/string&gt;
 					&lt;string&gt;UIResponder&lt;/string&gt;
-					&lt;string&gt;{{403, 207}, {320, 480}}&lt;/string&gt;
+					&lt;string&gt;{{487, 124}, {320, 480}}&lt;/string&gt;
 					&lt;string&gt;com.apple.InterfaceBuilder.IBCocoaTouchPlugin&lt;/string&gt;
 					&lt;string&gt;DogViewController&lt;/string&gt;
 					&lt;string&gt;com.apple.InterfaceBuilder.IBCocoaTouchPlugin&lt;/string&gt;
@@ -289,7 +297,7 @@
 				&lt;/object&gt;
 			&lt;/object&gt;
 			&lt;nil key=&quot;sourceID&quot;/&gt;
-			&lt;int key=&quot;maxID&quot;&gt;21&lt;/int&gt;
+			&lt;int key=&quot;maxID&quot;&gt;22&lt;/int&gt;
 		&lt;/object&gt;
 		&lt;object class=&quot;IBClassDescriber&quot; key=&quot;IBDocument.Classes&quot;&gt;
 			&lt;object class=&quot;NSMutableArray&quot; key=&quot;referencedPartialClassDescriptions&quot;&gt;
@@ -302,8 +310,17 @@
 						&lt;string key=&quot;NS.object.0&quot;&gt;id&lt;/string&gt;
 					&lt;/object&gt;
 					&lt;object class=&quot;NSMutableDictionary&quot; key=&quot;outlets&quot;&gt;
-						&lt;string key=&quot;NS.key.0&quot;&gt;tableView&lt;/string&gt;
-						&lt;string key=&quot;NS.object.0&quot;&gt;UITableView&lt;/string&gt;
+						&lt;bool key=&quot;EncodedWithXMLCoder&quot;&gt;YES&lt;/bool&gt;
+						&lt;object class=&quot;NSMutableArray&quot; key=&quot;dict.sortedKeys&quot;&gt;
+							&lt;bool key=&quot;EncodedWithXMLCoder&quot;&gt;YES&lt;/bool&gt;
+							&lt;string&gt;addButton&lt;/string&gt;
+							&lt;string&gt;tableView&lt;/string&gt;
+						&lt;/object&gt;
+						&lt;object class=&quot;NSMutableArray&quot; key=&quot;dict.values&quot;&gt;
+							&lt;bool key=&quot;EncodedWithXMLCoder&quot;&gt;YES&lt;/bool&gt;
+							&lt;string&gt;UIBarButtonItem&lt;/string&gt;
+							&lt;string&gt;UITableView&lt;/string&gt;
+						&lt;/object&gt;
 					&lt;/object&gt;
 					&lt;object class=&quot;IBClassDescriptionSource&quot; key=&quot;sourceIdentifier&quot;&gt;
 						&lt;string key=&quot;majorKey&quot;&gt;IBProjectSource&lt;/string&gt;</diff>
      <filename>MainWindow.xib</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>sample_rails_app/db/development.sqlite3</filename>
    </modified>
    <modified>
      <diff>@@ -1585,3 +1585,704 @@ SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
   Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
   *[4;35;1mDog Load (0.000632)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
 Completed in 0.01039 (96 reqs/sec) | Rendering: 0.00405 (39%) | DB: 0.00063 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 10:32:31) [GET]
+  Session ID: cce348fd304a54172d9d6edf655e8dd8
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000977)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.13786 (7 reqs/sec) | Rendering: 0.12764 (92%) | DB: 0.00098 (0%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 10:32:38) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000622)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01027 (97 reqs/sec) | Rendering: 0.00409 (39%) | DB: 0.00062 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 10:40:43) [GET]
+  Session ID: bb371c8c9303e6e21c1b0750f4aaf0d3
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000772)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01115 (89 reqs/sec) | Rendering: 0.00448 (40%) | DB: 0.00077 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 10:41:20) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000649)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01081 (92 reqs/sec) | Rendering: 0.00432 (39%) | DB: 0.00065 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 10:41:24) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000659)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01099 (91 reqs/sec) | Rendering: 0.00432 (39%) | DB: 0.00066 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 10:41:27) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000674)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01082 (92 reqs/sec) | Rendering: 0.00429 (39%) | DB: 0.00067 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+  *[4;36;1mDog Load (0.000722)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 10:43:56) [GET]
+  Session ID: 6d66244ab35e4769ffaaf7d7b0867d67
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000712)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.12811 (7 reqs/sec) | Rendering: 0.12019 (93%) | DB: 0.00071 (0%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 10:44:19) [GET]
+  Session ID: 425f36cd29da7fb452c6226154722cc7
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000686)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.02400 (41 reqs/sec) | Rendering: 0.01727 (71%) | DB: 0.00069 (2%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 10:44:22) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000641)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01032 (96 reqs/sec) | Rendering: 0.00399 (38%) | DB: 0.00064 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#update (for 127.0.0.1 at 2008-10-14 10:45:00) [PUT]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Judge&quot;, &quot;updated_at&quot;=&gt;Tue Oct 14 00:03:58 UTC 2008, &quot;created_at&quot;=&gt;Mon Oct 13 14:22:09 UTC 2008}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000214)*[0m   *[0mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+  *[4;36;1mDog Update (0.000488)*[0m   *[0;1mUPDATE &quot;dogs&quot; SET &quot;name&quot; = 'Judge', &quot;updated_at&quot; = '2008-10-14 14:45:00' WHERE &quot;id&quot; = 7*[0m
+Completed in 0.01242 (80 reqs/sec) | Rendering: 0.00055 (4%) | DB: 0.00070 (5%) | 200 OK [http://localhost/dogs/7.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 10:45:08) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IHVwZGF0ZWQu
+BjoKQHVzZWR7BjsGRg==--48c096ada76bfa6d736099b289c1ecc0694753b5
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000702)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01123 (89 reqs/sec) | Rendering: 0.00443 (39%) | DB: 0.00070 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 10:50:06) [GET]
+  Session ID: 21f374fde768f1212a08654cd478ef5a
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000654)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01089 (91 reqs/sec) | Rendering: 0.00415 (38%) | DB: 0.00065 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#update (for 127.0.0.1 at 2008-10-14 10:50:15) [PUT]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Goblin&quot;, &quot;updated_at&quot;=&gt;Tue Oct 14 14:45:00 UTC 2008, &quot;created_at&quot;=&gt;Mon Oct 13 14:22:09 UTC 2008}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000223)*[0m   *[0mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+  *[4;36;1mDog Update (0.000573)*[0m   *[0;1mUPDATE &quot;dogs&quot; SET &quot;name&quot; = 'Goblin', &quot;updated_at&quot; = '2008-10-14 14:50:15' WHERE &quot;id&quot; = 7*[0m
+Completed in 0.01293 (77 reqs/sec) | Rendering: 0.00058 (4%) | DB: 0.00080 (6%) | 200 OK [http://localhost/dogs/7.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 10:50:59) [GET]
+  Session ID: 16da703026fda03bc360b4bbe05108e4
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000713)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01105 (90 reqs/sec) | Rendering: 0.00428 (38%) | DB: 0.00071 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#update (for 127.0.0.1 at 2008-10-14 10:51:07) [PUT]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Judge&quot;, &quot;updated_at&quot;=&gt;Tue Oct 14 14:50:15 UTC 2008, &quot;created_at&quot;=&gt;Mon Oct 13 14:22:09 UTC 2008}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000217)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+  *[4;35;1mDog Update (0.000361)*[0m   *[0mUPDATE &quot;dogs&quot; SET &quot;name&quot; = 'Judge', &quot;updated_at&quot; = '2008-10-14 14:51:07' WHERE &quot;id&quot; = 7*[0m
+Completed in 0.12802 (7 reqs/sec) | Rendering: 0.00043 (0%) | DB: 0.00058 (0%) | 200 OK [http://localhost/dogs/7.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 10:52:08) [GET]
+  Session ID: 26f5e0b4a8b2e8c1c63c1665b34a2ed4
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000708)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01175 (85 reqs/sec) | Rendering: 0.00461 (39%) | DB: 0.00071 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#update (for 127.0.0.1 at 2008-10-14 10:52:14) [PUT]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Goblin&quot;, &quot;updated_at&quot;=&gt;Tue Oct 14 14:51:07 UTC 2008, &quot;created_at&quot;=&gt;Mon Oct 13 14:22:09 UTC 2008}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000226)*[0m   *[0mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+  *[4;36;1mDog Update (0.000373)*[0m   *[0;1mUPDATE &quot;dogs&quot; SET &quot;name&quot; = 'Goblin', &quot;updated_at&quot; = '2008-10-14 14:52:14' WHERE &quot;id&quot; = 7*[0m
+Completed in 0.01251 (79 reqs/sec) | Rendering: 0.00047 (3%) | DB: 0.00060 (4%) | 200 OK [http://localhost/dogs/7.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 10:57:19) [GET]
+  Session ID: ff70127a2fa8d2562ec8794cd17e790d
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000686)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01070 (93 reqs/sec) | Rendering: 0.00396 (36%) | DB: 0.00069 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#update (for 127.0.0.1 at 2008-10-14 10:57:38) [PUT]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Judge&quot;, &quot;updated_at&quot;=&gt;Tue Oct 14 14:52:14 UTC 2008, &quot;created_at&quot;=&gt;Mon Oct 13 14:22:09 UTC 2008}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000214)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+  *[4;35;1mDog Update (0.000473)*[0m   *[0mUPDATE &quot;dogs&quot; SET &quot;name&quot; = 'Judge', &quot;updated_at&quot; = '2008-10-14 14:57:38' WHERE &quot;id&quot; = 7*[0m
+Completed in 0.01242 (80 reqs/sec) | Rendering: 0.00054 (4%) | DB: 0.00069 (5%) | 200 OK [http://localhost/dogs/7.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 10:58:17) [GET]
+  Session ID: e77a856b47f79a713537495fb67d4851
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000692)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01112 (89 reqs/sec) | Rendering: 0.00436 (39%) | DB: 0.00069 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#update (for 127.0.0.1 at 2008-10-14 10:58:26) [PUT]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Goblin&quot;, &quot;updated_at&quot;=&gt;Tue Oct 14 14:57:38 UTC 2008, &quot;created_at&quot;=&gt;Mon Oct 13 14:22:09 UTC 2008}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000210)*[0m   *[0mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+  *[4;36;1mDog Update (0.000340)*[0m   *[0;1mUPDATE &quot;dogs&quot; SET &quot;name&quot; = 'Goblin', &quot;updated_at&quot; = '2008-10-14 14:58:26' WHERE &quot;id&quot; = 7*[0m
+Completed in 0.01339 (74 reqs/sec) | Rendering: 0.00054 (4%) | DB: 0.00055 (4%) | 200 OK [http://localhost/dogs/7.xml?(null)]
+
+
+Processing DogsController#update (for 127.0.0.1 at 2008-10-14 10:58:37) [PUT]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IHVwZGF0ZWQu
+BjoKQHVzZWR7BjsGRg==--48c096ada76bfa6d736099b289c1ecc0694753b5
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Goblin&quot;, &quot;updated_at&quot;=&gt;Tue Oct 14 14:57:38 UTC 2008, &quot;created_at&quot;=&gt;Mon Oct 13 14:22:09 UTC 2008}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000212)*[0m   *[0mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+  *[4;36;1mDog Update (0.000355)*[0m   *[0;1mUPDATE &quot;dogs&quot; SET &quot;updated_at&quot; = '2008-10-14 14:58:37' WHERE &quot;id&quot; = 7*[0m
+Completed in 0.01268 (78 reqs/sec) | Rendering: 0.00043 (3%) | DB: 0.00057 (4%) | 200 OK [http://localhost/dogs/7.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:07:41) [GET]
+  Session ID: ca345ccd94264dc3efea3658e33b86fc
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000669)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01065 (93 reqs/sec) | Rendering: 0.00421 (39%) | DB: 0.00067 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#update (for 127.0.0.1 at 2008-10-14 11:07:52) [PUT]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Judge&quot;, &quot;updated_at&quot;=&gt;Tue Oct 14 14:58:37 UTC 2008, &quot;created_at&quot;=&gt;Mon Oct 13 14:22:09 UTC 2008}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000219)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+  *[4;35;1mDog Update (0.066284)*[0m   *[0mUPDATE &quot;dogs&quot; SET &quot;name&quot; = 'Judge', &quot;updated_at&quot; = '2008-10-14 15:07:52' WHERE &quot;id&quot; = 7*[0m
+Completed in 0.07888 (12 reqs/sec) | Rendering: 0.00052 (0%) | DB: 0.06650 (84%) | 200 OK [http://localhost/dogs/7.xml?(null)]
+
+
+Processing DogsController#update (for 127.0.0.1 at 2008-10-14 11:08:03) [PUT]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IHVwZGF0ZWQu
+BjoKQHVzZWR7BjsGRg==--48c096ada76bfa6d736099b289c1ecc0694753b5
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Goblin&quot;, &quot;updated_at&quot;=&gt;Tue Oct 14 14:58:37 UTC 2008, &quot;created_at&quot;=&gt;Mon Oct 13 14:22:09 UTC 2008}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000226)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+  *[4;35;1mDog Update (0.000375)*[0m   *[0mUPDATE &quot;dogs&quot; SET &quot;name&quot; = 'Goblin', &quot;updated_at&quot; = '2008-10-14 15:08:03' WHERE &quot;id&quot; = 7*[0m
+Completed in 0.01401 (71 reqs/sec) | Rendering: 0.00057 (4%) | DB: 0.00060 (4%) | 200 OK [http://localhost/dogs/7.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:08:47) [GET]
+  Session ID: 3857045bd74631df247473523014be7d
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000688)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01124 (88 reqs/sec) | Rendering: 0.00427 (37%) | DB: 0.00069 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#update (for 127.0.0.1 at 2008-10-14 11:09:03) [PUT]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Judge&quot;, &quot;updated_at&quot;=&gt;Tue Oct 14 15:08:03 UTC 2008, &quot;created_at&quot;=&gt;Mon Oct 13 14:22:09 UTC 2008}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000218)*[0m   *[0mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+  *[4;36;1mDog Update (0.000346)*[0m   *[0;1mUPDATE &quot;dogs&quot; SET &quot;name&quot; = 'Judge', &quot;updated_at&quot; = '2008-10-14 15:09:03' WHERE &quot;id&quot; = 7*[0m
+Completed in 0.01280 (78 reqs/sec) | Rendering: 0.00064 (4%) | DB: 0.00056 (4%) | 200 OK [http://localhost/dogs/7.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:09:08) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IHVwZGF0ZWQu
+BjoKQHVzZWR7BjsGRg==--48c096ada76bfa6d736099b289c1ecc0694753b5
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000653)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01006 (99 reqs/sec) | Rendering: 0.00393 (39%) | DB: 0.00065 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#create (for 127.0.0.1 at 2008-10-14 11:09:32) [POST]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IHVwZGF0ZWQu
+BjoKQHVzZWR7BjsGVA==--717819e3a1f5572f8b654a3365a8924bf061ac2e
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;create&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Goblin&quot;, &quot;updated_at&quot;=&gt;nil, &quot;dog_id&quot;=&gt;nil, &quot;created_at&quot;=&gt;nil}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+
+
+NoMethodError (undefined method `dog_id=' for #&lt;Dog id: nil, name: &quot;Goblin&quot;, created_at: nil, updated_at: nil&gt;):
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/attribute_methods.rb:251:in `method_missing'
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2361:in `send'
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2361:in `attributes='
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2360:in `each'
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2360:in `attributes='
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2130:in `initialize'
+    /app/controllers/dogs_controller.rb:43:in `new'
+    /app/controllers/dogs_controller.rb:43:in `create'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /Library/Ruby/Gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /Library/Ruby/Site/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /Library/Ruby/Site/1.8/rubygems/custom_require.rb:27:in `require'
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /Library/Ruby/Gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /Library/Ruby/Site/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /Library/Ruby/Site/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:09:32) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000661)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01120 (89 reqs/sec) | Rendering: 0.00424 (37%) | DB: 0.00066 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:12:42) [GET]
+  Session ID: 96e012c1fb4107c0ad61d0dae2293187
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000678)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01103 (90 reqs/sec) | Rendering: 0.00416 (37%) | DB: 0.00068 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#create (for 127.0.0.1 at 2008-10-14 11:12:48) [POST]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;create&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Goblin&quot;, &quot;updated_at&quot;=&gt;nil, &quot;created_at&quot;=&gt;nil}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Create (0.012759)*[0m   *[0;1mINSERT INTO &quot;dogs&quot; (&quot;name&quot;, &quot;updated_at&quot;, &quot;created_at&quot;) VALUES('Goblin', '2008-10-14 15:12:48', '2008-10-14 15:12:48')*[0m
+Completed in 0.02688 (37 reqs/sec) | Rendering: 0.00198 (7%) | DB: 0.01276 (47%) | 201 Created [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:12:48) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IGNyZWF0ZWQu
+BjoKQHVzZWR7BjsGRg==--0bb4c2dd2ab22453f8f60671708a6a4f9574bb31
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000696)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01073 (93 reqs/sec) | Rendering: 0.00439 (40%) | DB: 0.00070 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:12:55) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IGNyZWF0ZWQu
+BjoKQHVzZWR7BjsGVA==--dadc635f38cfb96bf7f9802f5acb0c496cebd798
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000740)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01075 (93 reqs/sec) | Rendering: 0.00451 (41%) | DB: 0.00074 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:14:12) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000671)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01100 (90 reqs/sec) | Rendering: 0.00462 (41%) | DB: 0.00067 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:22:16) [GET]
+  Session ID: 01a5799d9e9004c0f657251c1d8ebffe
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.097611)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 9.43093 (0 reqs/sec) | Rendering: 8.56808 (90%) | DB: 0.09761 (1%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:23:19) [GET]
+  Session ID: 16c893153a51935336b5247234345fc7
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000706)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01261 (79 reqs/sec) | Rendering: 0.00556 (44%) | DB: 0.00071 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:24:24) [GET]
+  Session ID: 6c0d8232167775493c13de0ffe9de5ba
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000707)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.02213 (45 reqs/sec) | Rendering: 0.01529 (69%) | DB: 0.00071 (3%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:24:54) [GET]
+  Session ID: cd7f9820b06e93ddc9de2f1516d5890d
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000675)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01083 (92 reqs/sec) | Rendering: 0.00450 (41%) | DB: 0.00068 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:26:03) [GET]
+  Session ID: 660a04c0c112591644b7aef5def2f685
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.032581)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.04394 (22 reqs/sec) | Rendering: 0.00486 (11%) | DB: 0.03258 (74%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:26:08) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000671)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01088 (91 reqs/sec) | Rendering: 0.00448 (41%) | DB: 0.00067 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:28:12) [GET]
+  Session ID: 80a80070cd93c1fc798aec6521cf948e
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000710)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01192 (83 reqs/sec) | Rendering: 0.00486 (40%) | DB: 0.00071 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:28:16) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000672)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01073 (93 reqs/sec) | Rendering: 0.00451 (42%) | DB: 0.00067 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:52:47) [GET]
+  Session ID: cf6e264a11949758012532b43ee2ae6a
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000690)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.16211 (6 reqs/sec) | Rendering: 0.00462 (2%) | DB: 0.00069 (0%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:53:09) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000669)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01127 (88 reqs/sec) | Rendering: 0.00480 (42%) | DB: 0.00067 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:56:19) [GET]
+  Session ID: 8b47f995ae62dc85c2e0a0fdd75d871d
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000740)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01178 (84 reqs/sec) | Rendering: 0.00475 (40%) | DB: 0.00074 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:57:28) [GET]
+  Session ID: 0b8987222dbded7843c5d722048d26ff
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000740)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01189 (84 reqs/sec) | Rendering: 0.00482 (40%) | DB: 0.00074 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#destroy (for 127.0.0.1 at 2008-10-14 11:57:33) [DELETE]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000212)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+  *[4;35;1mDog Destroy (0.000296)*[0m   *[0m DELETE FROM &quot;dogs&quot;
+ WHERE &quot;id&quot; = 7
+*[0m
+Completed in 0.01090 (91 reqs/sec) | Rendering: 0.00052 (4%) | DB: 0.00051 (4%) | 200 OK [http://localhost/dogs/7.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:57:40) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000641)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01030 (97 reqs/sec) | Rendering: 0.00408 (39%) | DB: 0.00064 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:58:42) [GET]
+  Session ID: c5e0867b5fe49c459c97d2eeabd5375f
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000618)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01011 (98 reqs/sec) | Rendering: 0.00394 (38%) | DB: 0.00062 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#destroy (for 127.0.0.1 at 2008-10-14 11:58:48) [DELETE]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000269)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 8) *[0m
+  *[4;35;1mDog Destroy (0.194991)*[0m   *[0m DELETE FROM &quot;dogs&quot;
+ WHERE &quot;id&quot; = 8
+*[0m
+Completed in 0.20700 (4 reqs/sec) | Rendering: 0.00051 (0%) | DB: 0.19526 (94%) | 200 OK [http://localhost/dogs/8.xml?(null)]
+
+
+Processing DogsController#destroy (for 127.0.0.1 at 2008-10-14 11:58:53) [DELETE]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;10&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000213)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 10) *[0m
+  *[4;35;1mDog Destroy (0.000282)*[0m   *[0m DELETE FROM &quot;dogs&quot;
+ WHERE &quot;id&quot; = 10
+*[0m
+Completed in 0.01098 (91 reqs/sec) | Rendering: 0.00049 (4%) | DB: 0.00049 (4%) | 200 OK [http://localhost/dogs/10.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:59:01) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000550)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.00926 (107 reqs/sec) | Rendering: 0.00297 (32%) | DB: 0.00055 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 11:59:38) [GET]
+  Session ID: dad9e92afe54cb1836be4309cb045436
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000555)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.00993 (100 reqs/sec) | Rendering: 0.00322 (32%) | DB: 0.00056 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#destroy (for 127.0.0.1 at 2008-10-14 11:59:44) [DELETE]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;9&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000216)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 9) *[0m
+  *[4;35;1mDog Destroy (0.000291)*[0m   *[0m DELETE FROM &quot;dogs&quot;
+ WHERE &quot;id&quot; = 9
+*[0m
+Completed in 0.01028 (97 reqs/sec) | Rendering: 0.00041 (3%) | DB: 0.00051 (4%) | 200 OK [http://localhost/dogs/9.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 12:03:47) [GET]
+  Session ID: fef099b2424921785c10935ca707c7eb
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000526)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.00903 (110 reqs/sec) | Rendering: 0.00263 (29%) | DB: 0.00053 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#destroy (for 127.0.0.1 at 2008-10-14 12:03:53) [DELETE]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;11&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000217)*[0m   *[0mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 11) *[0m
+  *[4;36;1mDog Destroy (0.000303)*[0m   *[0;1m DELETE FROM &quot;dogs&quot;
+ WHERE &quot;id&quot; = 11
+*[0m
+Completed in 0.01031 (97 reqs/sec) | Rendering: 0.00045 (4%) | DB: 0.00052 (5%) | 200 OK [http://localhost/dogs/11.xml?(null)]
+
+
+Processing DogsController#create (for 127.0.0.1 at 2008-10-14 12:04:04) [POST]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;create&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Poppin&quot;, &quot;updated_at&quot;=&gt;nil, &quot;created_at&quot;=&gt;nil}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Create (0.017229)*[0m   *[0mINSERT INTO &quot;dogs&quot; (&quot;name&quot;, &quot;updated_at&quot;, &quot;created_at&quot;) VALUES('Poppin', '2008-10-14 16:04:04', '2008-10-14 16:04:04')*[0m
+Completed in 0.03132 (31 reqs/sec) | Rendering: 0.00176 (5%) | DB: 0.01723 (55%) | 201 Created [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 12:04:04) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IGNyZWF0ZWQu
+BjoKQHVzZWR7BjsGRg==--0bb4c2dd2ab22453f8f60671708a6a4f9574bb31
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000504)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.00840 (119 reqs/sec) | Rendering: 0.00243 (28%) | DB: 0.00050 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#create (for 127.0.0.1 at 2008-10-14 12:04:09) [POST]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IGNyZWF0ZWQu
+BjoKQHVzZWR7BjsGVA==--dadc635f38cfb96bf7f9802f5acb0c496cebd798
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;create&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Reba&quot;, &quot;updated_at&quot;=&gt;nil, &quot;created_at&quot;=&gt;nil}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Create (0.000371)*[0m   *[0mINSERT INTO &quot;dogs&quot; (&quot;name&quot;, &quot;updated_at&quot;, &quot;created_at&quot;) VALUES('Reba', '2008-10-14 16:04:09', '2008-10-14 16:04:09')*[0m
+Completed in 0.01328 (75 reqs/sec) | Rendering: 0.00176 (13%) | DB: 0.00037 (2%) | 201 Created [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 12:04:09) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IGNyZWF0ZWQu
+BjoKQHVzZWR7BjsGRg==--0bb4c2dd2ab22453f8f60671708a6a4f9574bb31
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000554)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.00942 (106 reqs/sec) | Rendering: 0.00307 (32%) | DB: 0.00055 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#create (for 127.0.0.1 at 2008-10-14 12:04:12) [POST]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IGNyZWF0ZWQu
+BjoKQHVzZWR7BjsGVA==--dadc635f38cfb96bf7f9802f5acb0c496cebd798
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;create&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Judge&quot;, &quot;updated_at&quot;=&gt;nil, &quot;created_at&quot;=&gt;nil}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Create (0.000356)*[0m   *[0mINSERT INTO &quot;dogs&quot; (&quot;name&quot;, &quot;updated_at&quot;, &quot;created_at&quot;) VALUES('Judge', '2008-10-14 16:04:12', '2008-10-14 16:04:12')*[0m
+Completed in 0.01304 (76 reqs/sec) | Rendering: 0.00174 (13%) | DB: 0.00036 (2%) | 201 Created [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 12:04:12) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IGNyZWF0ZWQu
+BjoKQHVzZWR7BjsGRg==--0bb4c2dd2ab22453f8f60671708a6a4f9574bb31
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000597)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.00988 (101 reqs/sec) | Rendering: 0.00359 (36%) | DB: 0.00060 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#create (for 127.0.0.1 at 2008-10-14 12:04:16) [POST]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IGNyZWF0ZWQu
+BjoKQHVzZWR7BjsGVA==--dadc635f38cfb96bf7f9802f5acb0c496cebd798
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;create&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Goblin&quot;, &quot;updated_at&quot;=&gt;nil, &quot;created_at&quot;=&gt;nil}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Create (0.000359)*[0m   *[0mINSERT INTO &quot;dogs&quot; (&quot;name&quot;, &quot;updated_at&quot;, &quot;created_at&quot;) VALUES('Goblin', '2008-10-14 16:04:16', '2008-10-14 16:04:16')*[0m
+Completed in 0.01328 (75 reqs/sec) | Rendering: 0.00169 (12%) | DB: 0.00036 (2%) | 201 Created [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 12:04:16) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IGNyZWF0ZWQu
+BjoKQHVzZWR7BjsGRg==--0bb4c2dd2ab22453f8f60671708a6a4f9574bb31
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000642)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01015 (98 reqs/sec) | Rendering: 0.00395 (38%) | DB: 0.00064 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#create (for 127.0.0.1 at 2008-10-14 12:04:18) [POST]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IGNyZWF0ZWQu
+BjoKQHVzZWR7BjsGVA==--dadc635f38cfb96bf7f9802f5acb0c496cebd798
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;create&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Hunky&quot;, &quot;updated_at&quot;=&gt;nil, &quot;created_at&quot;=&gt;nil}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Create (0.000354)*[0m   *[0mINSERT INTO &quot;dogs&quot; (&quot;name&quot;, &quot;updated_at&quot;, &quot;created_at&quot;) VALUES('Hunky', '2008-10-14 16:04:18', '2008-10-14 16:04:18')*[0m
+Completed in 0.01252 (79 reqs/sec) | Rendering: 0.00149 (11%) | DB: 0.00035 (2%) | 201 Created [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 12:04:18) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IGNyZWF0ZWQu
+BjoKQHVzZWR7BjsGRg==--0bb4c2dd2ab22453f8f60671708a6a4f9574bb31
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000797)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01076 (92 reqs/sec) | Rendering: 0.00442 (41%) | DB: 0.00080 (7%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#update (for 127.0.0.1 at 2008-10-14 12:04:31) [PUT]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IGNyZWF0ZWQu
+BjoKQHVzZWR7BjsGVA==--dadc635f38cfb96bf7f9802f5acb0c496cebd798
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;12&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Poppin Hearts&quot;, &quot;updated_at&quot;=&gt;Tue Oct 14 16:04:04 UTC 2008, &quot;created_at&quot;=&gt;Tue Oct 14 16:04:04 UTC 2008}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000214)*[0m   *[0mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 12) *[0m
+  *[4;36;1mDog Update (0.000324)*[0m   *[0;1mUPDATE &quot;dogs&quot; SET &quot;name&quot; = 'Poppin Hearts', &quot;updated_at&quot; = '2008-10-14 16:04:31' WHERE &quot;id&quot; = 12*[0m
+Completed in 0.01253 (79 reqs/sec) | Rendering: 0.00055 (4%) | DB: 0.00054 (4%) | 200 OK [http://localhost/dogs/12.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 12:04:33) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IHVwZGF0ZWQu
+BjoKQHVzZWR7BjsGRg==--48c096ada76bfa6d736099b289c1ecc0694753b5
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000719)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01123 (89 reqs/sec) | Rendering: 0.00463 (41%) | DB: 0.00072 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 12:05:40) [GET]
+  Session ID: 83cc2d4aedde1ac3d6a26e234a8bf612
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000690)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01160 (86 reqs/sec) | Rendering: 0.00444 (38%) | DB: 0.00069 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 12:21:23) [GET]
+  Session ID: 06622892ee00857758b52773ab8f12eb
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000771)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.05191 (19 reqs/sec) | Rendering: 0.04516 (86%) | DB: 0.00077 (1%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#update (for 127.0.0.1 at 2008-10-14 12:21:39) [PUT]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;14&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Judge Your Honor&quot;, &quot;updated_at&quot;=&gt;Tue Oct 14 16:04:12 UTC 2008, &quot;created_at&quot;=&gt;Tue Oct 14 16:04:12 UTC 2008}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000214)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 14) *[0m
+  *[4;35;1mDog Update (0.000380)*[0m   *[0mUPDATE &quot;dogs&quot; SET &quot;name&quot; = 'Judge Your Honor', &quot;updated_at&quot; = '2008-10-14 16:21:39' WHERE &quot;id&quot; = 14*[0m
+Completed in 0.01288 (77 reqs/sec) | Rendering: 0.00059 (4%) | DB: 0.00059 (4%) | 200 OK [http://localhost/dogs/14.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 12:21:42) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IHVwZGF0ZWQu
+BjoKQHVzZWR7BjsGRg==--48c096ada76bfa6d736099b289c1ecc0694753b5
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000729)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01084 (92 reqs/sec) | Rendering: 0.00451 (41%) | DB: 0.00073 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#destroy (for 127.0.0.1 at 2008-10-14 12:21:47) [DELETE]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IHVwZGF0ZWQu
+BjoKQHVzZWR7BjsGVA==--717819e3a1f5572f8b654a3365a8924bf061ac2e
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;destroy&quot;, &quot;id&quot;=&gt;&quot;12&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000268)*[0m   *[0mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 12) *[0m
+  *[4;36;1mDog Destroy (0.000294)*[0m   *[0;1m DELETE FROM &quot;dogs&quot;
+ WHERE &quot;id&quot; = 12
+*[0m
+Completed in 0.01113 (89 reqs/sec) | Rendering: 0.00050 (4%) | DB: 0.00056 (5%) | 200 OK [http://localhost/dogs/12.xml?(null)]
+
+
+Processing DogsController#create (for 127.0.0.1 at 2008-10-14 12:22:04) [POST]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;create&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;some other dog&quot;, &quot;updated_at&quot;=&gt;nil, &quot;created_at&quot;=&gt;nil}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Create (0.000342)*[0m   *[0mINSERT INTO &quot;dogs&quot; (&quot;name&quot;, &quot;updated_at&quot;, &quot;created_at&quot;) VALUES('some other dog', '2008-10-14 16:22:04', '2008-10-14 16:22:04')*[0m
+Completed in 0.01329 (75 reqs/sec) | Rendering: 0.00171 (12%) | DB: 0.00034 (2%) | 201 Created [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-14 12:22:04) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IGNyZWF0ZWQu
+BjoKQHVzZWR7BjsGRg==--0bb4c2dd2ab22453f8f60671708a6a4f9574bb31
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000693)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.12622 (7 reqs/sec) | Rendering: 0.11999 (95%) | DB: 0.00069 (0%) | 200 OK [http://localhost/dogs.xml?(null)]</diff>
      <filename>sample_rails_app/log/development.log</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>142c460f68979c50bb26e117be8d1592b1eea95a</id>
    </parent>
  </parents>
  <author>
    <name>James Burka</name>
    <email>jjburka@burkabook.local</email>
  </author>
  <url>http://github.com/yfactorial/objectiveresource/commit/bc6498145a603af4f6cd27e36a8d8aeba5fd4417</url>
  <id>bc6498145a603af4f6cd27e36a8d8aeba5fd4417</id>
  <committed-date>2008-10-14T12:39:17-07:00</committed-date>
  <authored-date>2008-10-14T09:34:18-07:00</authored-date>
  <message>sync
(cherry picked from commit ea354d16ed3b955fbf20414fbf3c59ee3b8cf7c4)</message>
  <tree>086eea1046c2313d15dca05f9898f50975becd87</tree>
  <committer>
    <name>vickeryj</name>
    <email>vickeryj@j-macbook.local</email>
  </committer>
</commit>
