[commits] Horde-Hatchery branch, master, updated. df0f2bf52a1f118cc8de477fd3a6848a27f9466f
Michael Rubinsky
mike at theupstairsroom.com
Sun Nov 23 20:38:45 UTC 2008
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Horde-Hatchery".
The branch, master has been updated
via df0f2bf52a1f118cc8de477fd3a6848a27f9466f (commit)
from 414a60b448c23fc14c4a0676b8aed953b0f5987e (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit df0f2bf52a1f118cc8de477fd3a6848a27f9466f
Author: Michael J. Rubinsky <mrubinsk at horde.org>
Date: Sun Nov 23 15:34:29 2008 -0500
Initial commit of my iPhoto2Ansel export plugin.
Very rough code, but it provides basic functionality at this point.
At this point, I believe it is iPhoto 7+ / OSX 10.5+ only. (I don't
have access to any other versions to test/class dump etc..)
Be gentle, this is my first "real" Cocoa/Objective C proect, but am
always happy to receive constructive feedback...
If you want to run this in the debugger, you need to add a
"Custom Executable" to the xcode project. This setting is stored in the
user specific project file, which is ignored in git since it changes just
about everytime you open the project.
-----------------------------------------------------------------------
Summary of changes:
iPhoto2Ansel/.gitignore | 4 +
iPhoto2Ansel/AnselExportController.h | 67 +
iPhoto2Ansel/AnselExportController.m | 394 ++++++
iPhoto2Ansel/AnselExportPluginBox.h | 19 +
iPhoto2Ansel/AnselExportPluginBox.m | 38 +
iPhoto2Ansel/English.lproj/InfoPlist.strings | Bin 0 -> 204 bytes
iPhoto2Ansel/English.lproj/Panel.nib/classes.nib | 86 ++
iPhoto2Ansel/English.lproj/Panel.nib/info.nib | 20 +
.../English.lproj/Panel.nib/keyedobjects.nib | Bin 0 -> 15499 bytes
iPhoto2Ansel/ExportImageProtocol.h | 133 ++
iPhoto2Ansel/ExportPluginBoxProtocol.h | 30 +
iPhoto2Ansel/ExportPluginProtocol.h | 106 ++
iPhoto2Ansel/FBProgressController.h | 68 +
iPhoto2Ansel/FBProgressController.m | 107 ++
iPhoto2Ansel/Info.plist | 28 +
iPhoto2Ansel/InterThreadMessaging.h | 147 +++
iPhoto2Ansel/InterThreadMessaging.m | 445 +++++++
iPhoto2Ansel/ProgressSheet.nib/classes.nib | 13 +
iPhoto2Ansel/ProgressSheet.nib/info.nib | 16 +
iPhoto2Ansel/ProgressSheet.nib/keyedobjects.nib | Bin 0 -> 4239 bytes
iPhoto2Ansel/TURAnsel.h | 57 +
iPhoto2Ansel/TURAnsel.m | 259 ++++
iPhoto2Ansel/TURAnselGallery.h | 57 +
iPhoto2Ansel/TURAnselGallery.m | 205 +++
iPhoto2Ansel/TURXMLConnection.h | 38 +
iPhoto2Ansel/TURXMLConnection.m | 129 ++
iPhoto2Ansel/XMLRPC-Info.plist | 20 +
iPhoto2Ansel/XMLRPC.framework/Headers | 1 +
iPhoto2Ansel/XMLRPC.framework/Resources | 1 +
.../XMLRPC.framework/Versions/A/Headers/XMLRPC.h | 33 +
.../Versions/A/Headers/XMLRPCConnection.h | 73 +
.../Versions/A/Headers/XMLRPCRequest.h | 73 +
.../Versions/A/Headers/XMLRPCResponse.h | 60 +
.../A/Resources/English.lproj/Localizable.strings | 3 +
.../Versions/A/Resources/Info.plist | 22 +
iPhoto2Ansel/XMLRPC.framework/Versions/A/XMLRPC | Bin 0 -> 80640 bytes
iPhoto2Ansel/XMLRPC.framework/Versions/Current | 1 +
iPhoto2Ansel/XMLRPC.framework/XMLRPC | 1 +
.../iPhoto2Ansel.xcodeproj/mrubinsk.mode1v3 | 1374 ++++++++++++++++++++
.../iPhoto2Ansel.xcodeproj/project.pbxproj | 610 +++++++++
iPhoto2Ansel/iPhoto2Ansel_Prefix.pch | 7 +
.../xmlrpc-1.5.1/Additions/NSDataAdditions.h | 39 +
.../xmlrpc-1.5.1/Additions/NSDataAdditions.m | 125 ++
.../xmlrpc-1.5.1/Additions/NSStringAdditions.h | 39 +
.../xmlrpc-1.5.1/Additions/NSStringAdditions.m | 119 ++
iPhoto2Ansel/xmlrpc-1.5.1/Info.plist | 27 +
iPhoto2Ansel/xmlrpc-1.5.1/LICENSE | 23 +
.../Languages/English.lproj/Localizable.strings | 3 +
iPhoto2Ansel/xmlrpc-1.5.1/README | 208 +++
iPhoto2Ansel/xmlrpc-1.5.1/XMLRPC.h | 33 +
iPhoto2Ansel/xmlrpc-1.5.1/XMLRPC.pch | 33 +
iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCConnection.h | 73 +
iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCConnection.m | 188 +++
iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCDecoder.h | 48 +
iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCDecoder.m | 305 +++++
iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCEncoder.h | 53 +
iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCEncoder.m | 285 ++++
iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCRequest.h | 73 +
iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCRequest.m | 142 ++
iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCResponse.h | 60 +
iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCResponse.m | 105 ++
61 files changed, 6726 insertions(+), 0 deletions(-)
create mode 100644 iPhoto2Ansel/.gitignore
create mode 100644 iPhoto2Ansel/AnselExportController.h
create mode 100644 iPhoto2Ansel/AnselExportController.m
create mode 100644 iPhoto2Ansel/AnselExportPluginBox.h
create mode 100644 iPhoto2Ansel/AnselExportPluginBox.m
create mode 100755 iPhoto2Ansel/English.lproj/InfoPlist.strings
create mode 100644 iPhoto2Ansel/English.lproj/Panel.nib/classes.nib
create mode 100644 iPhoto2Ansel/English.lproj/Panel.nib/info.nib
create mode 100644 iPhoto2Ansel/English.lproj/Panel.nib/keyedobjects.nib
create mode 100755 iPhoto2Ansel/ExportImageProtocol.h
create mode 100755 iPhoto2Ansel/ExportPluginBoxProtocol.h
create mode 100755 iPhoto2Ansel/ExportPluginProtocol.h
create mode 100644 iPhoto2Ansel/FBProgressController.h
create mode 100644 iPhoto2Ansel/FBProgressController.m
create mode 100644 iPhoto2Ansel/Info.plist
create mode 100644 iPhoto2Ansel/InterThreadMessaging.h
create mode 100644 iPhoto2Ansel/InterThreadMessaging.m
create mode 100644 iPhoto2Ansel/ProgressSheet.nib/classes.nib
create mode 100644 iPhoto2Ansel/ProgressSheet.nib/info.nib
create mode 100644 iPhoto2Ansel/ProgressSheet.nib/keyedobjects.nib
create mode 100644 iPhoto2Ansel/TURAnsel.h
create mode 100644 iPhoto2Ansel/TURAnsel.m
create mode 100644 iPhoto2Ansel/TURAnselGallery.h
create mode 100644 iPhoto2Ansel/TURAnselGallery.m
create mode 100644 iPhoto2Ansel/TURXMLConnection.h
create mode 100644 iPhoto2Ansel/TURXMLConnection.m
create mode 100644 iPhoto2Ansel/XMLRPC-Info.plist
create mode 120000 iPhoto2Ansel/XMLRPC.framework/Headers
create mode 120000 iPhoto2Ansel/XMLRPC.framework/Resources
create mode 100644 iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPC.h
create mode 100644 iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPCConnection.h
create mode 100644 iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPCRequest.h
create mode 100644 iPhoto2Ansel/XMLRPC.framework/Versions/A/Headers/XMLRPCResponse.h
create mode 100644 iPhoto2Ansel/XMLRPC.framework/Versions/A/Resources/English.lproj/Localizable.strings
create mode 100644 iPhoto2Ansel/XMLRPC.framework/Versions/A/Resources/Info.plist
create mode 100755 iPhoto2Ansel/XMLRPC.framework/Versions/A/XMLRPC
create mode 120000 iPhoto2Ansel/XMLRPC.framework/Versions/Current
create mode 120000 iPhoto2Ansel/XMLRPC.framework/XMLRPC
create mode 100644 iPhoto2Ansel/iPhoto2Ansel.xcodeproj/mrubinsk.mode1v3
create mode 100644 iPhoto2Ansel/iPhoto2Ansel.xcodeproj/project.pbxproj
create mode 100644 iPhoto2Ansel/iPhoto2Ansel_Prefix.pch
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/Additions/NSDataAdditions.h
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/Additions/NSDataAdditions.m
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/Additions/NSStringAdditions.h
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/Additions/NSStringAdditions.m
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/Info.plist
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/LICENSE
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/Languages/English.lproj/Localizable.strings
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/README
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/XMLRPC.h
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/XMLRPC.pch
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCConnection.h
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCConnection.m
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCDecoder.h
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCDecoder.m
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCEncoder.h
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCEncoder.m
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCRequest.h
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCRequest.m
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCResponse.h
create mode 100644 iPhoto2Ansel/xmlrpc-1.5.1/XMLRPCResponse.m
hooks/post-receive
--
Horde-Hatchery
More information about the commits
mailing list