From: Michael J. Rubinsky Date: Mon, 24 Nov 2008 19:20:24 +0000 (-0500) Subject: remove compiled framework files - not sure how these got in there. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=55e3286e22f5ebd3f0e17632d5311b64fb30bfa1;p=horde.git remove compiled framework files - not sure how these got in there. --- diff --git a/iPhoto2Ansel/XMLRPC.framework/Headers b/iPhoto2Ansel/XMLRPC.framework/Headers deleted file mode 120000 index a177d2a6b..000000000 --- a/iPhoto2Ansel/XMLRPC.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Headers \ No newline at end of file diff --git a/iPhoto2Ansel/XMLRPC.framework/Resources b/iPhoto2Ansel/XMLRPC.framework/Resources deleted file mode 120000 index 953ee36f3..000000000 --- a/iPhoto2Ansel/XMLRPC.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPC.h b/iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPC.h deleted file mode 100644 index 09de6274f..000000000 --- a/iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPC.h +++ /dev/null @@ -1,33 +0,0 @@ -// -// Copyright (c) 2008 Eric Czarny -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to -// deal in the Software without restriction, including without limitation the -// rights to use, copy, modify, merge, publish, distribute, sublicense, -// and/or sell copies of the Software, and to permit persons to whom the -// Software is furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -// IN THE SOFTWARE. -// - -// -// Cocoa XML-RPC Framework -// XMLRPC.h -// -// Created by Eric Czarny on Wednesday, February 10, 2004. -// Copyright (c) 2008 Divisible by Zero. -// - -#import -#import -#import diff --git a/iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPCConnection.h b/iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPCConnection.h deleted file mode 100644 index 9c6b94a63..000000000 --- a/iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPCConnection.h +++ /dev/null @@ -1,73 +0,0 @@ -// -// Copyright (c) 2008 Eric Czarny -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to -// deal in the Software without restriction, including without limitation the -// rights to use, copy, modify, merge, publish, distribute, sublicense, -// and/or sell copies of the Software, and to permit persons to whom the -// Software is furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -// IN THE SOFTWARE. -// - -// -// Cocoa XML-RPC Framework -// XMLRPCConnection.h -// -// Created by Eric Czarny on Thursday, January 15, 2004. -// Copyright (c) 2008 Divisible by Zero. -// - -#import - -@class XMLRPCRequest, XMLRPCResponse; - -/* XML-RPC Connection Notifications */ -extern NSString *XMLRPCSentRequestNotification; -extern NSString *XMLRPCRequestFailedNotification; -extern NSString *XMLRPCReceivedAuthenticationChallengeNotification; -extern NSString *XMLRPCCancelledAuthenticationChallengeNotification; -extern NSString *XMLRPCReceivedResponseNotification; - -@interface XMLRPCConnection : NSObject { - NSURLConnection *currentConnection; - NSString *currentXMLRPCMethod; - NSMutableData *incomingXMLData; - id applicationDelegate; -} - -- (id)initWithXMLRPCRequest: (XMLRPCRequest *)request delegate: (id)delegate; - -#pragma mark - - -+ (XMLRPCResponse *)sendSynchronousXMLRPCRequest: (XMLRPCRequest *)request; - -#pragma mark - - -- (void)cancel; - -@end - -#pragma mark - - -@interface NSObject (XMLRPCConnectionDelegate) - -- (void)connection: (XMLRPCConnection *)connection didReceiveResponse: (XMLRPCResponse *)response forMethod: (NSString *)method; - -- (void)connection: (XMLRPCConnection *)connection didFailWithError: (NSError *)error forMethod: (NSString *)method; - -- (void)connection: (XMLRPCConnection *)connection didReceiveAuthenticationChallenge: (NSURLAuthenticationChallenge *)challenge forMethod: (NSString *)method; - -- (void)connection: (XMLRPCConnection *)connection didCancelAuthenticationChallenge: (NSURLAuthenticationChallenge *)challenge forMethod: (NSString *)method; - -@end diff --git a/iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPCRequest.h b/iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPCRequest.h deleted file mode 100644 index 1db012e93..000000000 --- a/iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPCRequest.h +++ /dev/null @@ -1,73 +0,0 @@ -// -// Copyright (c) 2008 Eric Czarny -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to -// deal in the Software without restriction, including without limitation the -// rights to use, copy, modify, merge, publish, distribute, sublicense, -// and/or sell copies of the Software, and to permit persons to whom the -// Software is furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -// IN THE SOFTWARE. -// - -// -// Cocoa XML-RPC Framework -// XMLRPCRequest.h -// -// Created by Eric Czarny on Wednesday, January 14, 2004. -// Copyright (c) 2008 Divisible by Zero. -// - -#import - -@class XMLRPCEncoder; - -@interface XMLRPCRequest : NSObject { - NSMutableURLRequest *mutableRequest; - XMLRPCEncoder *requestXMLEncoder; -} - -- (id)initWithHost: (NSURL *)host; - -#pragma mark - - -- (void)setHost: (NSURL *)host; -- (NSURL *)host; - -#pragma mark - - -- (void)setUserAgent: (NSString *)userAgent; -- (NSString *)userAgent; - -#pragma mark - - -- (void)setMethod: (NSString *)method; - -- (void)setMethod: (NSString *)method withParameter: (id)parameter; - -- (void)setMethod: (NSString *)method withParameters: (NSArray *)parameters; - -#pragma mark - - -- (NSString *)method; -- (NSArray *)parameters; - -#pragma mark - - -- (NSString *)requestSourceXML; - -#pragma mark - - -- (NSURLRequest *)request; - -@end diff --git a/iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPCResponse.h b/iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPCResponse.h deleted file mode 100644 index fe645a601..000000000 --- a/iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPCResponse.h +++ /dev/null @@ -1,60 +0,0 @@ -// -// Copyright (c) 2008 Eric Czarny -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to -// deal in the Software without restriction, including without limitation the -// rights to use, copy, modify, merge, publish, distribute, sublicense, -// and/or sell copies of the Software, and to permit persons to whom the -// Software is furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -// IN THE SOFTWARE. -// - -// -// Cocoa XML-RPC Framework -// XMLRPCResponse.h -// -// Created by Eric Czarny on Wednesday, January 14, 2004. -// Copyright (c) 2008 Divisible by Zero. -// - -#import - -@class XMLRPCDecoder; - -@interface XMLRPCResponse : NSObject { - NSData *responseXMLData; - NSString *responseSourceXML; - id responseObject; - BOOL isFault; -} - -- (id)initWithData: (NSData *)data; - -#pragma mark - - -- (BOOL)isFault; - -- (NSNumber *)faultCode; - -- (NSString *)faultString; - -#pragma mark - - -- (id)responseObject; - -#pragma mark - - -- (NSString *)responseSourceXML; - -@end diff --git a/iPhoto2Ansel/XMLRPC.framework/Versions/A/Resources/English.lproj/Localizable.strings b/iPhoto2Ansel/XMLRPC.framework/Versions/A/Resources/English.lproj/Localizable.strings deleted file mode 100644 index afec4bd93..000000000 --- a/iPhoto2Ansel/XMLRPC.framework/Versions/A/Resources/English.lproj/Localizable.strings +++ /dev/null @@ -1,3 +0,0 @@ -/* ENGLISH */ - -NSHumanReadableCopyright = "Cocoa XML-RPC Framework © 2008 Divisible by Zero"; diff --git a/iPhoto2Ansel/XMLRPC.framework/Versions/A/Resources/Info.plist b/iPhoto2Ansel/XMLRPC.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index 9ab427f17..000000000 --- a/iPhoto2Ansel/XMLRPC.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - XMLRPC - CFBundleIdentifier - com.divisiblebyzero.XMLRPC - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - XMLRPC - CFBundlePackageType - FMWK - CFBundleSignature - ZERO - CFBundleVersion - 1.5.1 - - diff --git a/iPhoto2Ansel/XMLRPC.framework/Versions/A/XMLRPC b/iPhoto2Ansel/XMLRPC.framework/Versions/A/XMLRPC deleted file mode 100755 index f15c5d0f4..000000000 Binary files a/iPhoto2Ansel/XMLRPC.framework/Versions/A/XMLRPC and /dev/null differ diff --git a/iPhoto2Ansel/XMLRPC.framework/Versions/Current b/iPhoto2Ansel/XMLRPC.framework/Versions/Current deleted file mode 120000 index 8c7e5a667..000000000 --- a/iPhoto2Ansel/XMLRPC.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/iPhoto2Ansel/XMLRPC.framework/XMLRPC b/iPhoto2Ansel/XMLRPC.framework/XMLRPC deleted file mode 120000 index 0a7400a11..000000000 --- a/iPhoto2Ansel/XMLRPC.framework/XMLRPC +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/XMLRPC \ No newline at end of file