<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -67,7 +67,7 @@
 		
 	settingViewController = [[NTLNSettingViewController alloc] initWithStyle:UITableViewStyleGrouped];
 	
-	favoriteViewController  = [[NTLNFavoriteViewController alloc] init];
+	favoriteViewController  = [[NTLNFavoriteViewController alloc] initWithScreenName:nil];
 	
 	
 	UINavigationController *nfri = [[[UINavigationController alloc] </diff>
      <filename>NatsuLion/app/NTLNAppDelegate.m</filename>
    </modified>
    <modified>
      <diff>@@ -5,6 +5,6 @@
 	NSString *screenNameInternal;
 }
 
-@property (readwrite, retain) NSString *screenName;
+- (id)initWithScreenName:(NSString*)screenName;
 
 @end</diff>
      <filename>NatsuLion/controllers/tabviews/NTLNFavoriteViewController.h</filename>
    </modified>
    <modified>
      <diff>@@ -5,12 +5,16 @@
 
 @implementation NTLNFavoriteViewController
 
-@synthesize screenName;
-
-- (id)init {
-	if (self = [super init]) {
-		timeline = [[NTLNTimeline alloc] initWithDelegate:self 
-									  withArchiveFilename:@&quot;favorites.plist&quot;];
+- (id)initWithScreenName:(NSString*)aScreenName {
+	if (self = [self init]) {
+		if (aScreenName) {
+			screenName = [aScreenName retain];
+			timeline = [[NTLNTimeline alloc] initWithDelegate:self 
+										  withArchiveFilename:nil];
+		} else {
+			timeline = [[NTLNTimeline alloc] initWithDelegate:self 
+										  withArchiveFilename:@&quot;favorites.plist&quot;];
+		}
 	}
 	return self;
 }</diff>
      <filename>NatsuLion/controllers/tabviews/NTLNFavoriteViewController.m</filename>
    </modified>
    <modified>
      <diff>@@ -217,7 +217,7 @@
 - (void)tableView:(UITableView *)tView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
 	int row = [indexPath row];
 	if (row == 0) {
-//		[self switchToUserViewWithScreenName:message.screenName];
+		[self switchToUserViewWithScreenName:message.screenName];
 	} else if (row == 1) {
 		
 	} else {
@@ -313,7 +313,7 @@
 	[cell.contentView addSubview:iconview];	
 
 	cell.selectionStyle = UITableViewCellSelectionStyleNone;
-	cell.accessoryType = UITableViewCellAccessoryNone;
+	cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
 	
 	return cell;
 }</diff>
      <filename>NatsuLion/controllers/tweetview/NTLNTweetViewController.m</filename>
    </modified>
    <modified>
      <diff>@@ -190,8 +190,7 @@
 				break;
 			case 3:
 			{
-				NTLNFavoriteViewController *vc = [[[NTLNFavoriteViewController alloc] init] autorelease];
-				vc.screenName = userInfo.screen_name;
+				NTLNFavoriteViewController *vc = [[[NTLNFavoriteViewController alloc] initWithScreenName:userInfo.screen_name] autorelease];
 				[[self navigationController] pushViewController:vc animated:YES];
 			}
 				break;</diff>
      <filename>NatsuLion/controllers/user/NTLNUserViewController.m</filename>
    </modified>
    <modified>
      <diff>@@ -33,7 +33,6 @@
 }
 
 - (void)createCellWithText:(NSString*)aText footer:(NSString*)aFooter textHeight:(CGFloat)aTextHeight {
-//	self.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
 	self.cellType = NTLNCellTypeRoundSpeech;
 	text = [aText retain];
 	footer = [aFooter retain];
@@ -84,6 +83,7 @@
 }
 
 - (void)createCellWithName:(NSString*)aName screenName:(NSString*)aScreenName {
+	self.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
 	self.cellType = NTLNCellTypeRound;
 	name = [aName retain];
 	screenName = [aScreenName retain];</diff>
      <filename>NatsuLion/views/tweetview/NTLNLinkTweetCell.m</filename>
    </modified>
    <modified>
      <diff>@@ -290,8 +290,8 @@
 		F1474F1E0FD3F457007D9F4C /* NTLNTweetViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NTLNTweetViewController.m; sourceTree = &quot;&lt;group&gt;&quot;; };
 		F1474F200FD3F457007D9F4C /* NTLNUserListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NTLNUserListViewController.h; sourceTree = &quot;&lt;group&gt;&quot;; };
 		F1474F210FD3F457007D9F4C /* NTLNUserListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NTLNUserListViewController.m; sourceTree = &quot;&lt;group&gt;&quot;; };
-		F1474F220FD3F457007D9F4C /* NTLNUserTimelineViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NTLNUserTimelineViewController.h; sourceTree = &quot;&lt;group&gt;&quot;; };
-		F1474F230FD3F457007D9F4C /* NTLNUserTimelineViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NTLNUserTimelineViewController.m; sourceTree = &quot;&lt;group&gt;&quot;; };
+		F1474F220FD3F457007D9F4C /* NTLNUserTimelineViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NTLNUserTimelineViewController.h; path = ../user/NTLNUserTimelineViewController.h; sourceTree = &quot;&lt;group&gt;&quot;; };
+		F1474F230FD3F457007D9F4C /* NTLNUserTimelineViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NTLNUserTimelineViewController.m; path = ../user/NTLNUserTimelineViewController.m; sourceTree = &quot;&lt;group&gt;&quot;; };
 		F1474F240FD3F457007D9F4C /* NTLNUserViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NTLNUserViewController.h; sourceTree = &quot;&lt;group&gt;&quot;; };
 		F1474F250FD3F457007D9F4C /* NTLNUserViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NTLNUserViewController.m; sourceTree = &quot;&lt;group&gt;&quot;; };
 		F1474F280FD3F457007D9F4C /* NTLNAccount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NTLNAccount.h; sourceTree = &quot;&lt;group&gt;&quot;; };
@@ -724,6 +724,8 @@
 				F1474F1C0FD3F457007D9F4C /* NTLNConversationViewController.m */,
 				F1474F190FD3F457007D9F4C /* NTLNBrowserViewController.h */,
 				F1474F1A0FD3F457007D9F4C /* NTLNBrowserViewController.m */,
+				F1474F220FD3F457007D9F4C /* NTLNUserTimelineViewController.h */,
+				F1474F230FD3F457007D9F4C /* NTLNUserTimelineViewController.m */,
 			);
 			path = tweetview;
 			sourceTree = &quot;&lt;group&gt;&quot;;
@@ -731,12 +733,10 @@
 		F1474F1F0FD3F457007D9F4C /* user */ = {
 			isa = PBXGroup;
 			children = (
-				F1474F200FD3F457007D9F4C /* NTLNUserListViewController.h */,
-				F1474F210FD3F457007D9F4C /* NTLNUserListViewController.m */,
-				F1474F220FD3F457007D9F4C /* NTLNUserTimelineViewController.h */,
-				F1474F230FD3F457007D9F4C /* NTLNUserTimelineViewController.m */,
 				F1474F240FD3F457007D9F4C /* NTLNUserViewController.h */,
 				F1474F250FD3F457007D9F4C /* NTLNUserViewController.m */,
+				F1474F200FD3F457007D9F4C /* NTLNUserListViewController.h */,
+				F1474F210FD3F457007D9F4C /* NTLNUserListViewController.m */,
 			);
 			path = user;
 			sourceTree = &quot;&lt;group&gt;&quot;;</diff>
      <filename>ntlniph.xcodeproj/project.pbxproj</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>decbe7dccb2d803572ba65d079072eeba48b1aa7</id>
    </parent>
  </parents>
  <author>
    <name>takuma104</name>
    <email>takuma104@gmail.com</email>
  </author>
  <url>http://github.com/takuma104/ntlniph/commit/e3ec831ccc67b9047e02b8bc586f04e8a6d7d4e4</url>
  <id>e3ec831ccc67b9047e02b8bc586f04e8a6d7d4e4</id>
  <committed-date>2009-06-01T05:23:31-07:00</committed-date>
  <authored-date>2009-06-01T05:23:31-07:00</authored-date>
  <message>enable UserView</message>
  <tree>2bf13369fd92edc9430bfe2a2cf6548465645c97</tree>
  <committer>
    <name>takuma104</name>
    <email>takuma104@gmail.com</email>
  </committer>
</commit>
