<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>Classes/DataParser.h</filename>
    </added>
    <added>
      <filename>Classes/DataParser.m</filename>
    </added>
    <added>
      <filename>Classes/Repository.h</filename>
    </added>
    <added>
      <filename>Classes/Repository.m</filename>
    </added>
    <added>
      <filename>images/feed.png</filename>
    </added>
    <added>
      <filename>images/gravatar.png</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -13,13 +13,15 @@
 	NSString *gitHubUserName;
 	NSString *gitHubToken;
 	NSString *baseURL;
-	NSMutableArray *repositories;
+	NSMutableArray *publicRepositories;
+	NSMutableArray *privateRepositories;
 }
 
 @property (copy) NSString *gitHubUserName;
 @property (copy) NSString *gitHubToken;
 @property (copy) NSString *baseURL;
-@property (copy) NSMutableArray *repositories;
+@property (copy) NSMutableArray *publicRepositories;
+@property (copy) NSMutableArray *privateRepositories;
 
 + (Config *)instance;
 - (NSString *)baseAPIURL;</diff>
      <filename>Classes/Config.h</filename>
    </modified>
    <modified>
      <diff>@@ -14,7 +14,8 @@
 @synthesize gitHubUserName;
 @synthesize gitHubToken;
 @synthesize baseURL;
-@synthesize repositories;
+@synthesize publicRepositories;
+@synthesize privateRepositories;
 
 // Make model a singleton
 + (Config *)instance
@@ -37,7 +38,8 @@
 	[gitHubUserName release];
 	[gitHubToken release];
 	[baseURL release];
-	[repositories release];
+	[publicRepositories	release];
+	[privateRepositories release];
 	[super dealloc];
 }
 </diff>
      <filename>Classes/Config.m</filename>
    </modified>
    <modified>
      <diff>@@ -7,4 +7,5 @@
 //
 
 #import &quot;Config.h&quot;
+#import &quot;DataParser.h&quot;
 #import &quot;Repository.h&quot;</diff>
      <filename>Classes/Models.h</filename>
    </modified>
    <modified>
      <diff>@@ -14,6 +14,8 @@
 	RootViewController *rootViewController;
 	NSArray *repositories;
 }
+
 @property (nonatomic, retain) RootViewController *rootViewController;
+@property (nonatomic, retain) NSArray *repositories;
 
 @end</diff>
      <filename>Classes/RepositoriesViewController.h</filename>
    </modified>
    <modified>
      <diff>@@ -12,48 +12,17 @@
 @implementation RepositoriesViewController
 
 @synthesize rootViewController;
+@synthesize repositories;
 
-/*
-- (id)initWithStyle:(UITableViewStyle)style {
-    // Override initWithStyle: if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
-    if (self = [super initWithStyle:style]) {
-    }
-    return self;
-}
-*/
-
-/*
 - (void)viewDidLoad {
     [super viewDidLoad];
-
-    // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
-    // self.navigationItem.rightBarButtonItem = self.editButtonItem;
+	self.title = @&quot;Repositories&quot;;
 }
-*/
 
 
 - (void)viewWillAppear:(BOOL)animated {
-	[repositories release];
-	repositories = [[[Config instance] repositories] retain];
     [super viewWillAppear:animated];
 }
- 
-/*
-- (void)viewDidAppear:(BOOL)animated {
-    [super viewDidAppear:animated];
-}
-*/
-/*
-- (void)viewWillDisappear:(BOOL)animated {
-	[super viewWillDisappear:animated];
-}
-*/
-/*
-- (void)viewDidDisappear:(BOOL)animated {
-	[super viewDidDisappear:animated];
-}
-*/
-
 
 - (void)didReceiveMemoryWarning {
     [super didReceiveMemoryWarning]; // Releases the view if it doesn't have a superview</diff>
      <filename>Classes/RepositoriesViewController.m</filename>
    </modified>
    <modified>
      <diff>@@ -17,9 +17,7 @@
 
 - (void)viewDidLoad {
     [super viewDidLoad];
-    
-	// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
-    // self.navigationItem.rightBarButtonItem = self.editButtonItem;
+	self.title = @&quot;GitHub GitPhone&quot;;
 }
 
 - (void)didReceiveMemoryWarning {
@@ -30,13 +28,30 @@
 #pragma mark Table view methods
 
 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
-    return 1;
+    return 3;
 }
 
 
 // Customize the number of rows in the table view.
 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
-    return 2;
+    
+	NSInteger rows;
+	
+	switch(section) {
+		case 0: {
+			rows = 2;
+			break;
+		}
+		case 1: {
+			rows =  1;
+			break;
+		}
+		case 2: {
+			rows =  1;
+			break;
+		}
+	}
+	return rows;
 }
 
 
@@ -67,6 +82,23 @@
 			break;
 		}
 		case 1: {
+			switch(indexPath.row) {
+				case 0: {
+					cell.text = @&quot;News Feed&quot;;
+					cell.image = [UIImage imageNamed:@&quot;feed.png&quot;];
+					break;
+				}
+			}
+			break;
+		}
+		case 2: {
+			switch(indexPath.row) {
+				case 0: {
+					cell.text = @&quot;About GitHub GitPhone&quot;;
+					cell.image = [UIImage imageNamed:@&quot;gravatar.png&quot;];
+					break;
+				}
+			}
 			break;
 		}
 	}
@@ -76,9 +108,31 @@
 
 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
 	RepositoriesViewController *repositoriesViewController = [[[RepositoriesViewController alloc] initWithNibName:@&quot;RepositoriesView&quot; bundle:nil] autorelease];
-	//repositoriesViewController.repositories = [photochecks objectAtIndex:[indexPath row]];
+
+	switch(indexPath.section) {
+		case 0: {
+			switch(indexPath.row) {
+				case 0: {
+					[repositoriesViewController.repositories release];
+					repositoriesViewController.repositories = [[Config instance] publicRepositories];
+					break;
+				}
+				case 1: {
+					[repositoriesViewController.repositories release];
+					repositoriesViewController.repositories = [[Config instance] privateRepositories];
+					break;
+				}
+			}
+			break;
+		}
+		case 1: {
+			break;
+		}
+	}
+	
+	
 	repositoriesViewController.rootViewController = self;
-	//[self.navigationController pushViewController:tableView animated:YES];
+	[self.navigationController pushViewController:repositoriesViewController animated:YES];
 	[tableView deselectRowAtIndexPath:indexPath animated:YES];
 }
 </diff>
      <filename>Classes/RootViewController.m</filename>
    </modified>
    <modified>
      <diff>@@ -41,20 +41,17 @@
 						&lt;int key=&quot;NSvFlags&quot;&gt;274&lt;/int&gt;
 						&lt;string key=&quot;NSFrame&quot;&gt;{{0, 44}, {320, 436}}&lt;/string&gt;
 						&lt;reference key=&quot;NSSuperview&quot; ref=&quot;191373211&quot;/&gt;
-						&lt;object class=&quot;NSColor&quot; key=&quot;IBUIBackgroundColor&quot;&gt;
-							&lt;int key=&quot;NSColorSpace&quot;&gt;3&lt;/int&gt;
-							&lt;bytes key=&quot;NSWhite&quot;&gt;MQA&lt;/bytes&gt;
-						&lt;/object&gt;
 						&lt;bool key=&quot;IBUIOpaque&quot;&gt;NO&lt;/bool&gt;
 						&lt;bool key=&quot;IBUIClipsSubviews&quot;&gt;YES&lt;/bool&gt;
 						&lt;bool key=&quot;IBUIClearsContextBeforeDrawing&quot;&gt;NO&lt;/bool&gt;
 						&lt;bool key=&quot;IBUIBouncesZoom&quot;&gt;NO&lt;/bool&gt;
+						&lt;int key=&quot;IBUIStyle&quot;&gt;1&lt;/int&gt;
 						&lt;int key=&quot;IBUISeparatorStyle&quot;&gt;1&lt;/int&gt;
 						&lt;int key=&quot;IBUISectionIndexMinimumDisplayRowCount&quot;&gt;0&lt;/int&gt;
 						&lt;bool key=&quot;IBUIShowsSelectionImmediatelyOnTouchBegin&quot;&gt;YES&lt;/bool&gt;
 						&lt;float key=&quot;IBUIRowHeight&quot;&gt;4.400000e+01&lt;/float&gt;
-						&lt;float key=&quot;IBUISectionHeaderHeight&quot;&gt;2.200000e+01&lt;/float&gt;
-						&lt;float key=&quot;IBUISectionFooterHeight&quot;&gt;2.200000e+01&lt;/float&gt;
+						&lt;float key=&quot;IBUISectionHeaderHeight&quot;&gt;1.000000e+01&lt;/float&gt;
+						&lt;float key=&quot;IBUISectionFooterHeight&quot;&gt;1.000000e+01&lt;/float&gt;
 					&lt;/object&gt;
 					&lt;object class=&quot;IBUINavigationBar&quot; id=&quot;1060136278&quot;&gt;
 						&lt;reference key=&quot;NSNextResponder&quot; ref=&quot;191373211&quot;/&gt;
@@ -65,10 +62,6 @@
 						&lt;bool key=&quot;IBUIClearsContextBeforeDrawing&quot;&gt;NO&lt;/bool&gt;
 						&lt;object class=&quot;NSArray&quot; key=&quot;IBUIItems&quot;&gt;
 							&lt;bool key=&quot;EncodedWithXMLCoder&quot;&gt;YES&lt;/bool&gt;
-							&lt;object class=&quot;IBUINavigationItem&quot; id=&quot;826721001&quot;&gt;
-								&lt;reference key=&quot;IBUINavigationBar&quot; ref=&quot;1060136278&quot;/&gt;
-								&lt;string key=&quot;IBUITitle&quot;&gt;Repositories&lt;/string&gt;
-							&lt;/object&gt;
 						&lt;/object&gt;
 					&lt;/object&gt;
 				&lt;/object&gt;
@@ -94,14 +87,6 @@
 					&lt;/object&gt;
 					&lt;int key=&quot;connectionID&quot;&gt;6&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;navigationItem&lt;/string&gt;
-						&lt;reference key=&quot;source&quot; ref=&quot;372490531&quot;/&gt;
-						&lt;reference key=&quot;destination&quot; ref=&quot;826721001&quot;/&gt;
-					&lt;/object&gt;
-					&lt;int key=&quot;connectionID&quot;&gt;7&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;
@@ -140,16 +125,10 @@
 						&lt;reference key=&quot;object&quot; ref=&quot;1060136278&quot;/&gt;
 						&lt;object class=&quot;NSMutableArray&quot; key=&quot;children&quot;&gt;
 							&lt;bool key=&quot;EncodedWithXMLCoder&quot;&gt;YES&lt;/bool&gt;
-							&lt;reference ref=&quot;826721001&quot;/&gt;
 						&lt;/object&gt;
 						&lt;reference key=&quot;parent&quot; ref=&quot;191373211&quot;/&gt;
 					&lt;/object&gt;
 					&lt;object class=&quot;IBObjectRecord&quot;&gt;
-						&lt;int key=&quot;objectID&quot;&gt;4&lt;/int&gt;
-						&lt;reference key=&quot;object&quot; ref=&quot;826721001&quot;/&gt;
-						&lt;reference key=&quot;parent&quot; ref=&quot;1060136278&quot;/&gt;
-					&lt;/object&gt;
-					&lt;object class=&quot;IBObjectRecord&quot;&gt;
 						&lt;int key=&quot;objectID&quot;&gt;5&lt;/int&gt;
 						&lt;reference key=&quot;object&quot; ref=&quot;777229474&quot;/&gt;
 						&lt;reference key=&quot;parent&quot; ref=&quot;191373211&quot;/&gt;
@@ -165,15 +144,13 @@
 					&lt;string&gt;1.IBEditorWindowLastContentRect&lt;/string&gt;
 					&lt;string&gt;1.IBPluginDependency&lt;/string&gt;
 					&lt;string&gt;3.IBPluginDependency&lt;/string&gt;
-					&lt;string&gt;4.IBPluginDependency&lt;/string&gt;
 					&lt;string&gt;5.IBPluginDependency&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;RepositoriesViewController&lt;/string&gt;
 					&lt;string&gt;UIResponder&lt;/string&gt;
-					&lt;string&gt;{{350, 29}, {320, 480}}&lt;/string&gt;
-					&lt;string&gt;com.apple.InterfaceBuilder.IBCocoaTouchPlugin&lt;/string&gt;
+					&lt;string&gt;{{315, 64}, {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;string&gt;com.apple.InterfaceBuilder.IBCocoaTouchPlugin&lt;/string&gt;
@@ -199,7 +176,7 @@
 				&lt;/object&gt;
 			&lt;/object&gt;
 			&lt;nil key=&quot;sourceID&quot;/&gt;
-			&lt;int key=&quot;maxID&quot;&gt;7&lt;/int&gt;
+			&lt;int key=&quot;maxID&quot;&gt;9&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;</diff>
      <filename>RepositoriesView.xib</filename>
    </modified>
    <modified>
      <diff>@@ -66,14 +66,6 @@
 				&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;view&lt;/string&gt;
-						&lt;reference key=&quot;source&quot; ref=&quot;372490531&quot;/&gt;
-						&lt;reference key=&quot;destination&quot; ref=&quot;747164330&quot;/&gt;
-					&lt;/object&gt;
-					&lt;int key=&quot;connectionID&quot;&gt;11&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;dataSource&lt;/string&gt;
 						&lt;reference key=&quot;source&quot; ref=&quot;747164330&quot;/&gt;
 						&lt;reference key=&quot;destination&quot; ref=&quot;372490531&quot;/&gt;
@@ -88,6 +80,14 @@
 					&lt;/object&gt;
 					&lt;int key=&quot;connectionID&quot;&gt;13&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;view&lt;/string&gt;
+						&lt;reference key=&quot;source&quot; ref=&quot;372490531&quot;/&gt;
+						&lt;reference key=&quot;destination&quot; ref=&quot;747164330&quot;/&gt;
+					&lt;/object&gt;
+					&lt;int key=&quot;connectionID&quot;&gt;23&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;
@@ -131,7 +131,7 @@
 					&lt;bool key=&quot;EncodedWithXMLCoder&quot;&gt;YES&lt;/bool&gt;
 					&lt;string&gt;RootViewController&lt;/string&gt;
 					&lt;string&gt;UIResponder&lt;/string&gt;
-					&lt;string&gt;{{271, 71}, {320, 480}}&lt;/string&gt;
+					&lt;string&gt;{{303, 28}, {320, 480}}&lt;/string&gt;
 					&lt;string&gt;com.apple.InterfaceBuilder.IBCocoaTouchPlugin&lt;/string&gt;
 				&lt;/object&gt;
 			&lt;/object&gt;
@@ -155,7 +155,7 @@
 				&lt;/object&gt;
 			&lt;/object&gt;
 			&lt;nil key=&quot;sourceID&quot;/&gt;
-			&lt;int key=&quot;maxID&quot;&gt;15&lt;/int&gt;
+			&lt;int key=&quot;maxID&quot;&gt;23&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;</diff>
      <filename>RootViewController.xib</filename>
    </modified>
    <modified>
      <diff>@@ -25,7 +25,10 @@
 		22E17C3B0F22490800D2853B /* Login.xib in Resources */ = {isa = PBXBuildFile; fileRef = 22E17C3A0F22490800D2853B /* Login.xib */; };
 		22E17C410F224A5700D2853B /* octocat_large.png in Resources */ = {isa = PBXBuildFile; fileRef = 22E17C400F224A5700D2853B /* octocat_large.png */; };
 		22E17D0D0F24F08C00D2853B /* Connector.m in Sources */ = {isa = PBXBuildFile; fileRef = 22E17D0C0F24F08C00D2853B /* Connector.m */; };
-		22E17D580F25043800D2853B /* Repository.m in Sources */ = {isa = PBXBuildFile; fileRef = 22E17D570F25043800D2853B /* Repository.m */; };
+		22EFCE200F32598F009F3C3E /* DataParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 22EFCE1F0F32598F009F3C3E /* DataParser.m */; };
+		22EFCE410F325A3F009F3C3E /* Repository.m in Sources */ = {isa = PBXBuildFile; fileRef = 22EFCE400F325A3F009F3C3E /* Repository.m */; };
+		22EFCE800F325DFB009F3C3E /* feed.png in Resources */ = {isa = PBXBuildFile; fileRef = 22EFCE7F0F325DFB009F3C3E /* feed.png */; };
+		22EFCE880F325EFA009F3C3E /* gravatar.png in Resources */ = {isa = PBXBuildFile; fileRef = 22EFCE870F325EFA009F3C3E /* gravatar.png */; };
 		22FA50040F212ED300709123 /* Settings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 22FA50030F212ED300709123 /* Settings.bundle */; };
 		22FA502E0F21374300709123 /* octocat.png in Resources */ = {isa = PBXBuildFile; fileRef = 22FA502D0F21374300709123 /* octocat.png */; };
 		22FA50CE0F21463D00709123 /* Config.m in Sources */ = {isa = PBXBuildFile; fileRef = 22FA50CD0F21463D00709123 /* Config.m */; };
@@ -61,13 +64,17 @@
 		22E17C400F224A5700D2853B /* octocat_large.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = octocat_large.png; sourceTree = &quot;&lt;group&gt;&quot;; };
 		22E17D0B0F24F08C00D2853B /* Connector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Connector.h; sourceTree = &quot;&lt;group&gt;&quot;; };
 		22E17D0C0F24F08C00D2853B /* Connector.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Connector.m; sourceTree = &quot;&lt;group&gt;&quot;; };
-		22E17D560F25043800D2853B /* Repository.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Repository.h; sourceTree = &quot;&lt;group&gt;&quot;; };
-		22E17D570F25043800D2853B /* Repository.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Repository.m; sourceTree = &quot;&lt;group&gt;&quot;; };
+		22EFCE1E0F32598F009F3C3E /* DataParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DataParser.h; sourceTree = &quot;&lt;group&gt;&quot;; };
+		22EFCE1F0F32598F009F3C3E /* DataParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DataParser.m; sourceTree = &quot;&lt;group&gt;&quot;; };
+		22EFCE3F0F325A3F009F3C3E /* Repository.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Repository.h; sourceTree = &quot;&lt;group&gt;&quot;; };
+		22EFCE400F325A3F009F3C3E /* Repository.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Repository.m; sourceTree = &quot;&lt;group&gt;&quot;; };
+		22EFCE7F0F325DFB009F3C3E /* feed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = feed.png; sourceTree = &quot;&lt;group&gt;&quot;; };
+		22EFCE870F325EFA009F3C3E /* gravatar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = gravatar.png; sourceTree = &quot;&lt;group&gt;&quot;; };
 		22FA50030F212ED300709123 /* Settings.bundle */ = {isa = PBXFileReference; lastKnownFileType = &quot;wrapper.plug-in&quot;; path = Settings.bundle; sourceTree = &quot;&lt;group&gt;&quot;; };
 		22FA502D0F21374300709123 /* octocat.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = octocat.png; sourceTree = &quot;&lt;group&gt;&quot;; };
-		22FA50CC0F21463D00709123 /* Config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Config.h; path = Classes/Config.h; sourceTree = &quot;&lt;group&gt;&quot;; };
-		22FA50CD0F21463D00709123 /* Config.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Config.m; path = Classes/Config.m; sourceTree = &quot;&lt;group&gt;&quot;; };
-		22FA50DB0F2147DC00709123 /* Models.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Models.h; path = Classes/Models.h; sourceTree = &quot;&lt;group&gt;&quot;; };
+		22FA50CC0F21463D00709123 /* Config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Config.h; sourceTree = &quot;&lt;group&gt;&quot;; };
+		22FA50CD0F21463D00709123 /* Config.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Config.m; sourceTree = &quot;&lt;group&gt;&quot;; };
+		22FA50DB0F2147DC00709123 /* Models.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Models.h; sourceTree = &quot;&lt;group&gt;&quot;; };
 		2892E40F0DC94CBA00A64D0F /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
 		2899E55F0DE3E45000AC0155 /* RootViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RootViewController.xib; sourceTree = &quot;&lt;group&gt;&quot;; };
 		28A0AAE50D9B0CCF005BE974 /* git_phone_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = git_phone_Prefix.pch; sourceTree = &quot;&lt;group&gt;&quot;; };
@@ -138,6 +145,8 @@
 		22FA50100F21349300709123 /* images */ = {
 			isa = PBXGroup;
 			children = (
+				22EFCE870F325EFA009F3C3E /* gravatar.png */,
+				22EFCE7F0F325DFB009F3C3E /* feed.png */,
 				2294459F0F2CFD4200502D5C /* private.png */,
 				229445A00F2CFD4200502D5C /* public.png */,
 				22E17C400F224A5700D2853B /* octocat_large.png */,
@@ -147,16 +156,18 @@
 			path = images;
 			sourceTree = &quot;&lt;group&gt;&quot;;
 		};
-		22FA50C60F2144DF00709123 /* Models */ = {
+		22FA50C60F2144DF00709123 /* Classes */ = {
 			isa = PBXGroup;
 			children = (
 				22FA50DB0F2147DC00709123 /* Models.h */,
 				22FA50CC0F21463D00709123 /* Config.h */,
 				22FA50CD0F21463D00709123 /* Config.m */,
-				22E17D560F25043800D2853B /* Repository.h */,
-				22E17D570F25043800D2853B /* Repository.m */,
+				22EFCE1E0F32598F009F3C3E /* DataParser.h */,
+				22EFCE1F0F32598F009F3C3E /* DataParser.m */,
+				22EFCE3F0F325A3F009F3C3E /* Repository.h */,
+				22EFCE400F325A3F009F3C3E /* Repository.m */,
 			);
-			name = Models;
+			path = Classes;
 			sourceTree = &quot;&lt;group&gt;&quot;;
 		};
 		22FA50C70F2144F800709123 /* Networking */ = {
@@ -176,7 +187,7 @@
 			isa = PBXGroup;
 			children = (
 				22FA50C70F2144F800709123 /* Networking */,
-				22FA50C60F2144DF00709123 /* Models */,
+				22FA50C60F2144DF00709123 /* Classes */,
 				22E17B990F223A3400D2853B /* ViewControllers */,
 				080E96DDFE201D6D7F000001 /* Classes */,
 				29B97315FDCFA39411CA2CEA /* Other Sources */,
@@ -282,6 +293,8 @@
 				229445A10F2CFD4200502D5C /* private.png in Resources */,
 				229445A20F2CFD4200502D5C /* public.png in Resources */,
 				2218F1170F2FE3A00080FB02 /* RepositoriesView.xib in Resources */,
+				22EFCE800F325DFB009F3C3E /* feed.png in Resources */,
+				22EFCE880F325EFA009F3C3E /* gravatar.png in Resources */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};
@@ -301,8 +314,9 @@
 				22E17B9D0F223AA600D2853B /* ApplicationErrorViewController.m in Sources */,
 				22E17C1E0F22467200D2853B /* LoginViewController.m in Sources */,
 				22E17D0D0F24F08C00D2853B /* Connector.m in Sources */,
-				22E17D580F25043800D2853B /* Repository.m in Sources */,
 				2218F1350F2FE4110080FB02 /* RepositoriesViewController.m in Sources */,
+				22EFCE200F32598F009F3C3E /* DataParser.m in Sources */,
+				22EFCE410F325A3F009F3C3E /* Repository.m in Sources */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};</diff>
      <filename>git-phone.xcodeproj/project.pbxproj</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>Repository.h</filename>
    </removed>
    <removed>
      <filename>Repository.m</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>fec48ac3ef5418453ddaf02edea9fa606d05a2d9</id>
    </parent>
  </parents>
  <author>
    <name>Sam Schroeder</name>
    <email>samuelschroeder@gmail.com</email>
  </author>
  <url>http://github.com/sschroed/git-phone/commit/3a62f733542fce20876e0ad28ae92583e819f9c8</url>
  <id>3a62f733542fce20876e0ad28ae92583e819f9c8</id>
  <committed-date>2009-01-29T14:06:43-08:00</committed-date>
  <authored-date>2009-01-29T14:06:43-08:00</authored-date>
  <message>pub/private repos working</message>
  <tree>8e44730ece4088cc8bbe604fbe0e11b11847aff0</tree>
  <committer>
    <name>Sam Schroeder</name>
    <email>samuelschroeder@gmail.com</email>
  </committer>
</commit>
