remove compiled framework files - not sure how these got in there.
authorMichael J. Rubinsky <mrubinsk@horde.org>
Mon, 24 Nov 2008 19:20:24 +0000 (14:20 -0500)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Mon, 24 Nov 2008 19:20:24 +0000 (14:20 -0500)
iPhoto2Ansel/XMLRPC.framework/Headers [deleted symlink]
iPhoto2Ansel/XMLRPC.framework/Resources [deleted symlink]
iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPC.h [deleted file]
iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPCConnection.h [deleted file]
iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPCRequest.h [deleted file]
iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPCResponse.h [deleted file]
iPhoto2Ansel/XMLRPC.framework/Versions/A/Resources/English.lproj/Localizable.strings [deleted file]
iPhoto2Ansel/XMLRPC.framework/Versions/A/Resources/Info.plist [deleted file]
iPhoto2Ansel/XMLRPC.framework/Versions/A/XMLRPC [deleted file]
iPhoto2Ansel/XMLRPC.framework/Versions/Current [deleted symlink]
iPhoto2Ansel/XMLRPC.framework/XMLRPC [deleted symlink]

diff --git a/iPhoto2Ansel/XMLRPC.framework/Headers b/iPhoto2Ansel/XMLRPC.framework/Headers
deleted file mode 120000 (symlink)
index a177d2a..0000000
+++ /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 (symlink)
index 953ee36..0000000
+++ /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 (file)
index 09de627..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-// 
-// Copyright (c) 2008 Eric Czarny <eczarny@gmail.com>
-// 
-// 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 <XMLRPC/XMLRPCConnection.h>
-#import <XMLRPC/XMLRPCRequest.h>
-#import <XMLRPC/XMLRPCResponse.h>
diff --git a/iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPCConnection.h b/iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPCConnection.h
deleted file mode 100644 (file)
index 9c6b94a..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-// 
-// Copyright (c) 2008 Eric Czarny <eczarny@gmail.com>
-// 
-// 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 <Foundation/Foundation.h>
-
-@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 (file)
index 1db012e..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-// 
-// Copyright (c) 2008 Eric Czarny <eczarny@gmail.com>
-// 
-// 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 <Foundation/Foundation.h>
-
-@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 (file)
index fe645a6..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-// 
-// Copyright (c) 2008 Eric Czarny <eczarny@gmail.com>
-// 
-// 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 <Foundation/Foundation.h>
-
-@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 (file)
index afec4bd..0000000
+++ /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 (file)
index 9ab427f..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
-       <key>CFBundleDevelopmentRegion</key>
-       <string>English</string>
-       <key>CFBundleExecutable</key>
-       <string>XMLRPC</string>
-       <key>CFBundleIdentifier</key>
-       <string>com.divisiblebyzero.XMLRPC</string>
-       <key>CFBundleInfoDictionaryVersion</key>
-       <string>6.0</string>
-       <key>CFBundleName</key>
-       <string>XMLRPC</string>
-       <key>CFBundlePackageType</key>
-       <string>FMWK</string>
-       <key>CFBundleSignature</key>
-       <string>ZERO</string>
-       <key>CFBundleVersion</key>
-       <string>1.5.1</string>
-</dict>
-</plist>
diff --git a/iPhoto2Ansel/XMLRPC.framework/Versions/A/XMLRPC b/iPhoto2Ansel/XMLRPC.framework/Versions/A/XMLRPC
deleted file mode 100755 (executable)
index f15c5d0..0000000
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 (symlink)
index 8c7e5a6..0000000
+++ /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 (symlink)
index 0a7400a..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Versions/Current/XMLRPC
\ No newline at end of file