|
Revision 41, 0.6 kB
(checked in by ngerakines, 3 years ago)
|
|
* Put into place the real icons that Wiley sent over
* Fixed the prefs on login
* Removed the TypePadSuper class
* General code cleanup
|
| Line | |
|---|
| 1 | // |
|---|
| 2 | // TypePadAtomAPI.h |
|---|
| 3 | // Fence |
|---|
| 4 | // |
|---|
| 5 | // Created by Nicholas Gerakines on 6/11/06. |
|---|
| 6 | // Copyright 2006 __MyCompanyName__. All rights reserved. |
|---|
| 7 | // |
|---|
| 8 | |
|---|
| 9 | #import <Cocoa/Cocoa.h> |
|---|
| 10 | #import "AtomApi.h" |
|---|
| 11 | |
|---|
| 12 | @interface TypePadAtomAPI : AtomApi { |
|---|
| 13 | |
|---|
| 14 | } |
|---|
| 15 | |
|---|
| 16 | - (void) newpost:(NSString *) to args:(NSMutableDictionary *) args; |
|---|
| 17 | |
|---|
| 18 | - (NSString *) gallery_upload: (NSString *) file; |
|---|
| 19 | - (NSString *) weblog_discover; |
|---|
| 20 | - (NSString *) weblog_upload: (NSString *) file; |
|---|
| 21 | - (NSString *) weblog_newpost: (NSString *) title content: (NSString *) content; |
|---|
| 22 | - (NSString *) weblog_postcategories; |
|---|
| 23 | - (NSString *) comments_get; |
|---|
| 24 | |
|---|
| 25 | @end |
|---|