gitextract_tdvd3mfz/ ├── .gitignore ├── AFCache-iOS.xcodeproj/ │ └── project.pbxproj ├── AFCache.podspec ├── AFCache.xcodeproj/ │ └── project.pbxproj ├── AFCacheTestTool-OSX/ │ ├── AFCacheTestTool/ │ │ ├── AFAppDelegate.h │ │ ├── AFAppDelegate.m │ │ ├── AFCacheTestTool-Info.plist │ │ ├── AFCacheTestTool-Prefix.pch │ │ ├── AFRequestInfo.h │ │ ├── AFRequestInfo.m │ │ ├── Base.lproj/ │ │ │ └── MainMenu.xib │ │ ├── Images.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── en.lproj/ │ │ │ ├── Credits.rtf │ │ │ └── InfoPlist.strings │ │ └── main.m │ ├── AFCacheTestTool.xcodeproj/ │ │ └── project.pbxproj │ ├── AFCacheTestTool.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── AFCacheTestTool.xccheckout │ ├── AFCacheTestToolTests/ │ │ ├── AFCacheTestToolTests-Info.plist │ │ ├── AFCacheTestToolTests.m │ │ └── en.lproj/ │ │ └── InfoPlist.strings │ └── Podfile ├── AFCacheTestTool-iOS/ │ ├── AFCacheTestTool/ │ │ ├── AFCacheTestTool/ │ │ │ ├── AFCacheTestTool-Info.plist │ │ │ ├── AFCacheTestTool-Prefix.pch │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── DetailViewController.h │ │ │ ├── DetailViewController.m │ │ │ ├── MasterViewController.h │ │ │ ├── MasterViewController.m │ │ │ ├── en.lproj/ │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainStoryboard.storyboard │ │ │ └── main.m │ │ └── AFCacheTestTool.xcodeproj/ │ │ └── project.pbxproj │ ├── AFCacheTestTool-Info.plist │ ├── AFCacheTestTool-Prefix.pch │ ├── AFCacheTestToolAppDelegate.h │ ├── AFCacheTestToolAppDelegate.m │ ├── AFCacheableItemCell.h │ ├── AFCacheableItemCell.m │ ├── AFDebugHTTPURLProtocol.h │ ├── AFDebugHTTPURLProtocol.m │ ├── DetailViewController.h │ ├── DetailViewController.m │ ├── MasterViewController.h │ ├── MasterViewController.m │ ├── en.lproj/ │ │ ├── InfoPlist.strings │ │ └── MainStoryboard.storyboard │ └── main.m ├── AFCacheTestTool.xcodeproj/ │ └── project.pbxproj ├── AFCacheTests/ │ ├── AFCacheTests-Info.plist │ ├── AFCacheTests-Prefix.pch │ ├── AFCacheTests.h │ ├── AFCacheTests.m │ ├── en.lproj/ │ │ └── InfoPlist.strings │ └── iOS/ │ ├── AFCache-iOSTests-Info.plist │ ├── AFCache-iOSTests-Prefix.pch │ ├── AFCache_iOSTests.h │ ├── AFCache_iOSTests.m │ └── en.lproj/ │ └── InfoPlist.strings ├── CHANGES ├── LICENSE ├── README.markdown ├── configs/ │ ├── EngineRoom.xcconfig │ ├── base.xcconfig │ ├── debug/ │ │ ├── AFCache-OSX-debug.xcconfig │ │ ├── AFCache-iOS-debug.xcconfig │ │ ├── AFCacheDemoiOS-debug.xcconfig │ │ ├── AFCacheStatic-OSX-debug.xcconfig │ │ ├── afcpkg-debug.xcconfig │ │ ├── createFatLib-iOS.xcconfig │ │ └── testafcache-debug.xcconfig │ └── release/ │ ├── AFCache-OSX-release.xcconfig │ ├── AFCache-iOS-release.xcconfig │ ├── AFCacheDemoiOS-release.xcconfig │ ├── AFCacheStatic-OSX-release.xcconfig │ ├── afcpkg-release.xcconfig │ ├── createFatLib-release-iOS.xcconfig │ └── testafcache-release.xcconfig ├── material/ │ ├── AFCacheIcon.psd │ └── document-icon ├── resources/ │ └── OSX/ │ └── en.lproj/ │ └── InfoPlist.strings ├── scripts/ │ ├── AFCacheOSX-EngineRoom.sh │ ├── createFatLib.sh │ └── updateAPI.sh ├── src/ │ ├── 3rdparty/ │ │ └── AFRegexString/ │ │ ├── AFRegexString.h │ │ └── AFRegexString.m │ ├── Examples/ │ │ ├── CacheableItemDemoController.h │ │ ├── CacheableItemDemoController.m │ │ ├── CacheableItemDemoController.xib │ │ ├── Demo-Info.plist │ │ ├── DemoAppDelegate.h │ │ ├── DemoAppDelegate.m │ │ ├── Demo_Prefix.pch │ │ ├── MainWindow.xib │ │ ├── NSURLRequest.xib │ │ ├── NSURLRequestDemoViewController.h │ │ ├── NSURLRequestDemoViewController.m │ │ ├── Packaging.xib │ │ ├── PackagingDemoController.h │ │ ├── PackagingDemoController.m │ │ └── main.m │ ├── OSX/ │ │ ├── AFCache-Info.plist │ │ ├── AFCache-Prefix.pch │ │ ├── afcpkg_main.h │ │ └── afcpkg_main.m │ ├── iOS/ │ │ └── AFCache-iOS-Prefix.pch │ ├── python/ │ │ └── afcpkg.py │ └── shared/ │ ├── AFCache+DeprecatedAPI.h │ ├── AFCache+DeprecatedAPI.m │ ├── AFCache+FileAttributes.h │ ├── AFCache+FileAttributes.m │ ├── AFCache+Mimetypes.h │ ├── AFCache+Mimetypes.m │ ├── AFCache+Packaging.h │ ├── AFCache+Packaging.m │ ├── AFCache+PrivateAPI.h │ ├── AFCache.h │ ├── AFCache.m │ ├── AFCachePackageCreator.h │ ├── AFCachePackageCreator.m │ ├── AFCache_Logging.h │ ├── AFCacheableItem+FileAttributes.h │ ├── AFCacheableItem+FileAttributes.m │ ├── AFCacheableItem+Packaging.h │ ├── AFCacheableItem+Packaging.m │ ├── AFCacheableItem.h │ ├── AFCacheableItem.m │ ├── AFCacheableItemInfo.h │ ├── AFCacheableItemInfo.m │ ├── AFDownloadOperation.h │ ├── AFDownloadOperation.m │ ├── AFHTTPURLProtocol.h │ ├── AFHTTPURLProtocol.m │ ├── AFMediaTypeParser.h │ ├── AFMediaTypeParser.m │ ├── AFPackageInfo.h │ ├── AFPackageInfo.m │ ├── AFRequestConfiguration.h │ ├── AFRequestConfiguration.m │ ├── AFURLCache.h │ ├── AFURLCache.m │ ├── DateParser.h │ └── DateParser.m └── testserver.py