├── .gitattributes ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── .travis.yml ├── AppledocSettings.plist ├── Core ├── DTFoundation-Info.plist ├── DTFoundation-Prefix.pch ├── DTFoundation.h ├── Source │ ├── DTASN1 │ │ ├── DTASN1BitString.h │ │ ├── DTASN1BitString.m │ │ ├── DTASN1Parser.h │ │ ├── DTASN1Parser.m │ │ ├── DTASN1Serialization.h │ │ └── DTASN1Serialization.m │ ├── DTAWS │ │ ├── NSURL+DTAWS.h │ │ └── NSURL+DTAWS.m │ ├── DTAsyncFileDeleter │ │ ├── DTAsyncFileDeleter.h │ │ └── DTAsyncFileDeleter.m │ ├── DTBase64Coding.h │ ├── DTBase64Coding.m │ ├── DTBlockFunctions.h │ ├── DTBlockFunctions.m │ ├── DTCompatibility.h │ ├── DTCoreGraphicsUtils.h │ ├── DTCoreGraphicsUtils.m │ ├── DTExtendedFileAttributes.h │ ├── DTExtendedFileAttributes.m │ ├── DTFolderMonitor.h │ ├── DTFolderMonitor.m │ ├── DTFoundationConstants.h │ ├── DTFoundationConstants.m │ ├── DTHTMLParser │ │ ├── DTHTMLParser.h │ │ └── DTHTMLParser.m │ ├── DTLog.h │ ├── DTLog.m │ ├── DTReachability │ │ ├── DTReachability.h │ │ └── DTReachability.m │ ├── DTSQLite │ │ ├── DTSQLiteDatabase.h │ │ ├── DTSQLiteDatabase.m │ │ ├── DTSQLiteFunctions.h │ │ └── DTSQLiteFunctions.m │ ├── DTScripting │ │ ├── DTScriptExpression.h │ │ ├── DTScriptExpression.m │ │ ├── DTScriptVariable.h │ │ ├── DTScriptVariable.m │ │ ├── NSScanner+DTScripting.h │ │ └── NSScanner+DTScripting.m │ ├── DTUTI │ │ ├── NSString+DTUTI.h │ │ └── NSString+DTUTI.m │ ├── DTVersion.h │ ├── DTVersion.m │ ├── DTWeakSupport.h │ ├── DTZipArchive │ │ ├── DTZipArchive.h │ │ ├── DTZipArchive.m │ │ ├── DTZipArchiveGZip.h │ │ ├── DTZipArchiveGZip.m │ │ ├── DTZipArchiveNode.h │ │ ├── DTZipArchiveNode.m │ │ ├── DTZipArchivePKZip.h │ │ └── DTZipArchivePKZip.m │ ├── Externals │ │ └── minizip │ │ │ ├── crypt.h │ │ │ ├── ioapi.c │ │ │ ├── ioapi.h │ │ │ ├── mztools.c │ │ │ ├── mztools.h │ │ │ ├── unzip.c │ │ │ ├── unzip.h │ │ │ ├── zip.c │ │ │ └── zip.h │ ├── NSArray+DTError.h │ ├── NSArray+DTError.m │ ├── NSData+DTCrypto.h │ ├── NSData+DTCrypto.m │ ├── NSDictionary+DTError.h │ ├── NSDictionary+DTError.m │ ├── NSFileWrapper+DTCopying.h │ ├── NSFileWrapper+DTCopying.m │ ├── NSMutableArray+DTMoving.h │ ├── NSMutableArray+DTMoving.m │ ├── NSString+DTFormatNumbers.h │ ├── NSString+DTFormatNumbers.m │ ├── NSString+DTPaths.h │ ├── NSString+DTPaths.m │ ├── NSString+DTURLEncoding.h │ ├── NSString+DTURLEncoding.m │ ├── NSString+DTUtilities.h │ ├── NSString+DTUtilities.m │ ├── NSURL+DTComparing.h │ ├── NSURL+DTComparing.m │ ├── NSURL+DTUnshorten.h │ ├── NSURL+DTUnshorten.m │ ├── OSX │ │ ├── DTScrollView.h │ │ ├── DTScrollView.m │ │ ├── NSDocument+DTFoundation.h │ │ ├── NSDocument+DTFoundation.m │ │ ├── NSImage+DTUtilities.h │ │ ├── NSImage+DTUtilities.m │ │ ├── NSValue+DTConversion.h │ │ ├── NSValue+DTConversion.m │ │ ├── NSView+DTAutoLayout.h │ │ ├── NSView+DTAutoLayout.m │ │ ├── NSWindowController+DTPanelControllerPresenting.h │ │ └── NSWindowController+DTPanelControllerPresenting.m │ ├── Runtime │ │ ├── DTObjectBlockExecutor.h │ │ ├── DTObjectBlockExecutor.m │ │ ├── NSObject+DTRuntime.h │ │ └── NSObject+DTRuntime.m │ └── iOS │ │ ├── BlocksAdditions │ │ ├── DTActionSheet.h │ │ ├── DTActionSheet.m │ │ ├── DTAlertView.h │ │ ├── DTAlertView.m │ │ ├── UIView+DTActionHandlers.h │ │ └── UIView+DTActionHandlers.m │ │ ├── DTActivityTitleView.h │ │ ├── DTActivityTitleView.m │ │ ├── DTAnimatedGIF │ │ ├── DTAnimatedGIF.h │ │ └── DTAnimatedGIF.m │ │ ├── DTCustomColoredAccessory.h │ │ ├── DTCustomColoredAccessory.m │ │ ├── DTPieProgressIndicator.h │ │ ├── DTPieProgressIndicator.m │ │ ├── DTProgressHUD │ │ ├── DTProgressHUD.h │ │ ├── DTProgressHUD.m │ │ ├── DTProgressHUDWindow.h │ │ └── DTProgressHUDWindow.m │ │ ├── DTSidePanel │ │ ├── DTSidePanelController.h │ │ ├── DTSidePanelController.m │ │ ├── DTSidePanelControllerSegue.h │ │ ├── DTSidePanelControllerSegue.m │ │ ├── DTSidePanelPanGestureRecognizer.h │ │ ├── DTSidePanelPanGestureRecognizer.m │ │ ├── UIViewController+DTSidePanelController.h │ │ └── UIViewController+DTSidePanelController.m │ │ ├── DTSmartPagingScrollView.h │ │ ├── DTSmartPagingScrollView.m │ │ ├── DTTiledLayerWithoutFade.h │ │ ├── DTTiledLayerWithoutFade.m │ │ ├── Debug │ │ ├── UIColor+DTDebug.h │ │ ├── UIColor+DTDebug.m │ │ ├── UIView+DTDebug.h │ │ └── UIView+DTDebug.m │ │ ├── NSURL+DTAppLinks.h │ │ ├── NSURL+DTAppLinks.m │ │ ├── UIApplication+DTNetworkActivity.h │ │ ├── UIApplication+DTNetworkActivity.m │ │ ├── UIImage+DTFoundation.h │ │ ├── UIImage+DTFoundation.m │ │ ├── UIScreen+DTFoundation.h │ │ ├── UIScreen+DTFoundation.m │ │ ├── UIView+DTFoundation.h │ │ └── UIView+DTFoundation.m └── include │ └── DTFoundation │ ├── DTASN1Parser.h │ ├── DTASN1Serialization.h │ ├── DTActionSheet.h │ ├── DTActivityTitleView.h │ ├── DTAlertView.h │ ├── DTAnimatedGIF.h │ ├── DTAsyncFileDeleter.h │ ├── DTBase64Coding.h │ ├── DTBlockFunctions.h │ ├── DTCompatibility.h │ ├── DTCoreGraphicsUtils.h │ ├── DTCustomColoredAccessory.h │ ├── DTExtendedFileAttributes.h │ ├── DTFolderMonitor.h │ ├── DTFoundationConstants.h │ ├── DTHTMLParser.h │ ├── DTLog.h │ ├── DTObjectBlockExecutor.h │ ├── DTPieProgressIndicator.h │ ├── DTProgressHUD.h │ ├── DTProgressHUDWindow.h │ ├── DTReachability.h │ ├── DTSQLiteDatabase.h │ ├── DTSQLiteFunctions.h │ ├── DTScriptExpression.h │ ├── DTScriptVariable.h │ ├── DTScrollView.h │ ├── DTSidePanelController.h │ ├── DTSidePanelControllerSegue.h │ ├── DTSidePanelPanGestureRecognizer.h │ ├── DTSmartPagingScrollView.h │ ├── DTTiledLayerWithoutFade.h │ ├── DTVersion.h │ ├── DTWeakSupport.h │ ├── DTZipArchive.h │ ├── DTZipArchiveGZip.h │ ├── DTZipArchiveNode.h │ ├── DTZipArchivePKZip.h │ ├── NSArray+DTError.h │ ├── NSData+DTCrypto.h │ ├── NSDictionary+DTError.h │ ├── NSDocument+DTFoundation.h │ ├── NSFileWrapper+DTCopying.h │ ├── NSImage+DTUtilities.h │ ├── NSMutableArray+DTMoving.h │ ├── NSObject+DTRuntime.h │ ├── NSScanner+DTScripting.h │ ├── NSString+DTFormatNumbers.h │ ├── NSString+DTPaths.h │ ├── NSString+DTURLEncoding.h │ ├── NSString+DTUTI.h │ ├── NSString+DTUtilities.h │ ├── NSURL+DTAWS.h │ ├── NSURL+DTAppLinks.h │ ├── NSURL+DTComparing.h │ ├── NSURL+DTUnshorten.h │ ├── NSValue+DTConversion.h │ ├── NSView+DTAutoLayout.h │ ├── NSWindowController+DTPanelControllerPresenting.h │ ├── UIApplication+DTNetworkActivity.h │ ├── UIColor+DTDebug.h │ ├── UIImage+DTFoundation.h │ ├── UIScreen+DTFoundation.h │ ├── UIView+DTActionHandlers.h │ ├── UIView+DTDebug.h │ ├── UIView+DTFoundation.h │ └── UIViewController+DTSidePanelController.h ├── DTFoundation.podspec ├── DTFoundation.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── DTFoundation (OSX).xcscheme │ ├── DTFoundation (iOS).xcscheme │ ├── DTFoundation (tvOS).xcscheme │ ├── DTFoundation-Package.xcscheme │ ├── DTProgressHUD Demo.xcscheme │ ├── DTReachability Demo.xcscheme │ ├── DTSidePanels Demo.xcscheme │ ├── DTZipArchive Demo.xcscheme │ ├── Static Library (Mac).xcscheme │ ├── Static Library (tvOS).xcscheme │ ├── Static Library.xcscheme │ └── Unit Tests.xcscheme ├── Demo ├── DTActionSheetDemo │ ├── DTActionSheetDemo-Info.plist │ ├── DTActionSheetDemo-Prefix.pch │ ├── Resources │ │ ├── ActionSheetStoryboard.storyboard │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── Source │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── DTAnimatedGIF │ ├── DTAnimatedGIFDemo-Info.plist │ ├── DTAnimatedGIFDemo-Prefix.pch │ ├── Resources │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage │ │ │ │ └── Contents.json │ │ └── simpson20.gif │ └── Source │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── GIFViewController.h │ │ ├── GIFViewController.m │ │ └── main.m ├── DTProgressHUDDemo │ ├── DTProgressHUDDemo-Info.plist │ ├── DTProgressHUDDemo-Prefix.pch │ ├── Resources │ │ ├── Base.lproj │ │ │ ├── Main_iPad.storyboard │ │ │ └── Main_iPhone.storyboard │ │ └── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ │ ├── Mandel.imageset │ │ │ ├── Contents.json │ │ │ └── mandel.png │ │ │ ├── RotatedStar.imageset │ │ │ ├── Contents.json │ │ │ └── Rotated_Star.png │ │ │ └── Star.imageset │ │ │ ├── Contents.json │ │ │ └── Notification_Favorites_Icon.png │ └── Source │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── DTReachability │ ├── DTReachability-Info.plist │ ├── DTReachability-Prefix.pch │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── ViewController.xib │ └── Source │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── DTSidePanels │ ├── DTSidePanels-Info.plist │ ├── DTSidePanels-Prefix.pch │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── DemoViewController.xib │ │ ├── ModalPanelViewController.xib │ │ ├── toolbar-icon-menu.png │ │ └── toolbar-icon-menu@2x.png │ └── Source │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── DemoViewController.h │ │ ├── DemoViewController.m │ │ ├── LoggingNavigationController.h │ │ ├── LoggingNavigationController.m │ │ ├── ModalPanelViewController.h │ │ ├── ModalPanelViewController.m │ │ ├── TableViewController.h │ │ ├── TableViewController.m │ │ └── main.m └── DTZipArchiveDemo │ ├── DTZipArchiveDemo-Info.plist │ ├── DTZipArchiveDemo-Prefix.pch │ ├── Resources │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ └── Storyboard.storyboard │ └── Source │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── ViewController.h │ ├── ViewController.m │ ├── ZIpArchiveModel.h │ ├── ZipArchiveCell.h │ ├── ZipArchiveCell.m │ ├── ZipArchiveManager.h │ ├── ZipArchiveManager.m │ ├── ZipArchiveModel.m │ ├── ZipNodeViewController.h │ ├── ZipNodeViewController.m │ └── main.m ├── Documentation ├── AppKit Subspec-template.markdown ├── Change Log-template.markdown ├── Core Subspec-template.markdown ├── LICENSE ├── Other Subspecs-template.markdown ├── Setup Guide-template.markdown ├── UIKit Blocks Subspec-template.markdown └── UIKit Subspec-template.markdown ├── LICENSE ├── Package.swift ├── README.md ├── Test ├── Resources │ ├── ArraySample.plist │ ├── DictionarySample.plist │ ├── SelfSigned.der │ ├── gzip_sample.txt-gz │ ├── gzip_sample.txt-z │ ├── gzip_sample.txt.foo │ ├── gzip_sample.txt.gz │ ├── gzip_sample.txt.original │ ├── gzip_sample_invalid.gz │ ├── html_doctype.html │ ├── processing_instruction.html │ ├── sample.zip │ ├── screenshot.png.dat │ └── zipContent │ │ ├── Franz.txt │ │ ├── Oliver.txt │ │ ├── Rene │ │ └── Stefan.txt ├── Source │ ├── DTASN1SerializationTest.h │ ├── DTASN1SerializationTest.m │ ├── DTActionSheetTest.m │ ├── DTAlertViewTest.m │ ├── DTBase64CodingTest.h │ ├── DTBase64CodingTest.m │ ├── DTBlockFunctionsTest.h │ ├── DTBlockFunctionsTest.m │ ├── DTHTMLParserTest.h │ ├── DTHTMLParserTest.m │ ├── DTLogTest.m │ ├── DTScriptingTest.h │ ├── DTScriptingTest.m │ ├── DTVersionTest.h │ ├── DTVersionTest.m │ ├── DTZipArchiveTest.h │ ├── DTZipArchiveTest.m │ ├── NSArrayDTErrorTest.h │ ├── NSArrayDTErrorTest.m │ ├── NSDictionaryDTErrorTest.h │ ├── NSDictionaryDTErrorTest.m │ ├── NSStringDTPathsTest.h │ ├── NSStringDTPathsTest.m │ └── NSStringDTURLEncodingTest.m ├── UnitTests-Info.plist ├── UnitTests-Prefix.pch └── include │ ├── DTASN1BitString.h │ ├── DTScriptExpression.h │ ├── DTScriptVariable.h │ ├── DTZipArchive.h │ ├── DTZipArchiveGZip.h │ ├── DTZipArchiveNode.h │ ├── DTZipArchivePKZip.h │ └── NSScanner+DTScripting.h ├── coveralls.rb └── readme.markdown /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/.travis.yml -------------------------------------------------------------------------------- /AppledocSettings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/AppledocSettings.plist -------------------------------------------------------------------------------- /Core/DTFoundation-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/DTFoundation-Info.plist -------------------------------------------------------------------------------- /Core/DTFoundation-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/DTFoundation-Prefix.pch -------------------------------------------------------------------------------- /Core/DTFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/DTFoundation.h -------------------------------------------------------------------------------- /Core/Source/DTASN1/DTASN1BitString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTASN1/DTASN1BitString.h -------------------------------------------------------------------------------- /Core/Source/DTASN1/DTASN1BitString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTASN1/DTASN1BitString.m -------------------------------------------------------------------------------- /Core/Source/DTASN1/DTASN1Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTASN1/DTASN1Parser.h -------------------------------------------------------------------------------- /Core/Source/DTASN1/DTASN1Parser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTASN1/DTASN1Parser.m -------------------------------------------------------------------------------- /Core/Source/DTASN1/DTASN1Serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTASN1/DTASN1Serialization.h -------------------------------------------------------------------------------- /Core/Source/DTASN1/DTASN1Serialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTASN1/DTASN1Serialization.m -------------------------------------------------------------------------------- /Core/Source/DTAWS/NSURL+DTAWS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTAWS/NSURL+DTAWS.h -------------------------------------------------------------------------------- /Core/Source/DTAWS/NSURL+DTAWS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTAWS/NSURL+DTAWS.m -------------------------------------------------------------------------------- /Core/Source/DTAsyncFileDeleter/DTAsyncFileDeleter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTAsyncFileDeleter/DTAsyncFileDeleter.h -------------------------------------------------------------------------------- /Core/Source/DTAsyncFileDeleter/DTAsyncFileDeleter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTAsyncFileDeleter/DTAsyncFileDeleter.m -------------------------------------------------------------------------------- /Core/Source/DTBase64Coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTBase64Coding.h -------------------------------------------------------------------------------- /Core/Source/DTBase64Coding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTBase64Coding.m -------------------------------------------------------------------------------- /Core/Source/DTBlockFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTBlockFunctions.h -------------------------------------------------------------------------------- /Core/Source/DTBlockFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTBlockFunctions.m -------------------------------------------------------------------------------- /Core/Source/DTCompatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTCompatibility.h -------------------------------------------------------------------------------- /Core/Source/DTCoreGraphicsUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTCoreGraphicsUtils.h -------------------------------------------------------------------------------- /Core/Source/DTCoreGraphicsUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTCoreGraphicsUtils.m -------------------------------------------------------------------------------- /Core/Source/DTExtendedFileAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTExtendedFileAttributes.h -------------------------------------------------------------------------------- /Core/Source/DTExtendedFileAttributes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTExtendedFileAttributes.m -------------------------------------------------------------------------------- /Core/Source/DTFolderMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTFolderMonitor.h -------------------------------------------------------------------------------- /Core/Source/DTFolderMonitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTFolderMonitor.m -------------------------------------------------------------------------------- /Core/Source/DTFoundationConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTFoundationConstants.h -------------------------------------------------------------------------------- /Core/Source/DTFoundationConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTFoundationConstants.m -------------------------------------------------------------------------------- /Core/Source/DTHTMLParser/DTHTMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTHTMLParser/DTHTMLParser.h -------------------------------------------------------------------------------- /Core/Source/DTHTMLParser/DTHTMLParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTHTMLParser/DTHTMLParser.m -------------------------------------------------------------------------------- /Core/Source/DTLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTLog.h -------------------------------------------------------------------------------- /Core/Source/DTLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTLog.m -------------------------------------------------------------------------------- /Core/Source/DTReachability/DTReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTReachability/DTReachability.h -------------------------------------------------------------------------------- /Core/Source/DTReachability/DTReachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTReachability/DTReachability.m -------------------------------------------------------------------------------- /Core/Source/DTSQLite/DTSQLiteDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTSQLite/DTSQLiteDatabase.h -------------------------------------------------------------------------------- /Core/Source/DTSQLite/DTSQLiteDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTSQLite/DTSQLiteDatabase.m -------------------------------------------------------------------------------- /Core/Source/DTSQLite/DTSQLiteFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTSQLite/DTSQLiteFunctions.h -------------------------------------------------------------------------------- /Core/Source/DTSQLite/DTSQLiteFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTSQLite/DTSQLiteFunctions.m -------------------------------------------------------------------------------- /Core/Source/DTScripting/DTScriptExpression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTScripting/DTScriptExpression.h -------------------------------------------------------------------------------- /Core/Source/DTScripting/DTScriptExpression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTScripting/DTScriptExpression.m -------------------------------------------------------------------------------- /Core/Source/DTScripting/DTScriptVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTScripting/DTScriptVariable.h -------------------------------------------------------------------------------- /Core/Source/DTScripting/DTScriptVariable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTScripting/DTScriptVariable.m -------------------------------------------------------------------------------- /Core/Source/DTScripting/NSScanner+DTScripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTScripting/NSScanner+DTScripting.h -------------------------------------------------------------------------------- /Core/Source/DTScripting/NSScanner+DTScripting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTScripting/NSScanner+DTScripting.m -------------------------------------------------------------------------------- /Core/Source/DTUTI/NSString+DTUTI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTUTI/NSString+DTUTI.h -------------------------------------------------------------------------------- /Core/Source/DTUTI/NSString+DTUTI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTUTI/NSString+DTUTI.m -------------------------------------------------------------------------------- /Core/Source/DTVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTVersion.h -------------------------------------------------------------------------------- /Core/Source/DTVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTVersion.m -------------------------------------------------------------------------------- /Core/Source/DTWeakSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTWeakSupport.h -------------------------------------------------------------------------------- /Core/Source/DTZipArchive/DTZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTZipArchive/DTZipArchive.h -------------------------------------------------------------------------------- /Core/Source/DTZipArchive/DTZipArchive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTZipArchive/DTZipArchive.m -------------------------------------------------------------------------------- /Core/Source/DTZipArchive/DTZipArchiveGZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTZipArchive/DTZipArchiveGZip.h -------------------------------------------------------------------------------- /Core/Source/DTZipArchive/DTZipArchiveGZip.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTZipArchive/DTZipArchiveGZip.m -------------------------------------------------------------------------------- /Core/Source/DTZipArchive/DTZipArchiveNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTZipArchive/DTZipArchiveNode.h -------------------------------------------------------------------------------- /Core/Source/DTZipArchive/DTZipArchiveNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTZipArchive/DTZipArchiveNode.m -------------------------------------------------------------------------------- /Core/Source/DTZipArchive/DTZipArchivePKZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTZipArchive/DTZipArchivePKZip.h -------------------------------------------------------------------------------- /Core/Source/DTZipArchive/DTZipArchivePKZip.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/DTZipArchive/DTZipArchivePKZip.m -------------------------------------------------------------------------------- /Core/Source/Externals/minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/Externals/minizip/crypt.h -------------------------------------------------------------------------------- /Core/Source/Externals/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/Externals/minizip/ioapi.c -------------------------------------------------------------------------------- /Core/Source/Externals/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/Externals/minizip/ioapi.h -------------------------------------------------------------------------------- /Core/Source/Externals/minizip/mztools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/Externals/minizip/mztools.c -------------------------------------------------------------------------------- /Core/Source/Externals/minizip/mztools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/Externals/minizip/mztools.h -------------------------------------------------------------------------------- /Core/Source/Externals/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/Externals/minizip/unzip.c -------------------------------------------------------------------------------- /Core/Source/Externals/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/Externals/minizip/unzip.h -------------------------------------------------------------------------------- /Core/Source/Externals/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/Externals/minizip/zip.c -------------------------------------------------------------------------------- /Core/Source/Externals/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/Externals/minizip/zip.h -------------------------------------------------------------------------------- /Core/Source/NSArray+DTError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSArray+DTError.h -------------------------------------------------------------------------------- /Core/Source/NSArray+DTError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSArray+DTError.m -------------------------------------------------------------------------------- /Core/Source/NSData+DTCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSData+DTCrypto.h -------------------------------------------------------------------------------- /Core/Source/NSData+DTCrypto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSData+DTCrypto.m -------------------------------------------------------------------------------- /Core/Source/NSDictionary+DTError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSDictionary+DTError.h -------------------------------------------------------------------------------- /Core/Source/NSDictionary+DTError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSDictionary+DTError.m -------------------------------------------------------------------------------- /Core/Source/NSFileWrapper+DTCopying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSFileWrapper+DTCopying.h -------------------------------------------------------------------------------- /Core/Source/NSFileWrapper+DTCopying.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSFileWrapper+DTCopying.m -------------------------------------------------------------------------------- /Core/Source/NSMutableArray+DTMoving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSMutableArray+DTMoving.h -------------------------------------------------------------------------------- /Core/Source/NSMutableArray+DTMoving.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSMutableArray+DTMoving.m -------------------------------------------------------------------------------- /Core/Source/NSString+DTFormatNumbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSString+DTFormatNumbers.h -------------------------------------------------------------------------------- /Core/Source/NSString+DTFormatNumbers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSString+DTFormatNumbers.m -------------------------------------------------------------------------------- /Core/Source/NSString+DTPaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSString+DTPaths.h -------------------------------------------------------------------------------- /Core/Source/NSString+DTPaths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSString+DTPaths.m -------------------------------------------------------------------------------- /Core/Source/NSString+DTURLEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSString+DTURLEncoding.h -------------------------------------------------------------------------------- /Core/Source/NSString+DTURLEncoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSString+DTURLEncoding.m -------------------------------------------------------------------------------- /Core/Source/NSString+DTUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSString+DTUtilities.h -------------------------------------------------------------------------------- /Core/Source/NSString+DTUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSString+DTUtilities.m -------------------------------------------------------------------------------- /Core/Source/NSURL+DTComparing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSURL+DTComparing.h -------------------------------------------------------------------------------- /Core/Source/NSURL+DTComparing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSURL+DTComparing.m -------------------------------------------------------------------------------- /Core/Source/NSURL+DTUnshorten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSURL+DTUnshorten.h -------------------------------------------------------------------------------- /Core/Source/NSURL+DTUnshorten.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/NSURL+DTUnshorten.m -------------------------------------------------------------------------------- /Core/Source/OSX/DTScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/OSX/DTScrollView.h -------------------------------------------------------------------------------- /Core/Source/OSX/DTScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/OSX/DTScrollView.m -------------------------------------------------------------------------------- /Core/Source/OSX/NSDocument+DTFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/OSX/NSDocument+DTFoundation.h -------------------------------------------------------------------------------- /Core/Source/OSX/NSDocument+DTFoundation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/OSX/NSDocument+DTFoundation.m -------------------------------------------------------------------------------- /Core/Source/OSX/NSImage+DTUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/OSX/NSImage+DTUtilities.h -------------------------------------------------------------------------------- /Core/Source/OSX/NSImage+DTUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/OSX/NSImage+DTUtilities.m -------------------------------------------------------------------------------- /Core/Source/OSX/NSValue+DTConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/OSX/NSValue+DTConversion.h -------------------------------------------------------------------------------- /Core/Source/OSX/NSValue+DTConversion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/OSX/NSValue+DTConversion.m -------------------------------------------------------------------------------- /Core/Source/OSX/NSView+DTAutoLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/OSX/NSView+DTAutoLayout.h -------------------------------------------------------------------------------- /Core/Source/OSX/NSView+DTAutoLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/OSX/NSView+DTAutoLayout.m -------------------------------------------------------------------------------- /Core/Source/OSX/NSWindowController+DTPanelControllerPresenting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/OSX/NSWindowController+DTPanelControllerPresenting.h -------------------------------------------------------------------------------- /Core/Source/OSX/NSWindowController+DTPanelControllerPresenting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/OSX/NSWindowController+DTPanelControllerPresenting.m -------------------------------------------------------------------------------- /Core/Source/Runtime/DTObjectBlockExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/Runtime/DTObjectBlockExecutor.h -------------------------------------------------------------------------------- /Core/Source/Runtime/DTObjectBlockExecutor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/Runtime/DTObjectBlockExecutor.m -------------------------------------------------------------------------------- /Core/Source/Runtime/NSObject+DTRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/Runtime/NSObject+DTRuntime.h -------------------------------------------------------------------------------- /Core/Source/Runtime/NSObject+DTRuntime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/Runtime/NSObject+DTRuntime.m -------------------------------------------------------------------------------- /Core/Source/iOS/BlocksAdditions/DTActionSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/BlocksAdditions/DTActionSheet.h -------------------------------------------------------------------------------- /Core/Source/iOS/BlocksAdditions/DTActionSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/BlocksAdditions/DTActionSheet.m -------------------------------------------------------------------------------- /Core/Source/iOS/BlocksAdditions/DTAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/BlocksAdditions/DTAlertView.h -------------------------------------------------------------------------------- /Core/Source/iOS/BlocksAdditions/DTAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/BlocksAdditions/DTAlertView.m -------------------------------------------------------------------------------- /Core/Source/iOS/BlocksAdditions/UIView+DTActionHandlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/BlocksAdditions/UIView+DTActionHandlers.h -------------------------------------------------------------------------------- /Core/Source/iOS/BlocksAdditions/UIView+DTActionHandlers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/BlocksAdditions/UIView+DTActionHandlers.m -------------------------------------------------------------------------------- /Core/Source/iOS/DTActivityTitleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTActivityTitleView.h -------------------------------------------------------------------------------- /Core/Source/iOS/DTActivityTitleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTActivityTitleView.m -------------------------------------------------------------------------------- /Core/Source/iOS/DTAnimatedGIF/DTAnimatedGIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTAnimatedGIF/DTAnimatedGIF.h -------------------------------------------------------------------------------- /Core/Source/iOS/DTAnimatedGIF/DTAnimatedGIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTAnimatedGIF/DTAnimatedGIF.m -------------------------------------------------------------------------------- /Core/Source/iOS/DTCustomColoredAccessory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTCustomColoredAccessory.h -------------------------------------------------------------------------------- /Core/Source/iOS/DTCustomColoredAccessory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTCustomColoredAccessory.m -------------------------------------------------------------------------------- /Core/Source/iOS/DTPieProgressIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTPieProgressIndicator.h -------------------------------------------------------------------------------- /Core/Source/iOS/DTPieProgressIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTPieProgressIndicator.m -------------------------------------------------------------------------------- /Core/Source/iOS/DTProgressHUD/DTProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTProgressHUD/DTProgressHUD.h -------------------------------------------------------------------------------- /Core/Source/iOS/DTProgressHUD/DTProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTProgressHUD/DTProgressHUD.m -------------------------------------------------------------------------------- /Core/Source/iOS/DTProgressHUD/DTProgressHUDWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTProgressHUD/DTProgressHUDWindow.h -------------------------------------------------------------------------------- /Core/Source/iOS/DTProgressHUD/DTProgressHUDWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTProgressHUD/DTProgressHUDWindow.m -------------------------------------------------------------------------------- /Core/Source/iOS/DTSidePanel/DTSidePanelController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTSidePanel/DTSidePanelController.h -------------------------------------------------------------------------------- /Core/Source/iOS/DTSidePanel/DTSidePanelController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTSidePanel/DTSidePanelController.m -------------------------------------------------------------------------------- /Core/Source/iOS/DTSidePanel/DTSidePanelControllerSegue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTSidePanel/DTSidePanelControllerSegue.h -------------------------------------------------------------------------------- /Core/Source/iOS/DTSidePanel/DTSidePanelControllerSegue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTSidePanel/DTSidePanelControllerSegue.m -------------------------------------------------------------------------------- /Core/Source/iOS/DTSidePanel/DTSidePanelPanGestureRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTSidePanel/DTSidePanelPanGestureRecognizer.h -------------------------------------------------------------------------------- /Core/Source/iOS/DTSidePanel/DTSidePanelPanGestureRecognizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTSidePanel/DTSidePanelPanGestureRecognizer.m -------------------------------------------------------------------------------- /Core/Source/iOS/DTSidePanel/UIViewController+DTSidePanelController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTSidePanel/UIViewController+DTSidePanelController.h -------------------------------------------------------------------------------- /Core/Source/iOS/DTSidePanel/UIViewController+DTSidePanelController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTSidePanel/UIViewController+DTSidePanelController.m -------------------------------------------------------------------------------- /Core/Source/iOS/DTSmartPagingScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTSmartPagingScrollView.h -------------------------------------------------------------------------------- /Core/Source/iOS/DTSmartPagingScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTSmartPagingScrollView.m -------------------------------------------------------------------------------- /Core/Source/iOS/DTTiledLayerWithoutFade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTTiledLayerWithoutFade.h -------------------------------------------------------------------------------- /Core/Source/iOS/DTTiledLayerWithoutFade.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/DTTiledLayerWithoutFade.m -------------------------------------------------------------------------------- /Core/Source/iOS/Debug/UIColor+DTDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/Debug/UIColor+DTDebug.h -------------------------------------------------------------------------------- /Core/Source/iOS/Debug/UIColor+DTDebug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/Debug/UIColor+DTDebug.m -------------------------------------------------------------------------------- /Core/Source/iOS/Debug/UIView+DTDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/Debug/UIView+DTDebug.h -------------------------------------------------------------------------------- /Core/Source/iOS/Debug/UIView+DTDebug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/Debug/UIView+DTDebug.m -------------------------------------------------------------------------------- /Core/Source/iOS/NSURL+DTAppLinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/NSURL+DTAppLinks.h -------------------------------------------------------------------------------- /Core/Source/iOS/NSURL+DTAppLinks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/NSURL+DTAppLinks.m -------------------------------------------------------------------------------- /Core/Source/iOS/UIApplication+DTNetworkActivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/UIApplication+DTNetworkActivity.h -------------------------------------------------------------------------------- /Core/Source/iOS/UIApplication+DTNetworkActivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/UIApplication+DTNetworkActivity.m -------------------------------------------------------------------------------- /Core/Source/iOS/UIImage+DTFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/UIImage+DTFoundation.h -------------------------------------------------------------------------------- /Core/Source/iOS/UIImage+DTFoundation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/UIImage+DTFoundation.m -------------------------------------------------------------------------------- /Core/Source/iOS/UIScreen+DTFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/UIScreen+DTFoundation.h -------------------------------------------------------------------------------- /Core/Source/iOS/UIScreen+DTFoundation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/UIScreen+DTFoundation.m -------------------------------------------------------------------------------- /Core/Source/iOS/UIView+DTFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/UIView+DTFoundation.h -------------------------------------------------------------------------------- /Core/Source/iOS/UIView+DTFoundation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Core/Source/iOS/UIView+DTFoundation.m -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTASN1Parser.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTASN1/DTASN1Parser.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTASN1Serialization.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTASN1/DTASN1Serialization.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTActionSheet.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/BlocksAdditions/DTActionSheet.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTActivityTitleView.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/DTActivityTitleView.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTAlertView.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/BlocksAdditions/DTAlertView.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTAnimatedGIF.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/DTAnimatedGIF/DTAnimatedGIF.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTAsyncFileDeleter.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTAsyncFileDeleter/DTAsyncFileDeleter.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTBase64Coding.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTBase64Coding.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTBlockFunctions.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTBlockFunctions.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTCompatibility.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTCompatibility.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTCoreGraphicsUtils.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTCoreGraphicsUtils.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTCustomColoredAccessory.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/DTCustomColoredAccessory.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTExtendedFileAttributes.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTExtendedFileAttributes.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTFolderMonitor.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTFolderMonitor.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTFoundationConstants.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTFoundationConstants.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTHTMLParser.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTHTMLParser/DTHTMLParser.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTLog.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTLog.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTObjectBlockExecutor.h: -------------------------------------------------------------------------------- 1 | ../../Source/Runtime/DTObjectBlockExecutor.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTPieProgressIndicator.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/DTPieProgressIndicator.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/DTProgressHUD/DTProgressHUD.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTProgressHUDWindow.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/DTProgressHUD/DTProgressHUDWindow.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTReachability.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTReachability/DTReachability.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTSQLiteDatabase.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTSQLite/DTSQLiteDatabase.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTSQLiteFunctions.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTSQLite/DTSQLiteFunctions.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTScriptExpression.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTScripting/DTScriptExpression.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTScriptVariable.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTScripting/DTScriptVariable.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTScrollView.h: -------------------------------------------------------------------------------- 1 | ../../Source/OSX/DTScrollView.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTSidePanelController.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/DTSidePanel/DTSidePanelController.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTSidePanelControllerSegue.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/DTSidePanel/DTSidePanelControllerSegue.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTSidePanelPanGestureRecognizer.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/DTSidePanel/DTSidePanelPanGestureRecognizer.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTSmartPagingScrollView.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/DTSmartPagingScrollView.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTTiledLayerWithoutFade.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/DTTiledLayerWithoutFade.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTVersion.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTVersion.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTWeakSupport.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTWeakSupport.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTZipArchive.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTZipArchive/DTZipArchive.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTZipArchiveGZip.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTZipArchive/DTZipArchiveGZip.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTZipArchiveNode.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTZipArchive/DTZipArchiveNode.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/DTZipArchivePKZip.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTZipArchive/DTZipArchivePKZip.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSArray+DTError.h: -------------------------------------------------------------------------------- 1 | ../../Source/NSArray+DTError.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSData+DTCrypto.h: -------------------------------------------------------------------------------- 1 | ../../Source/NSData+DTCrypto.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSDictionary+DTError.h: -------------------------------------------------------------------------------- 1 | ../../Source/NSDictionary+DTError.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSDocument+DTFoundation.h: -------------------------------------------------------------------------------- 1 | ../../Source/OSX/NSDocument+DTFoundation.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSFileWrapper+DTCopying.h: -------------------------------------------------------------------------------- 1 | ../../Source/NSFileWrapper+DTCopying.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSImage+DTUtilities.h: -------------------------------------------------------------------------------- 1 | ../../Source/OSX/NSImage+DTUtilities.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSMutableArray+DTMoving.h: -------------------------------------------------------------------------------- 1 | ../../Source/NSMutableArray+DTMoving.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSObject+DTRuntime.h: -------------------------------------------------------------------------------- 1 | ../../Source/Runtime/NSObject+DTRuntime.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSScanner+DTScripting.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTScripting/NSScanner+DTScripting.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSString+DTFormatNumbers.h: -------------------------------------------------------------------------------- 1 | ../../Source/NSString+DTFormatNumbers.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSString+DTPaths.h: -------------------------------------------------------------------------------- 1 | ../../Source/NSString+DTPaths.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSString+DTURLEncoding.h: -------------------------------------------------------------------------------- 1 | ../../Source/NSString+DTURLEncoding.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSString+DTUTI.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTUTI/NSString+DTUTI.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSString+DTUtilities.h: -------------------------------------------------------------------------------- 1 | ../../Source/NSString+DTUtilities.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSURL+DTAWS.h: -------------------------------------------------------------------------------- 1 | ../../Source/DTAWS/NSURL+DTAWS.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSURL+DTAppLinks.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/NSURL+DTAppLinks.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSURL+DTComparing.h: -------------------------------------------------------------------------------- 1 | ../../Source/NSURL+DTComparing.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSURL+DTUnshorten.h: -------------------------------------------------------------------------------- 1 | ../../Source/NSURL+DTUnshorten.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSValue+DTConversion.h: -------------------------------------------------------------------------------- 1 | ../../Source/OSX/NSValue+DTConversion.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSView+DTAutoLayout.h: -------------------------------------------------------------------------------- 1 | ../../Source/OSX/NSView+DTAutoLayout.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/NSWindowController+DTPanelControllerPresenting.h: -------------------------------------------------------------------------------- 1 | ../../Source/OSX/NSWindowController+DTPanelControllerPresenting.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/UIApplication+DTNetworkActivity.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/UIApplication+DTNetworkActivity.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/UIColor+DTDebug.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/Debug/UIColor+DTDebug.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/UIImage+DTFoundation.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/UIImage+DTFoundation.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/UIScreen+DTFoundation.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/UIScreen+DTFoundation.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/UIView+DTActionHandlers.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/BlocksAdditions/UIView+DTActionHandlers.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/UIView+DTDebug.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/Debug/UIView+DTDebug.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/UIView+DTFoundation.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/UIView+DTFoundation.h -------------------------------------------------------------------------------- /Core/include/DTFoundation/UIViewController+DTSidePanelController.h: -------------------------------------------------------------------------------- 1 | ../../Source/iOS/DTSidePanel/UIViewController+DTSidePanelController.h -------------------------------------------------------------------------------- /DTFoundation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/DTFoundation.podspec -------------------------------------------------------------------------------- /DTFoundation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/DTFoundation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DTFoundation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/DTFoundation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DTFoundation.xcodeproj/xcshareddata/xcschemes/DTFoundation (OSX).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/DTFoundation.xcodeproj/xcshareddata/xcschemes/DTFoundation (OSX).xcscheme -------------------------------------------------------------------------------- /DTFoundation.xcodeproj/xcshareddata/xcschemes/DTFoundation (iOS).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/DTFoundation.xcodeproj/xcshareddata/xcschemes/DTFoundation (iOS).xcscheme -------------------------------------------------------------------------------- /DTFoundation.xcodeproj/xcshareddata/xcschemes/DTFoundation (tvOS).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/DTFoundation.xcodeproj/xcshareddata/xcschemes/DTFoundation (tvOS).xcscheme -------------------------------------------------------------------------------- /DTFoundation.xcodeproj/xcshareddata/xcschemes/DTFoundation-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/DTFoundation.xcodeproj/xcshareddata/xcschemes/DTFoundation-Package.xcscheme -------------------------------------------------------------------------------- /DTFoundation.xcodeproj/xcshareddata/xcschemes/DTProgressHUD Demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/DTFoundation.xcodeproj/xcshareddata/xcschemes/DTProgressHUD Demo.xcscheme -------------------------------------------------------------------------------- /DTFoundation.xcodeproj/xcshareddata/xcschemes/DTReachability Demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/DTFoundation.xcodeproj/xcshareddata/xcschemes/DTReachability Demo.xcscheme -------------------------------------------------------------------------------- /DTFoundation.xcodeproj/xcshareddata/xcschemes/DTSidePanels Demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/DTFoundation.xcodeproj/xcshareddata/xcschemes/DTSidePanels Demo.xcscheme -------------------------------------------------------------------------------- /DTFoundation.xcodeproj/xcshareddata/xcschemes/DTZipArchive Demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/DTFoundation.xcodeproj/xcshareddata/xcschemes/DTZipArchive Demo.xcscheme -------------------------------------------------------------------------------- /DTFoundation.xcodeproj/xcshareddata/xcschemes/Static Library (Mac).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/DTFoundation.xcodeproj/xcshareddata/xcschemes/Static Library (Mac).xcscheme -------------------------------------------------------------------------------- /DTFoundation.xcodeproj/xcshareddata/xcschemes/Static Library (tvOS).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/DTFoundation.xcodeproj/xcshareddata/xcschemes/Static Library (tvOS).xcscheme -------------------------------------------------------------------------------- /DTFoundation.xcodeproj/xcshareddata/xcschemes/Static Library.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/DTFoundation.xcodeproj/xcshareddata/xcschemes/Static Library.xcscheme -------------------------------------------------------------------------------- /DTFoundation.xcodeproj/xcshareddata/xcschemes/Unit Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/DTFoundation.xcodeproj/xcshareddata/xcschemes/Unit Tests.xcscheme -------------------------------------------------------------------------------- /Demo/DTActionSheetDemo/DTActionSheetDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTActionSheetDemo/DTActionSheetDemo-Info.plist -------------------------------------------------------------------------------- /Demo/DTActionSheetDemo/DTActionSheetDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTActionSheetDemo/DTActionSheetDemo-Prefix.pch -------------------------------------------------------------------------------- /Demo/DTActionSheetDemo/Resources/ActionSheetStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTActionSheetDemo/Resources/ActionSheetStoryboard.storyboard -------------------------------------------------------------------------------- /Demo/DTActionSheetDemo/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTActionSheetDemo/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Demo/DTActionSheetDemo/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTActionSheetDemo/Resources/Default.png -------------------------------------------------------------------------------- /Demo/DTActionSheetDemo/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTActionSheetDemo/Resources/Default@2x.png -------------------------------------------------------------------------------- /Demo/DTActionSheetDemo/Source/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTActionSheetDemo/Source/AppDelegate.h -------------------------------------------------------------------------------- /Demo/DTActionSheetDemo/Source/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTActionSheetDemo/Source/AppDelegate.m -------------------------------------------------------------------------------- /Demo/DTActionSheetDemo/Source/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTActionSheetDemo/Source/ViewController.h -------------------------------------------------------------------------------- /Demo/DTActionSheetDemo/Source/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTActionSheetDemo/Source/ViewController.m -------------------------------------------------------------------------------- /Demo/DTActionSheetDemo/Source/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTActionSheetDemo/Source/main.m -------------------------------------------------------------------------------- /Demo/DTAnimatedGIF/DTAnimatedGIFDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTAnimatedGIF/DTAnimatedGIFDemo-Info.plist -------------------------------------------------------------------------------- /Demo/DTAnimatedGIF/DTAnimatedGIFDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTAnimatedGIF/DTAnimatedGIFDemo-Prefix.pch -------------------------------------------------------------------------------- /Demo/DTAnimatedGIF/Resources/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTAnimatedGIF/Resources/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/DTAnimatedGIF/Resources/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTAnimatedGIF/Resources/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/DTAnimatedGIF/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTAnimatedGIF/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Demo/DTAnimatedGIF/Resources/simpson20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTAnimatedGIF/Resources/simpson20.gif -------------------------------------------------------------------------------- /Demo/DTAnimatedGIF/Source/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTAnimatedGIF/Source/AppDelegate.h -------------------------------------------------------------------------------- /Demo/DTAnimatedGIF/Source/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTAnimatedGIF/Source/AppDelegate.m -------------------------------------------------------------------------------- /Demo/DTAnimatedGIF/Source/GIFViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTAnimatedGIF/Source/GIFViewController.h -------------------------------------------------------------------------------- /Demo/DTAnimatedGIF/Source/GIFViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTAnimatedGIF/Source/GIFViewController.m -------------------------------------------------------------------------------- /Demo/DTAnimatedGIF/Source/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTAnimatedGIF/Source/main.m -------------------------------------------------------------------------------- /Demo/DTProgressHUDDemo/DTProgressHUDDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTProgressHUDDemo/DTProgressHUDDemo-Info.plist -------------------------------------------------------------------------------- /Demo/DTProgressHUDDemo/DTProgressHUDDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTProgressHUDDemo/DTProgressHUDDemo-Prefix.pch -------------------------------------------------------------------------------- /Demo/DTProgressHUDDemo/Resources/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTProgressHUDDemo/Resources/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /Demo/DTProgressHUDDemo/Resources/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTProgressHUDDemo/Resources/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Demo/DTProgressHUDDemo/Resources/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTProgressHUDDemo/Resources/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/DTProgressHUDDemo/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTProgressHUDDemo/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Demo/DTProgressHUDDemo/Resources/Images.xcassets/Mandel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTProgressHUDDemo/Resources/Images.xcassets/Mandel.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DTProgressHUDDemo/Resources/Images.xcassets/Mandel.imageset/mandel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTProgressHUDDemo/Resources/Images.xcassets/Mandel.imageset/mandel.png -------------------------------------------------------------------------------- /Demo/DTProgressHUDDemo/Resources/Images.xcassets/RotatedStar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTProgressHUDDemo/Resources/Images.xcassets/RotatedStar.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DTProgressHUDDemo/Resources/Images.xcassets/RotatedStar.imageset/Rotated_Star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTProgressHUDDemo/Resources/Images.xcassets/RotatedStar.imageset/Rotated_Star.png -------------------------------------------------------------------------------- /Demo/DTProgressHUDDemo/Resources/Images.xcassets/Star.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTProgressHUDDemo/Resources/Images.xcassets/Star.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DTProgressHUDDemo/Resources/Images.xcassets/Star.imageset/Notification_Favorites_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTProgressHUDDemo/Resources/Images.xcassets/Star.imageset/Notification_Favorites_Icon.png -------------------------------------------------------------------------------- /Demo/DTProgressHUDDemo/Source/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTProgressHUDDemo/Source/AppDelegate.h -------------------------------------------------------------------------------- /Demo/DTProgressHUDDemo/Source/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTProgressHUDDemo/Source/AppDelegate.m -------------------------------------------------------------------------------- /Demo/DTProgressHUDDemo/Source/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTProgressHUDDemo/Source/ViewController.h -------------------------------------------------------------------------------- /Demo/DTProgressHUDDemo/Source/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTProgressHUDDemo/Source/ViewController.m -------------------------------------------------------------------------------- /Demo/DTProgressHUDDemo/Source/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTProgressHUDDemo/Source/main.m -------------------------------------------------------------------------------- /Demo/DTReachability/DTReachability-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTReachability/DTReachability-Info.plist -------------------------------------------------------------------------------- /Demo/DTReachability/DTReachability-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTReachability/DTReachability-Prefix.pch -------------------------------------------------------------------------------- /Demo/DTReachability/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTReachability/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Demo/DTReachability/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTReachability/Resources/Default.png -------------------------------------------------------------------------------- /Demo/DTReachability/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTReachability/Resources/Default@2x.png -------------------------------------------------------------------------------- /Demo/DTReachability/Resources/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTReachability/Resources/ViewController.xib -------------------------------------------------------------------------------- /Demo/DTReachability/Source/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTReachability/Source/AppDelegate.h -------------------------------------------------------------------------------- /Demo/DTReachability/Source/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTReachability/Source/AppDelegate.m -------------------------------------------------------------------------------- /Demo/DTReachability/Source/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTReachability/Source/ViewController.h -------------------------------------------------------------------------------- /Demo/DTReachability/Source/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTReachability/Source/ViewController.m -------------------------------------------------------------------------------- /Demo/DTReachability/Source/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTReachability/Source/main.m -------------------------------------------------------------------------------- /Demo/DTSidePanels/DTSidePanels-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/DTSidePanels-Info.plist -------------------------------------------------------------------------------- /Demo/DTSidePanels/DTSidePanels-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/DTSidePanels-Prefix.pch -------------------------------------------------------------------------------- /Demo/DTSidePanels/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Demo/DTSidePanels/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/Resources/Default.png -------------------------------------------------------------------------------- /Demo/DTSidePanels/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/Resources/Default@2x.png -------------------------------------------------------------------------------- /Demo/DTSidePanels/Resources/DemoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/Resources/DemoViewController.xib -------------------------------------------------------------------------------- /Demo/DTSidePanels/Resources/ModalPanelViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/Resources/ModalPanelViewController.xib -------------------------------------------------------------------------------- /Demo/DTSidePanels/Resources/toolbar-icon-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/Resources/toolbar-icon-menu.png -------------------------------------------------------------------------------- /Demo/DTSidePanels/Resources/toolbar-icon-menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/Resources/toolbar-icon-menu@2x.png -------------------------------------------------------------------------------- /Demo/DTSidePanels/Source/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/Source/AppDelegate.h -------------------------------------------------------------------------------- /Demo/DTSidePanels/Source/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/Source/AppDelegate.m -------------------------------------------------------------------------------- /Demo/DTSidePanels/Source/DemoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/Source/DemoViewController.h -------------------------------------------------------------------------------- /Demo/DTSidePanels/Source/DemoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/Source/DemoViewController.m -------------------------------------------------------------------------------- /Demo/DTSidePanels/Source/LoggingNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/Source/LoggingNavigationController.h -------------------------------------------------------------------------------- /Demo/DTSidePanels/Source/LoggingNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/Source/LoggingNavigationController.m -------------------------------------------------------------------------------- /Demo/DTSidePanels/Source/ModalPanelViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/Source/ModalPanelViewController.h -------------------------------------------------------------------------------- /Demo/DTSidePanels/Source/ModalPanelViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/Source/ModalPanelViewController.m -------------------------------------------------------------------------------- /Demo/DTSidePanels/Source/TableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/Source/TableViewController.h -------------------------------------------------------------------------------- /Demo/DTSidePanels/Source/TableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/Source/TableViewController.m -------------------------------------------------------------------------------- /Demo/DTSidePanels/Source/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTSidePanels/Source/main.m -------------------------------------------------------------------------------- /Demo/DTZipArchiveDemo/DTZipArchiveDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTZipArchiveDemo/DTZipArchiveDemo-Info.plist -------------------------------------------------------------------------------- /Demo/DTZipArchiveDemo/DTZipArchiveDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTZipArchiveDemo/DTZipArchiveDemo-Prefix.pch -------------------------------------------------------------------------------- /Demo/DTZipArchiveDemo/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTZipArchiveDemo/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Demo/DTZipArchiveDemo/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTZipArchiveDemo/Resources/Default.png -------------------------------------------------------------------------------- /Demo/DTZipArchiveDemo/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTZipArchiveDemo/Resources/Default@2x.png -------------------------------------------------------------------------------- /Demo/DTZipArchiveDemo/Resources/Storyboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTZipArchiveDemo/Resources/Storyboard.storyboard -------------------------------------------------------------------------------- /Demo/DTZipArchiveDemo/Source/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTZipArchiveDemo/Source/AppDelegate.h -------------------------------------------------------------------------------- /Demo/DTZipArchiveDemo/Source/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTZipArchiveDemo/Source/AppDelegate.m -------------------------------------------------------------------------------- /Demo/DTZipArchiveDemo/Source/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTZipArchiveDemo/Source/ViewController.h -------------------------------------------------------------------------------- /Demo/DTZipArchiveDemo/Source/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTZipArchiveDemo/Source/ViewController.m -------------------------------------------------------------------------------- /Demo/DTZipArchiveDemo/Source/ZIpArchiveModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTZipArchiveDemo/Source/ZIpArchiveModel.h -------------------------------------------------------------------------------- /Demo/DTZipArchiveDemo/Source/ZipArchiveCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTZipArchiveDemo/Source/ZipArchiveCell.h -------------------------------------------------------------------------------- /Demo/DTZipArchiveDemo/Source/ZipArchiveCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTZipArchiveDemo/Source/ZipArchiveCell.m -------------------------------------------------------------------------------- /Demo/DTZipArchiveDemo/Source/ZipArchiveManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTZipArchiveDemo/Source/ZipArchiveManager.h -------------------------------------------------------------------------------- /Demo/DTZipArchiveDemo/Source/ZipArchiveManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTZipArchiveDemo/Source/ZipArchiveManager.m -------------------------------------------------------------------------------- /Demo/DTZipArchiveDemo/Source/ZipArchiveModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTZipArchiveDemo/Source/ZipArchiveModel.m -------------------------------------------------------------------------------- /Demo/DTZipArchiveDemo/Source/ZipNodeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTZipArchiveDemo/Source/ZipNodeViewController.h -------------------------------------------------------------------------------- /Demo/DTZipArchiveDemo/Source/ZipNodeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTZipArchiveDemo/Source/ZipNodeViewController.m -------------------------------------------------------------------------------- /Demo/DTZipArchiveDemo/Source/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Demo/DTZipArchiveDemo/Source/main.m -------------------------------------------------------------------------------- /Documentation/AppKit Subspec-template.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Documentation/AppKit Subspec-template.markdown -------------------------------------------------------------------------------- /Documentation/Change Log-template.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Documentation/Change Log-template.markdown -------------------------------------------------------------------------------- /Documentation/Core Subspec-template.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Documentation/Core Subspec-template.markdown -------------------------------------------------------------------------------- /Documentation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Documentation/LICENSE -------------------------------------------------------------------------------- /Documentation/Other Subspecs-template.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Documentation/Other Subspecs-template.markdown -------------------------------------------------------------------------------- /Documentation/Setup Guide-template.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Documentation/Setup Guide-template.markdown -------------------------------------------------------------------------------- /Documentation/UIKit Blocks Subspec-template.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Documentation/UIKit Blocks Subspec-template.markdown -------------------------------------------------------------------------------- /Documentation/UIKit Subspec-template.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Documentation/UIKit Subspec-template.markdown -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/README.md -------------------------------------------------------------------------------- /Test/Resources/ArraySample.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Resources/ArraySample.plist -------------------------------------------------------------------------------- /Test/Resources/DictionarySample.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Resources/DictionarySample.plist -------------------------------------------------------------------------------- /Test/Resources/SelfSigned.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Resources/SelfSigned.der -------------------------------------------------------------------------------- /Test/Resources/gzip_sample.txt-gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Resources/gzip_sample.txt-gz -------------------------------------------------------------------------------- /Test/Resources/gzip_sample.txt-z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Resources/gzip_sample.txt-z -------------------------------------------------------------------------------- /Test/Resources/gzip_sample.txt.foo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Resources/gzip_sample.txt.foo -------------------------------------------------------------------------------- /Test/Resources/gzip_sample.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Resources/gzip_sample.txt.gz -------------------------------------------------------------------------------- /Test/Resources/gzip_sample.txt.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Resources/gzip_sample.txt.original -------------------------------------------------------------------------------- /Test/Resources/gzip_sample_invalid.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Resources/gzip_sample_invalid.gz -------------------------------------------------------------------------------- /Test/Resources/html_doctype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Resources/html_doctype.html -------------------------------------------------------------------------------- /Test/Resources/processing_instruction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Resources/processing_instruction.html -------------------------------------------------------------------------------- /Test/Resources/sample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Resources/sample.zip -------------------------------------------------------------------------------- /Test/Resources/screenshot.png.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Resources/screenshot.png.dat -------------------------------------------------------------------------------- /Test/Resources/zipContent/Franz.txt: -------------------------------------------------------------------------------- 1 | Franz -------------------------------------------------------------------------------- /Test/Resources/zipContent/Oliver.txt: -------------------------------------------------------------------------------- 1 | Oliver -------------------------------------------------------------------------------- /Test/Resources/zipContent/Rene: -------------------------------------------------------------------------------- 1 | René -------------------------------------------------------------------------------- /Test/Resources/zipContent/Stefan.txt: -------------------------------------------------------------------------------- 1 | Stefan -------------------------------------------------------------------------------- /Test/Source/DTASN1SerializationTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/DTASN1SerializationTest.h -------------------------------------------------------------------------------- /Test/Source/DTASN1SerializationTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/DTASN1SerializationTest.m -------------------------------------------------------------------------------- /Test/Source/DTActionSheetTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/DTActionSheetTest.m -------------------------------------------------------------------------------- /Test/Source/DTAlertViewTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/DTAlertViewTest.m -------------------------------------------------------------------------------- /Test/Source/DTBase64CodingTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/DTBase64CodingTest.h -------------------------------------------------------------------------------- /Test/Source/DTBase64CodingTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/DTBase64CodingTest.m -------------------------------------------------------------------------------- /Test/Source/DTBlockFunctionsTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/DTBlockFunctionsTest.h -------------------------------------------------------------------------------- /Test/Source/DTBlockFunctionsTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/DTBlockFunctionsTest.m -------------------------------------------------------------------------------- /Test/Source/DTHTMLParserTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/DTHTMLParserTest.h -------------------------------------------------------------------------------- /Test/Source/DTHTMLParserTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/DTHTMLParserTest.m -------------------------------------------------------------------------------- /Test/Source/DTLogTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/DTLogTest.m -------------------------------------------------------------------------------- /Test/Source/DTScriptingTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/DTScriptingTest.h -------------------------------------------------------------------------------- /Test/Source/DTScriptingTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/DTScriptingTest.m -------------------------------------------------------------------------------- /Test/Source/DTVersionTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/DTVersionTest.h -------------------------------------------------------------------------------- /Test/Source/DTVersionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/DTVersionTest.m -------------------------------------------------------------------------------- /Test/Source/DTZipArchiveTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/DTZipArchiveTest.h -------------------------------------------------------------------------------- /Test/Source/DTZipArchiveTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/DTZipArchiveTest.m -------------------------------------------------------------------------------- /Test/Source/NSArrayDTErrorTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/NSArrayDTErrorTest.h -------------------------------------------------------------------------------- /Test/Source/NSArrayDTErrorTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/NSArrayDTErrorTest.m -------------------------------------------------------------------------------- /Test/Source/NSDictionaryDTErrorTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/NSDictionaryDTErrorTest.h -------------------------------------------------------------------------------- /Test/Source/NSDictionaryDTErrorTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/NSDictionaryDTErrorTest.m -------------------------------------------------------------------------------- /Test/Source/NSStringDTPathsTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/NSStringDTPathsTest.h -------------------------------------------------------------------------------- /Test/Source/NSStringDTPathsTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/NSStringDTPathsTest.m -------------------------------------------------------------------------------- /Test/Source/NSStringDTURLEncodingTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/Source/NSStringDTURLEncodingTest.m -------------------------------------------------------------------------------- /Test/UnitTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/UnitTests-Info.plist -------------------------------------------------------------------------------- /Test/UnitTests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/Test/UnitTests-Prefix.pch -------------------------------------------------------------------------------- /Test/include/DTASN1BitString.h: -------------------------------------------------------------------------------- 1 | ../../Core/Source/DTASN1/DTASN1BitString.h -------------------------------------------------------------------------------- /Test/include/DTScriptExpression.h: -------------------------------------------------------------------------------- 1 | ../../Core/Source/DTScripting/DTScriptExpression.h -------------------------------------------------------------------------------- /Test/include/DTScriptVariable.h: -------------------------------------------------------------------------------- 1 | ../../Core/Source/DTScripting/DTScriptVariable.h -------------------------------------------------------------------------------- /Test/include/DTZipArchive.h: -------------------------------------------------------------------------------- 1 | ../../Core/Source/DTZipArchive/DTZipArchive.h -------------------------------------------------------------------------------- /Test/include/DTZipArchiveGZip.h: -------------------------------------------------------------------------------- 1 | ../../Core/Source/DTZipArchive/DTZipArchiveGZip.h -------------------------------------------------------------------------------- /Test/include/DTZipArchiveNode.h: -------------------------------------------------------------------------------- 1 | ../../Core/Source/DTZipArchive/DTZipArchiveNode.h -------------------------------------------------------------------------------- /Test/include/DTZipArchivePKZip.h: -------------------------------------------------------------------------------- 1 | ../../Core/Source/DTZipArchive/DTZipArchivePKZip.h -------------------------------------------------------------------------------- /Test/include/NSScanner+DTScripting.h: -------------------------------------------------------------------------------- 1 | ../../Core/Source/DTScripting/NSScanner+DTScripting.h -------------------------------------------------------------------------------- /coveralls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/coveralls.rb -------------------------------------------------------------------------------- /readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cocoanetics/DTFoundation/HEAD/readme.markdown --------------------------------------------------------------------------------