├── .gitignore ├── .travis.yml ├── COPYING ├── ChangeLog.deprecated ├── Documentation └── Templates │ └── menu.html ├── EtoileFoundation.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── TestEtoileFoundation.xcscheme ├── EtoileFoundationInfo.plist ├── EtoileThread ├── COPYING ├── ETObjectPipe.h ├── ETObjectPipe.m ├── ETThread.h ├── ETThread.m ├── ETThreadProxyReturn.h ├── ETThreadProxyReturn.m ├── ETThreadedObject.h ├── ETThreadedObject.m ├── GNUmakefile ├── INSTALL ├── Makefile ├── NEWS ├── NSObject+Futures.h ├── NSObject+Futures.m ├── NSObject+Threaded.h ├── NSObject+Threaded.m ├── README └── TestThread.m ├── EtoileXML ├── COPYING ├── ETXMLDeclaration.h ├── ETXMLDeclaration.m ├── ETXMLNode.h ├── ETXMLNode.m ├── ETXMLNullHandler.h ├── ETXMLNullHandler.m ├── ETXMLParser.h ├── ETXMLParser.m ├── ETXMLParserDelegate.h ├── ETXMLString.h ├── ETXMLString.m ├── ETXMLWriter.h ├── ETXMLWriter.m ├── ETXMLXHTML-IMParser.h ├── ETXMLXHTML-IMParser.m ├── EtoileXML-Info.plist ├── GNUmakefile ├── INSTALL ├── Macros.h ├── NEWS ├── NSAttributedString+HTML.h ├── NSAttributedString+HTML.m ├── ParserTest.m ├── README ├── TRXHTMLTest.h └── TRXHTMLTest.m ├── GNUmakefile ├── Headers ├── ETAdaptiveModelObject.h ├── ETByteSizeFormatter.h ├── ETCArray.h ├── ETClassMirror.h ├── ETCollection+HOM.h ├── ETCollection.h ├── ETCollectionViewpoint.h ├── ETEntityDescription.h ├── ETException.h ├── ETGetOptionsDictionary.h ├── ETHistory.h ├── ETIndexValuePair.h ├── ETInstanceVariableMirror.h ├── ETKeyValuePair.h ├── ETMethodMirror.h ├── ETModelDescriptionRepository.h ├── ETModelElementDescription.h ├── ETMutableObjectViewpoint.h ├── ETObjectMirror.h ├── ETPackageDescription.h ├── ETPlugInRegistry.h ├── ETPropertyDescription.h ├── ETPropertyValueCoding.h ├── ETProtocolMirror.h ├── ETReflection.h ├── ETRoleDescription.h ├── ETSocket.h ├── ETStackTraceRecorder.h ├── ETTranscript.h ├── ETUTI.h ├── ETUUID.h ├── ETUnionViewpoint.h ├── ETValidationResult.h ├── ETViewpoint.h ├── EtoileCompatibility.h ├── EtoileFoundation.h ├── Macros.h ├── NSArray+Etoile.h ├── NSData+Hash.h ├── NSDictionary+Etoile.h ├── NSFileHandle+Socket.h ├── NSFileManager+TempFile.h ├── NSIndexPath+Etoile.h ├── NSIndexSet+Etoile.h ├── NSInvocation+Etoile.h ├── NSMapTable+Etoile.h ├── NSObject+DoubleDispatch.h ├── NSObject+Etoile.h ├── NSObject+HOM.h ├── NSObject+Model.h ├── NSObject+Prototypes.h ├── NSObject+Trait.h ├── NSString+Etoile.h ├── ObjCXXHelpers.h ├── glibc_hack_unistd.h └── runtime.h ├── INSTALL.Cocoa.md ├── INSTALL.GNUstep.md ├── NEWS.md ├── README.md ├── Source ├── ETAdaptiveModelObject.m ├── ETByteSizeFormatter.m ├── ETCArray.c ├── ETClassMirror.m ├── ETCollection+HOM.m ├── ETCollection+HOMMethods.m ├── ETCollection.m ├── ETCollectionMutation+HOMMethods.m ├── ETCollectionViewpoint.m ├── ETEntityDescription.m ├── ETException.m ├── ETGetOptionsDictionary.m ├── ETHistory.m ├── ETIndexValuePair.m ├── ETInstanceVariableMirror.m ├── ETKeyValuePair.m ├── ETMethodMirror.m ├── ETModelDescriptionRepository.m ├── ETModelElementDescription.m ├── ETMutableObjectViewpoint.m ├── ETObjectMirror.m ├── ETPackageDescription.m ├── ETPlugInRegistry.m ├── ETPropertyDescription.m ├── ETPropertyValueCoding.m ├── ETProtocolMirror.m ├── ETReflection.m ├── ETRoleDescription.m ├── ETSocket.m ├── ETStackTraceRecorder.m ├── ETTranscript.m ├── ETUTI.m ├── ETUUID.m ├── ETUnionViewpoint.m ├── ETValidationResult.m ├── ETViewpoint.m ├── EtoileCompatibility.m ├── GNUmakefile.postamble ├── GNUstep.h ├── NSArray+Etoile.m ├── NSBlocks.m ├── NSData+Hash.m ├── NSDictionary+Etoile.m ├── NSFileHandle+Socket.m ├── NSFileManager+TempFile.m ├── NSIndexPath+Etoile.m ├── NSIndexSet+Etoile.m ├── NSInvocation+Etoile.m ├── NSMapTable+Etoile.m ├── NSObject+DoubleDispatch.m ├── NSObject+Etoile.m ├── NSObject+HOM.m ├── NSObject+Model.m ├── NSObject+Prototypes.m ├── NSObject+Trait.m └── NSString+Etoile.m ├── TODO.md ├── Tests ├── PlugInExample │ ├── Bundle-Plugin.tif │ ├── GNUmakefile │ ├── PlugInExample-Info.plist │ ├── PlugInExample.m │ └── PlugInExampleInfo.plist ├── TestBasicHOM.m ├── TestCollectionTrait.m ├── TestETCollectionHOM.m ├── TestEntityDescription.m ├── TestEtoileFoundationInfo.plist ├── TestIndexPath.m ├── TestMacros.m ├── TestModelAdditions.m ├── TestModelDescriptionRepository.m ├── TestPlugInRegistry.m ├── TestPrototypes.m ├── TestReflection.m ├── TestStackTraceRecorder.m ├── TestString.m ├── TestTrait.m ├── TestUTI.m ├── TestUUID.m └── TestViewpoint.m ├── UTIClassBindings.plist ├── UTIDefinitions.plist ├── iOSCompatibility ├── TestEtoileFoundation-Info.plist └── main.m ├── test-linux.sh └── test-macosx.sh /.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata 2 | *.xcworkspace 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog.deprecated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/ChangeLog.deprecated -------------------------------------------------------------------------------- /Documentation/Templates/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Documentation/Templates/menu.html -------------------------------------------------------------------------------- /EtoileFoundation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileFoundation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /EtoileFoundation.xcodeproj/xcshareddata/xcschemes/TestEtoileFoundation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileFoundation.xcodeproj/xcshareddata/xcschemes/TestEtoileFoundation.xcscheme -------------------------------------------------------------------------------- /EtoileFoundationInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileFoundationInfo.plist -------------------------------------------------------------------------------- /EtoileThread/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileThread/COPYING -------------------------------------------------------------------------------- /EtoileThread/ETObjectPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileThread/ETObjectPipe.h -------------------------------------------------------------------------------- /EtoileThread/ETObjectPipe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileThread/ETObjectPipe.m -------------------------------------------------------------------------------- /EtoileThread/ETThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileThread/ETThread.h -------------------------------------------------------------------------------- /EtoileThread/ETThread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileThread/ETThread.m -------------------------------------------------------------------------------- /EtoileThread/ETThreadProxyReturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileThread/ETThreadProxyReturn.h -------------------------------------------------------------------------------- /EtoileThread/ETThreadProxyReturn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileThread/ETThreadProxyReturn.m -------------------------------------------------------------------------------- /EtoileThread/ETThreadedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileThread/ETThreadedObject.h -------------------------------------------------------------------------------- /EtoileThread/ETThreadedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileThread/ETThreadedObject.m -------------------------------------------------------------------------------- /EtoileThread/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileThread/GNUmakefile -------------------------------------------------------------------------------- /EtoileThread/INSTALL: -------------------------------------------------------------------------------- 1 | ../INSTALL -------------------------------------------------------------------------------- /EtoileThread/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileThread/Makefile -------------------------------------------------------------------------------- /EtoileThread/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileThread/NEWS -------------------------------------------------------------------------------- /EtoileThread/NSObject+Futures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileThread/NSObject+Futures.h -------------------------------------------------------------------------------- /EtoileThread/NSObject+Futures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileThread/NSObject+Futures.m -------------------------------------------------------------------------------- /EtoileThread/NSObject+Threaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileThread/NSObject+Threaded.h -------------------------------------------------------------------------------- /EtoileThread/NSObject+Threaded.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileThread/NSObject+Threaded.m -------------------------------------------------------------------------------- /EtoileThread/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileThread/README -------------------------------------------------------------------------------- /EtoileThread/TestThread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileThread/TestThread.m -------------------------------------------------------------------------------- /EtoileXML/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/COPYING -------------------------------------------------------------------------------- /EtoileXML/ETXMLDeclaration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/ETXMLDeclaration.h -------------------------------------------------------------------------------- /EtoileXML/ETXMLDeclaration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/ETXMLDeclaration.m -------------------------------------------------------------------------------- /EtoileXML/ETXMLNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/ETXMLNode.h -------------------------------------------------------------------------------- /EtoileXML/ETXMLNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/ETXMLNode.m -------------------------------------------------------------------------------- /EtoileXML/ETXMLNullHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/ETXMLNullHandler.h -------------------------------------------------------------------------------- /EtoileXML/ETXMLNullHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/ETXMLNullHandler.m -------------------------------------------------------------------------------- /EtoileXML/ETXMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/ETXMLParser.h -------------------------------------------------------------------------------- /EtoileXML/ETXMLParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/ETXMLParser.m -------------------------------------------------------------------------------- /EtoileXML/ETXMLParserDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/ETXMLParserDelegate.h -------------------------------------------------------------------------------- /EtoileXML/ETXMLString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/ETXMLString.h -------------------------------------------------------------------------------- /EtoileXML/ETXMLString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/ETXMLString.m -------------------------------------------------------------------------------- /EtoileXML/ETXMLWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/ETXMLWriter.h -------------------------------------------------------------------------------- /EtoileXML/ETXMLWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/ETXMLWriter.m -------------------------------------------------------------------------------- /EtoileXML/ETXMLXHTML-IMParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/ETXMLXHTML-IMParser.h -------------------------------------------------------------------------------- /EtoileXML/ETXMLXHTML-IMParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/ETXMLXHTML-IMParser.m -------------------------------------------------------------------------------- /EtoileXML/EtoileXML-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/EtoileXML-Info.plist -------------------------------------------------------------------------------- /EtoileXML/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/GNUmakefile -------------------------------------------------------------------------------- /EtoileXML/INSTALL: -------------------------------------------------------------------------------- 1 | ../INSTALL -------------------------------------------------------------------------------- /EtoileXML/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/Macros.h -------------------------------------------------------------------------------- /EtoileXML/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/NEWS -------------------------------------------------------------------------------- /EtoileXML/NSAttributedString+HTML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/NSAttributedString+HTML.h -------------------------------------------------------------------------------- /EtoileXML/NSAttributedString+HTML.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/NSAttributedString+HTML.m -------------------------------------------------------------------------------- /EtoileXML/ParserTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/ParserTest.m -------------------------------------------------------------------------------- /EtoileXML/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/README -------------------------------------------------------------------------------- /EtoileXML/TRXHTMLTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/TRXHTMLTest.h -------------------------------------------------------------------------------- /EtoileXML/TRXHTMLTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/EtoileXML/TRXHTMLTest.m -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/GNUmakefile -------------------------------------------------------------------------------- /Headers/ETAdaptiveModelObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETAdaptiveModelObject.h -------------------------------------------------------------------------------- /Headers/ETByteSizeFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETByteSizeFormatter.h -------------------------------------------------------------------------------- /Headers/ETCArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETCArray.h -------------------------------------------------------------------------------- /Headers/ETClassMirror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETClassMirror.h -------------------------------------------------------------------------------- /Headers/ETCollection+HOM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETCollection+HOM.h -------------------------------------------------------------------------------- /Headers/ETCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETCollection.h -------------------------------------------------------------------------------- /Headers/ETCollectionViewpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETCollectionViewpoint.h -------------------------------------------------------------------------------- /Headers/ETEntityDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETEntityDescription.h -------------------------------------------------------------------------------- /Headers/ETException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETException.h -------------------------------------------------------------------------------- /Headers/ETGetOptionsDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETGetOptionsDictionary.h -------------------------------------------------------------------------------- /Headers/ETHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETHistory.h -------------------------------------------------------------------------------- /Headers/ETIndexValuePair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETIndexValuePair.h -------------------------------------------------------------------------------- /Headers/ETInstanceVariableMirror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETInstanceVariableMirror.h -------------------------------------------------------------------------------- /Headers/ETKeyValuePair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETKeyValuePair.h -------------------------------------------------------------------------------- /Headers/ETMethodMirror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETMethodMirror.h -------------------------------------------------------------------------------- /Headers/ETModelDescriptionRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETModelDescriptionRepository.h -------------------------------------------------------------------------------- /Headers/ETModelElementDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETModelElementDescription.h -------------------------------------------------------------------------------- /Headers/ETMutableObjectViewpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETMutableObjectViewpoint.h -------------------------------------------------------------------------------- /Headers/ETObjectMirror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETObjectMirror.h -------------------------------------------------------------------------------- /Headers/ETPackageDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETPackageDescription.h -------------------------------------------------------------------------------- /Headers/ETPlugInRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETPlugInRegistry.h -------------------------------------------------------------------------------- /Headers/ETPropertyDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETPropertyDescription.h -------------------------------------------------------------------------------- /Headers/ETPropertyValueCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETPropertyValueCoding.h -------------------------------------------------------------------------------- /Headers/ETProtocolMirror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETProtocolMirror.h -------------------------------------------------------------------------------- /Headers/ETReflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETReflection.h -------------------------------------------------------------------------------- /Headers/ETRoleDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETRoleDescription.h -------------------------------------------------------------------------------- /Headers/ETSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETSocket.h -------------------------------------------------------------------------------- /Headers/ETStackTraceRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETStackTraceRecorder.h -------------------------------------------------------------------------------- /Headers/ETTranscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETTranscript.h -------------------------------------------------------------------------------- /Headers/ETUTI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETUTI.h -------------------------------------------------------------------------------- /Headers/ETUUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETUUID.h -------------------------------------------------------------------------------- /Headers/ETUnionViewpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETUnionViewpoint.h -------------------------------------------------------------------------------- /Headers/ETValidationResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETValidationResult.h -------------------------------------------------------------------------------- /Headers/ETViewpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ETViewpoint.h -------------------------------------------------------------------------------- /Headers/EtoileCompatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/EtoileCompatibility.h -------------------------------------------------------------------------------- /Headers/EtoileFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/EtoileFoundation.h -------------------------------------------------------------------------------- /Headers/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/Macros.h -------------------------------------------------------------------------------- /Headers/NSArray+Etoile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/NSArray+Etoile.h -------------------------------------------------------------------------------- /Headers/NSData+Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/NSData+Hash.h -------------------------------------------------------------------------------- /Headers/NSDictionary+Etoile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/NSDictionary+Etoile.h -------------------------------------------------------------------------------- /Headers/NSFileHandle+Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/NSFileHandle+Socket.h -------------------------------------------------------------------------------- /Headers/NSFileManager+TempFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/NSFileManager+TempFile.h -------------------------------------------------------------------------------- /Headers/NSIndexPath+Etoile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/NSIndexPath+Etoile.h -------------------------------------------------------------------------------- /Headers/NSIndexSet+Etoile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/NSIndexSet+Etoile.h -------------------------------------------------------------------------------- /Headers/NSInvocation+Etoile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/NSInvocation+Etoile.h -------------------------------------------------------------------------------- /Headers/NSMapTable+Etoile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/NSMapTable+Etoile.h -------------------------------------------------------------------------------- /Headers/NSObject+DoubleDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/NSObject+DoubleDispatch.h -------------------------------------------------------------------------------- /Headers/NSObject+Etoile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/NSObject+Etoile.h -------------------------------------------------------------------------------- /Headers/NSObject+HOM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/NSObject+HOM.h -------------------------------------------------------------------------------- /Headers/NSObject+Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/NSObject+Model.h -------------------------------------------------------------------------------- /Headers/NSObject+Prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/NSObject+Prototypes.h -------------------------------------------------------------------------------- /Headers/NSObject+Trait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/NSObject+Trait.h -------------------------------------------------------------------------------- /Headers/NSString+Etoile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/NSString+Etoile.h -------------------------------------------------------------------------------- /Headers/ObjCXXHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/ObjCXXHelpers.h -------------------------------------------------------------------------------- /Headers/glibc_hack_unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Headers/glibc_hack_unistd.h -------------------------------------------------------------------------------- /Headers/runtime.h: -------------------------------------------------------------------------------- 1 | #import 2 | -------------------------------------------------------------------------------- /INSTALL.Cocoa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/INSTALL.Cocoa.md -------------------------------------------------------------------------------- /INSTALL.GNUstep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/INSTALL.GNUstep.md -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/README.md -------------------------------------------------------------------------------- /Source/ETAdaptiveModelObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETAdaptiveModelObject.m -------------------------------------------------------------------------------- /Source/ETByteSizeFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETByteSizeFormatter.m -------------------------------------------------------------------------------- /Source/ETCArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETCArray.c -------------------------------------------------------------------------------- /Source/ETClassMirror.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETClassMirror.m -------------------------------------------------------------------------------- /Source/ETCollection+HOM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETCollection+HOM.m -------------------------------------------------------------------------------- /Source/ETCollection+HOMMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETCollection+HOMMethods.m -------------------------------------------------------------------------------- /Source/ETCollection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETCollection.m -------------------------------------------------------------------------------- /Source/ETCollectionMutation+HOMMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETCollectionMutation+HOMMethods.m -------------------------------------------------------------------------------- /Source/ETCollectionViewpoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETCollectionViewpoint.m -------------------------------------------------------------------------------- /Source/ETEntityDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETEntityDescription.m -------------------------------------------------------------------------------- /Source/ETException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETException.m -------------------------------------------------------------------------------- /Source/ETGetOptionsDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETGetOptionsDictionary.m -------------------------------------------------------------------------------- /Source/ETHistory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETHistory.m -------------------------------------------------------------------------------- /Source/ETIndexValuePair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETIndexValuePair.m -------------------------------------------------------------------------------- /Source/ETInstanceVariableMirror.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETInstanceVariableMirror.m -------------------------------------------------------------------------------- /Source/ETKeyValuePair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETKeyValuePair.m -------------------------------------------------------------------------------- /Source/ETMethodMirror.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETMethodMirror.m -------------------------------------------------------------------------------- /Source/ETModelDescriptionRepository.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETModelDescriptionRepository.m -------------------------------------------------------------------------------- /Source/ETModelElementDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETModelElementDescription.m -------------------------------------------------------------------------------- /Source/ETMutableObjectViewpoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETMutableObjectViewpoint.m -------------------------------------------------------------------------------- /Source/ETObjectMirror.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETObjectMirror.m -------------------------------------------------------------------------------- /Source/ETPackageDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETPackageDescription.m -------------------------------------------------------------------------------- /Source/ETPlugInRegistry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETPlugInRegistry.m -------------------------------------------------------------------------------- /Source/ETPropertyDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETPropertyDescription.m -------------------------------------------------------------------------------- /Source/ETPropertyValueCoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETPropertyValueCoding.m -------------------------------------------------------------------------------- /Source/ETProtocolMirror.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETProtocolMirror.m -------------------------------------------------------------------------------- /Source/ETReflection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETReflection.m -------------------------------------------------------------------------------- /Source/ETRoleDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETRoleDescription.m -------------------------------------------------------------------------------- /Source/ETSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETSocket.m -------------------------------------------------------------------------------- /Source/ETStackTraceRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETStackTraceRecorder.m -------------------------------------------------------------------------------- /Source/ETTranscript.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETTranscript.m -------------------------------------------------------------------------------- /Source/ETUTI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETUTI.m -------------------------------------------------------------------------------- /Source/ETUUID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETUUID.m -------------------------------------------------------------------------------- /Source/ETUnionViewpoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETUnionViewpoint.m -------------------------------------------------------------------------------- /Source/ETValidationResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETValidationResult.m -------------------------------------------------------------------------------- /Source/ETViewpoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/ETViewpoint.m -------------------------------------------------------------------------------- /Source/EtoileCompatibility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/EtoileCompatibility.m -------------------------------------------------------------------------------- /Source/GNUmakefile.postamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/GNUmakefile.postamble -------------------------------------------------------------------------------- /Source/GNUstep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/GNUstep.h -------------------------------------------------------------------------------- /Source/NSArray+Etoile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/NSArray+Etoile.m -------------------------------------------------------------------------------- /Source/NSBlocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/NSBlocks.m -------------------------------------------------------------------------------- /Source/NSData+Hash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/NSData+Hash.m -------------------------------------------------------------------------------- /Source/NSDictionary+Etoile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/NSDictionary+Etoile.m -------------------------------------------------------------------------------- /Source/NSFileHandle+Socket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/NSFileHandle+Socket.m -------------------------------------------------------------------------------- /Source/NSFileManager+TempFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/NSFileManager+TempFile.m -------------------------------------------------------------------------------- /Source/NSIndexPath+Etoile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/NSIndexPath+Etoile.m -------------------------------------------------------------------------------- /Source/NSIndexSet+Etoile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/NSIndexSet+Etoile.m -------------------------------------------------------------------------------- /Source/NSInvocation+Etoile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/NSInvocation+Etoile.m -------------------------------------------------------------------------------- /Source/NSMapTable+Etoile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/NSMapTable+Etoile.m -------------------------------------------------------------------------------- /Source/NSObject+DoubleDispatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/NSObject+DoubleDispatch.m -------------------------------------------------------------------------------- /Source/NSObject+Etoile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/NSObject+Etoile.m -------------------------------------------------------------------------------- /Source/NSObject+HOM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/NSObject+HOM.m -------------------------------------------------------------------------------- /Source/NSObject+Model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/NSObject+Model.m -------------------------------------------------------------------------------- /Source/NSObject+Prototypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/NSObject+Prototypes.m -------------------------------------------------------------------------------- /Source/NSObject+Trait.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/NSObject+Trait.m -------------------------------------------------------------------------------- /Source/NSString+Etoile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Source/NSString+Etoile.m -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/TODO.md -------------------------------------------------------------------------------- /Tests/PlugInExample/Bundle-Plugin.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/PlugInExample/Bundle-Plugin.tif -------------------------------------------------------------------------------- /Tests/PlugInExample/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/PlugInExample/GNUmakefile -------------------------------------------------------------------------------- /Tests/PlugInExample/PlugInExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/PlugInExample/PlugInExample-Info.plist -------------------------------------------------------------------------------- /Tests/PlugInExample/PlugInExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/PlugInExample/PlugInExample.m -------------------------------------------------------------------------------- /Tests/PlugInExample/PlugInExampleInfo.plist: -------------------------------------------------------------------------------- 1 | PlugInExample-Info.plist -------------------------------------------------------------------------------- /Tests/TestBasicHOM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/TestBasicHOM.m -------------------------------------------------------------------------------- /Tests/TestCollectionTrait.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/TestCollectionTrait.m -------------------------------------------------------------------------------- /Tests/TestETCollectionHOM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/TestETCollectionHOM.m -------------------------------------------------------------------------------- /Tests/TestEntityDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/TestEntityDescription.m -------------------------------------------------------------------------------- /Tests/TestEtoileFoundationInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/TestEtoileFoundationInfo.plist -------------------------------------------------------------------------------- /Tests/TestIndexPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/TestIndexPath.m -------------------------------------------------------------------------------- /Tests/TestMacros.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/TestMacros.m -------------------------------------------------------------------------------- /Tests/TestModelAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/TestModelAdditions.m -------------------------------------------------------------------------------- /Tests/TestModelDescriptionRepository.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/TestModelDescriptionRepository.m -------------------------------------------------------------------------------- /Tests/TestPlugInRegistry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/TestPlugInRegistry.m -------------------------------------------------------------------------------- /Tests/TestPrototypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/TestPrototypes.m -------------------------------------------------------------------------------- /Tests/TestReflection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/TestReflection.m -------------------------------------------------------------------------------- /Tests/TestStackTraceRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/TestStackTraceRecorder.m -------------------------------------------------------------------------------- /Tests/TestString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/TestString.m -------------------------------------------------------------------------------- /Tests/TestTrait.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/TestTrait.m -------------------------------------------------------------------------------- /Tests/TestUTI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/TestUTI.m -------------------------------------------------------------------------------- /Tests/TestUUID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/TestUUID.m -------------------------------------------------------------------------------- /Tests/TestViewpoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/Tests/TestViewpoint.m -------------------------------------------------------------------------------- /UTIClassBindings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/UTIClassBindings.plist -------------------------------------------------------------------------------- /UTIDefinitions.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/UTIDefinitions.plist -------------------------------------------------------------------------------- /iOSCompatibility/TestEtoileFoundation-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/iOSCompatibility/TestEtoileFoundation-Info.plist -------------------------------------------------------------------------------- /iOSCompatibility/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/iOSCompatibility/main.m -------------------------------------------------------------------------------- /test-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/test-linux.sh -------------------------------------------------------------------------------- /test-macosx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etoile/EtoileFoundation/HEAD/test-macosx.sh --------------------------------------------------------------------------------