Changeset 41 for trunk/TypePadAtomAPI.m
- Timestamp:
- 06/20/06 23:26:29 (3 years ago)
- Files:
-
- 1 modified
-
trunk/TypePadAtomAPI.m (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/TypePadAtomAPI.m
r40 r41 52 52 [self setApiurl:[NSString stringWithFormat:@"%@gallery", @"http://www.typepad.com/t/atom/"]]; 53 53 [self weblog_discover]; 54 } 54 } 55 if ([to isEqualToString:@"commentlist"] || [to isEqualToString:@"6"]) { 56 // NSLog(@"set as gallerydiscovery post type\n"); 57 reqtype = @"GET"; 58 [self setApiurl:[NSString stringWithFormat:@"%@comments/blog_id=%@", @"http://www.typepad.com/t/atom/", [args objectForKey:@"blog_id"]]]; 59 [self weblog_discover]; 60 } 55 61 // NSLog(@"Making request with request type %@\n", reqtype); 56 62 [self makerequest:reqtype]; … … 102 108 } 103 109 110 - (NSString *) comments_get { 111 atomdata = @""; 112 return @""; 113 } 114 104 115 @end
