├── LocalProfile ├── Assets │ ├── app_icon.png │ ├── app_icon.psd │ ├── app_icon@2x.png │ ├── webclip_icon.png │ ├── webclip_icon.psd │ └── webclip_icon@2x.png ├── LocalProfile.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── LocalProfile.xccheckout │ │ └── xcuserdata │ │ │ └── Jonathan.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── Jonathan.xcuserdatad │ │ └── xcschemes │ │ ├── LocalProfile.xcscheme │ │ └── xcschememanagement.plist ├── LocalProfile.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── LocalProfile.xccheckout │ └── xcuserdata │ │ └── Jonathan.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── LocalProfile │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ └── app_icon@2x.png │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── LocalProfile-Info.plist │ ├── LocalProfile-Prefix.pch │ ├── ProfileGenerator.h │ ├── ProfileGenerator.m │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── LocalProfileTests │ ├── LocalProfileTests-Info.plist │ ├── LocalProfileTests.m │ └── en.lproj │ │ └── InfoPlist.strings ├── Podfile ├── Podfile.lock ├── Pods │ ├── BuildHeaders │ │ ├── CocoaAsyncSocket │ │ │ ├── AsyncSocket.h │ │ │ ├── AsyncUdpSocket.h │ │ │ ├── GCDAsyncSocket.h │ │ │ └── GCDAsyncUdpSocket.h │ │ ├── CocoaHTTPServer │ │ │ ├── DAVConnection.h │ │ │ ├── DAVResponse.h │ │ │ ├── DDData.h │ │ │ ├── DDNumber.h │ │ │ ├── DDRange.h │ │ │ ├── DELETEResponse.h │ │ │ ├── HTTPAsyncFileResponse.h │ │ │ ├── HTTPAuthenticationRequest.h │ │ │ ├── HTTPConnection.h │ │ │ ├── HTTPDataResponse.h │ │ │ ├── HTTPDynamicFileResponse.h │ │ │ ├── HTTPFileResponse.h │ │ │ ├── HTTPLogging.h │ │ │ ├── HTTPMessage.h │ │ │ ├── HTTPRedirectResponse.h │ │ │ ├── HTTPResponse.h │ │ │ ├── HTTPServer.h │ │ │ ├── MultipartFormDataParser.h │ │ │ ├── MultipartMessageHeader.h │ │ │ ├── MultipartMessageHeaderField.h │ │ │ ├── PUTResponse.h │ │ │ └── WebSocket.h │ │ └── CocoaLumberjack │ │ │ ├── DDASLLogger.h │ │ │ ├── DDAbstractDatabaseLogger.h │ │ │ ├── DDContextFilterLogFormatter.h │ │ │ ├── DDDispatchQueueLogFormatter.h │ │ │ ├── DDFileLogger.h │ │ │ ├── DDLog+LOGV.h │ │ │ ├── DDLog.h │ │ │ ├── DDMultiFormatter.h │ │ │ └── DDTTYLogger.h │ ├── CocoaAsyncSocket │ │ ├── GCD │ │ │ ├── GCDAsyncSocket.h │ │ │ ├── GCDAsyncSocket.m │ │ │ ├── GCDAsyncUdpSocket.h │ │ │ └── GCDAsyncUdpSocket.m │ │ ├── README.markdown │ │ └── RunLoop │ │ │ ├── AsyncSocket.h │ │ │ ├── AsyncSocket.m │ │ │ ├── AsyncUdpSocket.h │ │ │ └── AsyncUdpSocket.m │ ├── CocoaHTTPServer │ │ ├── Core │ │ │ ├── Categories │ │ │ │ ├── DDData.h │ │ │ │ ├── DDData.m │ │ │ │ ├── DDNumber.h │ │ │ │ ├── DDNumber.m │ │ │ │ ├── DDRange.h │ │ │ │ └── DDRange.m │ │ │ ├── HTTPAuthenticationRequest.h │ │ │ ├── HTTPAuthenticationRequest.m │ │ │ ├── HTTPConnection.h │ │ │ ├── HTTPConnection.m │ │ │ ├── HTTPLogging.h │ │ │ ├── HTTPMessage.h │ │ │ ├── HTTPMessage.m │ │ │ ├── HTTPResponse.h │ │ │ ├── HTTPServer.h │ │ │ ├── HTTPServer.m │ │ │ ├── Mime │ │ │ │ ├── MultipartFormDataParser.h │ │ │ │ ├── MultipartFormDataParser.m │ │ │ │ ├── MultipartMessageHeader.h │ │ │ │ ├── MultipartMessageHeader.m │ │ │ │ ├── MultipartMessageHeaderField.h │ │ │ │ └── MultipartMessageHeaderField.m │ │ │ ├── Responses │ │ │ │ ├── HTTPAsyncFileResponse.h │ │ │ │ ├── HTTPAsyncFileResponse.m │ │ │ │ ├── HTTPDataResponse.h │ │ │ │ ├── HTTPDataResponse.m │ │ │ │ ├── HTTPDynamicFileResponse.h │ │ │ │ ├── HTTPDynamicFileResponse.m │ │ │ │ ├── HTTPFileResponse.h │ │ │ │ ├── HTTPFileResponse.m │ │ │ │ ├── HTTPRedirectResponse.h │ │ │ │ └── HTTPRedirectResponse.m │ │ │ ├── WebSocket.h │ │ │ └── WebSocket.m │ │ ├── Extensions │ │ │ └── WebDAV │ │ │ │ ├── DAVConnection.h │ │ │ │ ├── DAVConnection.m │ │ │ │ ├── DAVResponse.h │ │ │ │ ├── DAVResponse.m │ │ │ │ ├── DELETEResponse.h │ │ │ │ ├── DELETEResponse.m │ │ │ │ ├── PUTResponse.h │ │ │ │ └── PUTResponse.m │ │ ├── LICENSE.txt │ │ └── README.markdown │ ├── CocoaLumberjack │ │ ├── LICENSE.txt │ │ ├── Lumberjack │ │ │ ├── DDASLLogger.h │ │ │ ├── DDASLLogger.m │ │ │ ├── DDAbstractDatabaseLogger.h │ │ │ ├── DDAbstractDatabaseLogger.m │ │ │ ├── DDFileLogger.h │ │ │ ├── DDFileLogger.m │ │ │ ├── DDLog+LOGV.h │ │ │ ├── DDLog.h │ │ │ ├── DDLog.m │ │ │ ├── DDTTYLogger.h │ │ │ ├── DDTTYLogger.m │ │ │ └── Extensions │ │ │ │ ├── DDContextFilterLogFormatter.h │ │ │ │ ├── DDContextFilterLogFormatter.m │ │ │ │ ├── DDDispatchQueueLogFormatter.h │ │ │ │ ├── DDDispatchQueueLogFormatter.m │ │ │ │ ├── DDMultiFormatter.h │ │ │ │ ├── DDMultiFormatter.m │ │ │ │ └── README.txt │ │ └── README.markdown │ ├── Headers │ │ ├── CocoaAsyncSocket │ │ │ ├── AsyncSocket.h │ │ │ ├── AsyncUdpSocket.h │ │ │ ├── GCDAsyncSocket.h │ │ │ └── GCDAsyncUdpSocket.h │ │ ├── CocoaHTTPServer │ │ │ ├── DAVConnection.h │ │ │ ├── DAVResponse.h │ │ │ ├── DDData.h │ │ │ ├── DDNumber.h │ │ │ ├── DDRange.h │ │ │ ├── DELETEResponse.h │ │ │ ├── HTTPAsyncFileResponse.h │ │ │ ├── HTTPAuthenticationRequest.h │ │ │ ├── HTTPConnection.h │ │ │ ├── HTTPDataResponse.h │ │ │ ├── HTTPDynamicFileResponse.h │ │ │ ├── HTTPFileResponse.h │ │ │ ├── HTTPLogging.h │ │ │ ├── HTTPMessage.h │ │ │ ├── HTTPRedirectResponse.h │ │ │ ├── HTTPResponse.h │ │ │ ├── HTTPServer.h │ │ │ ├── MultipartFormDataParser.h │ │ │ ├── MultipartMessageHeader.h │ │ │ ├── MultipartMessageHeaderField.h │ │ │ ├── PUTResponse.h │ │ │ └── WebSocket.h │ │ └── CocoaLumberjack │ │ │ ├── DDASLLogger.h │ │ │ ├── DDAbstractDatabaseLogger.h │ │ │ ├── DDContextFilterLogFormatter.h │ │ │ ├── DDDispatchQueueLogFormatter.h │ │ │ ├── DDFileLogger.h │ │ │ ├── DDLog+LOGV.h │ │ │ ├── DDLog.h │ │ │ ├── DDMultiFormatter.h │ │ │ └── DDTTYLogger.h │ ├── Manifest.lock │ ├── Pods-CocoaAsyncSocket-Private.xcconfig │ ├── Pods-CocoaAsyncSocket-dummy.m │ ├── Pods-CocoaAsyncSocket-prefix.pch │ ├── Pods-CocoaAsyncSocket.xcconfig │ ├── Pods-CocoaHTTPServer-Private.xcconfig │ ├── Pods-CocoaHTTPServer-dummy.m │ ├── Pods-CocoaHTTPServer-prefix.pch │ ├── Pods-CocoaHTTPServer.xcconfig │ ├── Pods-CocoaLumberjack-Private.xcconfig │ ├── Pods-CocoaLumberjack-dummy.m │ ├── Pods-CocoaLumberjack-prefix.pch │ ├── Pods-CocoaLumberjack.xcconfig │ ├── Pods-acknowledgements.markdown │ ├── Pods-acknowledgements.plist │ ├── Pods-dummy.m │ ├── Pods-environment.h │ ├── Pods-resources.sh │ ├── Pods.xcconfig │ └── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ └── Jonathan.xcuserdatad │ │ └── xcschemes │ │ ├── Pods-CocoaAsyncSocket.xcscheme │ │ ├── Pods-CocoaHTTPServer.xcscheme │ │ ├── Pods-CocoaLumberjack.xcscheme │ │ ├── Pods.xcscheme │ │ └── xcschememanagement.plist └── Profiles │ └── phone_template.mobileconfig └── README.md /LocalProfile/Assets/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Assets/app_icon.png -------------------------------------------------------------------------------- /LocalProfile/Assets/app_icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Assets/app_icon.psd -------------------------------------------------------------------------------- /LocalProfile/Assets/app_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Assets/app_icon@2x.png -------------------------------------------------------------------------------- /LocalProfile/Assets/webclip_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Assets/webclip_icon.png -------------------------------------------------------------------------------- /LocalProfile/Assets/webclip_icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Assets/webclip_icon.psd -------------------------------------------------------------------------------- /LocalProfile/Assets/webclip_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Assets/webclip_icon@2x.png -------------------------------------------------------------------------------- /LocalProfile/LocalProfile.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LocalProfile/LocalProfile.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LocalProfile/LocalProfile.xcodeproj/project.xcworkspace/xcshareddata/LocalProfile.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile.xcodeproj/project.xcworkspace/xcshareddata/LocalProfile.xccheckout -------------------------------------------------------------------------------- /LocalProfile/LocalProfile.xcodeproj/project.xcworkspace/xcuserdata/Jonathan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile.xcodeproj/project.xcworkspace/xcuserdata/Jonathan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /LocalProfile/LocalProfile.xcodeproj/xcuserdata/Jonathan.xcuserdatad/xcschemes/LocalProfile.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile.xcodeproj/xcuserdata/Jonathan.xcuserdatad/xcschemes/LocalProfile.xcscheme -------------------------------------------------------------------------------- /LocalProfile/LocalProfile.xcodeproj/xcuserdata/Jonathan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile.xcodeproj/xcuserdata/Jonathan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LocalProfile/LocalProfile.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LocalProfile/LocalProfile.xcworkspace/xcshareddata/LocalProfile.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile.xcworkspace/xcshareddata/LocalProfile.xccheckout -------------------------------------------------------------------------------- /LocalProfile/LocalProfile.xcworkspace/xcuserdata/Jonathan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile.xcworkspace/xcuserdata/Jonathan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /LocalProfile/LocalProfile/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile/AppDelegate.h -------------------------------------------------------------------------------- /LocalProfile/LocalProfile/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile/AppDelegate.m -------------------------------------------------------------------------------- /LocalProfile/LocalProfile/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LocalProfile/LocalProfile/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LocalProfile/LocalProfile/Images.xcassets/AppIcon.appiconset/app_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile/Images.xcassets/AppIcon.appiconset/app_icon@2x.png -------------------------------------------------------------------------------- /LocalProfile/LocalProfile/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /LocalProfile/LocalProfile/LocalProfile-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile/LocalProfile-Info.plist -------------------------------------------------------------------------------- /LocalProfile/LocalProfile/LocalProfile-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile/LocalProfile-Prefix.pch -------------------------------------------------------------------------------- /LocalProfile/LocalProfile/ProfileGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile/ProfileGenerator.h -------------------------------------------------------------------------------- /LocalProfile/LocalProfile/ProfileGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile/ProfileGenerator.m -------------------------------------------------------------------------------- /LocalProfile/LocalProfile/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile/ViewController.h -------------------------------------------------------------------------------- /LocalProfile/LocalProfile/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile/ViewController.m -------------------------------------------------------------------------------- /LocalProfile/LocalProfile/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalProfile/LocalProfile/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfile/main.m -------------------------------------------------------------------------------- /LocalProfile/LocalProfileTests/LocalProfileTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfileTests/LocalProfileTests-Info.plist -------------------------------------------------------------------------------- /LocalProfile/LocalProfileTests/LocalProfileTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/LocalProfileTests/LocalProfileTests.m -------------------------------------------------------------------------------- /LocalProfile/LocalProfileTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LocalProfile/Podfile: -------------------------------------------------------------------------------- 1 | pod 'CocoaHTTPServer', '~> 2.3' 2 | -------------------------------------------------------------------------------- /LocalProfile/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Podfile.lock -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaAsyncSocket/AsyncSocket.h: -------------------------------------------------------------------------------- 1 | ../../CocoaAsyncSocket/RunLoop/AsyncSocket.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaAsyncSocket/AsyncUdpSocket.h: -------------------------------------------------------------------------------- 1 | ../../CocoaAsyncSocket/RunLoop/AsyncUdpSocket.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaAsyncSocket/GCDAsyncSocket.h: -------------------------------------------------------------------------------- 1 | ../../CocoaAsyncSocket/GCD/GCDAsyncSocket.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaAsyncSocket/GCDAsyncUdpSocket.h: -------------------------------------------------------------------------------- 1 | ../../CocoaAsyncSocket/GCD/GCDAsyncUdpSocket.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/DAVConnection.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Extensions/WebDAV/DAVConnection.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/DAVResponse.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Extensions/WebDAV/DAVResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/DDData.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Categories/DDData.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/DDNumber.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Categories/DDNumber.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/DDRange.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Categories/DDRange.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/DELETEResponse.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Extensions/WebDAV/DELETEResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/HTTPAsyncFileResponse.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Responses/HTTPAsyncFileResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/HTTPAuthenticationRequest.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/HTTPAuthenticationRequest.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/HTTPConnection.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/HTTPConnection.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/HTTPDataResponse.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Responses/HTTPDataResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/HTTPDynamicFileResponse.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Responses/HTTPDynamicFileResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/HTTPFileResponse.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Responses/HTTPFileResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/HTTPLogging.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/HTTPLogging.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/HTTPMessage.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/HTTPMessage.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/HTTPRedirectResponse.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Responses/HTTPRedirectResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/HTTPResponse.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/HTTPResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/HTTPServer.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/HTTPServer.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/MultipartFormDataParser.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Mime/MultipartFormDataParser.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/MultipartMessageHeader.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Mime/MultipartMessageHeader.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/MultipartMessageHeaderField.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Mime/MultipartMessageHeaderField.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/PUTResponse.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Extensions/WebDAV/PUTResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaHTTPServer/WebSocket.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/WebSocket.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaLumberjack/DDASLLogger.h: -------------------------------------------------------------------------------- 1 | ../../CocoaLumberjack/Lumberjack/DDASLLogger.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaLumberjack/DDAbstractDatabaseLogger.h: -------------------------------------------------------------------------------- 1 | ../../CocoaLumberjack/Lumberjack/DDAbstractDatabaseLogger.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaLumberjack/DDContextFilterLogFormatter.h: -------------------------------------------------------------------------------- 1 | ../../CocoaLumberjack/Lumberjack/Extensions/DDContextFilterLogFormatter.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaLumberjack/DDDispatchQueueLogFormatter.h: -------------------------------------------------------------------------------- 1 | ../../CocoaLumberjack/Lumberjack/Extensions/DDDispatchQueueLogFormatter.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaLumberjack/DDFileLogger.h: -------------------------------------------------------------------------------- 1 | ../../CocoaLumberjack/Lumberjack/DDFileLogger.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaLumberjack/DDLog+LOGV.h: -------------------------------------------------------------------------------- 1 | ../../CocoaLumberjack/Lumberjack/DDLog+LOGV.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaLumberjack/DDLog.h: -------------------------------------------------------------------------------- 1 | ../../CocoaLumberjack/Lumberjack/DDLog.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaLumberjack/DDMultiFormatter.h: -------------------------------------------------------------------------------- 1 | ../../CocoaLumberjack/Lumberjack/Extensions/DDMultiFormatter.h -------------------------------------------------------------------------------- /LocalProfile/Pods/BuildHeaders/CocoaLumberjack/DDTTYLogger.h: -------------------------------------------------------------------------------- 1 | ../../CocoaLumberjack/Lumberjack/DDTTYLogger.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaAsyncSocket/GCD/GCDAsyncSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaAsyncSocket/GCD/GCDAsyncSocket.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaAsyncSocket/GCD/GCDAsyncSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaAsyncSocket/GCD/GCDAsyncSocket.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaAsyncSocket/GCD/GCDAsyncUdpSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaAsyncSocket/GCD/GCDAsyncUdpSocket.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaAsyncSocket/GCD/GCDAsyncUdpSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaAsyncSocket/GCD/GCDAsyncUdpSocket.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaAsyncSocket/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaAsyncSocket/README.markdown -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaAsyncSocket/RunLoop/AsyncSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaAsyncSocket/RunLoop/AsyncSocket.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaAsyncSocket/RunLoop/AsyncSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaAsyncSocket/RunLoop/AsyncSocket.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaAsyncSocket/RunLoop/AsyncUdpSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaAsyncSocket/RunLoop/AsyncUdpSocket.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaAsyncSocket/RunLoop/AsyncUdpSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaAsyncSocket/RunLoop/AsyncUdpSocket.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Categories/DDData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Categories/DDData.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Categories/DDData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Categories/DDData.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Categories/DDNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Categories/DDNumber.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Categories/DDNumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Categories/DDNumber.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Categories/DDRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Categories/DDRange.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Categories/DDRange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Categories/DDRange.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/HTTPAuthenticationRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/HTTPAuthenticationRequest.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/HTTPAuthenticationRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/HTTPAuthenticationRequest.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/HTTPConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/HTTPConnection.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/HTTPConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/HTTPConnection.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/HTTPLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/HTTPLogging.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/HTTPMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/HTTPMessage.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/HTTPMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/HTTPMessage.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/HTTPResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/HTTPResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/HTTPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/HTTPServer.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/HTTPServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/HTTPServer.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Mime/MultipartFormDataParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Mime/MultipartFormDataParser.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Mime/MultipartFormDataParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Mime/MultipartFormDataParser.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Mime/MultipartMessageHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Mime/MultipartMessageHeader.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Mime/MultipartMessageHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Mime/MultipartMessageHeader.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Mime/MultipartMessageHeaderField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Mime/MultipartMessageHeaderField.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Mime/MultipartMessageHeaderField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Mime/MultipartMessageHeaderField.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPAsyncFileResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPAsyncFileResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPAsyncFileResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPAsyncFileResponse.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPDataResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPDataResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPDataResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPDataResponse.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPDynamicFileResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPDynamicFileResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPDynamicFileResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPDynamicFileResponse.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPFileResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPFileResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPFileResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPFileResponse.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPRedirectResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPRedirectResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPRedirectResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/Responses/HTTPRedirectResponse.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/WebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/WebSocket.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Core/WebSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Core/WebSocket.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Extensions/WebDAV/DAVConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Extensions/WebDAV/DAVConnection.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Extensions/WebDAV/DAVConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Extensions/WebDAV/DAVConnection.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Extensions/WebDAV/DAVResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Extensions/WebDAV/DAVResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Extensions/WebDAV/DAVResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Extensions/WebDAV/DAVResponse.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Extensions/WebDAV/DELETEResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Extensions/WebDAV/DELETEResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Extensions/WebDAV/DELETEResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Extensions/WebDAV/DELETEResponse.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Extensions/WebDAV/PUTResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Extensions/WebDAV/PUTResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/Extensions/WebDAV/PUTResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/Extensions/WebDAV/PUTResponse.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/LICENSE.txt -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaHTTPServer/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaHTTPServer/README.markdown -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/LICENSE.txt -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDASLLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDASLLogger.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDASLLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDASLLogger.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDAbstractDatabaseLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDAbstractDatabaseLogger.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDAbstractDatabaseLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDAbstractDatabaseLogger.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDFileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDFileLogger.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDFileLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDFileLogger.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDLog+LOGV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDLog+LOGV.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDLog.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDLog.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDTTYLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDTTYLogger.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDTTYLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/Lumberjack/DDTTYLogger.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/Lumberjack/Extensions/DDContextFilterLogFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/Lumberjack/Extensions/DDContextFilterLogFormatter.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/Lumberjack/Extensions/DDContextFilterLogFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/Lumberjack/Extensions/DDContextFilterLogFormatter.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/Lumberjack/Extensions/DDDispatchQueueLogFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/Lumberjack/Extensions/DDDispatchQueueLogFormatter.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/Lumberjack/Extensions/DDDispatchQueueLogFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/Lumberjack/Extensions/DDDispatchQueueLogFormatter.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/Lumberjack/Extensions/DDMultiFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/Lumberjack/Extensions/DDMultiFormatter.h -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/Lumberjack/Extensions/DDMultiFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/Lumberjack/Extensions/DDMultiFormatter.m -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/Lumberjack/Extensions/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/Lumberjack/Extensions/README.txt -------------------------------------------------------------------------------- /LocalProfile/Pods/CocoaLumberjack/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/CocoaLumberjack/README.markdown -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaAsyncSocket/AsyncSocket.h: -------------------------------------------------------------------------------- 1 | ../../CocoaAsyncSocket/RunLoop/AsyncSocket.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaAsyncSocket/AsyncUdpSocket.h: -------------------------------------------------------------------------------- 1 | ../../CocoaAsyncSocket/RunLoop/AsyncUdpSocket.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaAsyncSocket/GCDAsyncSocket.h: -------------------------------------------------------------------------------- 1 | ../../CocoaAsyncSocket/GCD/GCDAsyncSocket.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaAsyncSocket/GCDAsyncUdpSocket.h: -------------------------------------------------------------------------------- 1 | ../../CocoaAsyncSocket/GCD/GCDAsyncUdpSocket.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/DAVConnection.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Extensions/WebDAV/DAVConnection.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/DAVResponse.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Extensions/WebDAV/DAVResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/DDData.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Categories/DDData.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/DDNumber.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Categories/DDNumber.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/DDRange.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Categories/DDRange.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/DELETEResponse.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Extensions/WebDAV/DELETEResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/HTTPAsyncFileResponse.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Responses/HTTPAsyncFileResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/HTTPAuthenticationRequest.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/HTTPAuthenticationRequest.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/HTTPConnection.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/HTTPConnection.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/HTTPDataResponse.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Responses/HTTPDataResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/HTTPDynamicFileResponse.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Responses/HTTPDynamicFileResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/HTTPFileResponse.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Responses/HTTPFileResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/HTTPLogging.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/HTTPLogging.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/HTTPMessage.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/HTTPMessage.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/HTTPRedirectResponse.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Responses/HTTPRedirectResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/HTTPResponse.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/HTTPResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/HTTPServer.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/HTTPServer.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/MultipartFormDataParser.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Mime/MultipartFormDataParser.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/MultipartMessageHeader.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Mime/MultipartMessageHeader.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/MultipartMessageHeaderField.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/Mime/MultipartMessageHeaderField.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/PUTResponse.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Extensions/WebDAV/PUTResponse.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaHTTPServer/WebSocket.h: -------------------------------------------------------------------------------- 1 | ../../CocoaHTTPServer/Core/WebSocket.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaLumberjack/DDASLLogger.h: -------------------------------------------------------------------------------- 1 | ../../CocoaLumberjack/Lumberjack/DDASLLogger.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaLumberjack/DDAbstractDatabaseLogger.h: -------------------------------------------------------------------------------- 1 | ../../CocoaLumberjack/Lumberjack/DDAbstractDatabaseLogger.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaLumberjack/DDContextFilterLogFormatter.h: -------------------------------------------------------------------------------- 1 | ../../CocoaLumberjack/Lumberjack/Extensions/DDContextFilterLogFormatter.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaLumberjack/DDDispatchQueueLogFormatter.h: -------------------------------------------------------------------------------- 1 | ../../CocoaLumberjack/Lumberjack/Extensions/DDDispatchQueueLogFormatter.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaLumberjack/DDFileLogger.h: -------------------------------------------------------------------------------- 1 | ../../CocoaLumberjack/Lumberjack/DDFileLogger.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaLumberjack/DDLog+LOGV.h: -------------------------------------------------------------------------------- 1 | ../../CocoaLumberjack/Lumberjack/DDLog+LOGV.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaLumberjack/DDLog.h: -------------------------------------------------------------------------------- 1 | ../../CocoaLumberjack/Lumberjack/DDLog.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaLumberjack/DDMultiFormatter.h: -------------------------------------------------------------------------------- 1 | ../../CocoaLumberjack/Lumberjack/Extensions/DDMultiFormatter.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Headers/CocoaLumberjack/DDTTYLogger.h: -------------------------------------------------------------------------------- 1 | ../../CocoaLumberjack/Lumberjack/DDTTYLogger.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Manifest.lock -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods-CocoaAsyncSocket-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods-CocoaAsyncSocket-Private.xcconfig -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods-CocoaAsyncSocket-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods-CocoaAsyncSocket-dummy.m -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods-CocoaAsyncSocket-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods-CocoaAsyncSocket-prefix.pch -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods-CocoaAsyncSocket.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods-CocoaAsyncSocket.xcconfig -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods-CocoaHTTPServer-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods-CocoaHTTPServer-Private.xcconfig -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods-CocoaHTTPServer-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods-CocoaHTTPServer-dummy.m -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods-CocoaHTTPServer-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods-CocoaHTTPServer-prefix.pch -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods-CocoaHTTPServer.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods-CocoaHTTPServer.xcconfig -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods-CocoaLumberjack-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods-CocoaLumberjack-Private.xcconfig -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods-CocoaLumberjack-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods-CocoaLumberjack-dummy.m -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods-CocoaLumberjack-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods-CocoaLumberjack-prefix.pch -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods-CocoaLumberjack.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods-environment.h -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods.xcconfig -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods.xcodeproj/xcuserdata/Jonathan.xcuserdatad/xcschemes/Pods-CocoaAsyncSocket.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods.xcodeproj/xcuserdata/Jonathan.xcuserdatad/xcschemes/Pods-CocoaAsyncSocket.xcscheme -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods.xcodeproj/xcuserdata/Jonathan.xcuserdatad/xcschemes/Pods-CocoaHTTPServer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods.xcodeproj/xcuserdata/Jonathan.xcuserdatad/xcschemes/Pods-CocoaHTTPServer.xcscheme -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods.xcodeproj/xcuserdata/Jonathan.xcuserdatad/xcschemes/Pods-CocoaLumberjack.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods.xcodeproj/xcuserdata/Jonathan.xcuserdatad/xcschemes/Pods-CocoaLumberjack.xcscheme -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods.xcodeproj/xcuserdata/Jonathan.xcuserdatad/xcschemes/Pods.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods.xcodeproj/xcuserdata/Jonathan.xcuserdatad/xcschemes/Pods.xcscheme -------------------------------------------------------------------------------- /LocalProfile/Pods/Pods.xcodeproj/xcuserdata/Jonathan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Pods/Pods.xcodeproj/xcuserdata/Jonathan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LocalProfile/Profiles/phone_template.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/LocalProfile/Profiles/phone_template.mobileconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanlking/LocalProfile/HEAD/README.md --------------------------------------------------------------------------------