├── DemoFMP4 ├── AFNetworking │ ├── AFNetworking.podspec │ ├── AFNetworking.xcworkspace │ │ └── contents.xcworkspacedata │ ├── AFNetworking │ │ ├── AFHTTPClient.h │ │ ├── AFHTTPClient.m │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperation.m │ │ ├── AFImageRequestOperation.h │ │ ├── AFImageRequestOperation.m │ │ ├── AFJSONRequestOperation.h │ │ ├── AFJSONRequestOperation.m │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── AFNetworking.h │ │ ├── AFPropertyListRequestOperation.h │ │ ├── AFPropertyListRequestOperation.m │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLConnectionOperation.m │ │ ├── AFXMLRequestOperation.h │ │ ├── AFXMLRequestOperation.m │ │ ├── UIImageView+AFNetworking.h │ │ └── UIImageView+AFNetworking.m │ ├── CHANGES │ ├── Example │ │ ├── AFNetworking Example.entitlements │ │ ├── AFNetworking Mac Example.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── AFNetworking iOS Example.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Classes │ │ │ ├── AFAppDotNetAPIClient.h │ │ │ ├── AFAppDotNetAPIClient.m │ │ │ ├── Controllers │ │ │ │ ├── GlobalTimelineViewController.h │ │ │ │ └── GlobalTimelineViewController.m │ │ │ ├── Models │ │ │ │ ├── Post.h │ │ │ │ ├── Post.m │ │ │ │ ├── User.h │ │ │ │ └── User.m │ │ │ └── Views │ │ │ │ ├── PostTableViewCell.h │ │ │ │ └── PostTableViewCell.m │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ ├── Images │ │ │ ├── profile-image-placeholder.png │ │ │ └── profile-image-placeholder@2x.png │ │ ├── Mac-Info.plist │ │ ├── MainMenu.xib │ │ ├── Prefix.pch │ │ ├── adn.cer │ │ ├── en.lproj │ │ │ └── MainMenu.xib │ │ ├── iOS-Info.plist │ │ └── main.m │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ └── Tests │ │ ├── AFHTTPClientTests.m │ │ ├── AFHTTPRequestOperationTests.m │ │ ├── AFImageRequestOperationTests.m │ │ ├── AFJSONRequestOperationTests.m │ │ ├── AFMockURLProtocol.h │ │ ├── AFMockURLProtocol.m │ │ ├── AFNetworking Tests.xcodeproj │ │ └── project.pbxproj │ │ ├── AFNetworking-Prefix.pch │ │ ├── AFNetworkingTests-Info.plist │ │ ├── AFNetworkingTests.h │ │ ├── AFNetworkingTests.m │ │ ├── AFURLConnectionOperationTests.m │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Resources │ │ ├── ca.cer │ │ ├── derived.cert │ │ ├── root_certificate.cer │ │ └── root_certificate.key │ │ └── Schemes │ │ ├── OS X Tests.xcscheme │ │ └── iOS Tests.xcscheme ├── Bento4 │ ├── CApi │ │ ├── Bento4C.cpp │ │ └── Bento4C.h │ ├── Codecs │ │ ├── Ap4AdtsParser.cpp │ │ ├── Ap4AdtsParser.h │ │ ├── Ap4AvcParser.cpp │ │ ├── Ap4AvcParser.h │ │ ├── Ap4BitStream.cpp │ │ ├── Ap4BitStream.h │ │ ├── Ap4HevcParser.cpp │ │ ├── Ap4HevcParser.h │ │ ├── Ap4Mp4AudioInfo.cpp │ │ ├── Ap4Mp4AudioInfo.h │ │ ├── Ap4NalParser.cpp │ │ └── Ap4NalParser.h │ ├── Core │ │ ├── Ap4.cpp │ │ ├── Ap4.h │ │ ├── Ap48bdlAtom.cpp │ │ ├── Ap48bdlAtom.h │ │ ├── Ap4AinfAtom.cpp │ │ ├── Ap4AinfAtom.h │ │ ├── Ap4Array.h │ │ ├── Ap4Atom.cpp │ │ ├── Ap4Atom.h │ │ ├── Ap4AtomFactory.cpp │ │ ├── Ap4AtomFactory.h │ │ ├── Ap4AtomSampleTable.cpp │ │ ├── Ap4AtomSampleTable.h │ │ ├── Ap4AvccAtom.cpp │ │ ├── Ap4AvccAtom.h │ │ ├── Ap4BlocAtom.cpp │ │ ├── Ap4BlocAtom.h │ │ ├── Ap4ByteStream.cpp │ │ ├── Ap4ByteStream.h │ │ ├── Ap4Co64Atom.cpp │ │ ├── Ap4Co64Atom.h │ │ ├── Ap4Command.cpp │ │ ├── Ap4Command.h │ │ ├── Ap4CommandFactory.cpp │ │ ├── Ap4CommandFactory.h │ │ ├── Ap4CommonEncryption.cpp │ │ ├── Ap4CommonEncryption.h │ │ ├── Ap4Config.h │ │ ├── Ap4Constants.h │ │ ├── Ap4ContainerAtom.cpp │ │ ├── Ap4ContainerAtom.h │ │ ├── Ap4CttsAtom.cpp │ │ ├── Ap4CttsAtom.h │ │ ├── Ap4DataBuffer.cpp │ │ ├── Ap4DataBuffer.h │ │ ├── Ap4Debug.cpp │ │ ├── Ap4Debug.h │ │ ├── Ap4Dec3Atom.cpp │ │ ├── Ap4Dec3Atom.h │ │ ├── Ap4DecoderConfigDescriptor.cpp │ │ ├── Ap4DecoderConfigDescriptor.h │ │ ├── Ap4DecoderSpecificInfoDescriptor.cpp │ │ ├── Ap4DecoderSpecificInfoDescriptor.h │ │ ├── Ap4Descriptor.cpp │ │ ├── Ap4Descriptor.h │ │ ├── Ap4DescriptorFactory.cpp │ │ ├── Ap4DescriptorFactory.h │ │ ├── Ap4DrefAtom.cpp │ │ ├── Ap4DrefAtom.h │ │ ├── Ap4DynamicCast.h │ │ ├── Ap4ElstAtom.cpp │ │ ├── Ap4ElstAtom.h │ │ ├── Ap4EsDescriptor.cpp │ │ ├── Ap4EsDescriptor.h │ │ ├── Ap4EsdsAtom.cpp │ │ ├── Ap4EsdsAtom.h │ │ ├── Ap4Expandable.cpp │ │ ├── Ap4Expandable.h │ │ ├── Ap4File.cpp │ │ ├── Ap4File.h │ │ ├── Ap4FileByteStream.h │ │ ├── Ap4FileCopier.cpp │ │ ├── Ap4FileCopier.h │ │ ├── Ap4FileWriter.cpp │ │ ├── Ap4FileWriter.h │ │ ├── Ap4FragmentSampleTable.cpp │ │ ├── Ap4FragmentSampleTable.h │ │ ├── Ap4FrmaAtom.cpp │ │ ├── Ap4FrmaAtom.h │ │ ├── Ap4FtypAtom.cpp │ │ ├── Ap4FtypAtom.h │ │ ├── Ap4GrpiAtom.cpp │ │ ├── Ap4GrpiAtom.h │ │ ├── Ap4HdlrAtom.cpp │ │ ├── Ap4HdlrAtom.h │ │ ├── Ap4HintTrackReader.cpp │ │ ├── Ap4HintTrackReader.h │ │ ├── Ap4HmhdAtom.cpp │ │ ├── Ap4HmhdAtom.h │ │ ├── Ap4HvccAtom.cpp │ │ ├── Ap4HvccAtom.h │ │ ├── Ap4IkmsAtom.cpp │ │ ├── Ap4IkmsAtom.h │ │ ├── Ap4Interfaces.h │ │ ├── Ap4IodsAtom.cpp │ │ ├── Ap4IodsAtom.h │ │ ├── Ap4Ipmp.cpp │ │ ├── Ap4Ipmp.h │ │ ├── Ap4IproAtom.cpp │ │ ├── Ap4IproAtom.h │ │ ├── Ap4IsfmAtom.cpp │ │ ├── Ap4IsfmAtom.h │ │ ├── Ap4IsltAtom.cpp │ │ ├── Ap4IsltAtom.h │ │ ├── Ap4IsmaCryp.cpp │ │ ├── Ap4IsmaCryp.h │ │ ├── Ap4LinearReader.cpp │ │ ├── Ap4LinearReader.h │ │ ├── Ap4List.h │ │ ├── Ap4Marlin.cpp │ │ ├── Ap4Marlin.h │ │ ├── Ap4MdhdAtom.cpp │ │ ├── Ap4MdhdAtom.h │ │ ├── Ap4MehdAtom.cpp │ │ ├── Ap4MehdAtom.h │ │ ├── Ap4MfhdAtom.cpp │ │ ├── Ap4MfhdAtom.h │ │ ├── Ap4MfroAtom.cpp │ │ ├── Ap4MfroAtom.h │ │ ├── Ap4MoovAtom.cpp │ │ ├── Ap4MoovAtom.h │ │ ├── Ap4Movie.cpp │ │ ├── Ap4Movie.h │ │ ├── Ap4MovieFragment.cpp │ │ ├── Ap4MovieFragment.h │ │ ├── Ap4Mpeg2Ts.cpp │ │ ├── Ap4Mpeg2Ts.h │ │ ├── Ap4MvhdAtom.cpp │ │ ├── Ap4MvhdAtom.h │ │ ├── Ap4NmhdAtom.cpp │ │ ├── Ap4NmhdAtom.h │ │ ├── Ap4ObjectDescriptor.cpp │ │ ├── Ap4ObjectDescriptor.h │ │ ├── Ap4OdafAtom.cpp │ │ ├── Ap4OdafAtom.h │ │ ├── Ap4OddaAtom.cpp │ │ ├── Ap4OddaAtom.h │ │ ├── Ap4OdheAtom.cpp │ │ ├── Ap4OdheAtom.h │ │ ├── Ap4OhdrAtom.cpp │ │ ├── Ap4OhdrAtom.h │ │ ├── Ap4OmaDcf.cpp │ │ ├── Ap4OmaDcf.h │ │ ├── Ap4PdinAtom.cpp │ │ ├── Ap4PdinAtom.h │ │ ├── Ap4Piff.cpp │ │ ├── Ap4Piff.h │ │ ├── Ap4Processor.cpp │ │ ├── Ap4Processor.h │ │ ├── Ap4Protection.cpp │ │ ├── Ap4Protection.h │ │ ├── Ap4PsshAtom.cpp │ │ ├── Ap4PsshAtom.h │ │ ├── Ap4Results.cpp │ │ ├── Ap4Results.h │ │ ├── Ap4RtpAtom.cpp │ │ ├── Ap4RtpAtom.h │ │ ├── Ap4RtpHint.cpp │ │ ├── Ap4RtpHint.h │ │ ├── Ap4SLConfigDescriptor.cpp │ │ ├── Ap4SLConfigDescriptor.h │ │ ├── Ap4SaioAtom.cpp │ │ ├── Ap4SaioAtom.h │ │ ├── Ap4SaizAtom.cpp │ │ ├── Ap4SaizAtom.h │ │ ├── Ap4Sample.cpp │ │ ├── Ap4Sample.h │ │ ├── Ap4SampleDescription.cpp │ │ ├── Ap4SampleDescription.h │ │ ├── Ap4SampleEntry.cpp │ │ ├── Ap4SampleEntry.h │ │ ├── Ap4SampleSource.cpp │ │ ├── Ap4SampleSource.h │ │ ├── Ap4SampleTable.cpp │ │ ├── Ap4SampleTable.h │ │ ├── Ap4SbgpAtom.cpp │ │ ├── Ap4SbgpAtom.h │ │ ├── Ap4SchmAtom.cpp │ │ ├── Ap4SchmAtom.h │ │ ├── Ap4SdpAtom.cpp │ │ ├── Ap4SdpAtom.h │ │ ├── Ap4SegmentBuilder.cpp │ │ ├── Ap4SegmentBuilder.h │ │ ├── Ap4SencAtom.cpp │ │ ├── Ap4SencAtom.h │ │ ├── Ap4SgpdAtom.cpp │ │ ├── Ap4SgpdAtom.h │ │ ├── Ap4SidxAtom.cpp │ │ ├── Ap4SidxAtom.h │ │ ├── Ap4SmhdAtom.cpp │ │ ├── Ap4SmhdAtom.h │ │ ├── Ap4StcoAtom.cpp │ │ ├── Ap4StcoAtom.h │ │ ├── Ap4SthdAtom.cpp │ │ ├── Ap4SthdAtom.h │ │ ├── Ap4String.cpp │ │ ├── Ap4String.h │ │ ├── Ap4StscAtom.cpp │ │ ├── Ap4StscAtom.h │ │ ├── Ap4StsdAtom.cpp │ │ ├── Ap4StsdAtom.h │ │ ├── Ap4StssAtom.cpp │ │ ├── Ap4StssAtom.h │ │ ├── Ap4StszAtom.cpp │ │ ├── Ap4StszAtom.h │ │ ├── Ap4SttsAtom.cpp │ │ ├── Ap4SttsAtom.h │ │ ├── Ap4Stz2Atom.cpp │ │ ├── Ap4Stz2Atom.h │ │ ├── Ap4SyntheticSampleTable.cpp │ │ ├── Ap4SyntheticSampleTable.h │ │ ├── Ap4TencAtom.cpp │ │ ├── Ap4TencAtom.h │ │ ├── Ap4TfdtAtom.cpp │ │ ├── Ap4TfdtAtom.h │ │ ├── Ap4TfhdAtom.cpp │ │ ├── Ap4TfhdAtom.h │ │ ├── Ap4TfraAtom.cpp │ │ ├── Ap4TfraAtom.h │ │ ├── Ap4TimsAtom.cpp │ │ ├── Ap4TimsAtom.h │ │ ├── Ap4TkhdAtom.cpp │ │ ├── Ap4TkhdAtom.h │ │ ├── Ap4Track.cpp │ │ ├── Ap4Track.h │ │ ├── Ap4TrakAtom.cpp │ │ ├── Ap4TrakAtom.h │ │ ├── Ap4TrefTypeAtom.cpp │ │ ├── Ap4TrefTypeAtom.h │ │ ├── Ap4TrexAtom.cpp │ │ ├── Ap4TrexAtom.h │ │ ├── Ap4TrunAtom.cpp │ │ ├── Ap4TrunAtom.h │ │ ├── Ap4Types.h │ │ ├── Ap4UrlAtom.cpp │ │ ├── Ap4UrlAtom.h │ │ ├── Ap4Utils.cpp │ │ ├── Ap4Utils.h │ │ ├── Ap4UuidAtom.cpp │ │ ├── Ap4UuidAtom.h │ │ ├── Ap4Version.h │ │ ├── Ap4VmhdAtom.cpp │ │ └── Ap4VmhdAtom.h │ ├── Crypto │ │ ├── Ap4AesBlockCipher.cpp │ │ ├── Ap4AesBlockCipher.h │ │ ├── Ap4Hmac.cpp │ │ ├── Ap4Hmac.h │ │ ├── Ap4KeyWrap.cpp │ │ ├── Ap4KeyWrap.h │ │ ├── Ap4StreamCipher.cpp │ │ └── Ap4StreamCipher.h │ ├── MetaData │ │ ├── Ap4MetaData.cpp │ │ └── Ap4MetaData.h │ └── System │ │ ├── Posix │ │ └── Ap4PosixRandom.cpp │ │ └── StdC │ │ └── Ap4StdCFileByteStream.cpp ├── CocoaLumberjack │ ├── .travis.yml │ ├── Benchmarking │ │ ├── BaseNSLogging.h │ │ ├── BaseNSLogging.m │ │ ├── DynamicLogging.h │ │ ├── DynamicLogging.m │ │ ├── PerformanceTesting.h │ │ ├── PerformanceTesting.m │ │ ├── Results │ │ │ ├── Benchmark PowerMac.csv │ │ │ ├── Benchmark iMac.csv │ │ │ ├── Benchmark iPad.csv │ │ │ ├── Benchmark iPhone 3GS.csv │ │ │ ├── Benchmark iPodTouch3 GCD.csv │ │ │ ├── Lumberjack Benchmark (PowerMac).ograph │ │ │ ├── Lumberjack Benchmark (iMac).ograph │ │ │ ├── Lumberjack Benchmark (iPad).ograph │ │ │ └── Lumberjack Benchmark (iPhone 3GS).ograph │ │ ├── StaticLogging.h │ │ └── StaticLogging.m │ ├── CocoaLumberjack.podspec │ ├── 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 │ └── Xcode │ │ ├── BenchmarkIPhone │ │ ├── BenchmarkIPhone-Info.plist │ │ ├── BenchmarkIPhone.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── BenchmarkIPhone.xcscheme │ │ ├── BenchmarkIPhoneViewController.xib │ │ ├── BenchmarkIPhone_Prefix.pch │ │ ├── Classes │ │ │ ├── BenchmarkIPhoneAppDelegate.h │ │ │ ├── BenchmarkIPhoneAppDelegate.m │ │ │ ├── BenchmarkIPhoneViewController.h │ │ │ └── BenchmarkIPhoneViewController.m │ │ ├── Default-568h@2x.png │ │ ├── MainWindow.xib │ │ ├── ReadMe.txt │ │ └── main.m │ │ ├── BenchmarkMac │ │ ├── BenchmarkMac.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── BenchmarkMac.xcscheme │ │ ├── BenchmarkMac │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── BenchmarkMac-Info.plist │ │ │ ├── BenchmarkMac-Prefix.pch │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ └── main.m │ │ └── ReadMe.txt │ │ ├── ContextFilter │ │ ├── ContextFilter-Info.plist │ │ ├── ContextFilter.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── ContextFilter.xcscheme │ │ ├── ContextFilterAppDelegate.h │ │ ├── ContextFilterAppDelegate.m │ │ ├── ContextFilter_Prefix.pch │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── MyContextFilter.h │ │ ├── MyContextFilter.m │ │ ├── ThirdPartyFramework.h │ │ ├── ThirdPartyFramework.m │ │ └── main.m │ │ ├── CoreDataLogger │ │ ├── CoreDataLogger.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── CoreDataLogger.xcscheme │ │ └── CoreDataLogger │ │ │ ├── CoreDataLogger-Info.plist │ │ │ ├── CoreDataLogger-Prefix.pch │ │ │ ├── CoreDataLogger.h │ │ │ ├── CoreDataLogger.m │ │ │ ├── CoreDataLogger.xcdatamodeld │ │ │ └── .xccurrentversion │ │ │ ├── CoreDataLoggerAppDelegate.h │ │ │ ├── CoreDataLoggerAppDelegate.m │ │ │ ├── Log.xcdatamodeld │ │ │ ├── .xccurrentversion │ │ │ └── CocoaBotLog.xcdatamodel │ │ │ │ ├── elements │ │ │ │ └── layout │ │ │ ├── LogEntry.h │ │ │ ├── LogEntry.m │ │ │ ├── en.lproj │ │ │ ├── Credits.rtf │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ │ └── main.m │ │ ├── CustomFormatters │ │ ├── CustomFormatters-Info.plist │ │ ├── CustomFormatters.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── CustomFormatters.xcscheme │ │ ├── CustomFormattersAppDelegate.h │ │ ├── CustomFormattersAppDelegate.m │ │ ├── CustomFormatters_Prefix.pch │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── ReadMe.txt │ │ ├── TestFormatter.h │ │ ├── TestFormatter.m │ │ └── main.m │ │ ├── CustomLogLevels │ │ ├── CustomLogLevels-Info.plist │ │ ├── CustomLogLevels.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── CustomLogLevels.xcscheme │ │ ├── CustomLogLevelsAppDelegate.h │ │ ├── CustomLogLevelsAppDelegate.m │ │ ├── CustomLogLevels_Prefix.pch │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── MYLog.h │ │ ├── ReadMe.txt │ │ └── main.m │ │ ├── DispatchQueueLogger │ │ ├── DispatchQueueLogger.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── DispatchQueueLogger.xcscheme │ │ └── DispatchQueueLogger │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── DispatchQueueLogger-Info.plist │ │ │ ├── DispatchQueueLogger-Prefix.pch │ │ │ ├── en.lproj │ │ │ ├── Credits.rtf │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ │ └── main.m │ │ ├── FineGrainedLogging │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── FineGrainedLogging-Info.plist │ │ ├── FineGrainedLogging.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── FineGrainedLogging.xcscheme │ │ ├── FineGrainedLoggingAppDelegate.h │ │ ├── FineGrainedLoggingAppDelegate.m │ │ ├── FineGrainedLogging_Prefix.pch │ │ ├── MYLog.h │ │ ├── ReadMe.txt │ │ ├── TimerOne.h │ │ ├── TimerOne.m │ │ ├── TimerTwo.h │ │ ├── TimerTwo.m │ │ └── main.m │ │ ├── GlobalLogLevel │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── GlobalLogLevel-Info.plist │ │ ├── GlobalLogLevel.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── GlobalLogLevel.xcscheme │ │ ├── GlobalLogLevelAppDelegate.h │ │ ├── GlobalLogLevelAppDelegate.m │ │ ├── GlobalLogLevel_Prefix.pch │ │ ├── MyLogging.h │ │ ├── Stuff.h │ │ ├── Stuff.m │ │ └── main.m │ │ ├── LogFileCompressor │ │ ├── CompressingLogFileManager.h │ │ ├── CompressingLogFileManager.m │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── LogFileCompressor-Info.plist │ │ ├── LogFileCompressor.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── LogFileCompressor.xcscheme │ │ ├── LogFileCompressorAppDelegate.h │ │ ├── LogFileCompressorAppDelegate.m │ │ ├── LogFileCompressor_Prefix.pch │ │ ├── ReadMe.txt │ │ └── main.m │ │ ├── LumberjackFramework │ │ ├── Desktop │ │ │ ├── FmwkTest │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── FmwkTest-Info.plist │ │ │ │ ├── FmwkTest-Prefix.pch │ │ │ │ ├── en.lproj │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.xib │ │ │ │ └── main.m │ │ │ ├── Lumberjack.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── FmwkTest.xcscheme │ │ │ │ │ └── Lumberjack.xcscheme │ │ │ └── Lumberjack │ │ │ │ ├── Lumberjack-Info.plist │ │ │ │ ├── Lumberjack-Prefix.pch │ │ │ │ ├── Lumberjack.h │ │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ └── Mobile │ │ │ ├── Default-568h@2x.png │ │ │ ├── LibTest │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── LibTest-Info.plist │ │ │ ├── LibTest-Prefix.pch │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── ViewController.xib │ │ │ └── main.m │ │ │ ├── Lumberjack.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── LibTest.xcscheme │ │ │ │ └── Lumberjack.xcscheme │ │ │ └── Lumberjack │ │ │ ├── Lumberjack-Prefix.pch │ │ │ └── Lumberjack.h │ │ ├── OverflowTestMac │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── OverflowTestMac-Info.plist │ │ ├── OverflowTestMac.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── OverflowTestMac.xcscheme │ │ ├── OverflowTestMacAppDelegate.h │ │ ├── OverflowTestMacAppDelegate.m │ │ ├── OverflowTestMac_Prefix.pch │ │ ├── ReadMe.txt │ │ ├── SlowLogger.h │ │ ├── SlowLogger.m │ │ └── main.m │ │ ├── PerUserLogLevels │ │ ├── PerUserLogLevels.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── PerUserLogLevels.xcscheme │ │ ├── PerUserLogLevels │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── PerUserLogLevels-Info.plist │ │ │ ├── PerUserLogLevels-Prefix.pch │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ └── main.m │ │ └── Scripts │ │ │ └── LumberjackUser.bash │ │ ├── RollingTestMac │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── ReadMe.txt │ │ ├── RollingTestMac-Info.plist │ │ ├── RollingTestMac.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── RollingTestMac.xcscheme │ │ ├── RollingTestMacAppDelegate.h │ │ ├── RollingTestMacAppDelegate.m │ │ ├── RollingTestMac_Prefix.pch │ │ └── main.m │ │ ├── SQLiteLogger │ │ ├── FMDB │ │ │ ├── FMDatabase.h │ │ │ ├── FMDatabase.m │ │ │ ├── FMDatabaseAdditions.h │ │ │ ├── FMDatabaseAdditions.m │ │ │ ├── FMResultSet.h │ │ │ └── FMResultSet.m │ │ ├── FMDBLogger.h │ │ ├── FMDBLogger.m │ │ ├── SQLiteLogger.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── SQLiteLogger.xcscheme │ │ └── SQLiteLogger │ │ │ ├── SQLiteLogger-Info.plist │ │ │ ├── SQLiteLogger-Prefix.pch │ │ │ ├── SQLiteLoggerAppDelegate.h │ │ │ ├── SQLiteLoggerAppDelegate.m │ │ │ ├── en.lproj │ │ │ ├── Credits.rtf │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ │ └── main.m │ │ ├── Testing │ │ ├── NonArcTest │ │ │ ├── NonArcTest.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── NonArcTest.xcscheme │ │ │ └── NonArcTest │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── NonArcTest-Info.plist │ │ │ │ ├── NonArcTest-Prefix.pch │ │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ │ └── main.m │ │ ├── RegisteredDynamicLogging │ │ │ ├── Desktop │ │ │ │ ├── RegisteredLoggingTest.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── RegisteredLoggingTest.xcscheme │ │ │ │ └── RegisteredLoggingTest │ │ │ │ │ ├── Lions.h │ │ │ │ │ ├── Lions.m │ │ │ │ │ ├── RegisteredLoggingTest-Info.plist │ │ │ │ │ ├── RegisteredLoggingTest-Prefix.pch │ │ │ │ │ ├── RegisteredLoggingTestAppDelegate.h │ │ │ │ │ ├── RegisteredLoggingTestAppDelegate.m │ │ │ │ │ ├── Tigers.h │ │ │ │ │ ├── Tigers.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ └── main.m │ │ │ └── Mobile │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── RegisteredLoggingTest.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── RegisteredLoggingTest.xcscheme │ │ │ │ └── RegisteredLoggingTest │ │ │ │ ├── Lions.h │ │ │ │ ├── Lions.m │ │ │ │ ├── RegisteredLoggingTest-Info.plist │ │ │ │ ├── RegisteredLoggingTest-Prefix.pch │ │ │ │ ├── RegisteredLoggingTestAppDelegate.h │ │ │ │ ├── RegisteredLoggingTestAppDelegate.m │ │ │ │ ├── RegisteredLoggingTestViewController.h │ │ │ │ ├── RegisteredLoggingTestViewController.m │ │ │ │ ├── Tigers.h │ │ │ │ ├── Tigers.m │ │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ ├── MainWindow.xib │ │ │ │ └── RegisteredLoggingTestViewController.xib │ │ │ │ └── main.m │ │ └── TestXcodeColors │ │ │ ├── Desktop │ │ │ ├── TestXcodeColors.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── TestXcodeColors.xcscheme │ │ │ └── TestXcodeColors │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── TestXcodeColors-Info.plist │ │ │ │ ├── TestXcodeColors-Prefix.pch │ │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ │ └── main.m │ │ │ └── Mobile │ │ │ ├── Default-568h@2x.png │ │ │ ├── TextXcodeColors.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TextXcodeColors.xcscheme │ │ │ └── TextXcodeColors │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── TextXcodeColors-Info.plist │ │ │ ├── TextXcodeColors-Prefix.pch │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── ViewController.xib │ │ │ └── main.m │ │ ├── UniversalApp │ │ ├── Classes │ │ │ ├── UniversalAppAppDelegate.h │ │ │ ├── UniversalAppAppDelegate.m │ │ │ ├── UniversalAppViewController.h │ │ │ └── UniversalAppViewController.m │ │ ├── Default-568h@2x.png │ │ ├── MainWindow.xib │ │ ├── UniversalApp-Info.plist │ │ ├── UniversalApp.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── UniversalApp.xcscheme │ │ ├── UniversalAppViewController.xib │ │ ├── UniversalApp_Prefix.pch │ │ └── main.m │ │ └── WebServerIPhone │ │ ├── Classes │ │ ├── MyHTTPConnection.h │ │ ├── MyHTTPConnection.m │ │ ├── WebServerIPhoneAppDelegate.h │ │ ├── WebServerIPhoneAppDelegate.m │ │ ├── WebServerIPhoneViewController.h │ │ ├── WebServerIPhoneViewController.m │ │ ├── WebSocketLogger.h │ │ └── WebSocketLogger.m │ │ ├── Default-568h@2x.png │ │ ├── MainWindow.xib │ │ ├── ReadMe.txt │ │ ├── Vendor │ │ ├── CocoaAsyncSocket │ │ │ ├── GCDAsyncSocket.h │ │ │ └── GCDAsyncSocket.m │ │ └── CocoaHTTPServer │ │ │ ├── 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 │ │ │ ├── HTTPErrorResponse.h │ │ │ ├── HTTPErrorResponse.m │ │ │ ├── HTTPFileResponse.h │ │ │ ├── HTTPFileResponse.m │ │ │ ├── HTTPRedirectResponse.h │ │ │ └── HTTPRedirectResponse.m │ │ │ ├── WebSocket.h │ │ │ └── WebSocket.m │ │ ├── Web │ │ ├── index.html │ │ ├── jquery-1.4.2.min.js │ │ ├── socket.html │ │ └── styles.css │ │ ├── WebServerIPhone-Info.plist │ │ ├── WebServerIPhone.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── WebServerIPhone.xcscheme │ │ ├── WebServerIPhoneViewController.xib │ │ ├── WebServerIPhone_Prefix.pch │ │ └── main.m ├── DemoFMP4.xcworkspace │ └── contents.xcworkspacedata ├── DemoFMP4 │ ├── DemoFMP4.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── ipv6.xcuserdatad │ │ │ └── xcschemes │ │ │ └── DemoFMP4.xcscheme │ └── DemoFMP4 │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ │ ├── CacheFileManager.h │ │ ├── CacheFileManager.m │ │ ├── Defaults.h │ │ ├── GCDWebServerFileChunkedResponse.h │ │ ├── GCDWebServerFileChunkedResponse.m │ │ ├── GCDWebServerFileStreamResponse.h │ │ ├── GCDWebServerFileStreamResponse.m │ │ ├── H264HwEncoderImpl.h │ │ ├── H264HwEncoderImpl.m │ │ ├── HLSServer.h │ │ ├── HLSServer.m │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon2-60@2x.png │ │ │ ├── Icon2-60@3x.png │ │ │ ├── Icon2-76.png │ │ │ └── Icon2-76@2x.png │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── btn_rec_red.imageset │ │ │ ├── Contents.json │ │ │ └── element_1.pdf │ │ ├── btn_rec_white.imageset │ │ │ ├── Contents.json │ │ │ └── element_2.pdf │ │ └── btn_settings.imageset │ │ │ ├── Contents.json │ │ │ └── element_9.pdf │ │ ├── Info.plist │ │ ├── MainViewController.h │ │ ├── MainViewController.m │ │ ├── NSTimer+Blocks.h │ │ ├── NSTimer+Blocks.m │ │ ├── Prefix.pch │ │ ├── UIButton+Blocks.h │ │ ├── UIButton+Blocks.m │ │ ├── UIGriddableView.h │ │ ├── UIGriddableView.m │ │ ├── en.lproj │ │ └── Localizable.strings │ │ ├── ffmpegcoder │ │ ├── FFReencoder.h │ │ ├── FFReencoder.m │ │ ├── tsmuxer.cpp │ │ └── tsmuxer.h │ │ ├── main.m │ │ └── mstreamer.xcdatamodeld │ │ ├── .xccurrentversion │ │ └── mstreamer.xcdatamodel │ │ └── contents ├── GCDWebServer │ ├── GCDWebDAVServer │ │ ├── GCDWebDAVServer.h │ │ └── GCDWebDAVServer.m │ ├── GCDWebServer.podspec │ ├── GCDWebServer.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Bot.xcscheme │ ├── GCDWebServer │ │ ├── Core │ │ │ ├── GCDWebServer.h │ │ │ ├── GCDWebServer.m │ │ │ ├── GCDWebServerConnection.h │ │ │ ├── GCDWebServerConnection.m │ │ │ ├── GCDWebServerFunctions.h │ │ │ ├── GCDWebServerFunctions.m │ │ │ ├── GCDWebServerHTTPStatusCodes.h │ │ │ ├── GCDWebServerPrivate.h │ │ │ ├── GCDWebServerRequest.h │ │ │ ├── GCDWebServerRequest.m │ │ │ ├── GCDWebServerResponse.h │ │ │ └── GCDWebServerResponse.m │ │ ├── Requests │ │ │ ├── GCDWebServerDataRequest.h │ │ │ ├── GCDWebServerDataRequest.m │ │ │ ├── GCDWebServerFileRequest.h │ │ │ ├── GCDWebServerFileRequest.m │ │ │ ├── GCDWebServerMultiPartFormRequest.h │ │ │ ├── GCDWebServerMultiPartFormRequest.m │ │ │ ├── GCDWebServerURLEncodedFormRequest.h │ │ │ └── GCDWebServerURLEncodedFormRequest.m │ │ └── Responses │ │ │ ├── GCDWebServerDataResponse.h │ │ │ ├── GCDWebServerDataResponse.m │ │ │ ├── GCDWebServerErrorResponse.h │ │ │ ├── GCDWebServerErrorResponse.m │ │ │ ├── GCDWebServerFileResponse.h │ │ │ ├── GCDWebServerFileResponse.m │ │ │ ├── GCDWebServerStreamedResponse.h │ │ │ └── GCDWebServerStreamedResponse.m │ ├── GCDWebUploader │ │ ├── GCDWebUploader.bundle │ │ │ ├── Info.plist │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── index.css │ │ │ │ └── jquery.fileupload.css │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── html5shiv.min.js │ │ │ │ ├── index.js │ │ │ │ ├── jquery.fileupload.js │ │ │ │ ├── jquery.iframe-transport.js │ │ │ │ ├── jquery.jeditable.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.ui.widget.js │ │ │ │ ├── respond.min.js │ │ │ │ └── tmpl.min.js │ │ ├── GCDWebUploader.h │ │ └── GCDWebUploader.m │ ├── LICENSE │ ├── Mac │ │ └── main.m │ ├── README.md │ ├── Run-Tests.sh │ ├── Tests │ │ ├── HTMLFileUpload │ │ │ ├── 001-200.response │ │ │ ├── 001-GET.request │ │ │ ├── 002-200.response │ │ │ └── 002-POST.request │ │ ├── HTMLForm │ │ │ ├── 001-200.response │ │ │ ├── 001-GET.request │ │ │ ├── 002-200.response │ │ │ └── 002-POST.request │ │ ├── Payload.zip │ │ ├── Sample-Movie.mp4 │ │ ├── WebDAV-Cyberduck │ │ │ ├── 001-200.response │ │ │ ├── 001-HEAD.request │ │ │ ├── 002-207.response │ │ │ ├── 002-PROPFIND.request │ │ │ ├── 003-207.response │ │ │ ├── 003-PROPFIND.request │ │ │ ├── 004-207.response │ │ │ ├── 004-PROPFIND.request │ │ │ ├── 005-200.response │ │ │ ├── 005-HEAD.request │ │ │ ├── 006-404.response │ │ │ ├── 006-HEAD.request │ │ │ ├── 007-201.response │ │ │ ├── 007-COPY.request │ │ │ ├── 008-207.response │ │ │ ├── 008-PROPFIND.request │ │ │ ├── 009-200.response │ │ │ ├── 009-HEAD.request │ │ │ ├── 010-200.response │ │ │ ├── 010-GET.request │ │ │ ├── 011-207.response │ │ │ ├── 011-PROPFIND.request │ │ │ ├── 012-204.response │ │ │ ├── 012-DELETE.request │ │ │ ├── 013-204.response │ │ │ ├── 013-DELETE.request │ │ │ ├── 014-204.response │ │ │ ├── 014-DELETE.request │ │ │ ├── 015-207.response │ │ │ ├── 015-PROPFIND.request │ │ │ ├── 016-201.response │ │ │ ├── 016-MOVE.request │ │ │ ├── 017-207.response │ │ │ ├── 017-PROPFIND.request │ │ │ ├── 018-201.response │ │ │ ├── 018-MOVE.request │ │ │ ├── 019-207.response │ │ │ ├── 019-PROPFIND.request │ │ │ ├── 020-207.response │ │ │ ├── 020-PROPFIND.request │ │ │ ├── 021-200.response │ │ │ ├── 021-HEAD.request │ │ │ ├── 022-404.response │ │ │ ├── 022-HEAD.request │ │ │ ├── 023-201.response │ │ │ ├── 023-PUT.request │ │ │ ├── 024-207.response │ │ │ ├── 024-PROPFIND.request │ │ │ ├── 025-201.response │ │ │ ├── 025-MKCOL.request │ │ │ ├── 026-207.response │ │ │ ├── 026-PROPFIND.request │ │ │ ├── 027-207.response │ │ │ ├── 027-PROPFIND.request │ │ │ ├── 028-201.response │ │ │ ├── 028-MOVE.request │ │ │ ├── 029-201.response │ │ │ ├── 029-MOVE.request │ │ │ ├── 030-207.response │ │ │ ├── 030-PROPFIND.request │ │ │ ├── 031-207.response │ │ │ ├── 031-PROPFIND.request │ │ │ ├── 032-207.response │ │ │ ├── 032-PROPFIND.request │ │ │ ├── 033-204.response │ │ │ ├── 033-DELETE.request │ │ │ ├── 034-204.response │ │ │ ├── 034-DELETE.request │ │ │ ├── 035-204.response │ │ │ ├── 035-DELETE.request │ │ │ ├── 036-207.response │ │ │ └── 036-PROPFIND.request │ │ ├── WebDAV-Finder │ │ │ ├── 001-200.response │ │ │ ├── 001-OPTIONS.request │ │ │ ├── 002-200.response │ │ │ ├── 002-OPTIONS.request │ │ │ ├── 003-200.response │ │ │ ├── 003-OPTIONS.request │ │ │ ├── 004-207.response │ │ │ ├── 004-PROPFIND.request │ │ │ ├── 005-207.response │ │ │ ├── 005-PROPFIND.request │ │ │ ├── 006-207.response │ │ │ ├── 006-PROPFIND.request │ │ │ ├── 007-207.response │ │ │ ├── 007-PROPFIND.request │ │ │ ├── 008-207.response │ │ │ ├── 008-PROPFIND.request │ │ │ ├── 009-207.response │ │ │ ├── 009-PROPFIND.request │ │ │ ├── 010-207.response │ │ │ ├── 010-PROPFIND.request │ │ │ ├── 011-207.response │ │ │ ├── 011-PROPFIND.request │ │ │ ├── 012-404.response │ │ │ ├── 012-PROPFIND.request │ │ │ ├── 013-404.response │ │ │ ├── 013-PROPFIND.request │ │ │ ├── 014-404.response │ │ │ ├── 014-PROPFIND.request │ │ │ ├── 015-404.response │ │ │ ├── 015-PROPFIND.request │ │ │ ├── 016-404.response │ │ │ ├── 016-PROPFIND.request │ │ │ ├── 017-404.response │ │ │ ├── 017-PROPFIND.request │ │ │ ├── 018-404.response │ │ │ ├── 018-PROPFIND.request │ │ │ ├── 019-403.response │ │ │ ├── 019-PROPFIND.request │ │ │ ├── 020-403.response │ │ │ ├── 020-PROPFIND.request │ │ │ ├── 021-403.response │ │ │ ├── 021-PUT.request │ │ │ ├── 022-403.response │ │ │ ├── 022-PROPFIND.request │ │ │ ├── 023-207.response │ │ │ ├── 023-PROPFIND.request │ │ │ ├── 024-207.response │ │ │ ├── 024-PROPFIND.request │ │ │ ├── 025-404.response │ │ │ ├── 025-PROPFIND.request │ │ │ ├── 026-404.response │ │ │ ├── 026-PROPFIND.request │ │ │ ├── 027-404.response │ │ │ ├── 027-PROPFIND.request │ │ │ ├── 028-207.response │ │ │ ├── 028-PROPFIND.request │ │ │ ├── 029-404.response │ │ │ ├── 029-PROPFIND.request │ │ │ ├── 030-404.response │ │ │ ├── 030-PROPFIND.request │ │ │ ├── 031-404.response │ │ │ ├── 031-PROPFIND.request │ │ │ ├── 032-404.response │ │ │ ├── 032-PROPFIND.request │ │ │ ├── 033-404.response │ │ │ ├── 033-PROPFIND.request │ │ │ ├── 034-404.response │ │ │ ├── 034-PROPFIND.request │ │ │ ├── 035-207.response │ │ │ ├── 035-PROPFIND.request │ │ │ ├── 036-404.response │ │ │ ├── 036-PROPFIND.request │ │ │ ├── 037-404.response │ │ │ ├── 037-PROPFIND.request │ │ │ ├── 038-404.response │ │ │ ├── 038-PROPFIND.request │ │ │ ├── 039-207.response │ │ │ ├── 039-PROPFIND.request │ │ │ ├── 040-207.response │ │ │ ├── 040-PROPFIND.request │ │ │ ├── 041-404.response │ │ │ ├── 041-PROPFIND.request │ │ │ ├── 042-207.response │ │ │ ├── 042-PROPFIND.request │ │ │ ├── 043-207.response │ │ │ ├── 043-PROPFIND.request │ │ │ ├── 044-404.response │ │ │ ├── 044-PROPFIND.request │ │ │ ├── 045-404.response │ │ │ ├── 045-PROPFIND.request │ │ │ ├── 046-207.response │ │ │ ├── 046-PROPFIND.request │ │ │ ├── 047-404.response │ │ │ ├── 047-PROPFIND.request │ │ │ ├── 048-207.response │ │ │ ├── 048-PROPFIND.request │ │ │ ├── 049-404.response │ │ │ ├── 049-PROPFIND.request │ │ │ ├── 050-207.response │ │ │ ├── 050-PROPFIND.request │ │ │ ├── 051-404.response │ │ │ ├── 051-PROPFIND.request │ │ │ ├── 052-404.response │ │ │ ├── 052-PROPFIND.request │ │ │ ├── 053-403.response │ │ │ ├── 053-PROPFIND.request │ │ │ ├── 054-403.response │ │ │ ├── 054-PROPFIND.request │ │ │ ├── 055-403.response │ │ │ ├── 055-PUT.request │ │ │ ├── 056-403.response │ │ │ ├── 056-PROPFIND.request │ │ │ ├── 057-404.response │ │ │ ├── 057-PROPFIND.request │ │ │ ├── 058-200.response │ │ │ ├── 058-GET.request │ │ │ ├── 059-200.response │ │ │ ├── 059-GET.request │ │ │ ├── 060-404.response │ │ │ ├── 060-PROPFIND.request │ │ │ ├── 061-200.response │ │ │ ├── 061-GET.request │ │ │ ├── 062-200.response │ │ │ ├── 062-GET.request │ │ │ ├── 063-404.response │ │ │ ├── 063-PROPFIND.request │ │ │ ├── 064-404.response │ │ │ ├── 064-PROPFIND.request │ │ │ ├── 065-404.response │ │ │ ├── 065-PROPFIND.request │ │ │ ├── 066-404.response │ │ │ ├── 066-PROPFIND.request │ │ │ ├── 067-404.response │ │ │ ├── 067-PROPFIND.request │ │ │ ├── 068-404.response │ │ │ ├── 068-PROPFIND.request │ │ │ ├── 069-201.response │ │ │ ├── 069-MOVE.request │ │ │ ├── 070-404.response │ │ │ ├── 070-PROPFIND.request │ │ │ ├── 071-404.response │ │ │ ├── 071-PROPFIND.request │ │ │ ├── 072-404.response │ │ │ ├── 072-PROPFIND.request │ │ │ ├── 073-207.response │ │ │ ├── 073-PROPFIND.request │ │ │ ├── 074-404.response │ │ │ ├── 074-PROPFIND.request │ │ │ ├── 075-207.response │ │ │ ├── 075-PROPFIND.request │ │ │ ├── 076-207.response │ │ │ ├── 076-PROPFIND.request │ │ │ ├── 077-207.response │ │ │ ├── 077-PROPFIND.request │ │ │ ├── 078-207.response │ │ │ ├── 078-PROPFIND.request │ │ │ ├── 079-404.response │ │ │ ├── 079-PROPFIND.request │ │ │ ├── 080-404.response │ │ │ ├── 080-PROPFIND.request │ │ │ ├── 081-204.response │ │ │ ├── 081-DELETE.request │ │ │ ├── 082-404.response │ │ │ ├── 082-PROPFIND.request │ │ │ ├── 083-207.response │ │ │ ├── 083-PROPFIND.request │ │ │ ├── 084-404.response │ │ │ ├── 084-PROPFIND.request │ │ │ ├── 085-207.response │ │ │ ├── 085-PROPFIND.request │ │ │ ├── 086-404.response │ │ │ ├── 086-PROPFIND.request │ │ │ ├── 087-207.response │ │ │ ├── 087-PROPFIND.request │ │ │ ├── 088-404.response │ │ │ ├── 088-PROPFIND.request │ │ │ ├── 089-207.response │ │ │ ├── 089-PROPFIND.request │ │ │ ├── 090-404.response │ │ │ ├── 090-PROPFIND.request │ │ │ ├── 091-404.response │ │ │ ├── 091-PROPFIND.request │ │ │ ├── 092-207.response │ │ │ ├── 092-PROPFIND.request │ │ │ ├── 093-404.response │ │ │ ├── 093-PROPFIND.request │ │ │ ├── 094-403.response │ │ │ ├── 094-PROPFIND.request │ │ │ ├── 095-403.response │ │ │ ├── 095-PROPFIND.request │ │ │ ├── 096-403.response │ │ │ ├── 096-PUT.request │ │ │ ├── 097-403.response │ │ │ ├── 097-PROPFIND.request │ │ │ ├── 098-404.response │ │ │ ├── 098-PROPFIND.request │ │ │ ├── 099-404.response │ │ │ ├── 099-PROPFIND.request │ │ │ ├── 100-404.response │ │ │ ├── 100-PROPFIND.request │ │ │ ├── 101-404.response │ │ │ ├── 101-PROPFIND.request │ │ │ ├── 102-201.response │ │ │ ├── 102-PUT.request │ │ │ ├── 103-404.response │ │ │ ├── 103-PROPFIND.request │ │ │ ├── 104-200.response │ │ │ ├── 104-LOCK.request │ │ │ ├── 105-204.response │ │ │ ├── 105-UNLOCK.request │ │ │ ├── 106-200.response │ │ │ ├── 106-LOCK.request │ │ │ ├── 107-204.response │ │ │ ├── 107-UNLOCK.request │ │ │ ├── 108-404.response │ │ │ ├── 108-PROPFIND.request │ │ │ ├── 109-403.response │ │ │ ├── 109-PUT.request │ │ │ ├── 110-404.response │ │ │ ├── 110-PROPFIND.request │ │ │ ├── 111-207.response │ │ │ ├── 111-PROPFIND.request │ │ │ ├── 112-207.response │ │ │ ├── 112-PROPFIND.request │ │ │ ├── 113-404.response │ │ │ ├── 113-PROPFIND.request │ │ │ ├── 114-204.response │ │ │ ├── 114-DELETE.request │ │ │ ├── 115-404.response │ │ │ ├── 115-PROPFIND.request │ │ │ ├── 116-404.response │ │ │ ├── 116-PROPFIND.request │ │ │ ├── 117-201.response │ │ │ ├── 117-PUT.request │ │ │ ├── 118-404.response │ │ │ ├── 118-PROPFIND.request │ │ │ ├── 119-200.response │ │ │ ├── 119-LOCK.request │ │ │ ├── 120-204.response │ │ │ ├── 120-PUT.request │ │ │ ├── 121-404.response │ │ │ ├── 121-PROPFIND.request │ │ │ ├── 122-403.response │ │ │ ├── 122-PUT.request │ │ │ ├── 123-404.response │ │ │ ├── 123-PROPFIND.request │ │ │ ├── 124-403.response │ │ │ ├── 124-PUT.request │ │ │ ├── 125-204.response │ │ │ ├── 125-UNLOCK.request │ │ │ ├── 126-404.response │ │ │ ├── 126-PROPFIND.request │ │ │ ├── 127-200.response │ │ │ ├── 127-LOCK.request │ │ │ ├── 128-204.response │ │ │ ├── 128-UNLOCK.request │ │ │ ├── 129-200.response │ │ │ ├── 129-LOCK.request │ │ │ ├── 130-204.response │ │ │ ├── 130-UNLOCK.request │ │ │ ├── 131-207.response │ │ │ ├── 131-PROPFIND.request │ │ │ ├── 132-404.response │ │ │ ├── 132-PROPFIND.request │ │ │ ├── 133-404.response │ │ │ ├── 133-PROPFIND.request │ │ │ ├── 134-207.response │ │ │ ├── 134-PROPFIND.request │ │ │ ├── 135-404.response │ │ │ ├── 135-PROPFIND.request │ │ │ ├── 136-207.response │ │ │ ├── 136-PROPFIND.request │ │ │ ├── 137-207.response │ │ │ ├── 137-PROPFIND.request │ │ │ ├── 138-207.response │ │ │ ├── 138-PROPFIND.request │ │ │ ├── 139-207.response │ │ │ ├── 139-PROPFIND.request │ │ │ ├── 140-207.response │ │ │ ├── 140-PROPFIND.request │ │ │ ├── 141-404.response │ │ │ ├── 141-PROPFIND.request │ │ │ ├── 142-207.response │ │ │ ├── 142-PROPFIND.request │ │ │ ├── 143-404.response │ │ │ ├── 143-PROPFIND.request │ │ │ ├── 144-404.response │ │ │ ├── 144-PROPFIND.request │ │ │ ├── 145-404.response │ │ │ ├── 145-PROPFIND.request │ │ │ ├── 146-207.response │ │ │ ├── 146-PROPFIND.request │ │ │ ├── 147-404.response │ │ │ ├── 147-PROPFIND.request │ │ │ ├── 148-207.response │ │ │ ├── 148-PROPFIND.request │ │ │ ├── 149-404.response │ │ │ ├── 149-PROPFIND.request │ │ │ ├── 150-404.response │ │ │ ├── 150-PROPFIND.request │ │ │ ├── 151-207.response │ │ │ ├── 151-PROPFIND.request │ │ │ ├── 152-207.response │ │ │ ├── 152-PROPFIND.request │ │ │ ├── 153-207.response │ │ │ ├── 153-PROPFIND.request │ │ │ ├── 154-403.response │ │ │ ├── 154-PROPFIND.request │ │ │ ├── 155-403.response │ │ │ ├── 155-PROPFIND.request │ │ │ ├── 156-403.response │ │ │ ├── 156-PUT.request │ │ │ ├── 157-403.response │ │ │ ├── 157-PROPFIND.request │ │ │ ├── 158-404.response │ │ │ ├── 158-PROPFIND.request │ │ │ ├── 159-404.response │ │ │ ├── 159-PROPFIND.request │ │ │ ├── 160-404.response │ │ │ ├── 160-PROPFIND.request │ │ │ ├── 161-404.response │ │ │ ├── 161-PROPFIND.request │ │ │ ├── 162-201.response │ │ │ ├── 162-MOVE.request │ │ │ ├── 163-404.response │ │ │ ├── 163-PROPFIND.request │ │ │ ├── 164-404.response │ │ │ ├── 164-PROPFIND.request │ │ │ ├── 165-404.response │ │ │ ├── 165-PROPFIND.request │ │ │ ├── 166-404.response │ │ │ ├── 166-PROPFIND.request │ │ │ ├── 167-207.response │ │ │ ├── 167-PROPFIND.request │ │ │ ├── 168-404.response │ │ │ ├── 168-PROPFIND.request │ │ │ ├── 169-404.response │ │ │ ├── 169-PROPFIND.request │ │ │ ├── 170-404.response │ │ │ ├── 170-PROPFIND.request │ │ │ ├── 171-404.response │ │ │ ├── 171-PROPFIND.request │ │ │ ├── 172-207.response │ │ │ ├── 172-PROPFIND.request │ │ │ ├── 173-404.response │ │ │ ├── 173-PROPFIND.request │ │ │ ├── 174-404.response │ │ │ ├── 174-PROPFIND.request │ │ │ ├── 175-404.response │ │ │ ├── 175-PROPFIND.request │ │ │ ├── 176-207.response │ │ │ ├── 176-PROPFIND.request │ │ │ ├── 177-404.response │ │ │ ├── 177-PROPFIND.request │ │ │ ├── 178-404.response │ │ │ ├── 178-PROPFIND.request │ │ │ ├── 179-404.response │ │ │ ├── 179-PROPFIND.request │ │ │ ├── 180-207.response │ │ │ ├── 180-PROPFIND.request │ │ │ ├── 181-404.response │ │ │ ├── 181-PROPFIND.request │ │ │ ├── 182-201.response │ │ │ ├── 182-MKCOL.request │ │ │ ├── 183-404.response │ │ │ ├── 183-PROPFIND.request │ │ │ ├── 184-404.response │ │ │ ├── 184-PROPFIND.request │ │ │ ├── 185-403.response │ │ │ ├── 185-PROPFIND.request │ │ │ ├── 186-403.response │ │ │ ├── 186-PROPFIND.request │ │ │ ├── 187-403.response │ │ │ ├── 187-PUT.request │ │ │ ├── 188-404.response │ │ │ ├── 188-PROPFIND.request │ │ │ ├── 189-403.response │ │ │ ├── 189-PROPFIND.request │ │ │ ├── 190-207.response │ │ │ ├── 190-PROPFIND.request │ │ │ ├── 191-404.response │ │ │ ├── 191-PROPFIND.request │ │ │ ├── 192-404.response │ │ │ ├── 192-PROPFIND.request │ │ │ ├── 193-404.response │ │ │ ├── 193-PROPFIND.request │ │ │ ├── 194-404.response │ │ │ ├── 194-PROPFIND.request │ │ │ ├── 195-404.response │ │ │ ├── 195-PROPFIND.request │ │ │ ├── 196-404.response │ │ │ ├── 196-PROPFIND.request │ │ │ ├── 197-207.response │ │ │ ├── 197-PROPFIND.request │ │ │ ├── 198-207.response │ │ │ ├── 198-PROPFIND.request │ │ │ ├── 199-404.response │ │ │ ├── 199-PROPFIND.request │ │ │ ├── 200-404.response │ │ │ ├── 200-PROPFIND.request │ │ │ ├── 201-404.response │ │ │ ├── 201-PROPFIND.request │ │ │ ├── 202-404.response │ │ │ ├── 202-PROPFIND.request │ │ │ ├── 203-201.response │ │ │ ├── 203-MOVE.request │ │ │ ├── 204-404.response │ │ │ ├── 204-PROPFIND.request │ │ │ ├── 205-404.response │ │ │ ├── 205-PROPFIND.request │ │ │ ├── 206-404.response │ │ │ ├── 206-PROPFIND.request │ │ │ ├── 207-404.response │ │ │ ├── 207-PROPFIND.request │ │ │ ├── 208-207.response │ │ │ ├── 208-PROPFIND.request │ │ │ ├── 209-404.response │ │ │ ├── 209-PROPFIND.request │ │ │ ├── 210-404.response │ │ │ ├── 210-PROPFIND.request │ │ │ ├── 211-404.response │ │ │ ├── 211-PROPFIND.request │ │ │ ├── 212-404.response │ │ │ ├── 212-PROPFIND.request │ │ │ ├── 213-207.response │ │ │ ├── 213-PROPFIND.request │ │ │ ├── 214-404.response │ │ │ ├── 214-PROPFIND.request │ │ │ ├── 215-404.response │ │ │ ├── 215-PROPFIND.request │ │ │ ├── 216-404.response │ │ │ ├── 216-PROPFIND.request │ │ │ ├── 217-404.response │ │ │ ├── 217-PROPFIND.request │ │ │ ├── 218-404.response │ │ │ ├── 218-PROPFIND.request │ │ │ ├── 219-404.response │ │ │ ├── 219-PROPFIND.request │ │ │ ├── 220-404.response │ │ │ ├── 220-PROPFIND.request │ │ │ ├── 221-404.response │ │ │ ├── 221-PROPFIND.request │ │ │ ├── 222-207.response │ │ │ ├── 222-PROPFIND.request │ │ │ ├── 223-404.response │ │ │ ├── 223-PROPFIND.request │ │ │ ├── 224-404.response │ │ │ ├── 224-PROPFIND.request │ │ │ ├── 225-403.response │ │ │ ├── 225-PROPFIND.request │ │ │ ├── 226-403.response │ │ │ ├── 226-PROPFIND.request │ │ │ ├── 227-403.response │ │ │ ├── 227-PUT.request │ │ │ ├── 228-403.response │ │ │ ├── 228-PROPFIND.request │ │ │ ├── 229-404.response │ │ │ ├── 229-PROPFIND.request │ │ │ ├── 230-404.response │ │ │ ├── 230-PROPFIND.request │ │ │ ├── 231-404.response │ │ │ ├── 231-PROPFIND.request │ │ │ ├── 232-201.response │ │ │ ├── 232-MOVE.request │ │ │ ├── 233-404.response │ │ │ ├── 233-PROPFIND.request │ │ │ ├── 234-404.response │ │ │ ├── 234-PROPFIND.request │ │ │ ├── 235-404.response │ │ │ ├── 235-PROPFIND.request │ │ │ ├── 236-207.response │ │ │ ├── 236-PROPFIND.request │ │ │ ├── 237-404.response │ │ │ ├── 237-PROPFIND.request │ │ │ ├── 238-207.response │ │ │ ├── 238-PROPFIND.request │ │ │ ├── 239-207.response │ │ │ ├── 239-PROPFIND.request │ │ │ ├── 240-404.response │ │ │ ├── 240-PROPFIND.request │ │ │ ├── 241-404.response │ │ │ ├── 241-PROPFIND.request │ │ │ ├── 242-207.response │ │ │ ├── 242-PROPFIND.request │ │ │ ├── 243-404.response │ │ │ ├── 243-PROPFIND.request │ │ │ ├── 244-404.response │ │ │ ├── 244-PROPFIND.request │ │ │ ├── 245-404.response │ │ │ ├── 245-PROPFIND.request │ │ │ ├── 246-207.response │ │ │ ├── 246-PROPFIND.request │ │ │ ├── 247-404.response │ │ │ ├── 247-PROPFIND.request │ │ │ ├── 248-404.response │ │ │ ├── 248-PROPFIND.request │ │ │ ├── 249-207.response │ │ │ ├── 249-PROPFIND.request │ │ │ ├── 250-404.response │ │ │ ├── 250-PROPFIND.request │ │ │ ├── 251-404.response │ │ │ ├── 251-PROPFIND.request │ │ │ ├── 252-207.response │ │ │ ├── 252-PROPFIND.request │ │ │ ├── 253-207.response │ │ │ ├── 253-PROPFIND.request │ │ │ ├── 254-404.response │ │ │ ├── 254-PROPFIND.request │ │ │ ├── 255-207.response │ │ │ ├── 255-PROPFIND.request │ │ │ ├── 256-404.response │ │ │ ├── 256-PROPFIND.request │ │ │ ├── 257-403.response │ │ │ ├── 257-PROPFIND.request │ │ │ ├── 258-403.response │ │ │ ├── 258-PROPFIND.request │ │ │ ├── 259-403.response │ │ │ ├── 259-PUT.request │ │ │ ├── 260-403.response │ │ │ ├── 260-PROPFIND.request │ │ │ ├── 261-207.response │ │ │ ├── 261-PROPFIND.request │ │ │ ├── 262-404.response │ │ │ ├── 262-PROPFIND.request │ │ │ ├── 263-404.response │ │ │ ├── 263-PROPFIND.request │ │ │ ├── 264-403.response │ │ │ ├── 264-PUT.request │ │ │ ├── 265-207.response │ │ │ ├── 265-PROPFIND.request │ │ │ ├── 266-204.response │ │ │ ├── 266-DELETE.request │ │ │ ├── 267-404.response │ │ │ ├── 267-PROPFIND.request │ │ │ ├── 268-207.response │ │ │ ├── 268-PROPFIND.request │ │ │ ├── 269-204.response │ │ │ ├── 269-DELETE.request │ │ │ ├── 270-404.response │ │ │ ├── 270-PROPFIND.request │ │ │ ├── 271-404.response │ │ │ ├── 271-PROPFIND.request │ │ │ ├── 272-404.response │ │ │ ├── 272-PROPFIND.request │ │ │ ├── 273-207.response │ │ │ ├── 273-PROPFIND.request │ │ │ ├── 274-404.response │ │ │ ├── 274-PROPFIND.request │ │ │ ├── 275-404.response │ │ │ ├── 275-PROPFIND.request │ │ │ ├── 276-207.response │ │ │ ├── 276-PROPFIND.request │ │ │ ├── 277-404.response │ │ │ ├── 277-PROPFIND.request │ │ │ ├── 278-404.response │ │ │ ├── 278-PROPFIND.request │ │ │ ├── 279-404.response │ │ │ ├── 279-PROPFIND.request │ │ │ ├── 280-404.response │ │ │ ├── 280-PROPFIND.request │ │ │ ├── 281-207.response │ │ │ ├── 281-PROPFIND.request │ │ │ ├── 282-404.response │ │ │ ├── 282-PROPFIND.request │ │ │ ├── 283-404.response │ │ │ ├── 283-PROPFIND.request │ │ │ ├── 284-404.response │ │ │ ├── 284-PROPFIND.request │ │ │ ├── 285-404.response │ │ │ ├── 285-PROPFIND.request │ │ │ ├── 286-207.response │ │ │ ├── 286-PROPFIND.request │ │ │ ├── 287-404.response │ │ │ ├── 287-PROPFIND.request │ │ │ ├── 288-404.response │ │ │ ├── 288-PROPFIND.request │ │ │ ├── 289-207.response │ │ │ ├── 289-PROPFIND.request │ │ │ ├── 290-404.response │ │ │ ├── 290-PROPFIND.request │ │ │ ├── 291-404.response │ │ │ ├── 291-PROPFIND.request │ │ │ ├── 292-404.response │ │ │ ├── 292-PROPFIND.request │ │ │ ├── 293-207.response │ │ │ ├── 293-PROPFIND.request │ │ │ ├── 294-404.response │ │ │ ├── 294-PROPFIND.request │ │ │ ├── 295-404.response │ │ │ ├── 295-PROPFIND.request │ │ │ ├── 296-404.response │ │ │ ├── 296-PROPFIND.request │ │ │ ├── 297-404.response │ │ │ ├── 297-PROPFIND.request │ │ │ ├── 298-207.response │ │ │ └── 298-PROPFIND.request │ │ ├── WebDAV-Transmit │ │ │ ├── 001-200.response │ │ │ ├── 001-OPTIONS.request │ │ │ ├── 002-207.response │ │ │ ├── 002-PROPFIND.request │ │ │ ├── 003-207.response │ │ │ ├── 003-PROPFIND.request │ │ │ ├── 004-207.response │ │ │ ├── 004-PROPFIND.request │ │ │ ├── 005-207.response │ │ │ ├── 005-PROPFIND.request │ │ │ ├── 006-200.response │ │ │ ├── 006-GET.request │ │ │ ├── 007-204.response │ │ │ ├── 007-DELETE.request │ │ │ ├── 008-201.response │ │ │ ├── 008-MOVE.request │ │ │ ├── 009-201.response │ │ │ ├── 009-MOVE.request │ │ │ ├── 010-207.response │ │ │ ├── 010-PROPFIND.request │ │ │ ├── 011-200.response │ │ │ ├── 011-GET.request │ │ │ ├── 012-201.response │ │ │ ├── 012-PUT.request │ │ │ ├── 013-204.response │ │ │ ├── 013-DELETE.request │ │ │ ├── 014-201.response │ │ │ ├── 014-MOVE.request │ │ │ ├── 015-201.response │ │ │ ├── 015-PUT.request │ │ │ ├── 016-201.response │ │ │ ├── 016-MOVE.request │ │ │ ├── 017-207.response │ │ │ ├── 017-PROPFIND.request │ │ │ ├── 018-204.response │ │ │ ├── 018-DELETE.request │ │ │ ├── 019-204.response │ │ │ ├── 019-DELETE.request │ │ │ ├── 020-207.response │ │ │ ├── 020-PROPFIND.request │ │ │ ├── 021-204.response │ │ │ ├── 021-DELETE.request │ │ │ ├── 022-201.response │ │ │ ├── 022-MKCOL.request │ │ │ ├── 023-201.response │ │ │ ├── 023-MOVE.request │ │ │ ├── 024-201.response │ │ │ └── 024-MOVE.request │ │ ├── WebServer-Sample-Movie │ │ │ ├── 001-200.response │ │ │ ├── 001-GET.request │ │ │ ├── 002-206.response │ │ │ ├── 002-GET.request │ │ │ ├── 003-206.response │ │ │ ├── 003-GET.request │ │ │ ├── 004-206.response │ │ │ ├── 004-GET.request │ │ │ ├── 005-206.response │ │ │ └── 005-GET.request │ │ ├── WebServer │ │ │ ├── 001-200.response │ │ │ ├── 001-GET.request │ │ │ ├── 002-200.response │ │ │ ├── 002-GET.request │ │ │ ├── 003-200.response │ │ │ ├── 003-GET.request │ │ │ ├── 004-200.response │ │ │ ├── 004-GET.request │ │ │ ├── 005-200.response │ │ │ ├── 005-GET.request │ │ │ ├── 006-304.response │ │ │ ├── 006-GET.request │ │ │ ├── 007-304.response │ │ │ ├── 007-GET.request │ │ │ ├── 008-200.response │ │ │ ├── 008-GET.request │ │ │ ├── 009-200.response │ │ │ ├── 009-GET.request │ │ │ ├── 010-304.response │ │ │ ├── 010-GET.request │ │ │ ├── 011-304.response │ │ │ ├── 011-GET.request │ │ │ ├── 012-200.response │ │ │ └── 012-HEAD.request │ │ └── WebUploader │ │ │ ├── 018-200.response │ │ │ ├── 018-GET.request │ │ │ ├── 019-200.response │ │ │ ├── 019-GET.request │ │ │ ├── 020-200.response │ │ │ ├── 020-GET.request │ │ │ ├── 022-200.response │ │ │ ├── 022-GET.request │ │ │ ├── 023-200.response │ │ │ ├── 023-POST.request │ │ │ ├── 024-200.response │ │ │ ├── 024-GET.request │ │ │ ├── 025-200.response │ │ │ ├── 025-POST.request │ │ │ ├── 026-200.response │ │ │ ├── 026-GET.request │ │ │ ├── 027-200.response │ │ │ ├── 027-POST.request │ │ │ ├── 028-200.response │ │ │ ├── 028-GET.request │ │ │ ├── 029-200.response │ │ │ ├── 029-POST.request │ │ │ ├── 030-200.response │ │ │ ├── 030-GET.request │ │ │ ├── 031-200.response │ │ │ ├── 031-POST.request │ │ │ ├── 032-200.response │ │ │ ├── 032-GET.request │ │ │ ├── 033-200.response │ │ │ ├── 033-POST.request │ │ │ ├── 034-200.response │ │ │ ├── 034-GET.request │ │ │ ├── 035-200.response │ │ │ ├── 035-GET.request │ │ │ ├── 036-200.response │ │ │ ├── 036-POST.request │ │ │ ├── 037-200.response │ │ │ ├── 037-GET.request │ │ │ ├── 038-200.response │ │ │ ├── 038-POST.request │ │ │ ├── 039-200.response │ │ │ ├── 039-GET.request │ │ │ ├── 040-200.response │ │ │ └── 040-GET.request │ └── iOS │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ └── main.m ├── Libextobjc │ ├── Configuration │ │ ├── Base │ │ │ ├── Common.xcconfig │ │ │ ├── Configurations │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Profile.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Test.xcconfig │ │ │ └── Targets │ │ │ │ ├── Application.xcconfig │ │ │ │ └── StaticLibrary.xcconfig │ │ ├── Mac OS X │ │ │ ├── Mac-Application.xcconfig │ │ │ ├── Mac-Base.xcconfig │ │ │ ├── Mac-DynamicLibrary.xcconfig │ │ │ ├── Mac-Framework.xcconfig │ │ │ └── Mac-StaticLibrary.xcconfig │ │ ├── README.md │ │ └── iOS │ │ │ ├── iOS-Application.xcconfig │ │ │ ├── iOS-Base.xcconfig │ │ │ └── iOS-StaticLibrary.xcconfig │ ├── LICENSE.md │ ├── README.md │ ├── Tests │ │ ├── EXTADTTest.h │ │ ├── EXTADTTest.m │ │ ├── EXTConcreteProtocolTest.h │ │ ├── EXTConcreteProtocolTest.m │ │ ├── EXTCoroutineTest.h │ │ ├── EXTCoroutineTest.m │ │ ├── EXTKeyPathCodingTest.h │ │ ├── EXTKeyPathCodingTest.m │ │ ├── EXTKeypathWeakWarningTest.h │ │ ├── EXTKeypathWeakWarningTest.m │ │ ├── EXTNilTest.h │ │ ├── EXTNilTest.m │ │ ├── EXTObjectiveCppCompileTest.h │ │ ├── EXTObjectiveCppCompileTest.mm │ │ ├── EXTRuntimeExtensionsTest.h │ │ ├── EXTRuntimeExtensionsTest.m │ │ ├── EXTRuntimeTestProtocol.h │ │ ├── EXTSafeCategoryTest.h │ │ ├── EXTSafeCategoryTest.m │ │ ├── EXTScopeTest.h │ │ ├── EXTScopeTest.m │ │ ├── EXTSelectorCheckingTest.h │ │ ├── EXTSelectorCheckingTest.m │ │ ├── EXTSynthesizeTest.h │ │ ├── EXTSynthesizeTest.m │ │ ├── OSX-Info.plist │ │ └── iOS-Info.plist │ ├── extobjc.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── libextobjc (OS X).xcscheme │ │ │ └── libextobjc (iOS).xcscheme │ └── extobjc │ │ ├── EXTADT.h │ │ ├── EXTADT.m │ │ ├── EXTConcreteProtocol.h │ │ ├── EXTConcreteProtocol.m │ │ ├── EXTCoroutine.h │ │ ├── EXTKeyPathCoding.h │ │ ├── EXTNil.h │ │ ├── EXTNil.m │ │ ├── EXTRuntimeExtensions.h │ │ ├── EXTRuntimeExtensions.m │ │ ├── EXTSafeCategory.h │ │ ├── EXTSafeCategory.m │ │ ├── EXTScope.h │ │ ├── EXTScope.m │ │ ├── EXTSelectorChecking.h │ │ ├── EXTSelectorChecking.m │ │ ├── EXTSynthesize.h │ │ ├── NSInvocation+EXT.h │ │ ├── NSInvocation+EXT.m │ │ ├── NSMethodSignature+EXT.h │ │ ├── NSMethodSignature+EXT.m │ │ ├── extobjc.h │ │ ├── extobjc_Prefix.pch │ │ └── metamacros.h ├── PBJVision │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── PBJVision.podspec │ ├── Project │ │ ├── Base.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ ├── Vision.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Debug.xcscheme │ │ │ │ └── Release.xcscheme │ │ └── Vision │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── PBJAppDelegate.h │ │ │ ├── PBJAppDelegate.m │ │ │ ├── PBJFocusView.h │ │ │ ├── PBJFocusView.m │ │ │ ├── PBJStrobeView.h │ │ │ ├── PBJStrobeView.m │ │ │ ├── PBJViewController.h │ │ │ ├── PBJViewController.m │ │ │ ├── UI │ │ │ ├── capture_done@2x.png │ │ │ ├── capture_flip@2x.png │ │ │ ├── capture_focus@2x.png │ │ │ ├── capture_focus_button@2x.png │ │ │ ├── capture_focus_button_active@2x.png │ │ │ ├── capture_onion@2x.png │ │ │ ├── capture_onion_selected@2x.png │ │ │ ├── capture_rec_base@2x.png │ │ │ ├── capture_rec_blink@2x.png │ │ │ └── capture_rec_off@2x.png │ │ │ ├── Vision-Info.plist │ │ │ ├── Vision-Prefix.pch │ │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ │ └── main.m │ ├── README.md │ ├── Source │ │ ├── CBCircularData.h │ │ ├── CBCircularData.m │ │ ├── PBJGLProgram.h │ │ ├── PBJGLProgram.m │ │ ├── PBJMediaWriter.h │ │ ├── PBJMediaWriter.m │ │ ├── PBJVision.h │ │ ├── PBJVision.m │ │ ├── PBJVisionUtilities.h │ │ ├── PBJVisionUtilities.m │ │ └── Shaders │ │ │ ├── Shader.fsh │ │ │ └── Shader.vsh │ └── pbj.gif └── PSTAlertController │ ├── Example │ ├── PSTAlertViewControllerSample.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── PSTAlertViewControllerSample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── LICENSE │ ├── PSTAlertController.podspec │ ├── PSTAlertController │ ├── PSTAlertController.h │ └── PSTAlertController.m │ └── README.md ├── DemoRTSP ├── AFNetworking │ ├── AFNetworking.podspec │ ├── AFNetworking.xcworkspace │ │ └── contents.xcworkspacedata │ ├── AFNetworking │ │ ├── AFHTTPClient.h │ │ ├── AFHTTPClient.m │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFHTTPRequestOperation.m │ │ ├── AFImageRequestOperation.h │ │ ├── AFImageRequestOperation.m │ │ ├── AFJSONRequestOperation.h │ │ ├── AFJSONRequestOperation.m │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── AFNetworking.h │ │ ├── AFPropertyListRequestOperation.h │ │ ├── AFPropertyListRequestOperation.m │ │ ├── AFURLConnectionOperation.h │ │ ├── AFURLConnectionOperation.m │ │ ├── AFXMLRequestOperation.h │ │ ├── AFXMLRequestOperation.m │ │ ├── UIImageView+AFNetworking.h │ │ └── UIImageView+AFNetworking.m │ ├── CHANGES │ ├── Example │ │ ├── AFNetworking Example.entitlements │ │ ├── AFNetworking Mac Example.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── ipv6.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ └── AFNetworking Example.xcscheme │ │ ├── AFNetworking iOS Example.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── ipv6.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ └── AFNetworking iOS Example.xcscheme │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Classes │ │ │ ├── AFAppDotNetAPIClient.h │ │ │ ├── AFAppDotNetAPIClient.m │ │ │ ├── Controllers │ │ │ │ ├── GlobalTimelineViewController.h │ │ │ │ └── GlobalTimelineViewController.m │ │ │ ├── Models │ │ │ │ ├── Post.h │ │ │ │ ├── Post.m │ │ │ │ ├── User.h │ │ │ │ └── User.m │ │ │ └── Views │ │ │ │ ├── PostTableViewCell.h │ │ │ │ └── PostTableViewCell.m │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ ├── Images │ │ │ ├── profile-image-placeholder.png │ │ │ └── profile-image-placeholder@2x.png │ │ ├── Mac-Info.plist │ │ ├── MainMenu.xib │ │ ├── Prefix.pch │ │ ├── adn.cer │ │ ├── en.lproj │ │ │ └── MainMenu.xib │ │ ├── iOS-Info.plist │ │ └── main.m │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ └── Tests │ │ ├── AFHTTPClientTests.m │ │ ├── AFHTTPRequestOperationTests.m │ │ ├── AFImageRequestOperationTests.m │ │ ├── AFJSONRequestOperationTests.m │ │ ├── AFMockURLProtocol.h │ │ ├── AFMockURLProtocol.m │ │ ├── AFNetworking Tests.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ └── ipv6.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── OS X Tests.xcscheme │ │ │ └── iOS Tests.xcscheme │ │ ├── AFNetworking-Prefix.pch │ │ ├── AFNetworkingTests-Info.plist │ │ ├── AFNetworkingTests.h │ │ ├── AFNetworkingTests.m │ │ ├── AFURLConnectionOperationTests.m │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Resources │ │ ├── ca.cer │ │ ├── derived.cert │ │ ├── root_certificate.cer │ │ └── root_certificate.key │ │ └── Schemes │ │ ├── OS X Tests.xcscheme │ │ └── iOS Tests.xcscheme ├── CocoaLumberjack │ ├── Benchmarking │ │ ├── BaseNSLogging.h │ │ ├── BaseNSLogging.m │ │ ├── DynamicLogging.h │ │ ├── DynamicLogging.m │ │ ├── PerformanceTesting.h │ │ ├── PerformanceTesting.m │ │ ├── Results │ │ │ ├── Benchmark PowerMac.csv │ │ │ ├── Benchmark iMac.csv │ │ │ ├── Benchmark iPad.csv │ │ │ ├── Benchmark iPhone 3GS.csv │ │ │ ├── Benchmark iPodTouch3 GCD.csv │ │ │ ├── Lumberjack Benchmark (PowerMac).ograph │ │ │ ├── Lumberjack Benchmark (iMac).ograph │ │ │ ├── Lumberjack Benchmark (iPad).ograph │ │ │ └── Lumberjack Benchmark (iPhone 3GS).ograph │ │ ├── StaticLogging.h │ │ └── StaticLogging.m │ ├── CocoaLumberjack.podspec │ ├── 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 │ └── Xcode │ │ ├── BenchmarkIPhone │ │ ├── BenchmarkIPhone-Info.plist │ │ ├── BenchmarkIPhone.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── BenchmarkIPhone.xcscheme │ │ ├── BenchmarkIPhoneViewController.xib │ │ ├── BenchmarkIPhone_Prefix.pch │ │ ├── Classes │ │ │ ├── BenchmarkIPhoneAppDelegate.h │ │ │ ├── BenchmarkIPhoneAppDelegate.m │ │ │ ├── BenchmarkIPhoneViewController.h │ │ │ └── BenchmarkIPhoneViewController.m │ │ ├── Default-568h@2x.png │ │ ├── MainWindow.xib │ │ ├── ReadMe.txt │ │ └── main.m │ │ ├── BenchmarkMac │ │ ├── BenchmarkMac.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── BenchmarkMac.xcscheme │ │ ├── BenchmarkMac │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── BenchmarkMac-Info.plist │ │ │ ├── BenchmarkMac-Prefix.pch │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ └── main.m │ │ └── ReadMe.txt │ │ ├── ContextFilter │ │ ├── ContextFilter-Info.plist │ │ ├── ContextFilter.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── ContextFilter.xcscheme │ │ ├── ContextFilterAppDelegate.h │ │ ├── ContextFilterAppDelegate.m │ │ ├── ContextFilter_Prefix.pch │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── MyContextFilter.h │ │ ├── MyContextFilter.m │ │ ├── ThirdPartyFramework.h │ │ ├── ThirdPartyFramework.m │ │ └── main.m │ │ ├── CoreDataLogger │ │ ├── CoreDataLogger.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── CoreDataLogger.xcscheme │ │ └── CoreDataLogger │ │ │ ├── CoreDataLogger-Info.plist │ │ │ ├── CoreDataLogger-Prefix.pch │ │ │ ├── CoreDataLogger.h │ │ │ ├── CoreDataLogger.m │ │ │ ├── CoreDataLogger.xcdatamodeld │ │ │ └── .xccurrentversion │ │ │ ├── CoreDataLoggerAppDelegate.h │ │ │ ├── CoreDataLoggerAppDelegate.m │ │ │ ├── Log.xcdatamodeld │ │ │ ├── .xccurrentversion │ │ │ └── CocoaBotLog.xcdatamodel │ │ │ │ ├── elements │ │ │ │ └── layout │ │ │ ├── LogEntry.h │ │ │ ├── LogEntry.m │ │ │ ├── en.lproj │ │ │ ├── Credits.rtf │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ │ └── main.m │ │ ├── CustomFormatters │ │ ├── CustomFormatters-Info.plist │ │ ├── CustomFormatters.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── CustomFormatters.xcscheme │ │ ├── CustomFormattersAppDelegate.h │ │ ├── CustomFormattersAppDelegate.m │ │ ├── CustomFormatters_Prefix.pch │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── ReadMe.txt │ │ ├── TestFormatter.h │ │ ├── TestFormatter.m │ │ └── main.m │ │ ├── CustomLogLevels │ │ ├── CustomLogLevels-Info.plist │ │ ├── CustomLogLevels.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── CustomLogLevels.xcscheme │ │ ├── CustomLogLevelsAppDelegate.h │ │ ├── CustomLogLevelsAppDelegate.m │ │ ├── CustomLogLevels_Prefix.pch │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── MYLog.h │ │ ├── ReadMe.txt │ │ └── main.m │ │ ├── DispatchQueueLogger │ │ ├── DispatchQueueLogger.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── DispatchQueueLogger.xcscheme │ │ └── DispatchQueueLogger │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── DispatchQueueLogger-Info.plist │ │ │ ├── DispatchQueueLogger-Prefix.pch │ │ │ ├── en.lproj │ │ │ ├── Credits.rtf │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ │ └── main.m │ │ ├── FineGrainedLogging │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── FineGrainedLogging-Info.plist │ │ ├── FineGrainedLogging.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── FineGrainedLogging.xcscheme │ │ ├── FineGrainedLoggingAppDelegate.h │ │ ├── FineGrainedLoggingAppDelegate.m │ │ ├── FineGrainedLogging_Prefix.pch │ │ ├── MYLog.h │ │ ├── ReadMe.txt │ │ ├── TimerOne.h │ │ ├── TimerOne.m │ │ ├── TimerTwo.h │ │ ├── TimerTwo.m │ │ └── main.m │ │ ├── GlobalLogLevel │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── GlobalLogLevel-Info.plist │ │ ├── GlobalLogLevel.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── GlobalLogLevel.xcscheme │ │ ├── GlobalLogLevelAppDelegate.h │ │ ├── GlobalLogLevelAppDelegate.m │ │ ├── GlobalLogLevel_Prefix.pch │ │ ├── MyLogging.h │ │ ├── Stuff.h │ │ ├── Stuff.m │ │ └── main.m │ │ ├── LogFileCompressor │ │ ├── CompressingLogFileManager.h │ │ ├── CompressingLogFileManager.m │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── LogFileCompressor-Info.plist │ │ ├── LogFileCompressor.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── LogFileCompressor.xcscheme │ │ ├── LogFileCompressorAppDelegate.h │ │ ├── LogFileCompressorAppDelegate.m │ │ ├── LogFileCompressor_Prefix.pch │ │ ├── ReadMe.txt │ │ └── main.m │ │ ├── LumberjackFramework │ │ ├── Desktop │ │ │ ├── FmwkTest │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── FmwkTest-Info.plist │ │ │ │ ├── FmwkTest-Prefix.pch │ │ │ │ ├── en.lproj │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.xib │ │ │ │ └── main.m │ │ │ ├── Lumberjack.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── FmwkTest.xcscheme │ │ │ │ │ └── Lumberjack.xcscheme │ │ │ └── Lumberjack │ │ │ │ ├── Lumberjack-Info.plist │ │ │ │ ├── Lumberjack-Prefix.pch │ │ │ │ ├── Lumberjack.h │ │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ └── Mobile │ │ │ ├── Default-568h@2x.png │ │ │ ├── LibTest │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── LibTest-Info.plist │ │ │ ├── LibTest-Prefix.pch │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── ViewController.xib │ │ │ └── main.m │ │ │ ├── Lumberjack.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── LibTest.xcscheme │ │ │ │ └── Lumberjack.xcscheme │ │ │ └── Lumberjack │ │ │ ├── Lumberjack-Prefix.pch │ │ │ └── Lumberjack.h │ │ ├── OverflowTestMac │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── OverflowTestMac-Info.plist │ │ ├── OverflowTestMac.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── OverflowTestMac.xcscheme │ │ ├── OverflowTestMacAppDelegate.h │ │ ├── OverflowTestMacAppDelegate.m │ │ ├── OverflowTestMac_Prefix.pch │ │ ├── ReadMe.txt │ │ ├── SlowLogger.h │ │ ├── SlowLogger.m │ │ └── main.m │ │ ├── PerUserLogLevels │ │ ├── PerUserLogLevels.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── PerUserLogLevels.xcscheme │ │ ├── PerUserLogLevels │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── PerUserLogLevels-Info.plist │ │ │ ├── PerUserLogLevels-Prefix.pch │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ └── main.m │ │ └── Scripts │ │ │ └── LumberjackUser.bash │ │ ├── RollingTestMac │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── ReadMe.txt │ │ ├── RollingTestMac-Info.plist │ │ ├── RollingTestMac.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── RollingTestMac.xcscheme │ │ ├── RollingTestMacAppDelegate.h │ │ ├── RollingTestMacAppDelegate.m │ │ ├── RollingTestMac_Prefix.pch │ │ └── main.m │ │ ├── SQLiteLogger │ │ ├── FMDB │ │ │ ├── FMDatabase.h │ │ │ ├── FMDatabase.m │ │ │ ├── FMDatabaseAdditions.h │ │ │ ├── FMDatabaseAdditions.m │ │ │ ├── FMResultSet.h │ │ │ └── FMResultSet.m │ │ ├── FMDBLogger.h │ │ ├── FMDBLogger.m │ │ ├── SQLiteLogger.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── SQLiteLogger.xcscheme │ │ └── SQLiteLogger │ │ │ ├── SQLiteLogger-Info.plist │ │ │ ├── SQLiteLogger-Prefix.pch │ │ │ ├── SQLiteLoggerAppDelegate.h │ │ │ ├── SQLiteLoggerAppDelegate.m │ │ │ ├── en.lproj │ │ │ ├── Credits.rtf │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ │ └── main.m │ │ ├── Testing │ │ ├── NonArcTest │ │ │ ├── NonArcTest.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── NonArcTest.xcscheme │ │ │ └── NonArcTest │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── NonArcTest-Info.plist │ │ │ │ ├── NonArcTest-Prefix.pch │ │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ │ └── main.m │ │ ├── RegisteredDynamicLogging │ │ │ ├── Desktop │ │ │ │ ├── RegisteredLoggingTest.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── RegisteredLoggingTest.xcscheme │ │ │ │ └── RegisteredLoggingTest │ │ │ │ │ ├── Lions.h │ │ │ │ │ ├── Lions.m │ │ │ │ │ ├── RegisteredLoggingTest-Info.plist │ │ │ │ │ ├── RegisteredLoggingTest-Prefix.pch │ │ │ │ │ ├── RegisteredLoggingTestAppDelegate.h │ │ │ │ │ ├── RegisteredLoggingTestAppDelegate.m │ │ │ │ │ ├── Tigers.h │ │ │ │ │ ├── Tigers.m │ │ │ │ │ ├── en.lproj │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.xib │ │ │ │ │ └── main.m │ │ │ └── Mobile │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── RegisteredLoggingTest.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── RegisteredLoggingTest.xcscheme │ │ │ │ └── RegisteredLoggingTest │ │ │ │ ├── Lions.h │ │ │ │ ├── Lions.m │ │ │ │ ├── RegisteredLoggingTest-Info.plist │ │ │ │ ├── RegisteredLoggingTest-Prefix.pch │ │ │ │ ├── RegisteredLoggingTestAppDelegate.h │ │ │ │ ├── RegisteredLoggingTestAppDelegate.m │ │ │ │ ├── RegisteredLoggingTestViewController.h │ │ │ │ ├── RegisteredLoggingTestViewController.m │ │ │ │ ├── Tigers.h │ │ │ │ ├── Tigers.m │ │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ ├── MainWindow.xib │ │ │ │ └── RegisteredLoggingTestViewController.xib │ │ │ │ └── main.m │ │ └── TestXcodeColors │ │ │ ├── Desktop │ │ │ ├── TestXcodeColors.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── TestXcodeColors.xcscheme │ │ │ └── TestXcodeColors │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── TestXcodeColors-Info.plist │ │ │ │ ├── TestXcodeColors-Prefix.pch │ │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ │ └── main.m │ │ │ └── Mobile │ │ │ ├── Default-568h@2x.png │ │ │ ├── TextXcodeColors.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TextXcodeColors.xcscheme │ │ │ └── TextXcodeColors │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── TextXcodeColors-Info.plist │ │ │ ├── TextXcodeColors-Prefix.pch │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── ViewController.xib │ │ │ └── main.m │ │ ├── UniversalApp │ │ ├── Classes │ │ │ ├── UniversalAppAppDelegate.h │ │ │ ├── UniversalAppAppDelegate.m │ │ │ ├── UniversalAppViewController.h │ │ │ └── UniversalAppViewController.m │ │ ├── Default-568h@2x.png │ │ ├── MainWindow.xib │ │ ├── UniversalApp-Info.plist │ │ ├── UniversalApp.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── UniversalApp.xcscheme │ │ ├── UniversalAppViewController.xib │ │ ├── UniversalApp_Prefix.pch │ │ └── main.m │ │ └── WebServerIPhone │ │ ├── Classes │ │ ├── MyHTTPConnection.h │ │ ├── MyHTTPConnection.m │ │ ├── WebServerIPhoneAppDelegate.h │ │ ├── WebServerIPhoneAppDelegate.m │ │ ├── WebServerIPhoneViewController.h │ │ ├── WebServerIPhoneViewController.m │ │ ├── WebSocketLogger.h │ │ └── WebSocketLogger.m │ │ ├── Default-568h@2x.png │ │ ├── MainWindow.xib │ │ ├── ReadMe.txt │ │ ├── Vendor │ │ ├── CocoaAsyncSocket │ │ │ ├── GCDAsyncSocket.h │ │ │ └── GCDAsyncSocket.m │ │ └── CocoaHTTPServer │ │ │ ├── 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 │ │ │ ├── HTTPErrorResponse.h │ │ │ ├── HTTPErrorResponse.m │ │ │ ├── HTTPFileResponse.h │ │ │ ├── HTTPFileResponse.m │ │ │ ├── HTTPRedirectResponse.h │ │ │ └── HTTPRedirectResponse.m │ │ │ ├── WebSocket.h │ │ │ └── WebSocket.m │ │ ├── Web │ │ ├── index.html │ │ ├── jquery-1.4.2.min.js │ │ ├── socket.html │ │ └── styles.css │ │ ├── WebServerIPhone-Info.plist │ │ ├── WebServerIPhone.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── WebServerIPhone.xcscheme │ │ ├── WebServerIPhoneViewController.xib │ │ ├── WebServerIPhone_Prefix.pch │ │ └── main.m ├── DemoRTSP.xcworkspace │ └── contents.xcworkspacedata ├── DemoRTSP │ ├── DemoRTSP.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── mstreamer.xccheckout │ │ └── xcuserdata │ │ │ └── ipv6.xcuserdatad │ │ │ └── xcschemes │ │ │ └── DemoRTSP.xcscheme │ └── DemoRTSP │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ │ ├── CacheFileManager.h │ │ ├── CacheFileManager.m │ │ ├── Defaults.h │ │ ├── H264HwEncoderImpl.h │ │ ├── H264HwEncoderImpl.m │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon2-60@2x.png │ │ │ ├── Icon2-60@3x.png │ │ │ ├── Icon2-76.png │ │ │ └── Icon2-76@2x.png │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── btn_rec_red.imageset │ │ │ ├── Contents.json │ │ │ └── element_1.pdf │ │ ├── btn_rec_white.imageset │ │ │ ├── Contents.json │ │ │ └── element_2.pdf │ │ └── btn_settings.imageset │ │ │ ├── Contents.json │ │ │ └── element_9.pdf │ │ ├── Info.plist │ │ ├── MainViewController.h │ │ ├── MainViewController.m │ │ ├── NALUnit.cpp │ │ ├── NALUnit.h │ │ ├── NSTimer+Blocks.h │ │ ├── NSTimer+Blocks.m │ │ ├── Prefix.pch │ │ ├── RTSPClientConnection.h │ │ ├── RTSPClientConnection.mm │ │ ├── RTSPMessage.h │ │ ├── RTSPMessage.m │ │ ├── RTSPServer.h │ │ ├── RTSPServer.m │ │ ├── UIButton+Blocks.h │ │ ├── UIButton+Blocks.m │ │ ├── UIGriddableView.h │ │ ├── UIGriddableView.m │ │ ├── en.lproj │ │ └── Localizable.strings │ │ └── main.m ├── Libextobjc │ ├── Configuration │ │ ├── Base │ │ │ ├── Common.xcconfig │ │ │ ├── Configurations │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Profile.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Test.xcconfig │ │ │ └── Targets │ │ │ │ ├── Application.xcconfig │ │ │ │ └── StaticLibrary.xcconfig │ │ ├── Mac OS X │ │ │ ├── Mac-Application.xcconfig │ │ │ ├── Mac-Base.xcconfig │ │ │ ├── Mac-DynamicLibrary.xcconfig │ │ │ ├── Mac-Framework.xcconfig │ │ │ └── Mac-StaticLibrary.xcconfig │ │ ├── README.md │ │ └── iOS │ │ │ ├── iOS-Application.xcconfig │ │ │ ├── iOS-Base.xcconfig │ │ │ └── iOS-StaticLibrary.xcconfig │ ├── LICENSE.md │ ├── README.md │ ├── Tests │ │ ├── EXTADTTest.h │ │ ├── EXTADTTest.m │ │ ├── EXTConcreteProtocolTest.h │ │ ├── EXTConcreteProtocolTest.m │ │ ├── EXTCoroutineTest.h │ │ ├── EXTCoroutineTest.m │ │ ├── EXTKeyPathCodingTest.h │ │ ├── EXTKeyPathCodingTest.m │ │ ├── EXTKeypathWeakWarningTest.h │ │ ├── EXTKeypathWeakWarningTest.m │ │ ├── EXTNilTest.h │ │ ├── EXTNilTest.m │ │ ├── EXTObjectiveCppCompileTest.h │ │ ├── EXTObjectiveCppCompileTest.mm │ │ ├── EXTRuntimeExtensionsTest.h │ │ ├── EXTRuntimeExtensionsTest.m │ │ ├── EXTRuntimeTestProtocol.h │ │ ├── EXTSafeCategoryTest.h │ │ ├── EXTSafeCategoryTest.m │ │ ├── EXTScopeTest.h │ │ ├── EXTScopeTest.m │ │ ├── EXTSelectorCheckingTest.h │ │ ├── EXTSelectorCheckingTest.m │ │ ├── EXTSynthesizeTest.h │ │ ├── EXTSynthesizeTest.m │ │ ├── OSX-Info.plist │ │ └── iOS-Info.plist │ ├── extobjc.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── libextobjc (OS X).xcscheme │ │ │ └── libextobjc (iOS).xcscheme │ └── extobjc │ │ ├── EXTADT.h │ │ ├── EXTADT.m │ │ ├── EXTConcreteProtocol.h │ │ ├── EXTConcreteProtocol.m │ │ ├── EXTCoroutine.h │ │ ├── EXTKeyPathCoding.h │ │ ├── EXTNil.h │ │ ├── EXTNil.m │ │ ├── EXTRuntimeExtensions.h │ │ ├── EXTRuntimeExtensions.m │ │ ├── EXTSafeCategory.h │ │ ├── EXTSafeCategory.m │ │ ├── EXTScope.h │ │ ├── EXTScope.m │ │ ├── EXTSelectorChecking.h │ │ ├── EXTSelectorChecking.m │ │ ├── EXTSynthesize.h │ │ ├── NSInvocation+EXT.h │ │ ├── NSInvocation+EXT.m │ │ ├── NSMethodSignature+EXT.h │ │ ├── NSMethodSignature+EXT.m │ │ ├── extobjc.h │ │ ├── extobjc_Prefix.pch │ │ └── metamacros.h ├── PBJVision │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── PBJVision.podspec │ ├── Project │ │ ├── Base.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ ├── Vision.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Debug.xcscheme │ │ │ │ └── Release.xcscheme │ │ └── Vision │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── PBJAppDelegate.h │ │ │ ├── PBJAppDelegate.m │ │ │ ├── PBJFocusView.h │ │ │ ├── PBJFocusView.m │ │ │ ├── PBJStrobeView.h │ │ │ ├── PBJStrobeView.m │ │ │ ├── PBJViewController.h │ │ │ ├── PBJViewController.m │ │ │ ├── UI │ │ │ ├── capture_done@2x.png │ │ │ ├── capture_flip@2x.png │ │ │ ├── capture_focus@2x.png │ │ │ ├── capture_focus_button@2x.png │ │ │ ├── capture_focus_button_active@2x.png │ │ │ ├── capture_onion@2x.png │ │ │ ├── capture_onion_selected@2x.png │ │ │ ├── capture_rec_base@2x.png │ │ │ ├── capture_rec_blink@2x.png │ │ │ └── capture_rec_off@2x.png │ │ │ ├── Vision-Info.plist │ │ │ ├── Vision-Prefix.pch │ │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ │ └── main.m │ ├── README.md │ ├── Source │ │ ├── CBCircularData.h │ │ ├── CBCircularData.m │ │ ├── PBJGLProgram.h │ │ ├── PBJGLProgram.m │ │ ├── PBJMediaWriter.h │ │ ├── PBJMediaWriter.m │ │ ├── PBJVision.h │ │ ├── PBJVision.m │ │ ├── PBJVisionUtilities.h │ │ ├── PBJVisionUtilities.m │ │ └── Shaders │ │ │ ├── Shader.fsh │ │ │ └── Shader.vsh │ └── pbj.gif ├── PSTAlertController │ ├── Example │ │ ├── PSTAlertViewControllerSample.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── ipv6.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ └── PSTAlertViewControllerSample.xcscheme │ │ └── PSTAlertViewControllerSample │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ └── main.m │ ├── LICENSE │ ├── PSTAlertController.podspec │ ├── PSTAlertController │ │ ├── PSTAlertController.h │ │ └── PSTAlertController.m │ └── README.md └── SmoothLineView │ ├── SmoothLineView.h │ └── SmoothLineView.m └── README.md /DemoFMP4/AFNetworking/Example/AFNetworking Mac Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/AFNetworking/Example/AFNetworking iOS Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/AFNetworking/Example/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/AFNetworking/Example/Default-568h@2x.png -------------------------------------------------------------------------------- /DemoFMP4/AFNetworking/Example/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/AFNetworking/Example/Default.png -------------------------------------------------------------------------------- /DemoFMP4/AFNetworking/Example/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/AFNetworking/Example/Default@2x.png -------------------------------------------------------------------------------- /DemoFMP4/AFNetworking/Example/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/AFNetworking/Example/Icon.png -------------------------------------------------------------------------------- /DemoFMP4/AFNetworking/Example/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/AFNetworking/Example/Icon@2x.png -------------------------------------------------------------------------------- /DemoFMP4/AFNetworking/Example/Images/profile-image-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/AFNetworking/Example/Images/profile-image-placeholder.png -------------------------------------------------------------------------------- /DemoFMP4/AFNetworking/Example/Images/profile-image-placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/AFNetworking/Example/Images/profile-image-placeholder@2x.png -------------------------------------------------------------------------------- /DemoFMP4/AFNetworking/Example/adn.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/AFNetworking/Example/adn.cer -------------------------------------------------------------------------------- /DemoFMP4/AFNetworking/Tests/Resources/ca.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/AFNetworking/Tests/Resources/ca.cer -------------------------------------------------------------------------------- /DemoFMP4/AFNetworking/Tests/Resources/derived.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/AFNetworking/Tests/Resources/derived.cert -------------------------------------------------------------------------------- /DemoFMP4/AFNetworking/Tests/Resources/root_certificate.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/AFNetworking/Tests/Resources/root_certificate.cer -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Benchmarking/BaseNSLogging.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface BaseNSLogging : NSObject 5 | 6 | + (void)speedTest0; 7 | + (void)speedTest1; 8 | + (void)speedTest2; 9 | + (void)speedTest3; 10 | + (void)speedTest4; 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Benchmarking/DynamicLogging.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface DynamicLogging : NSObject 5 | 6 | + (void)speedTest0; 7 | + (void)speedTest1; 8 | + (void)speedTest2; 9 | + (void)speedTest3; 10 | + (void)speedTest4; 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Benchmarking/Results/Lumberjack Benchmark (PowerMac).ograph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/CocoaLumberjack/Benchmarking/Results/Lumberjack Benchmark (PowerMac).ograph -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Benchmarking/Results/Lumberjack Benchmark (iMac).ograph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/CocoaLumberjack/Benchmarking/Results/Lumberjack Benchmark (iMac).ograph -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Benchmarking/Results/Lumberjack Benchmark (iPad).ograph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/CocoaLumberjack/Benchmarking/Results/Lumberjack Benchmark (iPad).ograph -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Benchmarking/Results/Lumberjack Benchmark (iPhone 3GS).ograph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/CocoaLumberjack/Benchmarking/Results/Lumberjack Benchmark (iPhone 3GS).ograph -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Benchmarking/StaticLogging.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface StaticLogging : NSObject 5 | 6 | + (void)speedTest0; 7 | + (void)speedTest1; 8 | + (void)speedTest2; 9 | + (void)speedTest3; 10 | + (void)speedTest4; 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Lumberjack/Extensions/README.txt: -------------------------------------------------------------------------------- 1 | This folder contains some sample formatters that may be helpful. 2 | 3 | Feel free to change them, extend them, or use them as the basis for your own custom formatter(s). 4 | 5 | More information about creating your own custom formatters can be found on the wiki: 6 | https://github.com/CocoaLumberjack/CocoaLumberjack/wiki/CustomFormatters 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/BenchmarkIPhone/BenchmarkIPhone.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/BenchmarkIPhone/BenchmarkIPhone_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'BenchmarkIPhone' target in the 'BenchmarkIPhone' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/BenchmarkIPhone/Classes/BenchmarkIPhoneViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface BenchmarkIPhoneViewController : UIViewController 5 | { 6 | 7 | } 8 | 9 | @end 10 | 11 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/BenchmarkIPhone/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/CocoaLumberjack/Xcode/BenchmarkIPhone/Default-568h@2x.png -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/BenchmarkIPhone/ReadMe.txt: -------------------------------------------------------------------------------- 1 | This Xcode project provides a benchmarking suite for performance testing on the iPhone. 2 | 3 | Details of the tests, as well as sample results, are provided on the Wiki: 4 | https://github.com/CocoaLumberjack/CocoaLumberjack/wiki/Performance 5 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/BenchmarkMac/BenchmarkMac.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/BenchmarkMac/BenchmarkMac/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // BenchmarkMac 4 | // 5 | // Created by Robbie Hanson on 11/15/11. 6 | // Copyright (c) 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : NSObject 12 | 13 | @property (assign) IBOutlet NSWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/BenchmarkMac/BenchmarkMac/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #import "AppDelegate.h" 2 | #import "PerformanceTesting.h" 3 | 4 | 5 | @implementation AppDelegate 6 | 7 | @synthesize window = _window; 8 | 9 | - (void)applicationDidFinishLaunching:(NSNotification *)aNotification 10 | { 11 | [PerformanceTesting startPerformanceTests]; 12 | } 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/BenchmarkMac/BenchmarkMac/BenchmarkMac-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'BenchmarkMac' target in the 'BenchmarkMac' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/BenchmarkMac/BenchmarkMac/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/BenchmarkMac/BenchmarkMac/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // BenchmarkMac 4 | // 5 | // Created by Robbie Hanson on 11/15/11. 6 | // Copyright (c) 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/BenchmarkMac/ReadMe.txt: -------------------------------------------------------------------------------- 1 | This Xcode project provides a benchmarking suite for performance testing on Mac OS X. 2 | 3 | Details of the tests, as well as sample results, are provided on the Wiki: 4 | https://github.com/CocoaLumberjack/CocoaLumberjack/wiki/Performance 5 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/ContextFilter/ContextFilter_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'ContextFilter' target in the 'ContextFilter' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/ContextFilter/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/ContextFilter/MyContextFilter.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "DDLog.h" 3 | 4 | 5 | @interface MyContextFilter : NSObject 6 | { 7 | } 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/ContextFilter/ThirdPartyFramework.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #define TP_LOG_CONTEXT 1044 4 | 5 | 6 | @interface ThirdPartyFramework : NSObject 7 | 8 | + (void)start; 9 | 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/ContextFilter/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ContextFilter 4 | // 5 | // Created by Robbie Hanson on 11/22/10. 6 | // Copyright 2010 Voalte. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/CoreDataLogger-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CoreDataLogger' target in the 'CoreDataLogger' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/CoreDataLogger.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/CoreDataLoggerAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class CoreDataLogger; 4 | 5 | 6 | @interface CoreDataLoggerAppDelegate : NSObject { 7 | @private 8 | CoreDataLogger *coreDataLogger; 9 | NSWindow *__unsafe_unretained window; 10 | } 11 | 12 | @property (unsafe_unretained) IBOutlet NSWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | _XCCurrentVersionName 6 | CocoaBotLog.xcdatamodel 7 | 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/CocoaBotLog.xcdatamodel/elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/CocoaBotLog.xcdatamodel/elements -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/CocoaBotLog.xcdatamodel/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/CocoaBotLog.xcdatamodel/layout -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/LogEntry.m: -------------------------------------------------------------------------------- 1 | #import "LogEntry.h" 2 | 3 | 4 | @implementation LogEntry 5 | 6 | @dynamic context; 7 | @dynamic level; 8 | @dynamic message; 9 | @dynamic timestamp; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CoreDataLogger 4 | // 5 | // Created by Robbie Hanson on 3/30/11. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/CustomFormatters/CustomFormattersAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface CustomFormattersAppDelegate : NSObject { 5 | NSWindow *__unsafe_unretained window; 6 | } 7 | 8 | @property (unsafe_unretained) IBOutlet NSWindow *window; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/CustomFormatters/CustomFormatters_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CustomFormatters' target in the 'CustomFormatters' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/CustomFormatters/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/CustomFormatters/TestFormatter.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "DDLog.h" 3 | 4 | 5 | @interface TestFormatter : NSObject 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/CustomFormatters/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CustomFormatters 4 | // 5 | // Created by Robbie Hanson on 5/13/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/CustomLogLevels/CustomLogLevelsAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface CustomLogLevelsAppDelegate : NSObject { 5 | NSWindow *__unsafe_unretained window; 6 | } 7 | 8 | @property (unsafe_unretained) IBOutlet NSWindow *window; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/CustomLogLevels/CustomLogLevels_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CustomLogLevels' target in the 'CustomLogLevels' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/CustomLogLevels/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/CustomLogLevels/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CustomLogLevels 4 | // 5 | // Created by Robbie Hanson on 5/13/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/DispatchQueueLogger/DispatchQueueLogger/DispatchQueueLogger-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'DispatchQueueLogger' target in the 'DispatchQueueLogger' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/DispatchQueueLogger/DispatchQueueLogger/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/DispatchQueueLogger/DispatchQueueLogger/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // DispatchQueueLogger 4 | // 5 | // Created by Robbie Hanson on 11/8/11. 6 | // Copyright (c) 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/FineGrainedLogging/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/FineGrainedLogging/FineGrainedLogging_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'FineGrainedLogging' target in the 'FineGrainedLogging' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/FineGrainedLogging/TimerOne.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface TimerOne : NSObject 5 | { 6 | NSTimer *foodTimer; 7 | NSTimer *sleepTimer; 8 | } 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/FineGrainedLogging/TimerTwo.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface TimerTwo : NSObject 5 | { 6 | NSTimer *foodTimer; 7 | NSTimer *sleepTimer; 8 | } 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/FineGrainedLogging/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // FineGrainedLogging 4 | // 5 | // Created by Robbie Hanson on 5/14/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/GlobalLogLevel/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/GlobalLogLevel/GlobalLogLevel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/GlobalLogLevel/GlobalLogLevel_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'GlobalLogLevel' target in the 'GlobalLogLevel' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/GlobalLogLevel/MyLogging.h: -------------------------------------------------------------------------------- 1 | #import "DDLog.h" 2 | 3 | extern int ddLogLevel; 4 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/GlobalLogLevel/Stuff.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface Stuff : NSObject { 5 | 6 | } 7 | 8 | + (void)doStuff; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/GlobalLogLevel/Stuff.m: -------------------------------------------------------------------------------- 1 | #import "Stuff.h" 2 | #import "MyLogging.h" 3 | 4 | 5 | @implementation Stuff 6 | 7 | + (void)doStuff 8 | { 9 | DDLogError(@"%@: Error", THIS_FILE); 10 | DDLogWarn(@"%@: Warn", THIS_FILE); 11 | DDLogInfo(@"%@: Info", THIS_FILE); 12 | DDLogVerbose(@"%@: Verbose", THIS_FILE); 13 | } 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/GlobalLogLevel/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // GlobalLogLevel 4 | // 5 | // Created by Robbie Hanson on 2/28/11. 6 | // Copyright 2011 Voalte. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/LogFileCompressor/CompressingLogFileManager.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "DDFileLogger.h" 3 | 4 | 5 | @interface CompressingLogFileManager : DDLogFileManagerDefault 6 | { 7 | BOOL upToDate; 8 | BOOL isCompressing; 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/LogFileCompressor/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/LogFileCompressor/LogFileCompressorAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class DDFileLogger; 4 | 5 | 6 | @interface LogFileCompressorAppDelegate : NSObject 7 | { 8 | DDFileLogger *fileLogger; 9 | 10 | NSWindow *__unsafe_unretained window; 11 | } 12 | 13 | @property (unsafe_unretained) IBOutlet NSWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/LogFileCompressor/LogFileCompressor_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'LogFileCompressor' target in the 'LogFileCompressor' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/LogFileCompressor/ReadMe.txt: -------------------------------------------------------------------------------- 1 | This Xcode project demonstrates compressing archived log files. This is done by creating a custom DDLogFileManager, which is part of the DDFileLogger. 2 | 3 | For more information, see the Wiki article: 4 | https://github.com/CocoaLumberjack/CocoaLumberjack/wiki/LogFileManagement 5 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/LogFileCompressor/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // LogFileCompressor 4 | // 5 | // Created by Robbie Hanson on 5/25/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/LumberjackFramework/Desktop/FmwkTest/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface AppDelegate : NSObject 5 | 6 | @property (assign) IBOutlet NSWindow *window; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/LumberjackFramework/Desktop/FmwkTest/FmwkTest-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'FmwkTest' target in the 'FmwkTest' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/LumberjackFramework/Desktop/FmwkTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/LumberjackFramework/Desktop/FmwkTest/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // FmwkTest 4 | // 5 | // Created by Robbie Hanson on 2/16/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/LumberjackFramework/Desktop/Lumberjack/Lumberjack-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'Lumberjack' target in the 'Lumberjack' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/LumberjackFramework/Desktop/Lumberjack/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/LumberjackFramework/Mobile/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/CocoaLumberjack/Xcode/LumberjackFramework/Mobile/Default-568h@2x.png -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/LumberjackFramework/Mobile/LibTest/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class ViewController; 4 | 5 | 6 | @interface AppDelegate : UIResponder 7 | 8 | @property (strong, nonatomic) UIWindow *window; 9 | @property (strong, nonatomic) ViewController *viewController; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/LumberjackFramework/Mobile/LibTest/ViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface ViewController : UIViewController 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/LumberjackFramework/Mobile/LibTest/ViewController.m: -------------------------------------------------------------------------------- 1 | #import "ViewController.h" 2 | 3 | 4 | @implementation ViewController 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/LumberjackFramework/Mobile/LibTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/LumberjackFramework/Mobile/Lumberjack/Lumberjack-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'Lumberjack' target in the 'Lumberjack' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/OverflowTestMac/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/OverflowTestMac/OverflowTestMac_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'OverflowTestMac' target in the 'OverflowTestMac' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/OverflowTestMac/SlowLogger.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "DDLog.h" 3 | 4 | 5 | @interface SlowLogger : DDAbstractLogger 6 | 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/OverflowTestMac/SlowLogger.m: -------------------------------------------------------------------------------- 1 | #import "SlowLogger.h" 2 | 3 | 4 | @implementation SlowLogger 5 | 6 | - (void)logMessage:(DDLogMessage *)logMessage 7 | { 8 | [NSThread sleepForTimeInterval:0.25]; 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/OverflowTestMac/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // OverflowTestMac 4 | // 5 | // Created by Robbie Hanson on 5/10/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/PerUserLogLevels/PerUserLogLevels/PerUserLogLevels-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'PerUserLogLevels' target in the 'PerUserLogLevels' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/PerUserLogLevels/PerUserLogLevels/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/PerUserLogLevels/PerUserLogLevels/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // PerUserLogLevels 4 | // 5 | // Created by Robbie Hanson on 3/30/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/RollingTestMac/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/RollingTestMac/ReadMe.txt: -------------------------------------------------------------------------------- 1 | This Xcode project tests the file logger by ensuring that it is properly rolling log files when it should. It is a unit test project. -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/RollingTestMac/RollingTestMacAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class DDFileLogger; 4 | 5 | 6 | @interface RollingTestMacAppDelegate : NSObject 7 | { 8 | DDFileLogger *fileLogger; 9 | 10 | NSWindow *__unsafe_unretained window; 11 | } 12 | 13 | @property (unsafe_unretained) IBOutlet NSWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/RollingTestMac/RollingTestMac_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'RollingTestMac' target in the 'RollingTestMac' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/RollingTestMac/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // RollingTestMac 4 | // 5 | // Created by Robbie Hanson on 5/6/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/SQLiteLogger/SQLiteLogger.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/SQLiteLogger/SQLiteLogger/SQLiteLogger-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SQLiteLogger' target in the 'SQLiteLogger' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/SQLiteLogger/SQLiteLogger/SQLiteLoggerAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class FMDBLogger; 4 | 5 | 6 | @interface SQLiteLoggerAppDelegate : NSObject { 7 | @private 8 | FMDBLogger *sqliteLogger; 9 | NSWindow *__unsafe_unretained window; 10 | } 11 | 12 | @property (unsafe_unretained) IBOutlet NSWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/SQLiteLogger/SQLiteLogger/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/SQLiteLogger/SQLiteLogger/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SQLiteLogger 4 | // 5 | // Created by Robbie Hanson on 3/29/11. 6 | // Copyright 2011 Voalte. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/NonArcTest/NonArcTest/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // NonArcTest 4 | // 5 | // Created by Robbie Hanson on 11/9/11. 6 | // Copyright (c) 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : NSObject 12 | 13 | @property (assign) IBOutlet NSWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/NonArcTest/NonArcTest/NonArcTest-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'NonArcTest' target in the 'NonArcTest' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/NonArcTest/NonArcTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/NonArcTest/NonArcTest/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // NonArcTest 4 | // 5 | // Created by Robbie Hanson on 11/9/11. 6 | // Copyright (c) 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Desktop/RegisteredLoggingTest/Lions.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface Lions : NSObject 5 | 6 | + (void)logStuff; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Desktop/RegisteredLoggingTest/RegisteredLoggingTest-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'RegisteredLoggingTest' target in the 'RegisteredLoggingTest' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Desktop/RegisteredLoggingTest/RegisteredLoggingTestAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface RegisteredLoggingTestAppDelegate : NSObject { 5 | NSWindow *__unsafe_unretained window; 6 | } 7 | 8 | @property (unsafe_unretained) IBOutlet NSWindow *window; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Desktop/RegisteredLoggingTest/Tigers.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface Tigers : NSObject 5 | 6 | + (void)logStuff; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Desktop/RegisteredLoggingTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Desktop/RegisteredLoggingTest/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // RegisteredLoggingTest 4 | // 5 | // Created by Robbie Hanson on 9/5/11. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Mobile/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Mobile/Default-568h@2x.png -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Mobile/RegisteredLoggingTest/Lions.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface Lions : NSObject 5 | 6 | + (void)logStuff; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Mobile/RegisteredLoggingTest/RegisteredLoggingTestViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface RegisteredLoggingTestViewController : UIViewController 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Mobile/RegisteredLoggingTest/RegisteredLoggingTestViewController.m: -------------------------------------------------------------------------------- 1 | #import "RegisteredLoggingTestViewController.h" 2 | 3 | 4 | @implementation RegisteredLoggingTestViewController 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Mobile/RegisteredLoggingTest/Tigers.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface Tigers : NSObject 5 | 6 | + (void)logStuff; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Mobile/RegisteredLoggingTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Desktop/TestXcodeColors/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface AppDelegate : NSObject 5 | 6 | @property (assign) IBOutlet NSWindow *window; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Desktop/TestXcodeColors/TestXcodeColors-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestXcodeColors' target in the 'TestXcodeColors' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Desktop/TestXcodeColors/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Desktop/TestXcodeColors/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // TestXcodeColors 4 | // 5 | // Created by Robbie Hanson on 5/17/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Mobile/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Mobile/Default-568h@2x.png -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Mobile/TextXcodeColors/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class ViewController; 4 | 5 | 6 | @interface AppDelegate : UIResponder 7 | 8 | @property (strong, nonatomic) UIWindow *window; 9 | @property (strong, nonatomic) ViewController *viewController; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Mobile/TextXcodeColors/ViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface ViewController : UIViewController 4 | { 5 | IBOutlet UILabel *label; 6 | } 7 | 8 | @property (nonatomic, readonly) UILabel *label; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Mobile/TextXcodeColors/ViewController.m: -------------------------------------------------------------------------------- 1 | #import "ViewController.h" 2 | 3 | 4 | @implementation ViewController 5 | 6 | @synthesize label; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Mobile/TextXcodeColors/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/UniversalApp/Classes/UniversalAppViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // UniversalAppViewController.h 3 | // UniversalApp 4 | // 5 | // Created by Robbie Hanson on 7/1/10. 6 | // Copyright __MyCompanyName__ 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UniversalAppViewController : UIViewController { 12 | 13 | } 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/UniversalApp/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/CocoaLumberjack/Xcode/UniversalApp/Default-568h@2x.png -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/UniversalApp/UniversalApp_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'UniversalApp' target in the 'UniversalApp' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/WebServerIPhone/Classes/MyHTTPConnection.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPConnection.h" 3 | 4 | 5 | @interface MyHTTPConnection : HTTPConnection 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/WebServerIPhone/Classes/WebServerIPhoneViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface WebServerIPhoneViewController : UIViewController { 5 | 6 | } 7 | 8 | @end 9 | 10 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/WebServerIPhone/Classes/WebServerIPhoneViewController.m: -------------------------------------------------------------------------------- 1 | #import "WebServerIPhoneViewController.h" 2 | 3 | 4 | @implementation WebServerIPhoneViewController 5 | 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/WebServerIPhone/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/CocoaLumberjack/Xcode/WebServerIPhone/Default-568h@2x.png -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/WebServerIPhone/Vendor/CocoaHTTPServer/Categories/DDData.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface NSData (DDData) 4 | 5 | - (NSData *)md5Digest; 6 | 7 | - (NSData *)sha1Digest; 8 | 9 | - (NSString *)hexStringValue; 10 | 11 | - (NSString *)base64Encoded; 12 | - (NSData *)base64Decoded; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/WebServerIPhone/Vendor/CocoaHTTPServer/Responses/HTTPDataResponse.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPResponse.h" 3 | 4 | 5 | @interface HTTPDataResponse : NSObject 6 | { 7 | NSUInteger offset; 8 | NSData *data; 9 | } 10 | 11 | - (id)initWithData:(NSData *)data; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/WebServerIPhone/Vendor/CocoaHTTPServer/Responses/HTTPErrorResponse.h: -------------------------------------------------------------------------------- 1 | #import "HTTPResponse.h" 2 | 3 | @interface HTTPErrorResponse : NSObject { 4 | NSInteger _status; 5 | } 6 | 7 | - (id)initWithErrorCode:(int)httpErrorCode; 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/WebServerIPhone/Vendor/CocoaHTTPServer/Responses/HTTPRedirectResponse.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPResponse.h" 3 | 4 | 5 | @interface HTTPRedirectResponse : NSObject 6 | { 7 | NSString *redirectPath; 8 | } 9 | 10 | - (id)initWithPath:(NSString *)redirectPath; 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/WebServerIPhone/Web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Lumberjack Logging Framework 4 | 5 | 6 | 7 |

Lumberjack Logging Framework

8 | 12 | 13 | -------------------------------------------------------------------------------- /DemoFMP4/CocoaLumberjack/Xcode/WebServerIPhone/WebServerIPhone_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'WebServerIPhone' target in the 'WebServerIPhone' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /DemoFMP4/DemoFMP4.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/DemoFMP4/DemoFMP4.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/DemoFMP4/DemoFMP4/Images.xcassets/AppIcon.appiconset/Icon2-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/DemoFMP4/DemoFMP4/Images.xcassets/AppIcon.appiconset/Icon2-60@2x.png -------------------------------------------------------------------------------- /DemoFMP4/DemoFMP4/DemoFMP4/Images.xcassets/AppIcon.appiconset/Icon2-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/DemoFMP4/DemoFMP4/Images.xcassets/AppIcon.appiconset/Icon2-60@3x.png -------------------------------------------------------------------------------- /DemoFMP4/DemoFMP4/DemoFMP4/Images.xcassets/AppIcon.appiconset/Icon2-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/DemoFMP4/DemoFMP4/Images.xcassets/AppIcon.appiconset/Icon2-76.png -------------------------------------------------------------------------------- /DemoFMP4/DemoFMP4/DemoFMP4/Images.xcassets/AppIcon.appiconset/Icon2-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/DemoFMP4/DemoFMP4/Images.xcassets/AppIcon.appiconset/Icon2-76@2x.png -------------------------------------------------------------------------------- /DemoFMP4/DemoFMP4/DemoFMP4/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /DemoFMP4/DemoFMP4/DemoFMP4/Images.xcassets/btn_rec_red.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "element_1.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /DemoFMP4/DemoFMP4/DemoFMP4/Images.xcassets/btn_rec_red.imageset/element_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/DemoFMP4/DemoFMP4/Images.xcassets/btn_rec_red.imageset/element_1.pdf -------------------------------------------------------------------------------- /DemoFMP4/DemoFMP4/DemoFMP4/Images.xcassets/btn_rec_white.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "element_2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /DemoFMP4/DemoFMP4/DemoFMP4/Images.xcassets/btn_rec_white.imageset/element_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/DemoFMP4/DemoFMP4/Images.xcassets/btn_rec_white.imageset/element_2.pdf -------------------------------------------------------------------------------- /DemoFMP4/DemoFMP4/DemoFMP4/Images.xcassets/btn_settings.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "element_9.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /DemoFMP4/DemoFMP4/DemoFMP4/Images.xcassets/btn_settings.imageset/element_9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/DemoFMP4/DemoFMP4/Images.xcassets/btn_settings.imageset/element_9.pdf -------------------------------------------------------------------------------- /DemoFMP4/DemoFMP4/DemoFMP4/MainViewController.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2017 DENIVIP Group. All rights reserved. 2 | // 3 | 4 | #import 5 | #import "PBJVision.h" 6 | #import "UIButton+Blocks.h" 7 | 8 | @interface MainViewController : UIViewController 9 | 10 | +(PBJVision *)getPBJVision; 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /DemoFMP4/DemoFMP4/DemoFMP4/UIGriddableView.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2017 DENIVIP Group. All rights reserved. 2 | // 3 | 4 | #ifndef DemoFMP4_UIGriddableView_h 5 | #define DemoFMP4_UIGriddableView_h 6 | 7 | @interface UIGriddableView : UIView 8 | 9 | - (void)showGrid:(BOOL)onoff; 10 | - (void)showBorder:(UIColor*)color; 11 | @end 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /DemoFMP4/DemoFMP4/DemoFMP4/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | Localizable.strings 3 | DemoFMP4 4 | 5 | Created by IPv6 on 17/02/15. 6 | Copyright (c) 2015 DENIVIP Group. All rights reserved. 7 | */ 8 | -------------------------------------------------------------------------------- /DemoFMP4/DemoFMP4/DemoFMP4/mstreamer.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/GCDWebUploader/GCDWebUploader.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/GCDWebUploader/GCDWebUploader.bundle/Info.plist -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/GCDWebUploader/GCDWebUploader.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | "PROLOGUE" = "

Drag & drop files on this window or use the \"Upload Files…\" button to upload new files.

"; 2 | "EPILOGUE" = ""; 3 | "FOOTER_FORMAT" = "%@ %@"; 4 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/GCDWebUploader/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/GCDWebUploader/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/GCDWebUploader/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/GCDWebUploader/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/GCDWebUploader/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/GCDWebUploader/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/HTMLFileUpload/002-POST.request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/Tests/HTMLFileUpload/002-POST.request -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/HTMLForm/002-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Content-Length: 47 4 | Content-Type: text/html; charset=utf-8 5 | Connection: Close 6 | Server: GCDWebServer 7 | Date: Fri, 25 Apr 2014 14:12:20 GMT 8 | 9 |

Hellø Wörld!

-------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/Payload.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/Tests/Payload.zip -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/Sample-Movie.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/Tests/Sample-Movie.mp4 -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/001-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:52:42 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/001-HEAD.request: -------------------------------------------------------------------------------- 1 | HEAD / HTTP/1.1 2 | Host: localhost:8080 3 | Connection: Keep-Alive 4 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 5 | Accept-Encoding: gzip,deflate 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/002-PROPFIND.request: -------------------------------------------------------------------------------- 1 | PROPFIND / HTTP/1.1 2 | Depth: 1 3 | Content-Type: text/xml; charset=utf-8 4 | Content-Length: 99 5 | Host: localhost:8080 6 | Connection: Keep-Alive 7 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 8 | Accept-Encoding: gzip,deflate 9 | 10 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/005-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:52:51 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/005-HEAD.request: -------------------------------------------------------------------------------- 1 | HEAD / HTTP/1.1 2 | Host: localhost:8080 3 | Connection: Keep-Alive 4 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 5 | Accept-Encoding: gzip,deflate 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/006-404.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 404 Not Found 2 | Content-Length: 204 3 | Content-Type: text/html; charset=utf-8 4 | Connection: Close 5 | Server: GCDWebDAVServer 6 | Date: Sat, 12 Apr 2014 04:52:51 GMT 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/006-HEAD.request: -------------------------------------------------------------------------------- 1 | HEAD /Copy%20%284%3A11%3A14%2C%209%3A52%20PM%29.txt HTTP/1.1 2 | Host: localhost:8080 3 | Connection: Keep-Alive 4 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 5 | Accept-Encoding: gzip,deflate 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/007-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:52:51 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/007-COPY.request: -------------------------------------------------------------------------------- 1 | COPY /Copy.txt HTTP/1.1 2 | Destination: http://localhost:8080/Copy%20%284%3A11%3A14%2C%209%3A52%20PM%29.txt 3 | Overwrite: T 4 | Host: localhost:8080 5 | Connection: Keep-Alive 6 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 7 | Accept-Encoding: gzip,deflate 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/008-PROPFIND.request: -------------------------------------------------------------------------------- 1 | PROPFIND / HTTP/1.1 2 | Depth: 1 3 | Content-Type: text/xml; charset=utf-8 4 | Content-Length: 99 5 | Host: localhost:8080 6 | Connection: Keep-Alive 7 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 8 | Accept-Encoding: gzip,deflate 9 | 10 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/009-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:52:59 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/009-HEAD.request: -------------------------------------------------------------------------------- 1 | HEAD / HTTP/1.1 2 | Host: localhost:8080 3 | Connection: Keep-Alive 4 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 5 | Accept-Encoding: gzip,deflate 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/010-200.response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/010-200.response -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/010-GET.request: -------------------------------------------------------------------------------- 1 | GET /images/capable_green_ipad_l.png HTTP/1.1 2 | Host: localhost:8080 3 | Connection: Keep-Alive 4 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 5 | Accept-Encoding: gzip,deflate 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/012-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:53:07 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/012-DELETE.request: -------------------------------------------------------------------------------- 1 | DELETE /images/capable_green_ipad_l.png HTTP/1.1 2 | Host: localhost:8080 3 | Connection: Keep-Alive 4 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 5 | Accept-Encoding: gzip,deflate 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/013-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:53:07 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/013-DELETE.request: -------------------------------------------------------------------------------- 1 | DELETE /images/hero_mba_11.jpg HTTP/1.1 2 | Host: localhost:8080 3 | Connection: Keep-Alive 4 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 5 | Accept-Encoding: gzip,deflate 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/014-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:53:07 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/014-DELETE.request: -------------------------------------------------------------------------------- 1 | DELETE /images/ HTTP/1.1 2 | Host: localhost:8080 3 | Connection: Keep-Alive 4 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 5 | Accept-Encoding: gzip,deflate 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/015-PROPFIND.request: -------------------------------------------------------------------------------- 1 | PROPFIND / HTTP/1.1 2 | Depth: 1 3 | Content-Type: text/xml; charset=utf-8 4 | Content-Length: 99 5 | Host: localhost:8080 6 | Connection: Keep-Alive 7 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 8 | Accept-Encoding: gzip,deflate 9 | 10 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/016-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:53:13 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/016-MOVE.request: -------------------------------------------------------------------------------- 1 | MOVE /Copy%20%284%3A11%3A14%2C%209%3A52%20PM%29.txt HTTP/1.1 2 | Destination: http://localhost:8080/Test.txt 3 | Overwrite: T 4 | Host: localhost:8080 5 | Connection: Keep-Alive 6 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 7 | Accept-Encoding: gzip,deflate 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/017-PROPFIND.request: -------------------------------------------------------------------------------- 1 | PROPFIND / HTTP/1.1 2 | Depth: 1 3 | Content-Type: text/xml; charset=utf-8 4 | Content-Length: 99 5 | Host: localhost:8080 6 | Connection: Keep-Alive 7 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 8 | Accept-Encoding: gzip,deflate 9 | 10 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/018-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:53:14 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/018-MOVE.request: -------------------------------------------------------------------------------- 1 | MOVE /Test.txt HTTP/1.1 2 | Destination: http://localhost:8080/PDF%20Reports/Test.txt 3 | Overwrite: T 4 | Host: localhost:8080 5 | Connection: Keep-Alive 6 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 7 | Accept-Encoding: gzip,deflate 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/019-PROPFIND.request: -------------------------------------------------------------------------------- 1 | PROPFIND / HTTP/1.1 2 | Depth: 1 3 | Content-Type: text/xml; charset=utf-8 4 | Content-Length: 99 5 | Host: localhost:8080 6 | Connection: Keep-Alive 7 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 8 | Accept-Encoding: gzip,deflate 9 | 10 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/021-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:53:22 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/021-HEAD.request: -------------------------------------------------------------------------------- 1 | HEAD / HTTP/1.1 2 | Host: localhost:8080 3 | Connection: Keep-Alive 4 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 5 | Accept-Encoding: gzip,deflate 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/022-404.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 404 Not Found 2 | Content-Length: 190 3 | Content-Type: text/html; charset=utf-8 4 | Connection: Close 5 | Server: GCDWebDAVServer 6 | Date: Sat, 12 Apr 2014 04:53:22 GMT 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/022-HEAD.request: -------------------------------------------------------------------------------- 1 | HEAD /Test%20File.txt HTTP/1.1 2 | Host: localhost:8080 3 | Connection: Keep-Alive 4 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 5 | Accept-Encoding: gzip,deflate 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/023-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:53:22 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/024-PROPFIND.request: -------------------------------------------------------------------------------- 1 | PROPFIND / HTTP/1.1 2 | Depth: 1 3 | Content-Type: text/xml; charset=utf-8 4 | Content-Length: 99 5 | Host: localhost:8080 6 | Connection: Keep-Alive 7 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 8 | Accept-Encoding: gzip,deflate 9 | 10 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/025-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:53:35 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/025-MKCOL.request: -------------------------------------------------------------------------------- 1 | MKCOL /Text%20Files/ HTTP/1.1 2 | Content-Length: 0 3 | Host: localhost:8080 4 | Connection: Keep-Alive 5 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 6 | Accept-Encoding: gzip,deflate 7 | X-GCDWebServer-CreationDate: 2014-04-12T04:53:35+00:00 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/026-PROPFIND.request: -------------------------------------------------------------------------------- 1 | PROPFIND / HTTP/1.1 2 | Depth: 1 3 | Content-Type: text/xml; charset=utf-8 4 | Content-Length: 99 5 | Host: localhost:8080 6 | Connection: Keep-Alive 7 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 8 | Accept-Encoding: gzip,deflate 9 | 10 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/028-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:53:39 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/028-MOVE.request: -------------------------------------------------------------------------------- 1 | MOVE /Test%20File.txt HTTP/1.1 2 | Destination: http://localhost:8080/Text%20Files/Test%20File.txt 3 | Overwrite: T 4 | Host: localhost:8080 5 | Connection: Keep-Alive 6 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 7 | Accept-Encoding: gzip,deflate 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/029-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:53:39 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/029-MOVE.request: -------------------------------------------------------------------------------- 1 | MOVE /Copy.txt HTTP/1.1 2 | Destination: http://localhost:8080/Text%20Files/Copy.txt 3 | Overwrite: T 4 | Host: localhost:8080 5 | Connection: Keep-Alive 6 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 7 | Accept-Encoding: gzip,deflate 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/030-PROPFIND.request: -------------------------------------------------------------------------------- 1 | PROPFIND / HTTP/1.1 2 | Depth: 1 3 | Content-Type: text/xml; charset=utf-8 4 | Content-Length: 99 5 | Host: localhost:8080 6 | Connection: Keep-Alive 7 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 8 | Accept-Encoding: gzip,deflate 9 | 10 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/033-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:53:44 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/033-DELETE.request: -------------------------------------------------------------------------------- 1 | DELETE /PDF%20Reports/Apple%20Economic%20Impact%20on%20Cupertino.pdf HTTP/1.1 2 | Host: localhost:8080 3 | Connection: Keep-Alive 4 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 5 | Accept-Encoding: gzip,deflate 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/034-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:53:44 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/034-DELETE.request: -------------------------------------------------------------------------------- 1 | DELETE /PDF%20Reports/Test.txt HTTP/1.1 2 | Host: localhost:8080 3 | Connection: Keep-Alive 4 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 5 | Accept-Encoding: gzip,deflate 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/035-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:53:44 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/035-DELETE.request: -------------------------------------------------------------------------------- 1 | DELETE /PDF%20Reports/ HTTP/1.1 2 | Host: localhost:8080 3 | Connection: Keep-Alive 4 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 5 | Accept-Encoding: gzip,deflate 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Cyberduck/036-PROPFIND.request: -------------------------------------------------------------------------------- 1 | PROPFIND / HTTP/1.1 2 | Depth: 1 3 | Content-Type: text/xml; charset=utf-8 4 | Content-Length: 99 5 | Host: localhost:8080 6 | Connection: Keep-Alive 7 | User-Agent: Cyberduck/4.4.3 (Mac OS X/10.9.2) (x86_64) 8 | Accept-Encoding: gzip,deflate 9 | 10 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/001-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | DAV: 1, 2 4 | Connection: Close 5 | Server: GCDWebDAVServer 6 | Date: Sat, 12 Apr 2014 05:10:55 GMT 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/001-OPTIONS.request: -------------------------------------------------------------------------------- 1 | OPTIONS / HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: close 6 | User-Agent: WebDAVLib/1.3 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/002-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | DAV: 1, 2 4 | Connection: Close 5 | Server: GCDWebDAVServer 6 | Date: Sat, 12 Apr 2014 05:10:55 GMT 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/002-OPTIONS.request: -------------------------------------------------------------------------------- 1 | OPTIONS / HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: close 6 | User-Agent: WebDAVLib/1.3 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/003-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | DAV: 1, 2 4 | Connection: Close 5 | Server: GCDWebDAVServer 6 | Date: Sat, 12 Apr 2014 05:10:55 GMT 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/003-OPTIONS.request: -------------------------------------------------------------------------------- 1 | OPTIONS / HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/012-404.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 404 Not Found 2 | Content-Length: 180 3 | Content-Type: text/html; charset=utf-8 4 | Connection: Close 5 | Server: GCDWebDAVServer 6 | Date: Sat, 12 Apr 2014 05:10:55 GMT 7 | 8 | HTTP Error 404

HTTP Error 404: "/._." does not exist

-------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/014-404.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 404 Not Found 2 | Content-Length: 184 3 | Content-Type: text/html; charset=utf-8 4 | Connection: Close 5 | Server: GCDWebDAVServer 6 | Date: Sat, 12 Apr 2014 05:10:55 GMT 7 | 8 | HTTP Error 404

HTTP Error 404: "/.hidden" does not exist

-------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/021-PUT.request: -------------------------------------------------------------------------------- 1 | PUT /.DS_Store HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/029-404.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 404 Not Found 2 | Content-Length: 180 3 | Content-Type: text/html; charset=utf-8 4 | Connection: Close 5 | Server: GCDWebDAVServer 6 | Date: Sat, 12 Apr 2014 05:10:56 GMT 7 | 8 | HTTP Error 404

HTTP Error 404: "/._." does not exist

-------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/055-PUT.request: -------------------------------------------------------------------------------- 1 | PUT /.DS_Store HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/058-200.response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/058-200.response -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/058-GET.request: -------------------------------------------------------------------------------- 1 | GET /images/hero_mba_11.jpg HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 5 | Connection: keep-alive 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/059-200.response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/059-200.response -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/059-GET.request: -------------------------------------------------------------------------------- 1 | GET /images/hero_mba_11.jpg HTTP/1.1 2 | Host: localhost:8080 3 | If-Range: Thu, 10 Apr 2014 21:51:14 GMT 4 | Accept: */* 5 | Range: bytes=98304- 6 | Connection: keep-alive 7 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/061-200.response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/061-200.response -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/061-GET.request: -------------------------------------------------------------------------------- 1 | GET /images/capable_green_ipad_l.png HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 5 | Connection: keep-alive 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/062-200.response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/062-200.response -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/062-GET.request: -------------------------------------------------------------------------------- 1 | GET /images/capable_green_ipad_l.png HTTP/1.1 2 | Host: localhost:8080 3 | If-Range: Thu, 10 Apr 2014 21:46:56 GMT 4 | Accept: */* 5 | Range: bytes=98304- 6 | Connection: keep-alive 7 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/069-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:11:13 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/069-MOVE.request: -------------------------------------------------------------------------------- 1 | MOVE /images/capable_green_ipad_l.png HTTP/1.1 2 | Host: localhost:8080 3 | Destination: http://localhost:8080/images/Green%20iPad.png 4 | Accept: */* 5 | Content-Length: 0 6 | Connection: keep-alive 7 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/081-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:11:16 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/081-DELETE.request: -------------------------------------------------------------------------------- 1 | DELETE /images/hero_mba_11.jpg HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/096-PUT.request: -------------------------------------------------------------------------------- 1 | PUT /.DS_Store HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/102-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:11:26 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/102-PUT.request: -------------------------------------------------------------------------------- 1 | PUT /PDF%20Reports/Test%20File.txt HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | X-GCDWebServer-CreationDate: 2014-04-12T05:11:26+00:00 8 | X-GCDWebServer-ModifiedDate: Sat, 12 Apr 2014 05:11:26 GMT 9 | 10 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/105-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:11:26 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/105-UNLOCK.request: -------------------------------------------------------------------------------- 1 | UNLOCK /PDF%20Reports/Test%20File.txt HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | Lock-Token: 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/107-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:11:26 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/107-UNLOCK.request: -------------------------------------------------------------------------------- 1 | UNLOCK /PDF%20Reports/Test%20File.txt HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | Lock-Token: 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/109-PUT.request: -------------------------------------------------------------------------------- 1 | PUT /PDF%20Reports/._Test%20File.txt HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/113-404.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 404 Not Found 2 | Content-Length: 180 3 | Content-Type: text/html; charset=utf-8 4 | Connection: Close 5 | Server: GCDWebDAVServer 6 | Date: Sat, 12 Apr 2014 05:11:26 GMT 7 | 8 | HTTP Error 404

HTTP Error 404: "/._." does not exist

-------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/114-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:11:26 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/114-DELETE.request: -------------------------------------------------------------------------------- 1 | DELETE /PDF%20Reports/Test%20File.txt HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/117-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:11:26 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/117-PUT.request: -------------------------------------------------------------------------------- 1 | PUT /PDF%20Reports/Test%20File.txt HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/120-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:11:26 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/122-PUT.request: -------------------------------------------------------------------------------- 1 | PUT /PDF%20Reports/._Test%20File.txt HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/124-PUT.request: -------------------------------------------------------------------------------- 1 | PUT /PDF%20Reports/._Test%20File.txt HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/125-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:11:26 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/125-UNLOCK.request: -------------------------------------------------------------------------------- 1 | UNLOCK /PDF%20Reports/Test%20File.txt HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | Lock-Token: 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/128-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:11:26 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/128-UNLOCK.request: -------------------------------------------------------------------------------- 1 | UNLOCK /PDF%20Reports/Test%20File.txt HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | Lock-Token: 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/130-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:11:26 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/130-UNLOCK.request: -------------------------------------------------------------------------------- 1 | UNLOCK /PDF%20Reports/Test%20File.txt HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | Lock-Token: 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/156-PUT.request: -------------------------------------------------------------------------------- 1 | PUT /.DS_Store HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/162-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:11:31 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/162-MOVE.request: -------------------------------------------------------------------------------- 1 | MOVE /PDF%20Reports/ HTTP/1.1 2 | Host: localhost:8080 3 | Destination: http://localhost:8080/Apple%20Reports 4 | Accept: */* 5 | Content-Length: 0 6 | Connection: keep-alive 7 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/182-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:11:35 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/182-MKCOL.request: -------------------------------------------------------------------------------- 1 | MKCOL /untitled%20folder HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | X-GCDWebServer-CreationDate: 2014-04-12T05:11:35+00:00 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/187-PUT.request: -------------------------------------------------------------------------------- 1 | PUT /.DS_Store HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/203-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:11:36 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/203-MOVE.request: -------------------------------------------------------------------------------- 1 | MOVE /untitled%20folder/ HTTP/1.1 2 | Host: localhost:8080 3 | Destination: http://localhost:8080/Backup 4 | Accept: */* 5 | Content-Length: 0 6 | Connection: keep-alive 7 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/227-PUT.request: -------------------------------------------------------------------------------- 1 | PUT /.DS_Store HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/232-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:11:39 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/232-MOVE.request: -------------------------------------------------------------------------------- 1 | MOVE /Copy.txt HTTP/1.1 2 | Host: localhost:8080 3 | Destination: http://localhost:8080/Backup/Copy.txt 4 | Accept: */* 5 | Content-Length: 0 6 | Connection: keep-alive 7 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/259-PUT.request: -------------------------------------------------------------------------------- 1 | PUT /.DS_Store HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/264-PUT.request: -------------------------------------------------------------------------------- 1 | PUT /images/.fde3d915-75dd-4368-a060-890a3c537750-67a2f-0-Spotlight HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/266-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:11:44 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/266-DELETE.request: -------------------------------------------------------------------------------- 1 | DELETE /images/Green%20iPad.png HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/269-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:11:44 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Finder/269-DELETE.request: -------------------------------------------------------------------------------- 1 | DELETE /images/ HTTP/1.1 2 | Host: localhost:8080 3 | Accept: */* 4 | Content-Length: 0 5 | Connection: keep-alive 6 | User-Agent: WebDAVFS/3.0.1 (03018000) Darwin/13.1.0 (x86_64) 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/001-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | DAV: 1 4 | Connection: Close 5 | Server: GCDWebDAVServer 6 | Date: Sat, 12 Apr 2014 04:49:26 GMT 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/001-OPTIONS.request: -------------------------------------------------------------------------------- 1 | OPTIONS / HTTP/1.1 2 | User-Agent: Transmit/4.4.6 neon/0.29.3 3 | Keep-Alive: 4 | Connection: TE, Keep-Alive 5 | TE: trailers 6 | Host: localhost:8080 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/002-PROPFIND.request: -------------------------------------------------------------------------------- 1 | PROPFIND / HTTP/1.1 2 | User-Agent: Transmit/4.4.6 neon/0.29.3 3 | Connection: TE 4 | TE: trailers 5 | Host: localhost:8080 6 | Depth: 0 7 | Content-Length: 117 8 | Content-Type: application/xml 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/006-200.response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/006-200.response -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/006-GET.request: -------------------------------------------------------------------------------- 1 | GET /images/hero_mba_11.jpg HTTP/1.1 2 | User-Agent: Transmit/4.4.6 neon/0.29.3 3 | Connection: TE 4 | TE: trailers 5 | Host: localhost:8080 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/007-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:49:42 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/007-DELETE.request: -------------------------------------------------------------------------------- 1 | DELETE /images/hero_mba_11.jpg HTTP/1.1 2 | User-Agent: Transmit/4.4.6 neon/0.29.3 3 | Connection: TE 4 | TE: trailers 5 | Host: localhost:8080 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/008-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:49:48 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/008-MOVE.request: -------------------------------------------------------------------------------- 1 | MOVE /PDF%20Reports/Apple%20Economic%20Impact%20on%20Cupertino.pdf HTTP/1.1 2 | User-Agent: Transmit/4.4.6 neon/0.29.3 3 | Connection: TE 4 | TE: trailers 5 | Host: localhost:8080 6 | Destination: http://localhost:8080/PDF%20Reports/Apple%20Economic%20Impact.pdf 7 | Overwrite: T 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/009-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:49:51 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/009-MOVE.request: -------------------------------------------------------------------------------- 1 | MOVE /PDF%20Reports/ HTTP/1.1 2 | User-Agent: Transmit/4.4.6 neon/0.29.3 3 | Connection: TE 4 | TE: trailers 5 | Host: localhost:8080 6 | Destination: http://localhost:8080/Apple%20PDF%20Reports 7 | Overwrite: T 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/010-PROPFIND.request: -------------------------------------------------------------------------------- 1 | PROPFIND / HTTP/1.1 2 | User-Agent: Transmit/4.4.6 neon/0.29.3 3 | Connection: TE 4 | TE: trailers 5 | Host: localhost:8080 6 | Depth: 0 7 | Content-Length: 117 8 | Content-Type: application/xml 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/011-GET.request: -------------------------------------------------------------------------------- 1 | GET /Copy.txt HTTP/1.1 2 | User-Agent: Transmit/4.4.6 neon/0.29.3 3 | Connection: TE 4 | TE: trailers 5 | Host: localhost:8080 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/012-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:50:04 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/013-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:50:04 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/013-DELETE.request: -------------------------------------------------------------------------------- 1 | DELETE /Copy.txt HTTP/1.1 2 | User-Agent: Transmit/4.4.6 neon/0.29.3 3 | Connection: TE 4 | TE: trailers 5 | Host: localhost:8080 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/014-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:50:04 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/014-MOVE.request: -------------------------------------------------------------------------------- 1 | MOVE /Copy_safe_save_215004.txt HTTP/1.1 2 | User-Agent: Transmit/4.4.6 neon/0.29.3 3 | Connection: TE 4 | TE: trailers 5 | Host: localhost:8080 6 | Destination: http://localhost:8080/Copy.txt 7 | Overwrite: T 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/015-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:50:55 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/015-PUT.request: -------------------------------------------------------------------------------- 1 | PUT /Test%20File.txt HTTP/1.1 2 | User-Agent: Transmit/4.4.6 neon/0.29.3 3 | Connection: TE 4 | TE: trailers 5 | Host: localhost:8080 6 | Content-Length: 21 7 | 8 | Nothing to see here! 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/016-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:51:05 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/016-MOVE.request: -------------------------------------------------------------------------------- 1 | MOVE /Test%20File.txt HTTP/1.1 2 | User-Agent: Transmit/4.4.6 neon/0.29.3 3 | Connection: TE 4 | TE: trailers 5 | Host: localhost:8080 6 | Destination: http://localhost:8080/Apple%20PDF%20Reports/Test%20File.txt 7 | Overwrite: T 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/018-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:51:07 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/018-DELETE.request: -------------------------------------------------------------------------------- 1 | DELETE /Apple%20PDF%20Reports/Apple%20Economic%20Impact.pdf HTTP/1.1 2 | User-Agent: Transmit/4.4.6 neon/0.29.3 3 | Connection: TE 4 | TE: trailers 5 | Host: localhost:8080 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/019-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:51:07 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/019-DELETE.request: -------------------------------------------------------------------------------- 1 | DELETE /Apple%20PDF%20Reports/Test%20File.txt HTTP/1.1 2 | User-Agent: Transmit/4.4.6 neon/0.29.3 3 | Connection: TE 4 | TE: trailers 5 | Host: localhost:8080 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/020-PROPFIND.request: -------------------------------------------------------------------------------- 1 | PROPFIND / HTTP/1.1 2 | User-Agent: Transmit/4.4.6 neon/0.29.3 3 | Connection: TE 4 | TE: trailers 5 | Host: localhost:8080 6 | Depth: 0 7 | Content-Length: 117 8 | Content-Type: application/xml 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/021-204.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 204 No Content 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 04:51:07 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/021-DELETE.request: -------------------------------------------------------------------------------- 1 | DELETE /Apple%20PDF%20Reports/ HTTP/1.1 2 | User-Agent: Transmit/4.4.6 neon/0.29.3 3 | Connection: TE 4 | TE: trailers 5 | Host: localhost:8080 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/022-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:08:32 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/022-MKCOL.request: -------------------------------------------------------------------------------- 1 | MKCOL /untitled%20folder/ HTTP/1.1 2 | User-Agent: Transmit/4.4.6 neon/0.29.3 3 | Connection: TE 4 | TE: trailers 5 | Host: localhost:8080 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/023-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:08:38 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/023-MOVE.request: -------------------------------------------------------------------------------- 1 | MOVE /Copy.txt HTTP/1.1 2 | User-Agent: Transmit/4.4.6 neon/0.29.3 3 | Connection: TE 4 | TE: trailers 5 | Host: localhost:8080 6 | Destination: http://localhost:8080/untitled%20folder/Copy.txt 7 | Overwrite: T 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/024-201.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 201 Created 2 | Cache-Control: no-cache 3 | Connection: Close 4 | Server: GCDWebDAVServer 5 | Date: Sat, 12 Apr 2014 05:08:41 GMT 6 | 7 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebDAV-Transmit/024-MOVE.request: -------------------------------------------------------------------------------- 1 | MOVE /untitled%20folder/ HTTP/1.1 2 | User-Agent: Transmit/4.4.6 neon/0.29.3 3 | Connection: TE 4 | TE: trailers 5 | Host: localhost:8080 6 | Destination: http://localhost:8080/My%20Folder 7 | Overwrite: T 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebServer-Sample-Movie/001-200.response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/Tests/WebServer-Sample-Movie/001-200.response -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebServer-Sample-Movie/002-206.response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/Tests/WebServer-Sample-Movie/002-206.response -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebServer-Sample-Movie/003-206.response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/Tests/WebServer-Sample-Movie/003-206.response -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebServer-Sample-Movie/004-206.response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/Tests/WebServer-Sample-Movie/004-206.response -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebServer-Sample-Movie/005-206.response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/Tests/WebServer-Sample-Movie/005-206.response -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebServer/004-200.response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/Tests/WebServer/004-200.response -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebServer/005-200.response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/Tests/WebServer/005-200.response -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebServer/006-304.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 304 Not Modified 2 | Last-Modified: Thu, 10 Apr 2014 21:46:56 GMT 3 | Etag: 73209474/1397166416/0 4 | Connection: Close 5 | Server: GCDWebServer 6 | Date: Fri, 11 Apr 2014 02:42:34 GMT 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebServer/007-304.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 304 Not Modified 2 | Last-Modified: Thu, 10 Apr 2014 21:51:14 GMT 3 | Etag: 73212154/1397166674/0 4 | Connection: Close 5 | Server: GCDWebServer 6 | Date: Fri, 11 Apr 2014 02:42:37 GMT 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebServer/009-200.response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/GCDWebServer/Tests/WebServer/009-200.response -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebServer/010-304.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 304 Not Modified 2 | Last-Modified: Wed, 01 May 2013 12:01:13 GMT 3 | Etag: 73212107/1367409673/0 4 | Connection: Close 5 | Server: GCDWebServer 6 | Date: Fri, 11 Apr 2014 02:42:42 GMT 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebServer/011-304.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 304 Not Modified 2 | Last-Modified: Wed, 01 May 2013 12:01:13 GMT 3 | Etag: 73212107/1367409673/0 4 | Connection: Close 5 | Server: GCDWebServer 6 | Date: Fri, 11 Apr 2014 02:42:42 GMT 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebServer/012-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Content-Length: 221 4 | Content-Type: text/html; charset=utf-8 5 | Connection: Close 6 | Server: GCDWebServer 7 | Date: Fri, 11 Apr 2014 02:43:00 GMT 8 | 9 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebServer/012-HEAD.request: -------------------------------------------------------------------------------- 1 | HEAD / HTTP/1.1 2 | User-Agent: curl/7.30.0 3 | Host: localhost:8080 4 | Accept: */* 5 | 6 | -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebUploader/018-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Content-Length: 138 4 | Content-Type: application/json 5 | Connection: Close 6 | Server: GCDWebUploader 7 | Date: Sat, 12 Apr 2014 05:36:13 GMT 8 | 9 | [{"path":"\/Copy.txt","name":"Copy.txt","size":271},{"path":"\/images\/","name":"images"},{"path":"\/PDF Reports\/","name":"PDF Reports"}] -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebUploader/020-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Content-Length: 128 4 | Content-Type: application/json 5 | Connection: Close 6 | Server: GCDWebUploader 7 | Date: Sat, 12 Apr 2014 05:36:19 GMT 8 | 9 | [{"path":"\/PDF Reports\/Apple Economic Impact on Cupertino.pdf","name":"Apple Economic Impact on Cupertino.pdf","size":181952}] -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebUploader/022-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Content-Length: 138 4 | Content-Type: application/json 5 | Connection: Close 6 | Server: GCDWebUploader 7 | Date: Sat, 12 Apr 2014 05:36:38 GMT 8 | 9 | [{"path":"\/Copy.txt","name":"Copy.txt","size":271},{"path":"\/images\/","name":"images"},{"path":"\/PDF Reports\/","name":"PDF Reports"}] -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebUploader/023-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Content-Length: 2 4 | Content-Type: application/json 5 | Connection: Close 6 | Server: GCDWebUploader 7 | Date: Sat, 12 Apr 2014 05:36:47 GMT 8 | 9 | {} -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebUploader/024-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Content-Length: 142 4 | Content-Type: application/json 5 | Connection: Close 6 | Server: GCDWebUploader 7 | Date: Sat, 12 Apr 2014 05:36:47 GMT 8 | 9 | [{"path":"\/Apple Reports\/","name":"Apple Reports"},{"path":"\/Copy.txt","name":"Copy.txt","size":271},{"path":"\/images\/","name":"images"}] -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebUploader/025-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Content-Length: 2 4 | Content-Type: application/json 5 | Connection: Close 6 | Server: GCDWebUploader 7 | Date: Sat, 12 Apr 2014 05:36:54 GMT 8 | 9 | {} -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebUploader/027-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Content-Length: 2 4 | Content-Type: application/json 5 | Connection: Close 6 | Server: GCDWebUploader 7 | Date: Sat, 12 Apr 2014 05:37:07 GMT 8 | 9 | {} -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebUploader/029-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Content-Length: 2 4 | Content-Type: application/json 5 | Connection: Close 6 | Server: GCDWebUploader 7 | Date: Sat, 12 Apr 2014 05:37:14 GMT 8 | 9 | {} -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebUploader/031-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Content-Length: 2 4 | Content-Type: application/json 5 | Connection: Close 6 | Server: GCDWebUploader 7 | Date: Sat, 12 Apr 2014 05:37:22 GMT 8 | 9 | {} -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebUploader/032-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Content-Length: 137 4 | Content-Type: application/json 5 | Connection: Close 6 | Server: GCDWebUploader 7 | Date: Sat, 12 Apr 2014 05:37:22 GMT 8 | 9 | [{"path":"\/Apple Reports\/","name":"Apple Reports"},{"path":"\/images\/","name":"images"},{"path":"\/Text Files\/","name":"Text Files"}] -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebUploader/033-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Content-Length: 2 4 | Content-Type: application/json 5 | Connection: Close 6 | Server: GCDWebUploader 7 | Date: Sat, 12 Apr 2014 05:37:25 GMT 8 | 9 | {} -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebUploader/034-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Content-Length: 91 4 | Content-Type: application/json 5 | Connection: Close 6 | Server: GCDWebUploader 7 | Date: Sat, 12 Apr 2014 05:37:25 GMT 8 | 9 | [{"path":"\/Apple Reports\/","name":"Apple Reports"},{"path":"\/images\/","name":"images"}] -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebUploader/036-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Content-Length: 2 4 | Content-Type: application/json 5 | Connection: Close 6 | Server: GCDWebUploader 7 | Date: Sat, 12 Apr 2014 05:37:32 GMT 8 | 9 | {} -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebUploader/037-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Content-Length: 77 4 | Content-Type: application/json 5 | Connection: Close 6 | Server: GCDWebUploader 7 | Date: Sat, 12 Apr 2014 05:37:32 GMT 8 | 9 | [{"path":"\/images\/hero_mba_11.jpg","name":"hero_mba_11.jpg","size":106799}] -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebUploader/038-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Content-Length: 2 4 | Content-Type: application/json 5 | Connection: Close 6 | Server: GCDWebUploader 7 | Date: Sat, 12 Apr 2014 05:37:43 GMT 8 | 9 | {} -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebUploader/039-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Content-Length: 145 4 | Content-Type: application/json 5 | Connection: Close 6 | Server: GCDWebUploader 7 | Date: Sat, 12 Apr 2014 05:37:43 GMT 8 | 9 | [{"path":"\/images\/hero_mba_11.jpg","name":"hero_mba_11.jpg","size":106799},{"path":"\/images\/Test File.txt","name":"Test File.txt","size":21}] -------------------------------------------------------------------------------- /DemoFMP4/GCDWebServer/Tests/WebUploader/040-200.response: -------------------------------------------------------------------------------- 1 | HTTP/1.1 200 OK 2 | Cache-Control: no-cache 3 | Content-Length: 91 4 | Content-Type: application/json 5 | Connection: Close 6 | Server: GCDWebUploader 7 | Date: Sat, 12 Apr 2014 05:37:48 GMT 8 | 9 | [{"path":"\/Apple Reports\/","name":"Apple Reports"},{"path":"\/images\/","name":"images"}] -------------------------------------------------------------------------------- /DemoFMP4/Libextobjc/Configuration/Base/Targets/Application.xcconfig: -------------------------------------------------------------------------------- 1 | // 2 | // This file defines additional configuration options that are appropriate only 3 | // for an application. Typically, you want to use a platform-specific variant 4 | // instead. 5 | // 6 | 7 | // Whether to strip out code that isn't called from anywhere 8 | DEAD_CODE_STRIPPING = NO 9 | -------------------------------------------------------------------------------- /DemoFMP4/Libextobjc/Tests/EXTADTTest.h: -------------------------------------------------------------------------------- 1 | // 2 | // EXTADTTest.h 3 | // extobjc 4 | // 5 | // Created by Justin Spahr-Summers on 19.06.12. 6 | // 7 | // 8 | 9 | #import 10 | #import "EXTADT.h" 11 | 12 | @interface EXTADTTest : SenTestCase 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /DemoFMP4/Libextobjc/Tests/EXTKeyPathCodingTest.h: -------------------------------------------------------------------------------- 1 | // 2 | // EXTKeyPathCodingTest.h 3 | // extobjc 4 | // 5 | // Created by Justin Spahr-Summers on 19.06.12. 6 | // 7 | // 8 | 9 | #import 10 | #import "EXTKeyPathCoding.h" 11 | 12 | @interface EXTKeyPathCodingTest : SenTestCase 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /DemoFMP4/Libextobjc/Tests/EXTKeypathWeakWarningTest.h: -------------------------------------------------------------------------------- 1 | // 2 | // EXTKeypathWeakWarningTest.h 3 | // extobjc 4 | // 5 | // Created by Javier Soto on 6/23/14. 6 | // 7 | // 8 | 9 | #import 10 | #import "EXTKeyPathCoding.h" 11 | 12 | @interface EXTKeypathWeakWarningTest : SenTestCase 13 | 14 | @end -------------------------------------------------------------------------------- /DemoFMP4/Libextobjc/Tests/EXTObjectiveCppCompileTest.h: -------------------------------------------------------------------------------- 1 | // 2 | // EXTObjectiveCppCompileTest.h 3 | // extobjc 4 | // 5 | // Created by Igor Kashkuta on 2013-04-01. 6 | // Released under the MIT license. 7 | // 8 | 9 | #import 10 | #import "extobjc.h" 11 | 12 | @interface EXTObjectiveCppCompileTest : SenTestCase 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /DemoFMP4/Libextobjc/Tests/EXTObjectiveCppCompileTest.mm: -------------------------------------------------------------------------------- 1 | // 2 | // EXTObjectiveCppCompileTest.mm 3 | // extobjc 4 | // 5 | // Created by Igor Kashkuta on 2013-04-01. 6 | // Released under the MIT license. 7 | // 8 | 9 | #import "EXTObjectiveCppCompileTest.h" 10 | 11 | @implementation EXTObjectiveCppCompileTest 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /DemoFMP4/Libextobjc/Tests/EXTRuntimeTestProtocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // EXTRuntimeTestProtocol.h 3 | // extobjc 4 | // 5 | // Created by Clay Bridges on 8/5/13. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @protocol EXTRuntimeTestProtocol 12 | 13 | @optional 14 | + (void)optionalClassMethod; 15 | - (void)optionalInstanceMethod; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /DemoFMP4/Libextobjc/Tests/EXTSynthesizeTest.h: -------------------------------------------------------------------------------- 1 | // 2 | // EXTSynthesizeTest.h 3 | // extobjc 4 | // 5 | // Created by Justin Spahr-Summers on 2012-09-04. 6 | // Copyright (C) 2012 Justin Spahr-Summers. 7 | // Released under the MIT license. 8 | // 9 | 10 | #import 11 | 12 | @interface EXTSynthesizeTest : SenTestCase 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /DemoFMP4/Libextobjc/extobjc.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/Libextobjc/extobjc/EXTScope.m: -------------------------------------------------------------------------------- 1 | // 2 | // EXTScope.m 3 | // extobjc 4 | // 5 | // Created by Justin Spahr-Summers on 2011-05-04. 6 | // Copyright (C) 2012 Justin Spahr-Summers. 7 | // Released under the MIT license. 8 | // 9 | 10 | #import "EXTScope.h" 11 | 12 | void ext_executeCleanupBlock (__strong ext_cleanupBlock_t *block) { 13 | (*block)(); 14 | } 15 | 16 | -------------------------------------------------------------------------------- /DemoFMP4/Libextobjc/extobjc/extobjc_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'libextobjc' target in the 'libextobjc' project. 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoFMP4/PBJVision/Project/Vision/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/PBJVision/Project/Vision/Default-568h@2x.png -------------------------------------------------------------------------------- /DemoFMP4/PBJVision/Project/Vision/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/PBJVision/Project/Vision/Default.png -------------------------------------------------------------------------------- /DemoFMP4/PBJVision/Project/Vision/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/PBJVision/Project/Vision/Default@2x.png -------------------------------------------------------------------------------- /DemoFMP4/PBJVision/Project/Vision/UI/capture_done@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/PBJVision/Project/Vision/UI/capture_done@2x.png -------------------------------------------------------------------------------- /DemoFMP4/PBJVision/Project/Vision/UI/capture_flip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/PBJVision/Project/Vision/UI/capture_flip@2x.png -------------------------------------------------------------------------------- /DemoFMP4/PBJVision/Project/Vision/UI/capture_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/PBJVision/Project/Vision/UI/capture_focus@2x.png -------------------------------------------------------------------------------- /DemoFMP4/PBJVision/Project/Vision/UI/capture_focus_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/PBJVision/Project/Vision/UI/capture_focus_button@2x.png -------------------------------------------------------------------------------- /DemoFMP4/PBJVision/Project/Vision/UI/capture_focus_button_active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/PBJVision/Project/Vision/UI/capture_focus_button_active@2x.png -------------------------------------------------------------------------------- /DemoFMP4/PBJVision/Project/Vision/UI/capture_onion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/PBJVision/Project/Vision/UI/capture_onion@2x.png -------------------------------------------------------------------------------- /DemoFMP4/PBJVision/Project/Vision/UI/capture_onion_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/PBJVision/Project/Vision/UI/capture_onion_selected@2x.png -------------------------------------------------------------------------------- /DemoFMP4/PBJVision/Project/Vision/UI/capture_rec_base@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/PBJVision/Project/Vision/UI/capture_rec_base@2x.png -------------------------------------------------------------------------------- /DemoFMP4/PBJVision/Project/Vision/UI/capture_rec_blink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/PBJVision/Project/Vision/UI/capture_rec_blink@2x.png -------------------------------------------------------------------------------- /DemoFMP4/PBJVision/Project/Vision/UI/capture_rec_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/PBJVision/Project/Vision/UI/capture_rec_off@2x.png -------------------------------------------------------------------------------- /DemoFMP4/PBJVision/Project/Vision/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoFMP4/PBJVision/Source/Shaders/Shader.vsh: -------------------------------------------------------------------------------- 1 | 2 | attribute vec4 a_position; 3 | attribute vec2 a_texture; 4 | 5 | varying vec2 v_texture; 6 | 7 | void main() 8 | { 9 | v_texture = a_texture; 10 | gl_Position = a_position; 11 | } 12 | -------------------------------------------------------------------------------- /DemoFMP4/PBJVision/pbj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoFMP4/PBJVision/pbj.gif -------------------------------------------------------------------------------- /DemoFMP4/PSTAlertController/Example/PSTAlertViewControllerSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoFMP4/PSTAlertController/Example/PSTAlertViewControllerSample/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // PSTAlertViewControllerSample 4 | // 5 | // Created by Peter Steinberger on 07/11/14. 6 | // Copyright (c) 2014 PSPDFKit GmbH. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /DemoRTSP/AFNetworking/Example/AFNetworking Mac Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoRTSP/AFNetworking/Example/AFNetworking iOS Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoRTSP/AFNetworking/Example/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/AFNetworking/Example/Default-568h@2x.png -------------------------------------------------------------------------------- /DemoRTSP/AFNetworking/Example/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/AFNetworking/Example/Default.png -------------------------------------------------------------------------------- /DemoRTSP/AFNetworking/Example/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/AFNetworking/Example/Default@2x.png -------------------------------------------------------------------------------- /DemoRTSP/AFNetworking/Example/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/AFNetworking/Example/Icon.png -------------------------------------------------------------------------------- /DemoRTSP/AFNetworking/Example/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/AFNetworking/Example/Icon@2x.png -------------------------------------------------------------------------------- /DemoRTSP/AFNetworking/Example/Images/profile-image-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/AFNetworking/Example/Images/profile-image-placeholder.png -------------------------------------------------------------------------------- /DemoRTSP/AFNetworking/Example/Images/profile-image-placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/AFNetworking/Example/Images/profile-image-placeholder@2x.png -------------------------------------------------------------------------------- /DemoRTSP/AFNetworking/Example/adn.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/AFNetworking/Example/adn.cer -------------------------------------------------------------------------------- /DemoRTSP/AFNetworking/Tests/Resources/ca.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/AFNetworking/Tests/Resources/ca.cer -------------------------------------------------------------------------------- /DemoRTSP/AFNetworking/Tests/Resources/derived.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/AFNetworking/Tests/Resources/derived.cert -------------------------------------------------------------------------------- /DemoRTSP/AFNetworking/Tests/Resources/root_certificate.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/AFNetworking/Tests/Resources/root_certificate.cer -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Benchmarking/BaseNSLogging.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface BaseNSLogging : NSObject 5 | 6 | + (void)speedTest0; 7 | + (void)speedTest1; 8 | + (void)speedTest2; 9 | + (void)speedTest3; 10 | + (void)speedTest4; 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Benchmarking/DynamicLogging.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface DynamicLogging : NSObject 5 | 6 | + (void)speedTest0; 7 | + (void)speedTest1; 8 | + (void)speedTest2; 9 | + (void)speedTest3; 10 | + (void)speedTest4; 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Benchmarking/Results/Lumberjack Benchmark (PowerMac).ograph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/CocoaLumberjack/Benchmarking/Results/Lumberjack Benchmark (PowerMac).ograph -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Benchmarking/Results/Lumberjack Benchmark (iMac).ograph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/CocoaLumberjack/Benchmarking/Results/Lumberjack Benchmark (iMac).ograph -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Benchmarking/Results/Lumberjack Benchmark (iPad).ograph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/CocoaLumberjack/Benchmarking/Results/Lumberjack Benchmark (iPad).ograph -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Benchmarking/Results/Lumberjack Benchmark (iPhone 3GS).ograph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/CocoaLumberjack/Benchmarking/Results/Lumberjack Benchmark (iPhone 3GS).ograph -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Benchmarking/StaticLogging.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface StaticLogging : NSObject 5 | 6 | + (void)speedTest0; 7 | + (void)speedTest1; 8 | + (void)speedTest2; 9 | + (void)speedTest3; 10 | + (void)speedTest4; 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Lumberjack/Extensions/README.txt: -------------------------------------------------------------------------------- 1 | This folder contains some sample formatters that may be helpful. 2 | 3 | Feel free to change them, extend them, or use them as the basis for your own custom formatter(s). 4 | 5 | More information about creating your own custom formatters can be found on the wiki: 6 | https://github.com/CocoaLumberjack/CocoaLumberjack/wiki/CustomFormatters 7 | 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/BenchmarkIPhone/BenchmarkIPhone.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/BenchmarkIPhone/BenchmarkIPhone_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'BenchmarkIPhone' target in the 'BenchmarkIPhone' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/BenchmarkIPhone/Classes/BenchmarkIPhoneViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface BenchmarkIPhoneViewController : UIViewController 5 | { 6 | 7 | } 8 | 9 | @end 10 | 11 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/BenchmarkIPhone/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/CocoaLumberjack/Xcode/BenchmarkIPhone/Default-568h@2x.png -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/BenchmarkIPhone/ReadMe.txt: -------------------------------------------------------------------------------- 1 | This Xcode project provides a benchmarking suite for performance testing on the iPhone. 2 | 3 | Details of the tests, as well as sample results, are provided on the Wiki: 4 | https://github.com/CocoaLumberjack/CocoaLumberjack/wiki/Performance 5 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/BenchmarkMac/BenchmarkMac.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/BenchmarkMac/BenchmarkMac/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // BenchmarkMac 4 | // 5 | // Created by Robbie Hanson on 11/15/11. 6 | // Copyright (c) 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : NSObject 12 | 13 | @property (assign) IBOutlet NSWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/BenchmarkMac/BenchmarkMac/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #import "AppDelegate.h" 2 | #import "PerformanceTesting.h" 3 | 4 | 5 | @implementation AppDelegate 6 | 7 | @synthesize window = _window; 8 | 9 | - (void)applicationDidFinishLaunching:(NSNotification *)aNotification 10 | { 11 | [PerformanceTesting startPerformanceTests]; 12 | } 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/BenchmarkMac/BenchmarkMac/BenchmarkMac-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'BenchmarkMac' target in the 'BenchmarkMac' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/BenchmarkMac/BenchmarkMac/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/BenchmarkMac/BenchmarkMac/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // BenchmarkMac 4 | // 5 | // Created by Robbie Hanson on 11/15/11. 6 | // Copyright (c) 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/BenchmarkMac/ReadMe.txt: -------------------------------------------------------------------------------- 1 | This Xcode project provides a benchmarking suite for performance testing on Mac OS X. 2 | 3 | Details of the tests, as well as sample results, are provided on the Wiki: 4 | https://github.com/CocoaLumberjack/CocoaLumberjack/wiki/Performance 5 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/ContextFilter/ContextFilter_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'ContextFilter' target in the 'ContextFilter' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/ContextFilter/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/ContextFilter/MyContextFilter.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "DDLog.h" 3 | 4 | 5 | @interface MyContextFilter : NSObject 6 | { 7 | } 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/ContextFilter/ThirdPartyFramework.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #define TP_LOG_CONTEXT 1044 4 | 5 | 6 | @interface ThirdPartyFramework : NSObject 7 | 8 | + (void)start; 9 | 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/ContextFilter/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ContextFilter 4 | // 5 | // Created by Robbie Hanson on 11/22/10. 6 | // Copyright 2010 Voalte. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/CoreDataLogger-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CoreDataLogger' target in the 'CoreDataLogger' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/CoreDataLogger.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/CocoaBotLog.xcdatamodel/elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/CocoaBotLog.xcdatamodel/elements -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/CocoaBotLog.xcdatamodel/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/Log.xcdatamodeld/CocoaBotLog.xcdatamodel/layout -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/LogEntry.m: -------------------------------------------------------------------------------- 1 | #import "LogEntry.h" 2 | 3 | 4 | @implementation LogEntry 5 | 6 | @dynamic context; 7 | @dynamic level; 8 | @dynamic message; 9 | @dynamic timestamp; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/CoreDataLogger/CoreDataLogger/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CoreDataLogger 4 | // 5 | // Created by Robbie Hanson on 3/30/11. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/CustomFormatters/CustomFormattersAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface CustomFormattersAppDelegate : NSObject { 5 | NSWindow *__unsafe_unretained window; 6 | } 7 | 8 | @property (unsafe_unretained) IBOutlet NSWindow *window; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/CustomFormatters/CustomFormatters_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CustomFormatters' target in the 'CustomFormatters' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/CustomFormatters/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/CustomFormatters/TestFormatter.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "DDLog.h" 3 | 4 | 5 | @interface TestFormatter : NSObject 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/CustomFormatters/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CustomFormatters 4 | // 5 | // Created by Robbie Hanson on 5/13/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/CustomLogLevels/CustomLogLevelsAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface CustomLogLevelsAppDelegate : NSObject { 5 | NSWindow *__unsafe_unretained window; 6 | } 7 | 8 | @property (unsafe_unretained) IBOutlet NSWindow *window; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/CustomLogLevels/CustomLogLevels_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CustomLogLevels' target in the 'CustomLogLevels' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/CustomLogLevels/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/CustomLogLevels/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // CustomLogLevels 4 | // 5 | // Created by Robbie Hanson on 5/13/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/DispatchQueueLogger/DispatchQueueLogger/DispatchQueueLogger-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'DispatchQueueLogger' target in the 'DispatchQueueLogger' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/DispatchQueueLogger/DispatchQueueLogger/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/DispatchQueueLogger/DispatchQueueLogger/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // DispatchQueueLogger 4 | // 5 | // Created by Robbie Hanson on 11/8/11. 6 | // Copyright (c) 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/FineGrainedLogging/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/FineGrainedLogging/FineGrainedLogging_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'FineGrainedLogging' target in the 'FineGrainedLogging' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/FineGrainedLogging/TimerOne.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface TimerOne : NSObject 5 | { 6 | NSTimer *foodTimer; 7 | NSTimer *sleepTimer; 8 | } 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/FineGrainedLogging/TimerTwo.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface TimerTwo : NSObject 5 | { 6 | NSTimer *foodTimer; 7 | NSTimer *sleepTimer; 8 | } 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/FineGrainedLogging/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // FineGrainedLogging 4 | // 5 | // Created by Robbie Hanson on 5/14/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/GlobalLogLevel/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/GlobalLogLevel/GlobalLogLevel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/GlobalLogLevel/GlobalLogLevel_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'GlobalLogLevel' target in the 'GlobalLogLevel' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/GlobalLogLevel/MyLogging.h: -------------------------------------------------------------------------------- 1 | #import "DDLog.h" 2 | 3 | extern int ddLogLevel; 4 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/GlobalLogLevel/Stuff.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface Stuff : NSObject { 5 | 6 | } 7 | 8 | + (void)doStuff; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/GlobalLogLevel/Stuff.m: -------------------------------------------------------------------------------- 1 | #import "Stuff.h" 2 | #import "MyLogging.h" 3 | 4 | 5 | @implementation Stuff 6 | 7 | + (void)doStuff 8 | { 9 | DDLogError(@"%@: Error", THIS_FILE); 10 | DDLogWarn(@"%@: Warn", THIS_FILE); 11 | DDLogInfo(@"%@: Info", THIS_FILE); 12 | DDLogVerbose(@"%@: Verbose", THIS_FILE); 13 | } 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/GlobalLogLevel/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // GlobalLogLevel 4 | // 5 | // Created by Robbie Hanson on 2/28/11. 6 | // Copyright 2011 Voalte. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/LogFileCompressor/CompressingLogFileManager.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "DDFileLogger.h" 3 | 4 | 5 | @interface CompressingLogFileManager : DDLogFileManagerDefault 6 | { 7 | BOOL upToDate; 8 | BOOL isCompressing; 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/LogFileCompressor/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/LogFileCompressor/LogFileCompressorAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class DDFileLogger; 4 | 5 | 6 | @interface LogFileCompressorAppDelegate : NSObject 7 | { 8 | DDFileLogger *fileLogger; 9 | 10 | NSWindow *__unsafe_unretained window; 11 | } 12 | 13 | @property (unsafe_unretained) IBOutlet NSWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/LogFileCompressor/LogFileCompressor_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'LogFileCompressor' target in the 'LogFileCompressor' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/LogFileCompressor/ReadMe.txt: -------------------------------------------------------------------------------- 1 | This Xcode project demonstrates compressing archived log files. This is done by creating a custom DDLogFileManager, which is part of the DDFileLogger. 2 | 3 | For more information, see the Wiki article: 4 | https://github.com/CocoaLumberjack/CocoaLumberjack/wiki/LogFileManagement 5 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/LogFileCompressor/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // LogFileCompressor 4 | // 5 | // Created by Robbie Hanson on 5/25/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/LumberjackFramework/Desktop/FmwkTest/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface AppDelegate : NSObject 5 | 6 | @property (assign) IBOutlet NSWindow *window; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/LumberjackFramework/Desktop/FmwkTest/FmwkTest-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'FmwkTest' target in the 'FmwkTest' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/LumberjackFramework/Desktop/FmwkTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/LumberjackFramework/Desktop/FmwkTest/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // FmwkTest 4 | // 5 | // Created by Robbie Hanson on 2/16/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/LumberjackFramework/Desktop/Lumberjack/Lumberjack-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'Lumberjack' target in the 'Lumberjack' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/LumberjackFramework/Desktop/Lumberjack/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/LumberjackFramework/Mobile/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/CocoaLumberjack/Xcode/LumberjackFramework/Mobile/Default-568h@2x.png -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/LumberjackFramework/Mobile/LibTest/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class ViewController; 4 | 5 | 6 | @interface AppDelegate : UIResponder 7 | 8 | @property (strong, nonatomic) UIWindow *window; 9 | @property (strong, nonatomic) ViewController *viewController; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/LumberjackFramework/Mobile/LibTest/ViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface ViewController : UIViewController 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/LumberjackFramework/Mobile/LibTest/ViewController.m: -------------------------------------------------------------------------------- 1 | #import "ViewController.h" 2 | 3 | 4 | @implementation ViewController 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/LumberjackFramework/Mobile/LibTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/LumberjackFramework/Mobile/Lumberjack/Lumberjack-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'Lumberjack' target in the 'Lumberjack' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/OverflowTestMac/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/OverflowTestMac/OverflowTestMac_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'OverflowTestMac' target in the 'OverflowTestMac' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/OverflowTestMac/SlowLogger.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "DDLog.h" 3 | 4 | 5 | @interface SlowLogger : DDAbstractLogger 6 | 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/OverflowTestMac/SlowLogger.m: -------------------------------------------------------------------------------- 1 | #import "SlowLogger.h" 2 | 3 | 4 | @implementation SlowLogger 5 | 6 | - (void)logMessage:(DDLogMessage *)logMessage 7 | { 8 | [NSThread sleepForTimeInterval:0.25]; 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/OverflowTestMac/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // OverflowTestMac 4 | // 5 | // Created by Robbie Hanson on 5/10/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/PerUserLogLevels/PerUserLogLevels/PerUserLogLevels-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'PerUserLogLevels' target in the 'PerUserLogLevels' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/PerUserLogLevels/PerUserLogLevels/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/PerUserLogLevels/PerUserLogLevels/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // PerUserLogLevels 4 | // 5 | // Created by Robbie Hanson on 3/30/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/RollingTestMac/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/RollingTestMac/ReadMe.txt: -------------------------------------------------------------------------------- 1 | This Xcode project tests the file logger by ensuring that it is properly rolling log files when it should. It is a unit test project. -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/RollingTestMac/RollingTestMacAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class DDFileLogger; 4 | 5 | 6 | @interface RollingTestMacAppDelegate : NSObject 7 | { 8 | DDFileLogger *fileLogger; 9 | 10 | NSWindow *__unsafe_unretained window; 11 | } 12 | 13 | @property (unsafe_unretained) IBOutlet NSWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/RollingTestMac/RollingTestMac_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'RollingTestMac' target in the 'RollingTestMac' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/RollingTestMac/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // RollingTestMac 4 | // 5 | // Created by Robbie Hanson on 5/6/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/SQLiteLogger/SQLiteLogger.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/SQLiteLogger/SQLiteLogger/SQLiteLogger-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SQLiteLogger' target in the 'SQLiteLogger' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/SQLiteLogger/SQLiteLogger/SQLiteLoggerAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class FMDBLogger; 4 | 5 | 6 | @interface SQLiteLoggerAppDelegate : NSObject { 7 | @private 8 | FMDBLogger *sqliteLogger; 9 | NSWindow *__unsafe_unretained window; 10 | } 11 | 12 | @property (unsafe_unretained) IBOutlet NSWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/SQLiteLogger/SQLiteLogger/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/SQLiteLogger/SQLiteLogger/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SQLiteLogger 4 | // 5 | // Created by Robbie Hanson on 3/29/11. 6 | // Copyright 2011 Voalte. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/NonArcTest/NonArcTest/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // NonArcTest 4 | // 5 | // Created by Robbie Hanson on 11/9/11. 6 | // Copyright (c) 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : NSObject 12 | 13 | @property (assign) IBOutlet NSWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/NonArcTest/NonArcTest/NonArcTest-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'NonArcTest' target in the 'NonArcTest' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/NonArcTest/NonArcTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/NonArcTest/NonArcTest/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // NonArcTest 4 | // 5 | // Created by Robbie Hanson on 11/9/11. 6 | // Copyright (c) 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Desktop/RegisteredLoggingTest/Lions.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface Lions : NSObject 5 | 6 | + (void)logStuff; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Desktop/RegisteredLoggingTest/RegisteredLoggingTest-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'RegisteredLoggingTest' target in the 'RegisteredLoggingTest' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Desktop/RegisteredLoggingTest/RegisteredLoggingTestAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface RegisteredLoggingTestAppDelegate : NSObject { 5 | NSWindow *__unsafe_unretained window; 6 | } 7 | 8 | @property (unsafe_unretained) IBOutlet NSWindow *window; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Desktop/RegisteredLoggingTest/Tigers.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface Tigers : NSObject 5 | 6 | + (void)logStuff; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Desktop/RegisteredLoggingTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Mobile/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Mobile/Default-568h@2x.png -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Mobile/RegisteredLoggingTest/Lions.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface Lions : NSObject 5 | 6 | + (void)logStuff; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Mobile/RegisteredLoggingTest/RegisteredLoggingTestViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface RegisteredLoggingTestViewController : UIViewController 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Mobile/RegisteredLoggingTest/RegisteredLoggingTestViewController.m: -------------------------------------------------------------------------------- 1 | #import "RegisteredLoggingTestViewController.h" 2 | 3 | 4 | @implementation RegisteredLoggingTestViewController 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Mobile/RegisteredLoggingTest/Tigers.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface Tigers : NSObject 5 | 6 | + (void)logStuff; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/RegisteredDynamicLogging/Mobile/RegisteredLoggingTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Desktop/TestXcodeColors/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface AppDelegate : NSObject 5 | 6 | @property (assign) IBOutlet NSWindow *window; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Desktop/TestXcodeColors/TestXcodeColors-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestXcodeColors' target in the 'TestXcodeColors' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Desktop/TestXcodeColors/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Desktop/TestXcodeColors/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // TestXcodeColors 4 | // 5 | // Created by Robbie Hanson on 5/17/12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Mobile/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Mobile/Default-568h@2x.png -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Mobile/TextXcodeColors/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class ViewController; 4 | 5 | 6 | @interface AppDelegate : UIResponder 7 | 8 | @property (strong, nonatomic) UIWindow *window; 9 | @property (strong, nonatomic) ViewController *viewController; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Mobile/TextXcodeColors/ViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface ViewController : UIViewController 4 | { 5 | IBOutlet UILabel *label; 6 | } 7 | 8 | @property (nonatomic, readonly) UILabel *label; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Mobile/TextXcodeColors/ViewController.m: -------------------------------------------------------------------------------- 1 | #import "ViewController.h" 2 | 3 | 4 | @implementation ViewController 5 | 6 | @synthesize label; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/Testing/TestXcodeColors/Mobile/TextXcodeColors/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/UniversalApp/Classes/UniversalAppViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // UniversalAppViewController.h 3 | // UniversalApp 4 | // 5 | // Created by Robbie Hanson on 7/1/10. 6 | // Copyright __MyCompanyName__ 2010. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UniversalAppViewController : UIViewController { 12 | 13 | } 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/UniversalApp/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/CocoaLumberjack/Xcode/UniversalApp/Default-568h@2x.png -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/UniversalApp/UniversalApp_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'UniversalApp' target in the 'UniversalApp' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/WebServerIPhone/Classes/MyHTTPConnection.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPConnection.h" 3 | 4 | 5 | @interface MyHTTPConnection : HTTPConnection 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/WebServerIPhone/Classes/WebServerIPhoneViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface WebServerIPhoneViewController : UIViewController { 5 | 6 | } 7 | 8 | @end 9 | 10 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/WebServerIPhone/Classes/WebServerIPhoneViewController.m: -------------------------------------------------------------------------------- 1 | #import "WebServerIPhoneViewController.h" 2 | 3 | 4 | @implementation WebServerIPhoneViewController 5 | 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/WebServerIPhone/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/CocoaLumberjack/Xcode/WebServerIPhone/Default-568h@2x.png -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/WebServerIPhone/Vendor/CocoaHTTPServer/Categories/DDData.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface NSData (DDData) 4 | 5 | - (NSData *)md5Digest; 6 | 7 | - (NSData *)sha1Digest; 8 | 9 | - (NSString *)hexStringValue; 10 | 11 | - (NSString *)base64Encoded; 12 | - (NSData *)base64Decoded; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/WebServerIPhone/Vendor/CocoaHTTPServer/Responses/HTTPDataResponse.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPResponse.h" 3 | 4 | 5 | @interface HTTPDataResponse : NSObject 6 | { 7 | NSUInteger offset; 8 | NSData *data; 9 | } 10 | 11 | - (id)initWithData:(NSData *)data; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/WebServerIPhone/Vendor/CocoaHTTPServer/Responses/HTTPErrorResponse.h: -------------------------------------------------------------------------------- 1 | #import "HTTPResponse.h" 2 | 3 | @interface HTTPErrorResponse : NSObject { 4 | NSInteger _status; 5 | } 6 | 7 | - (id)initWithErrorCode:(int)httpErrorCode; 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/WebServerIPhone/Vendor/CocoaHTTPServer/Responses/HTTPRedirectResponse.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import "HTTPResponse.h" 3 | 4 | 5 | @interface HTTPRedirectResponse : NSObject 6 | { 7 | NSString *redirectPath; 8 | } 9 | 10 | - (id)initWithPath:(NSString *)redirectPath; 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /DemoRTSP/CocoaLumberjack/Xcode/WebServerIPhone/WebServerIPhone_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'WebServerIPhone' target in the 'WebServerIPhone' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /DemoRTSP/DemoRTSP.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoRTSP/DemoRTSP/DemoRTSP.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoRTSP/DemoRTSP/DemoRTSP/Images.xcassets/AppIcon.appiconset/Icon2-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/DemoRTSP/DemoRTSP/Images.xcassets/AppIcon.appiconset/Icon2-60@2x.png -------------------------------------------------------------------------------- /DemoRTSP/DemoRTSP/DemoRTSP/Images.xcassets/AppIcon.appiconset/Icon2-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/DemoRTSP/DemoRTSP/Images.xcassets/AppIcon.appiconset/Icon2-60@3x.png -------------------------------------------------------------------------------- /DemoRTSP/DemoRTSP/DemoRTSP/Images.xcassets/AppIcon.appiconset/Icon2-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/DemoRTSP/DemoRTSP/Images.xcassets/AppIcon.appiconset/Icon2-76.png -------------------------------------------------------------------------------- /DemoRTSP/DemoRTSP/DemoRTSP/Images.xcassets/AppIcon.appiconset/Icon2-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/DemoRTSP/DemoRTSP/Images.xcassets/AppIcon.appiconset/Icon2-76@2x.png -------------------------------------------------------------------------------- /DemoRTSP/DemoRTSP/DemoRTSP/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /DemoRTSP/DemoRTSP/DemoRTSP/Images.xcassets/btn_rec_red.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "element_1.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /DemoRTSP/DemoRTSP/DemoRTSP/Images.xcassets/btn_rec_red.imageset/element_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/DemoRTSP/DemoRTSP/Images.xcassets/btn_rec_red.imageset/element_1.pdf -------------------------------------------------------------------------------- /DemoRTSP/DemoRTSP/DemoRTSP/Images.xcassets/btn_rec_white.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "element_2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /DemoRTSP/DemoRTSP/DemoRTSP/Images.xcassets/btn_rec_white.imageset/element_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/DemoRTSP/DemoRTSP/Images.xcassets/btn_rec_white.imageset/element_2.pdf -------------------------------------------------------------------------------- /DemoRTSP/DemoRTSP/DemoRTSP/Images.xcassets/btn_settings.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "element_9.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /DemoRTSP/DemoRTSP/DemoRTSP/Images.xcassets/btn_settings.imageset/element_9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/DemoRTSP/DemoRTSP/Images.xcassets/btn_settings.imageset/element_9.pdf -------------------------------------------------------------------------------- /DemoRTSP/DemoRTSP/DemoRTSP/MainViewController.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2017 DENIVIP Group. All rights reserved. 2 | // 3 | 4 | #import 5 | #import "PBJVision.h" 6 | #import "UIButton+Blocks.h" 7 | 8 | @interface MainViewController : UIViewController 9 | 10 | +(PBJVision *)getPBJVision; 11 | +(void)addLogLine:(NSString*)msg; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /DemoRTSP/DemoRTSP/DemoRTSP/UIGriddableView.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2017 DENIVIP Group. All rights reserved. 2 | // 3 | 4 | #ifndef DemoRTSP_UIGriddableView_h 5 | #define DemoRTSP_UIGriddableView_h 6 | 7 | @interface UIGriddableView : UIView 8 | 9 | - (void)showGrid:(BOOL)onoff; 10 | - (void)showBorder:(UIColor*)color; 11 | @end 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /DemoRTSP/DemoRTSP/DemoRTSP/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | Localizable.strings 3 | DemoRTSP 4 | 5 | Created by IPv6 on 17/02/15. 6 | Copyright (c) 2015 DENIVIP Group. All rights reserved. 7 | */ 8 | -------------------------------------------------------------------------------- /DemoRTSP/Libextobjc/Configuration/Base/Targets/Application.xcconfig: -------------------------------------------------------------------------------- 1 | // 2 | // This file defines additional configuration options that are appropriate only 3 | // for an application. Typically, you want to use a platform-specific variant 4 | // instead. 5 | // 6 | 7 | // Whether to strip out code that isn't called from anywhere 8 | DEAD_CODE_STRIPPING = NO 9 | -------------------------------------------------------------------------------- /DemoRTSP/Libextobjc/Tests/EXTADTTest.h: -------------------------------------------------------------------------------- 1 | // 2 | // EXTADTTest.h 3 | // extobjc 4 | // 5 | // Created by Justin Spahr-Summers on 19.06.12. 6 | // 7 | // 8 | 9 | #import 10 | #import "EXTADT.h" 11 | 12 | @interface EXTADTTest : SenTestCase 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /DemoRTSP/Libextobjc/Tests/EXTKeyPathCodingTest.h: -------------------------------------------------------------------------------- 1 | // 2 | // EXTKeyPathCodingTest.h 3 | // extobjc 4 | // 5 | // Created by Justin Spahr-Summers on 19.06.12. 6 | // 7 | // 8 | 9 | #import 10 | #import "EXTKeyPathCoding.h" 11 | 12 | @interface EXTKeyPathCodingTest : SenTestCase 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /DemoRTSP/Libextobjc/Tests/EXTKeypathWeakWarningTest.h: -------------------------------------------------------------------------------- 1 | // 2 | // EXTKeypathWeakWarningTest.h 3 | // extobjc 4 | // 5 | // Created by Javier Soto on 6/23/14. 6 | // 7 | // 8 | 9 | #import 10 | #import "EXTKeyPathCoding.h" 11 | 12 | @interface EXTKeypathWeakWarningTest : SenTestCase 13 | 14 | @end -------------------------------------------------------------------------------- /DemoRTSP/Libextobjc/Tests/EXTObjectiveCppCompileTest.h: -------------------------------------------------------------------------------- 1 | // 2 | // EXTObjectiveCppCompileTest.h 3 | // extobjc 4 | // 5 | // Created by Igor Kashkuta on 2013-04-01. 6 | // Released under the MIT license. 7 | // 8 | 9 | #import 10 | #import "extobjc.h" 11 | 12 | @interface EXTObjectiveCppCompileTest : SenTestCase 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /DemoRTSP/Libextobjc/Tests/EXTObjectiveCppCompileTest.mm: -------------------------------------------------------------------------------- 1 | // 2 | // EXTObjectiveCppCompileTest.mm 3 | // extobjc 4 | // 5 | // Created by Igor Kashkuta on 2013-04-01. 6 | // Released under the MIT license. 7 | // 8 | 9 | #import "EXTObjectiveCppCompileTest.h" 10 | 11 | @implementation EXTObjectiveCppCompileTest 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /DemoRTSP/Libextobjc/Tests/EXTRuntimeTestProtocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // EXTRuntimeTestProtocol.h 3 | // extobjc 4 | // 5 | // Created by Clay Bridges on 8/5/13. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @protocol EXTRuntimeTestProtocol 12 | 13 | @optional 14 | + (void)optionalClassMethod; 15 | - (void)optionalInstanceMethod; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /DemoRTSP/Libextobjc/Tests/EXTSynthesizeTest.h: -------------------------------------------------------------------------------- 1 | // 2 | // EXTSynthesizeTest.h 3 | // extobjc 4 | // 5 | // Created by Justin Spahr-Summers on 2012-09-04. 6 | // Copyright (C) 2012 Justin Spahr-Summers. 7 | // Released under the MIT license. 8 | // 9 | 10 | #import 11 | 12 | @interface EXTSynthesizeTest : SenTestCase 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /DemoRTSP/Libextobjc/extobjc.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoRTSP/Libextobjc/extobjc/EXTScope.m: -------------------------------------------------------------------------------- 1 | // 2 | // EXTScope.m 3 | // extobjc 4 | // 5 | // Created by Justin Spahr-Summers on 2011-05-04. 6 | // Copyright (C) 2012 Justin Spahr-Summers. 7 | // Released under the MIT license. 8 | // 9 | 10 | #import "EXTScope.h" 11 | 12 | void ext_executeCleanupBlock (__strong ext_cleanupBlock_t *block) { 13 | (*block)(); 14 | } 15 | 16 | -------------------------------------------------------------------------------- /DemoRTSP/Libextobjc/extobjc/extobjc_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'libextobjc' target in the 'libextobjc' project. 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /DemoRTSP/PBJVision/Project/Vision/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/PBJVision/Project/Vision/Default-568h@2x.png -------------------------------------------------------------------------------- /DemoRTSP/PBJVision/Project/Vision/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/PBJVision/Project/Vision/Default.png -------------------------------------------------------------------------------- /DemoRTSP/PBJVision/Project/Vision/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/PBJVision/Project/Vision/Default@2x.png -------------------------------------------------------------------------------- /DemoRTSP/PBJVision/Project/Vision/UI/capture_done@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/PBJVision/Project/Vision/UI/capture_done@2x.png -------------------------------------------------------------------------------- /DemoRTSP/PBJVision/Project/Vision/UI/capture_flip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/PBJVision/Project/Vision/UI/capture_flip@2x.png -------------------------------------------------------------------------------- /DemoRTSP/PBJVision/Project/Vision/UI/capture_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/PBJVision/Project/Vision/UI/capture_focus@2x.png -------------------------------------------------------------------------------- /DemoRTSP/PBJVision/Project/Vision/UI/capture_focus_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/PBJVision/Project/Vision/UI/capture_focus_button@2x.png -------------------------------------------------------------------------------- /DemoRTSP/PBJVision/Project/Vision/UI/capture_focus_button_active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/PBJVision/Project/Vision/UI/capture_focus_button_active@2x.png -------------------------------------------------------------------------------- /DemoRTSP/PBJVision/Project/Vision/UI/capture_onion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/PBJVision/Project/Vision/UI/capture_onion@2x.png -------------------------------------------------------------------------------- /DemoRTSP/PBJVision/Project/Vision/UI/capture_onion_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/PBJVision/Project/Vision/UI/capture_onion_selected@2x.png -------------------------------------------------------------------------------- /DemoRTSP/PBJVision/Project/Vision/UI/capture_rec_base@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/PBJVision/Project/Vision/UI/capture_rec_base@2x.png -------------------------------------------------------------------------------- /DemoRTSP/PBJVision/Project/Vision/UI/capture_rec_blink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/PBJVision/Project/Vision/UI/capture_rec_blink@2x.png -------------------------------------------------------------------------------- /DemoRTSP/PBJVision/Project/Vision/UI/capture_rec_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/PBJVision/Project/Vision/UI/capture_rec_off@2x.png -------------------------------------------------------------------------------- /DemoRTSP/PBJVision/Project/Vision/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DemoRTSP/PBJVision/Source/Shaders/Shader.vsh: -------------------------------------------------------------------------------- 1 | 2 | attribute vec4 a_position; 3 | attribute vec2 a_texture; 4 | 5 | varying vec2 v_texture; 6 | 7 | void main() 8 | { 9 | v_texture = a_texture; 10 | gl_Position = a_position; 11 | } 12 | -------------------------------------------------------------------------------- /DemoRTSP/PBJVision/pbj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denivip/demos/537264803b86f4f2f42ed269dd8262c81c20aea3/DemoRTSP/PBJVision/pbj.gif -------------------------------------------------------------------------------- /DemoRTSP/PSTAlertController/Example/PSTAlertViewControllerSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DemoRTSP/PSTAlertController/Example/PSTAlertViewControllerSample/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // PSTAlertViewControllerSample 4 | // 5 | // Created by Peter Steinberger on 07/11/14. 6 | // Copyright (c) 2014 PSPDFKit GmbH. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | @end 14 | 15 | --------------------------------------------------------------------------------