├── .gitignore ├── .travis.yml ├── Classes ├── Core │ ├── Component │ │ ├── HSDConsoleLogComponent.h │ │ ├── HSDConsoleLogComponent.m │ │ ├── HSDDBInspectComponent.h │ │ ├── HSDDBInspectComponent.m │ │ ├── HSDFileExplorerComponent.h │ │ ├── HSDFileExplorerComponent.m │ │ ├── HSDFilePreviewComponent.h │ │ ├── HSDFilePreviewComponent.m │ │ ├── HSDHostNameResolveComponent.h │ │ ├── HSDHostNameResolveComponent.m │ │ ├── HSDSendInfoComponent.h │ │ ├── HSDSendInfoComponent.m │ │ ├── HSDViewDebugComponent.h │ │ └── HSDViewDebugComponent.m │ ├── HSDDefine.h │ ├── HSDDefine.m │ ├── HSDDelegate.h │ ├── HSDHttpServerControlPannelController.h │ ├── HSDHttpServerControlPannelController.m │ ├── HSDManager+Project.h │ ├── HSDManager.h │ └── HSDManager.m ├── Handler │ ├── HSDRequestHandler.h │ ├── HSDRequestHandler.m │ ├── HSDWebSocketHandler.h │ └── HSDWebSocketHandler.m ├── HttpServerDebug.h ├── Middleware │ ├── HSDComponentMiddleware.h │ ├── HSDComponentMiddleware.m │ ├── HSDResponseInfo.h │ └── HSDResponseInfo.m └── Others │ ├── README.md │ ├── WebServer │ ├── Core │ │ ├── HSDGWebServer.h │ │ ├── HSDGWebServer.m │ │ ├── HSDGWebServerConnection.h │ │ ├── HSDGWebServerConnection.m │ │ ├── HSDGWebServerFunctions.h │ │ ├── HSDGWebServerFunctions.m │ │ ├── HSDGWebServerHTTPStatusCodes.h │ │ ├── HSDGWebServerPrivate.h │ │ ├── HSDGWebServerRequest.h │ │ ├── HSDGWebServerRequest.m │ │ ├── HSDGWebServerResponse.h │ │ ├── HSDGWebServerResponse.m │ │ ├── HSDGWebSocket.h │ │ └── HSDGWebSocket.m │ ├── Requests │ │ ├── HSDGWebServerDataRequest.h │ │ ├── HSDGWebServerDataRequest.m │ │ ├── HSDGWebServerFileRequest.h │ │ ├── HSDGWebServerFileRequest.m │ │ ├── HSDGWebServerMultiPartFormRequest.h │ │ ├── HSDGWebServerMultiPartFormRequest.m │ │ ├── HSDGWebServerURLEncodedFormRequest.h │ │ └── HSDGWebServerURLEncodedFormRequest.m │ └── Responses │ │ ├── HSDGWebServerDataResponse.h │ │ ├── HSDGWebServerDataResponse.m │ │ ├── HSDGWebServerErrorResponse.h │ │ ├── HSDGWebServerErrorResponse.m │ │ ├── HSDGWebServerFileResponse.h │ │ ├── HSDGWebServerFileResponse.m │ │ ├── HSDGWebServerStreamedResponse.h │ │ └── HSDGWebServerStreamedResponse.m │ └── ZipArchive │ ├── HSDZipArchive.h │ ├── HSDZipArchive.m │ └── minizip │ ├── HSDioapi.c │ ├── HSDioapi.h │ ├── HSDzip.c │ └── HSDzip.h ├── Documents └── Interfaces-CN.md ├── HttpServerDebug.podspec ├── HttpServerDebug.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ └── HttpServerDebug.xcscheme ├── LICENSE.txt ├── README.md ├── Resources └── HttpServerDebug.bundle │ └── web │ ├── components │ └── notification │ │ ├── notification.css │ │ └── notification.js │ ├── css │ └── default.css │ ├── index.css │ ├── index.html │ ├── index.js │ ├── libs │ ├── OrbitControls.min.js │ ├── Tween.js │ └── three.min.js │ ├── locals │ ├── enus.json │ └── zhcn.json │ ├── pages │ ├── console_log │ │ ├── console_log.css │ │ ├── console_log.html │ │ └── console_log.js │ ├── database_inspect │ │ ├── database_inspect.css │ │ ├── database_inspect.html │ │ └── database_inspect.js │ ├── file_explorer │ │ ├── file_explorer.css │ │ ├── file_explorer.html │ │ ├── file_explorer.js │ │ ├── file_explorer_context_menu.css │ │ ├── file_explorer_context_menu.js │ │ └── file_explorer_resize.js │ ├── send_info │ │ ├── send_info.css │ │ ├── send_info.html │ │ └── send_info.js │ ├── view_debug │ │ ├── view_debug.css │ │ ├── view_debug.html │ │ ├── view_debug.js │ │ ├── view_debug_canvas.js │ │ └── view_debug_sidebar.js │ └── web_upload │ │ └── web_upload.html │ ├── resources │ ├── XC_O_area_button_navigator.png │ ├── XC_O_utilities_button.png │ ├── db_icon_view_orient_2d.png │ ├── db_icon_view_orient_3d.png │ ├── db_icon_view_show_clipped.png │ ├── directory-icon.png │ ├── favicon.ico │ ├── file-icon.png │ └── loading-bubbles.svg │ └── util.js ├── Sample ├── Sample.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Sample │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Database │ ├── HSDSampleCategoryDataModel.h │ ├── HSDSampleCategoryDataModel.m │ ├── HSDSampleDBCategoryManager.h │ ├── HSDSampleDBCategoryManager.m │ ├── HSDSampleDBManager.h │ └── HSDSampleDBManager.m │ ├── HSDSampleAppDelegate.h │ ├── HSDSampleAppDelegate.m │ ├── HSDSampleRootController.h │ ├── HSDSampleRootController.m │ ├── Sample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Sample.xcscheme │ ├── Supporting Files │ └── Info.plist │ ├── ViewController │ ├── HSDSampleCategoryEditController.h │ ├── HSDSampleCategoryEditController.m │ ├── HSDSampleDBInspectViewController.h │ ├── HSDSampleDBInspectViewController.m │ ├── HSDSampleHomeViewController.h │ ├── HSDSampleHomeViewController.m │ ├── HSDSampleViewDebugViewController.h │ └── HSDSampleViewDebugViewController.m │ └── main.m ├── ThirdParties └── FMDB │ ├── extra │ ├── InMemoryOnDiskIO │ │ ├── FMDatabase+InMemoryOnDiskIO.h │ │ └── FMDatabase+InMemoryOnDiskIO.m │ └── fts3 │ │ ├── FMDatabase+FTS3.h │ │ ├── FMDatabase+FTS3.m │ │ ├── FMTokenizers.h │ │ ├── FMTokenizers.m │ │ └── fts3_tokenizer.h │ └── fmdb │ ├── FMDB.h │ ├── FMDatabase.h │ ├── FMDatabase.m │ ├── FMDatabaseAdditions.h │ ├── FMDatabaseAdditions.m │ ├── FMDatabasePool.h │ ├── FMDatabasePool.m │ ├── FMDatabaseQueue.h │ ├── FMDatabaseQueue.m │ ├── FMResultSet.h │ └── FMResultSet.m └── archive.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | xcuserdata/ 3 | build/ 4 | output/ 5 | Pods/ 6 | tmp/ 7 | .vscode/ 8 | 9 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/.travis.yml -------------------------------------------------------------------------------- /Classes/Core/Component/HSDConsoleLogComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/Component/HSDConsoleLogComponent.h -------------------------------------------------------------------------------- /Classes/Core/Component/HSDConsoleLogComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/Component/HSDConsoleLogComponent.m -------------------------------------------------------------------------------- /Classes/Core/Component/HSDDBInspectComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/Component/HSDDBInspectComponent.h -------------------------------------------------------------------------------- /Classes/Core/Component/HSDDBInspectComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/Component/HSDDBInspectComponent.m -------------------------------------------------------------------------------- /Classes/Core/Component/HSDFileExplorerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/Component/HSDFileExplorerComponent.h -------------------------------------------------------------------------------- /Classes/Core/Component/HSDFileExplorerComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/Component/HSDFileExplorerComponent.m -------------------------------------------------------------------------------- /Classes/Core/Component/HSDFilePreviewComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/Component/HSDFilePreviewComponent.h -------------------------------------------------------------------------------- /Classes/Core/Component/HSDFilePreviewComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/Component/HSDFilePreviewComponent.m -------------------------------------------------------------------------------- /Classes/Core/Component/HSDHostNameResolveComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/Component/HSDHostNameResolveComponent.h -------------------------------------------------------------------------------- /Classes/Core/Component/HSDHostNameResolveComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/Component/HSDHostNameResolveComponent.m -------------------------------------------------------------------------------- /Classes/Core/Component/HSDSendInfoComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/Component/HSDSendInfoComponent.h -------------------------------------------------------------------------------- /Classes/Core/Component/HSDSendInfoComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/Component/HSDSendInfoComponent.m -------------------------------------------------------------------------------- /Classes/Core/Component/HSDViewDebugComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/Component/HSDViewDebugComponent.h -------------------------------------------------------------------------------- /Classes/Core/Component/HSDViewDebugComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/Component/HSDViewDebugComponent.m -------------------------------------------------------------------------------- /Classes/Core/HSDDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/HSDDefine.h -------------------------------------------------------------------------------- /Classes/Core/HSDDefine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/HSDDefine.m -------------------------------------------------------------------------------- /Classes/Core/HSDDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/HSDDelegate.h -------------------------------------------------------------------------------- /Classes/Core/HSDHttpServerControlPannelController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/HSDHttpServerControlPannelController.h -------------------------------------------------------------------------------- /Classes/Core/HSDHttpServerControlPannelController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/HSDHttpServerControlPannelController.m -------------------------------------------------------------------------------- /Classes/Core/HSDManager+Project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/HSDManager+Project.h -------------------------------------------------------------------------------- /Classes/Core/HSDManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/HSDManager.h -------------------------------------------------------------------------------- /Classes/Core/HSDManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Core/HSDManager.m -------------------------------------------------------------------------------- /Classes/Handler/HSDRequestHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Handler/HSDRequestHandler.h -------------------------------------------------------------------------------- /Classes/Handler/HSDRequestHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Handler/HSDRequestHandler.m -------------------------------------------------------------------------------- /Classes/Handler/HSDWebSocketHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Handler/HSDWebSocketHandler.h -------------------------------------------------------------------------------- /Classes/Handler/HSDWebSocketHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Handler/HSDWebSocketHandler.m -------------------------------------------------------------------------------- /Classes/HttpServerDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/HttpServerDebug.h -------------------------------------------------------------------------------- /Classes/Middleware/HSDComponentMiddleware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Middleware/HSDComponentMiddleware.h -------------------------------------------------------------------------------- /Classes/Middleware/HSDComponentMiddleware.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Middleware/HSDComponentMiddleware.m -------------------------------------------------------------------------------- /Classes/Middleware/HSDResponseInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Middleware/HSDResponseInfo.h -------------------------------------------------------------------------------- /Classes/Middleware/HSDResponseInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Middleware/HSDResponseInfo.m -------------------------------------------------------------------------------- /Classes/Others/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/README.md -------------------------------------------------------------------------------- /Classes/Others/WebServer/Core/HSDGWebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Core/HSDGWebServer.h -------------------------------------------------------------------------------- /Classes/Others/WebServer/Core/HSDGWebServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Core/HSDGWebServer.m -------------------------------------------------------------------------------- /Classes/Others/WebServer/Core/HSDGWebServerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Core/HSDGWebServerConnection.h -------------------------------------------------------------------------------- /Classes/Others/WebServer/Core/HSDGWebServerConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Core/HSDGWebServerConnection.m -------------------------------------------------------------------------------- /Classes/Others/WebServer/Core/HSDGWebServerFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Core/HSDGWebServerFunctions.h -------------------------------------------------------------------------------- /Classes/Others/WebServer/Core/HSDGWebServerFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Core/HSDGWebServerFunctions.m -------------------------------------------------------------------------------- /Classes/Others/WebServer/Core/HSDGWebServerHTTPStatusCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Core/HSDGWebServerHTTPStatusCodes.h -------------------------------------------------------------------------------- /Classes/Others/WebServer/Core/HSDGWebServerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Core/HSDGWebServerPrivate.h -------------------------------------------------------------------------------- /Classes/Others/WebServer/Core/HSDGWebServerRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Core/HSDGWebServerRequest.h -------------------------------------------------------------------------------- /Classes/Others/WebServer/Core/HSDGWebServerRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Core/HSDGWebServerRequest.m -------------------------------------------------------------------------------- /Classes/Others/WebServer/Core/HSDGWebServerResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Core/HSDGWebServerResponse.h -------------------------------------------------------------------------------- /Classes/Others/WebServer/Core/HSDGWebServerResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Core/HSDGWebServerResponse.m -------------------------------------------------------------------------------- /Classes/Others/WebServer/Core/HSDGWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Core/HSDGWebSocket.h -------------------------------------------------------------------------------- /Classes/Others/WebServer/Core/HSDGWebSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Core/HSDGWebSocket.m -------------------------------------------------------------------------------- /Classes/Others/WebServer/Requests/HSDGWebServerDataRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Requests/HSDGWebServerDataRequest.h -------------------------------------------------------------------------------- /Classes/Others/WebServer/Requests/HSDGWebServerDataRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Requests/HSDGWebServerDataRequest.m -------------------------------------------------------------------------------- /Classes/Others/WebServer/Requests/HSDGWebServerFileRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Requests/HSDGWebServerFileRequest.h -------------------------------------------------------------------------------- /Classes/Others/WebServer/Requests/HSDGWebServerFileRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Requests/HSDGWebServerFileRequest.m -------------------------------------------------------------------------------- /Classes/Others/WebServer/Requests/HSDGWebServerMultiPartFormRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Requests/HSDGWebServerMultiPartFormRequest.h -------------------------------------------------------------------------------- /Classes/Others/WebServer/Requests/HSDGWebServerMultiPartFormRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Requests/HSDGWebServerMultiPartFormRequest.m -------------------------------------------------------------------------------- /Classes/Others/WebServer/Requests/HSDGWebServerURLEncodedFormRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Requests/HSDGWebServerURLEncodedFormRequest.h -------------------------------------------------------------------------------- /Classes/Others/WebServer/Requests/HSDGWebServerURLEncodedFormRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Requests/HSDGWebServerURLEncodedFormRequest.m -------------------------------------------------------------------------------- /Classes/Others/WebServer/Responses/HSDGWebServerDataResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Responses/HSDGWebServerDataResponse.h -------------------------------------------------------------------------------- /Classes/Others/WebServer/Responses/HSDGWebServerDataResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Responses/HSDGWebServerDataResponse.m -------------------------------------------------------------------------------- /Classes/Others/WebServer/Responses/HSDGWebServerErrorResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Responses/HSDGWebServerErrorResponse.h -------------------------------------------------------------------------------- /Classes/Others/WebServer/Responses/HSDGWebServerErrorResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Responses/HSDGWebServerErrorResponse.m -------------------------------------------------------------------------------- /Classes/Others/WebServer/Responses/HSDGWebServerFileResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Responses/HSDGWebServerFileResponse.h -------------------------------------------------------------------------------- /Classes/Others/WebServer/Responses/HSDGWebServerFileResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Responses/HSDGWebServerFileResponse.m -------------------------------------------------------------------------------- /Classes/Others/WebServer/Responses/HSDGWebServerStreamedResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Responses/HSDGWebServerStreamedResponse.h -------------------------------------------------------------------------------- /Classes/Others/WebServer/Responses/HSDGWebServerStreamedResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/WebServer/Responses/HSDGWebServerStreamedResponse.m -------------------------------------------------------------------------------- /Classes/Others/ZipArchive/HSDZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/ZipArchive/HSDZipArchive.h -------------------------------------------------------------------------------- /Classes/Others/ZipArchive/HSDZipArchive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/ZipArchive/HSDZipArchive.m -------------------------------------------------------------------------------- /Classes/Others/ZipArchive/minizip/HSDioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/ZipArchive/minizip/HSDioapi.c -------------------------------------------------------------------------------- /Classes/Others/ZipArchive/minizip/HSDioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/ZipArchive/minizip/HSDioapi.h -------------------------------------------------------------------------------- /Classes/Others/ZipArchive/minizip/HSDzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/ZipArchive/minizip/HSDzip.c -------------------------------------------------------------------------------- /Classes/Others/ZipArchive/minizip/HSDzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Classes/Others/ZipArchive/minizip/HSDzip.h -------------------------------------------------------------------------------- /Documents/Interfaces-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Documents/Interfaces-CN.md -------------------------------------------------------------------------------- /HttpServerDebug.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/HttpServerDebug.podspec -------------------------------------------------------------------------------- /HttpServerDebug.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/HttpServerDebug.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HttpServerDebug.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/HttpServerDebug.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HttpServerDebug.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/HttpServerDebug.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /HttpServerDebug.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/HttpServerDebug.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /HttpServerDebug.xcodeproj/xcshareddata/xcschemes/HttpServerDebug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/HttpServerDebug.xcodeproj/xcshareddata/xcschemes/HttpServerDebug.xcscheme -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/README.md -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/components/notification/notification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/components/notification/notification.css -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/components/notification/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/components/notification/notification.js -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/css/default.css -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/index.css -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/index.html -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/index.js -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/libs/OrbitControls.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/libs/OrbitControls.min.js -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/libs/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/libs/Tween.js -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/libs/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/libs/three.min.js -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/locals/enus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/locals/enus.json -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/locals/zhcn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/locals/zhcn.json -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/console_log/console_log.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/console_log/console_log.css -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/console_log/console_log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/console_log/console_log.html -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/console_log/console_log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/console_log/console_log.js -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/database_inspect/database_inspect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/database_inspect/database_inspect.css -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/database_inspect/database_inspect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/database_inspect/database_inspect.html -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/database_inspect/database_inspect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/database_inspect/database_inspect.js -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/file_explorer/file_explorer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/file_explorer/file_explorer.css -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/file_explorer/file_explorer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/file_explorer/file_explorer.html -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/file_explorer/file_explorer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/file_explorer/file_explorer.js -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/file_explorer/file_explorer_context_menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/file_explorer/file_explorer_context_menu.css -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/file_explorer/file_explorer_context_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/file_explorer/file_explorer_context_menu.js -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/file_explorer/file_explorer_resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/file_explorer/file_explorer_resize.js -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/send_info/send_info.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/send_info/send_info.css -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/send_info/send_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/send_info/send_info.html -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/send_info/send_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/send_info/send_info.js -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/view_debug/view_debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/view_debug/view_debug.css -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/view_debug/view_debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/view_debug/view_debug.html -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/view_debug/view_debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/view_debug/view_debug.js -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/view_debug/view_debug_canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/view_debug/view_debug_canvas.js -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/view_debug/view_debug_sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/view_debug/view_debug_sidebar.js -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/pages/web_upload/web_upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/pages/web_upload/web_upload.html -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/resources/XC_O_area_button_navigator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/resources/XC_O_area_button_navigator.png -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/resources/XC_O_utilities_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/resources/XC_O_utilities_button.png -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/resources/db_icon_view_orient_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/resources/db_icon_view_orient_2d.png -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/resources/db_icon_view_orient_3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/resources/db_icon_view_orient_3d.png -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/resources/db_icon_view_show_clipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/resources/db_icon_view_show_clipped.png -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/resources/directory-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/resources/directory-icon.png -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/resources/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/resources/favicon.ico -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/resources/file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/resources/file-icon.png -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/resources/loading-bubbles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/resources/loading-bubbles.svg -------------------------------------------------------------------------------- /Resources/HttpServerDebug.bundle/web/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Resources/HttpServerDebug.bundle/web/util.js -------------------------------------------------------------------------------- /Sample/Sample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Sample/Sample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Sample/Sample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Sample/Sample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Sample/Sample/Database/HSDSampleCategoryDataModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/Database/HSDSampleCategoryDataModel.h -------------------------------------------------------------------------------- /Sample/Sample/Database/HSDSampleCategoryDataModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/Database/HSDSampleCategoryDataModel.m -------------------------------------------------------------------------------- /Sample/Sample/Database/HSDSampleDBCategoryManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/Database/HSDSampleDBCategoryManager.h -------------------------------------------------------------------------------- /Sample/Sample/Database/HSDSampleDBCategoryManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/Database/HSDSampleDBCategoryManager.m -------------------------------------------------------------------------------- /Sample/Sample/Database/HSDSampleDBManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/Database/HSDSampleDBManager.h -------------------------------------------------------------------------------- /Sample/Sample/Database/HSDSampleDBManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/Database/HSDSampleDBManager.m -------------------------------------------------------------------------------- /Sample/Sample/HSDSampleAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/HSDSampleAppDelegate.h -------------------------------------------------------------------------------- /Sample/Sample/HSDSampleAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/HSDSampleAppDelegate.m -------------------------------------------------------------------------------- /Sample/Sample/HSDSampleRootController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/HSDSampleRootController.h -------------------------------------------------------------------------------- /Sample/Sample/HSDSampleRootController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/HSDSampleRootController.m -------------------------------------------------------------------------------- /Sample/Sample/Sample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/Sample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sample/Sample/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Sample/Sample/Sample.xcodeproj/xcshareddata/xcschemes/Sample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/Sample.xcodeproj/xcshareddata/xcschemes/Sample.xcscheme -------------------------------------------------------------------------------- /Sample/Sample/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Sample/Sample/ViewController/HSDSampleCategoryEditController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/ViewController/HSDSampleCategoryEditController.h -------------------------------------------------------------------------------- /Sample/Sample/ViewController/HSDSampleCategoryEditController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/ViewController/HSDSampleCategoryEditController.m -------------------------------------------------------------------------------- /Sample/Sample/ViewController/HSDSampleDBInspectViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/ViewController/HSDSampleDBInspectViewController.h -------------------------------------------------------------------------------- /Sample/Sample/ViewController/HSDSampleDBInspectViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/ViewController/HSDSampleDBInspectViewController.m -------------------------------------------------------------------------------- /Sample/Sample/ViewController/HSDSampleHomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/ViewController/HSDSampleHomeViewController.h -------------------------------------------------------------------------------- /Sample/Sample/ViewController/HSDSampleHomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/ViewController/HSDSampleHomeViewController.m -------------------------------------------------------------------------------- /Sample/Sample/ViewController/HSDSampleViewDebugViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/ViewController/HSDSampleViewDebugViewController.h -------------------------------------------------------------------------------- /Sample/Sample/ViewController/HSDSampleViewDebugViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/ViewController/HSDSampleViewDebugViewController.m -------------------------------------------------------------------------------- /Sample/Sample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/Sample/Sample/main.m -------------------------------------------------------------------------------- /ThirdParties/FMDB/extra/InMemoryOnDiskIO/FMDatabase+InMemoryOnDiskIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/ThirdParties/FMDB/extra/InMemoryOnDiskIO/FMDatabase+InMemoryOnDiskIO.h -------------------------------------------------------------------------------- /ThirdParties/FMDB/extra/InMemoryOnDiskIO/FMDatabase+InMemoryOnDiskIO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/ThirdParties/FMDB/extra/InMemoryOnDiskIO/FMDatabase+InMemoryOnDiskIO.m -------------------------------------------------------------------------------- /ThirdParties/FMDB/extra/fts3/FMDatabase+FTS3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/ThirdParties/FMDB/extra/fts3/FMDatabase+FTS3.h -------------------------------------------------------------------------------- /ThirdParties/FMDB/extra/fts3/FMDatabase+FTS3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/ThirdParties/FMDB/extra/fts3/FMDatabase+FTS3.m -------------------------------------------------------------------------------- /ThirdParties/FMDB/extra/fts3/FMTokenizers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/ThirdParties/FMDB/extra/fts3/FMTokenizers.h -------------------------------------------------------------------------------- /ThirdParties/FMDB/extra/fts3/FMTokenizers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/ThirdParties/FMDB/extra/fts3/FMTokenizers.m -------------------------------------------------------------------------------- /ThirdParties/FMDB/extra/fts3/fts3_tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/ThirdParties/FMDB/extra/fts3/fts3_tokenizer.h -------------------------------------------------------------------------------- /ThirdParties/FMDB/fmdb/FMDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/ThirdParties/FMDB/fmdb/FMDB.h -------------------------------------------------------------------------------- /ThirdParties/FMDB/fmdb/FMDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/ThirdParties/FMDB/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /ThirdParties/FMDB/fmdb/FMDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/ThirdParties/FMDB/fmdb/FMDatabase.m -------------------------------------------------------------------------------- /ThirdParties/FMDB/fmdb/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/ThirdParties/FMDB/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /ThirdParties/FMDB/fmdb/FMDatabaseAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/ThirdParties/FMDB/fmdb/FMDatabaseAdditions.m -------------------------------------------------------------------------------- /ThirdParties/FMDB/fmdb/FMDatabasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/ThirdParties/FMDB/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /ThirdParties/FMDB/fmdb/FMDatabasePool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/ThirdParties/FMDB/fmdb/FMDatabasePool.m -------------------------------------------------------------------------------- /ThirdParties/FMDB/fmdb/FMDatabaseQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/ThirdParties/FMDB/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /ThirdParties/FMDB/fmdb/FMDatabaseQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/ThirdParties/FMDB/fmdb/FMDatabaseQueue.m -------------------------------------------------------------------------------- /ThirdParties/FMDB/fmdb/FMResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/ThirdParties/FMDB/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /ThirdParties/FMDB/fmdb/FMResultSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/ThirdParties/FMDB/fmdb/FMResultSet.m -------------------------------------------------------------------------------- /archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob2468/HttpServerDebug/HEAD/archive.sh --------------------------------------------------------------------------------