Changeset 41 for trunk/TypePadAtomAPI.m

Show
Ignore:
Timestamp:
06/20/06 23:26:29 (3 years ago)
Author:
ngerakines
Message:

* Put into place the real icons that Wiley sent over
* Fixed the prefs on login
* Removed the TypePadSuper class
* General code cleanup

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/TypePadAtomAPI.m

    r40 r41  
    5252                [self setApiurl:[NSString stringWithFormat:@"%@gallery", @"http://www.typepad.com/t/atom/"]]; 
    5353                [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        } 
    5561// NSLog(@"Making request with request type %@\n", reqtype); 
    5662        [self makerequest:reqtype]; 
     
    102108} 
    103109 
     110- (NSString *) comments_get { 
     111        atomdata = @""; 
     112        return @""; 
     113} 
     114 
    104115@end